※ 쿠팡 파트너스 활동을 통해 일정액의 수수료를 제공받을 수 있습니다.
Multi Vlan 적용 및 Load Balancing을 위해 사용되는 MST Protocol Configuration에 대해 정리해 보도록 하겠습니다.
SW1> enable
SW1#conf t
SW1(config)#spanning-tree mst configuration
SW1(config-mst)#name MST1 (-> 원하는 이름으로 지정하면 됩니다.)
SW1(config-mst)#revision 1 (-> Revision History 관리를 위해 0부터 지정할 수 있습니다.)
SW1(config-mst)#instance 1 vlan 11-20 (-> 첫 번째 MST Group으로 필요한 Vlan ID 또는 Range를 입력합니다. 아래에서 instance 1이 mst 1과 같습니다.)
SW1(config-mst)#instance 2 vlan 21-30 (-> 두 번째 MST Group으로 필요한 Vlan ID 또는 Range를 입력합니다. 아래에서 instance 2는 mst 2와 같습니다.)
SW1(config-mst)#exit
SW1(config)#spanning-tree mst 0-1 root primary (-> 첫 번째 MST Group의 Root Bridge로 SW1을 지정하였습니다. SW2를 Root Bridge로 지정하려면 SW2에서 해당 명령어를 입력하면 됩니다. Best Practice에 따라 Default MST Group인 mst 0을 함께 Root Bridge로 지정하였습니다.)
SW1(config)#spanning-tree mst 2 root secondary (-> Load Balancing을 위해 두 번째 MST Group의 Secondary Root Bridge로 SW1을 지정하였습니다.)
SW1(config)#spanning-tree mode mst (-> Spanning-tree Protocol로 MST를 지정)
SW1(config)#exit
SW1#wr
SW2> enable
SW2#conf t
SW2(config)#spanning-tree mst configuration
SW2(config-mst)#name MST1 (-> SW1과 동일한 이름으로 지정하면 됩니다.)
SW2(config-mst)#revision 1
SW2(config-mst)#instance 1 vlan 11-20 (-> SW1과 동일한 Vlan ID 또는 Range를 입력합니다.)
SW2(config-mst)#instance 2 vlan 21-30 (-> SW1과 동일한 Vlan ID 또는 Range를 입력합니다. )
SW2(config-mst)#exit
SW2(config)#spanning-tree mst 2 root primary (-> 두 번째 MST Group의 Root Bridge로 SW2를 지정하였습니다. )
SW2(config)#spanning-tree mst 0-1 root secondary (-> Load Balancing을 위해 첫 번째 MST Group의 Secondary Root Bridge로 SW2를 지정하였습니다.)
SW2(config)#spanning-tree mode mst
SW2(config)#exit
SW2#wr
'Cisco Switch 시작하기' 카테고리의 다른 글
Cisco Switch Terminal User's Tip (0) | 2024.10.03 |
---|---|
Cisco Switch EtherChannel and Spanning Tree Troubleshooting (0) | 2024.10.02 |
Cisco Switch Access Restriction and Log Timestamp (0) | 2024.10.01 |
Cisco Switch Firmware Update (2) | 2024.09.30 |
Cisco Switch FTP Server for Firmware Update (0) | 2024.09.29 |