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

Cisco Switch EtherChannel and Spanning Tree Troubleshooting

by davidfreeforever 2024. 10. 2.

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

1. EtherChannel Troubleshooting

Network Configuration
<Network Configuration>

EtherChannel 구성 후, Network가 제대로 동작하지 않을 경우, 아래의 명령어를 사용하여 Troubleshooting을 시작할 수 있습니다.

SW1> enable

SW1#sh ip int brief (-> Physical Link 및 Protocol이 제대로 동작하는 지 확인)

SW1#sh etherchannel summary (-> EtherChannel Configuration이 맞게 설정되었는지 확인)

SW1#sh int po1 etherchannel (-> EtherChannel의 Port의 상태 확인)

Console Configuration
<Console Configuration>

Port-channel의 Information이 (SU)가 아니고 각 Ports의 Information이 (P)가 아니라면 , 양쪽 Switch의 Configuration이 서로 호환되게 설정이 안되어 있을 가능성이 있습니다. Switch Configuration을 확인하여, Mode Option에 맞게 설정되었는지 확인이 필요합니다.

Mode Option
<Mode Option>

2. Spanning Tree Troubleshooting

Redundant Network가 구성되었다면, Spanning Tree Protocol (STP)에 의해 Loop 방지를 위하여 Ports 중 하나가 Blocking 상태가 됩니다. 해당 Ports의 Blocking에 의해 원하는 Host와 통신이 안 된다면, 아래의 명령어를 사용하여 Troubleshooting을 시작할 수 있습니다.

SW1> enable

SW1#sh spanning-tree vlan 1 (-> Root Bridge 확인 및 Port의 Status 확인. vlan 1 대신 해당 Vlan ID를 입력합니다.)

Console View
<SW1이 현재 Root Bridge임을 확인>

Communication Path를 확인하여, 다른 Switch를 Root Bridge로 변경하면 Blocking된 Port가 Forwading 상태로 변경되어 원하는 Host와의 통신이 이루어 질 수 있습니다.

SW2>enable

SW2#sh spanning-tree vlan 1

SW2#conf t

SW2(config)#spanning-tree vlan 1 root primary (-> 해당 Vlan ID를 입력하여, 현재 Switch를 Root Bridge로 변경)

Console Configuration
<SW2로 Root Bridge 변경>