検証構成
設定コマンド
SW1
VLAN-ID 10 を作成
1 2 |
vlan 10 exit |
ブリッジプライオリティを0
1 |
spanning-tree vlan 10 priority 0 |
SW2
VLAN-ID 10 を作成
1 2 |
vlan 10 exit |
ブリッジプライオリティを4096
1 |
spanning-tree vlan 10 priority 4096 |
SW3
VLAN-ID 10 を作成
1 2 |
vlan 10 exit |
設定確認
SW1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
SW1#show spanning-tree vlan 10 VLAN0010 Spanning tree enabled protocol ieee Root ID Priority 10 Address 5e00.0000.0000 This bridge is the root Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec Bridge ID Priority 10 (priority 0 sys-id-ext 10) Address 5e00.0000.0000 Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec Aging Time 300 sec Interface Role Sts Cost Prio.Nbr Type ------------------- ---- --- --------- -------- -------------------------------- Gi0/1 Desg FWD 4 128.2 P2p Gi0/2 Desg FWD 4 128.3 P2p SW1# |
- This bridge is the root の記載があるので自身のSWがrootブリッジである
- コマンドでpriorityを0に設定したに関わらず、Priorityが10なのは拡張システムID(VLAN-ID 10)が加算されている為、
詳細は、スパニングツリーSTP PVST+を参照 - インターフェイスのRoleは、RP(ルートポート)、DP(指定ポート)、BLK(ブロッキングポート)の状態を表示しています。
詳細は、スパニングツリー Spanning Tree Protocol(STP)とは - インターフェイスのStsは、FWD(フォワーディング状態)、LIS(リスニング状態)、LRN(ラーニング状態)、BLK(ブロック状態)を表示しています。
詳細は、スパニングツリー Spanning Tree Protocol(STP)とは
SW2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
SW2#show spanning-tree vlan 10 VLAN0010 Spanning tree enabled protocol ieee Root ID Priority 10 Address 5e00.0000.0000 Cost 4 Port 2 (GigabitEthernet0/1) Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec Bridge ID Priority 4106 (priority 4096 sys-id-ext 10) Address 5e00.0001.0000 Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec Aging Time 300 sec Interface Role Sts Cost Prio.Nbr Type ------------------- ---- --- --------- -------- -------------------------------- Gi0/1 Root FWD 4 128.2 P2p Gi0/2 Desg FWD 4 128.3 P2p SW2# |
SW3
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
SW3#show spanning-tree vlan 10 VLAN0010 Spanning tree enabled protocol ieee Root ID Priority 10 Address 5e00.0000.0000 Cost 4 Port 2 (GigabitEthernet0/1) Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec Bridge ID Priority 32778 (priority 32768 sys-id-ext 10) Address 5e00.0002.0000 Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec Aging Time 300 sec Interface Role Sts Cost Prio.Nbr Type ------------------- ---- --- --------- -------- -------------------------------- Gi0/1 Root FWD 4 128.2 P2p Gi0/2 Altn BLK 4 128.3 P2p SW3# |
スポンサーリンク
Spanning-treeの設定詳細
スパニングツリーの有効化/無効化
Catalystスイッチではスパニングツリーがデフォルトで有効化されています。その為上記の設定例ではコマンドが登場しませんでした。
無効化した後に有効化しあい場合には以下のコマンドで設定します。
- スパニングツリーの有効化
1 |
SW1(config)#spanning-tree vlan VLAN-ID |
- スパニングツリーの無効化
1 |
SW1(config)#no spanning-tree vlan VLAN-ID |
ブリッジプライオリティの設定
1 |
SW1(config)#spanning-tree vlan VLAN-ID priority PRIORITY |
コマンド引数 | 説明 |
---|---|
VLAN-ID | VLAN-ID(1〜4094)を指定 |
PRIORITY | ブリッジプライオリティを指定 4096の単位で設定 詳細はスパニングツリーSTP PVST+ |
その他CiscoIOS設定方法
-
Cisco IOS 設定方法