HOME > コンテンツリスト > ラボ・シナリオ for CCNA > [ < 前へ 次へ > ]

STPの動作を確認する (スイッチプライオリティの変更)

※ 前の「シナリオ」の続きとして記載しています。
ネットワーク構成図

  1. SW-C のプライオリティを 0 に変更しなさい。
  2. < SW-C >
    SW-C# conf t
    Enter configuration commands, one per line.  End with CNTL/Z.
    SW-C(config)# spanning-tree vlan 1 priority 0  ← VLAN1 のスイッチプライオリティを 0 に設定
    SW-C(config)# ^Z
    SW-C#
    
    PVST+ は VLAN 毎に STP を実行できますので、スイッチプライオリティも VLAN 毎に設定します。

    SW-C のプライオリティを 0 にしたことにより、STP の再計算が行われ、スイッチプライオリティの最も小さい SW-C がルートスイッチになり、SW-C の全てのポートが指定ポートになります。

  3. SW-C で、sh spanning-tree コマンドを実行しなさい。
  4. < SW-C >
    SW-C# sh spanning-tree
    
    VLAN0001
      Spanning tree enabled protocol ieee
      Root ID    Priority    1   ← プライオリティ+拡張システムID
                 Address     0024.900c.0000
                 This bridge is the root
                 Hello Time   2 sec  Max Age 20 sec  Forward Delay 15 sec
    
      Bridge ID  Priority    1      (priority 0 sys-id-ext 1)
                 Address     0024.900c.0000
                 Hello Time   2 sec  Max Age 20 sec  Forward Delay 15 sec
                 Aging Time  15  sec
    
    Interface           Role Sts Cost      Prio.Nbr Type
    ------------------- ---- --- --------- -------- --------------------------------
    Fa0/1               Desg FWD 19        128.1    P2p    ← 指定ポート
    Fa0/2               Desg FWD 19        128.2    P2p    ← 指定ポート
    
    
    SW-C#
    
    前回同様、非ルートスイッチからルートスイッチに近い SW-A の F0/2 と SW-B の F0/1 がルートポートになり、MACアドレスの小さいスイッチ SW-A の F0/1 が指定ポートになります。そして、残った SW-B の F0/2 が非指定ポート (ブロッキングステート) になります。

  5. SW-A、SW-B で、sh spanning-tree コマンドを実行しなさい。
  6. < SW-A >
    SW-A# sh spanning-tree
    
    VLAN0001
      Spanning tree enabled protocol ieee
      Root ID    Priority    1
                 Address     0024.900c.0000
                 Cost        19
                 Port        2 (FastEthernet0/2)
                 Hello Time   2 sec  Max Age 20 sec  Forward Delay 15 sec
    
      Bridge ID  Priority    32769  (priority 32768 sys-id-ext 1)
                 Address     0024.900a.0000
                 Hello Time   2 sec  Max Age 20 sec  Forward Delay 15 sec
                 Aging Time  15  sec
    
    Interface           Role Sts Cost      Prio.Nbr Type
    ------------------- ---- --- --------- -------- --------------------------------
    Fa0/1               Desg FWD 19        128.1    P2p    ← 指定ポート
    Fa0/2               Root FWD 19        128.2    P2p    ← ルートポート
    
    
    SW-A#
    
    < SW-B >
    SW-B# sh spanning-tree
    
    VLAN0001
      Spanning tree enabled protocol ieee
      Root ID    Priority    1
                 Address     0024.900c.0000
                 Cost        19
                 Port        2 (FastEthernet0/1)
                 Hello Time   2 sec  Max Age 20 sec  Forward Delay 15 sec
    
      Bridge ID  Priority    32769  (priority 32768 sys-id-ext 1)
                 Address     0024.900b.0000
                 Hello Time   2 sec  Max Age 20 sec  Forward Delay 15 sec
                 Aging Time  15  sec
    
    Interface           Role Sts Cost      Prio.Nbr Type
    ------------------- ---- --- --------- -------- --------------------------------
    Fa0/1               Root FWD 19        128.1    P2p    ← ルートポート
    Fa0/2               Altn BLK 19        128.2    P2p    ← 非指定ポート
    
    
    SW-B#
    

  7. SW-C のプライオリティを削除しなさい。
  8. < SW-C >
    SW-C# conf t
    Enter configuration commands, one per line.  End with CNTL/Z.
    SW-C(config)# no spanning-tree vlan 1 priority
    SW-C(config)# ^Z
    SW-C#
    
  9. SW-C で、sh spanning-tree コマンドを実行しなさい。
  10. < SW-C >
    SW-C# sh spanning-tree
    
    VLAN0001
      Spanning tree enabled protocol ieee
      Root ID    Priority    32769
                 Address     0024.900a.0000
                 Cost        19
                 Port        1 (FastEthernet0/1)
                 Hello Time   2 sec  Max Age 20 sec  Forward Delay 15 sec
    
      Bridge ID  Priority    32769  (priority 32768 sys-id-ext 1)
                 Address     0024.900c.0000
                 Hello Time   2 sec  Max Age 20 sec  Forward Delay 15 sec
                 Aging Time  15  sec
    
    Interface           Role Sts Cost      Prio.Nbr Type
    ------------------- ---- --- --------- -------- --------------------------------
    Fa0/1               Root FWD 19        128.1    P2p
    Fa0/2               Altn BLK 19        128.2    P2p
    
    
    SW-C#
    
    プライオリティがデフォルトに戻っています。
    ※ 次の「シナリオ」に続きます。