Yêu cầu:
Gợi ý:
1a: Dùng lệnh sau để cấu hình Root Bridge cho VLAN 1 với priority là 4096:
Switch(config)# spanning-tree vlan 1 priority 4096
Hoặc:
Switch(config)# spanning-tree vlan 10 root primary
Cấu hình các Switch như sau:
SW1(config)# spanning-tree vlan 1 priority 4096
SW2(config)# spanning-tree vlan 1 priority 8192
SW3(config)# spanning-tree vlan 1 priority 28672
SW4(config)# spanning-tree vlan 1 priority 36864
1b: Dựa vào phần lý thuyết đã học của STP để xác định RB, RP, DP, NDP
1c: Cấu hình F0/8(SW2) là RP: sửa cost trên interface F0/6(SW2) thành 39:
SW2(config)# int f0/6
SW2(config-if)# spanning-tree vlan 1 cost 39
Cấu hình F0/7(SW3) là RP: sửa port-priority của F0/6(SW1) < port-priority của F0/5(SW1):
SW1(config)# int f0/6
SW1(config-if)# spanning-tree vlan 1 port-priority 0
Cấu hình F0/7(SW4) là RP: sau khi đã cấu hình xong RP của SW1 và SW2 mặc định F0/7(SW4) sẽ là RP (tại sao?).
1d: Dựa vào phần lý thuyết đã học của STP để xác định RB, RP, DP, NDP
2a: Cấu hình port-fast trên F0/23 – 24 (SW3,SW4)
SW3(config)# interface range f0/23 – 24
SW3(config-if-range)# spanning-tree portfast
SW4(config)# interface range f0/23 – 24
SW4(config-if-range)# spanning-tree portfast
2b: Cấu hình uplinkfast trên SW4 chú ý điểm sau, không được sửa Bridge ID của SW4, do đó phải cấu hình lại BID của SW4 về lại default:
SW4(config)# no spanning-tree vlan 1 priority 36864
SW4(config)# spanning-tree uplinkfast
2c: Cấu hình backbonefast trên 4 SW với lệnh sau:
SW1(config)# spanning-tree backbonefast
SW2(config)# spanning-tree backbonefast
SW3(config)# spanning-tree backbonefast
SW4(config)# spanning-tree backbonefast
Cấu hình đầy đủ:
SW1:
!
configure terminal
!
spanning-tree vlan 1 priority 4096
!
interface fastEthernet0/6
spanning-tree vlan 1 port-priority 0
!
spanning-tree backbonefast
!
end
SW2:
!
configure terminal
!
spanning-tree vlan 1 priority 8192
!
interface fastEthernet0/6
spanning-tree vlan 1 cost 39
!
spanning-tree backbonefast
!
end
SW3:
!
configure terminal
!
spanning-tree vlan 1 priority 28672
!
interface range fastEthernet0/23 – 24
spanning-tree portfast
!
spanning-tree backbonefast
!
end
SW4:
!
configure terminal
!
spanning-tree vlan 1 priority 36864
!
interface range fastEthernet0/23 – 24
spanning-tree portfast
!
no spanning-tree vlan 1 priority 36864
!
spanning-tree uplinkfast
!
spanning-tree backbonefast
!
end
!Kiem tra
# show spanning-tree
# show spanning-tree uplinkfast
# show spanning-tree backbonefast
# debug spanning-tree events