CCIE R&S Configuration Part1 1.4 スパニングツリープロトコル

1.4.スパニングツリープロトコル

  • SW1を必要なVLANに対してルートブリッジになるようにしてください。
  • アクセスポートはすぐにフレームを転送できるようにしてください。
  • スパニングツリーのタイマーをダイアメータ3として設定してください。

【設定】

SW1

---------------------------------------------------------------------------------
spanning-tree vlan 34 forward-time 9
spanning-tree vlan 34 max-age 12
spanning-tree vlan 34 priority 0
spanning-tree vlan 47 forward-time 9
spanning-tree vlan 47 max-age 12
spanning-tree vlan 47 priority 0
spanning-tree vlan 234 forward-time 9
spanning-tree vlan 234 max-age 12
spanning-tree vlan 234 priority 0
!
interface FastEthernet0/1
 spanning-tree portfast
!
interface FastEthernet0/3
 spanning-tree portfast
!
interface FastEthernet0/4
 spanning-tree portfast
!
interface FastEthernet0/5
 spanning-tree portfast
---------------------------------------------------------------------------------

SW2

---------------------------------------------------------------------------------
interface FastEthernet0/1
 spanning-tree portfast
!
interface FastEthernet0/4
 spanning-tree portfast
!
interface FastEthernet0/5
 spanning-tree portfast
---------------------------------------------------------------------------------

 

【確認のポイント】

  • show spanning-tree brief
    VL34、VL47、VL234に対してSW1がルートブリッジになっていないことを確認します。
  • show running-config
    アクセスポートにポートファストの設定が入っていることを確認します。

【解説】

スパニングツリーを考慮する必要があるVLANはトランクポートに転送していて、ループ構成になるVL34、VL47、VL234です。これらのVLANに対してSW1がルートブリッジになるようにブリッジプライオリティを0とします。

 

SW1 ブリッジプライオリティの変更

---------------------------------------------------------------------------------
spanning-tree vlan 34 priority 0
spanning-tree vlan 47 priority 0
spanning-tree vlan 234 priority 0
---------------------------------------------------------------------------------

また、ルートブリッジとなるSW1でタイマーの変更を行います。spanning-tree root primary diameterのコマンドでダイアメータを指定すると、自動的にHello、最大エージ、転送遅延タイマーが適切な値に変更されます。

ポートをすぐにフォワーディング状態に移行してフレームを転送できるようにするためには、ポートファストの設定を行います。ポートファストは、インタフェースコンフィグレーションモードで次のように設定します。

(config-if)#spanning-tree portfast

スパニングツリーの状態を確認するには、show spanning-tree briefコマンドを利用します。

SW1 show spanning-tree brief

---------------------------------------------------------------------------------
SW1#show spanning-tree vlan 34 brief
 
VLAN34
Spanning tree enabled protocol ieee
Root ID    Priority    0
Address     cc05.1898.0006
This bridge is the root
Hello Time   2 sec  Max Age 12 sec  Forward Delay  9 sec
 
Bridge ID  Priority    0
Address     cc05.1898.0006
Hello Time   2 sec  Max Age 12 sec  Forward Delay  9 sec
Aging Time 100
 
Interface                                   Designated
Name                 Port ID Prio Cost  Sts Cost  Bridge ID            Port ID
-------------------- ------- ---- ----- --- ----- -------------------- -------
FastEthernet0/5      128.6    128    19 FWD     0     0 cc05.1898.0006 128.6
Port-channel1        129.65   128    12 FWD     0     0 cc05.1898.0006 129.65
Port-channel2        129.66   128    12 FWD     0     0 cc05.1898.0006 129.66
Port-channel3        129.67   128    12 FWD     0     0 cc05.1898.0006 129.67
 
SW1#show spanning-tree vlan 47 brief
 
VLAN47
Spanning tree enabled protocol ieee
Root ID    Priority    0
Address     cc05.1898.0005
This bridge is the root
Hello Time   2 sec  Max Age 12 sec  Forward Delay  9 sec
 
Bridge ID  Priority    0
Address     cc05.1898.0005
Hello Time   2 sec  Max Age 12 sec  Forward Delay  9 sec
Aging Time 100
 
Interface                                   Designated
Name                 Port ID Prio Cost  Sts Cost  Bridge ID            Port ID
-------------------- ------- ---- ----- --- ----- -------------------- -------
FastEthernet0/4      128.5    128    19 FWD     0     0 cc05.1898.0005 128.5
Port-channel1        129.65   128    12 FWD     0     0 cc05.1898.0005 129.65
Port-channel2        129.66   128    12 FWD     0     0 cc05.1898.0005 129.66
Port-channel3        129.67   128    12 FWD     0     0 cc05.1898.0005 129.67
 
SW1#show spanning-tree vlan 234 brief
 
VLAN234
Spanning tree enabled protocol ieee
Root ID    Priority    0
Address     cc05.1898.0007
This bridge is the root
Hello Time   2 sec  Max Age 12 sec  Forward Delay  9 sec
 
Bridge ID  Priority    0
Address     cc05.1898.0007
Hello Time   2 sec  Max Age 12 sec  Forward Delay  9 sec
Aging Time 100
 
Interface                                   Designated
Name                 Port ID Prio Cost  Sts Cost  Bridge ID            Port ID
-------------------- ------- ---- ----- --- ----- -------------------- -------
Port-channel1        129.65   128    12 FWD     0     0 cc05.1898.0007 129.65
Port-channel2        129.66   128    12 FWD     0     0 cc05.1898.0007 129.66
Port-channel3        129.67   128    12 FWD     0     0 cc05.1898.0007 129.67
---------------------------------------------------------------------------------