본문 바로가기
Cisco Switch 시작하기

Cisco Switch Spanning-Tree Protocol MST

by davidfreeforever 2024. 10. 4.

※ 쿠팡 파트너스 활동을 통해 일정액의 수수료를 제공받을 수 있습니다.

Multi Vlan 적용 및 Load Balancing을 위해 사용되는 MST Protocol Configuration에 대해 정리해 보도록 하겠습니다.

Network Configuration
<Network 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

Console Configuration
<SW1 Console Configuration>

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

Console Configuration
<SW2 Console Configuration>
Console Configuration
<SW1 Spanning-Tree Configuration>
Console Configuration
<SW2 Spanning-Tree Configuration>