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

Cisco Switch Port EtherChannel Configuration

by davidfreeforever 2024. 9. 27.

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

Firewall 등과 Redundant 구성을 할 경우, ARP Request Collision과 같은 Warning이 발생하는 경우가 있습니다.

그럴 경우, 해결책 중의 하나는 충돌이 발생하는 2개의 Port를 EtherChannel로 구성하여 1개의 Logical Port로 구성하여 해결할 수 있습니다.

 1. EtherChannel Configuration. 

Switch>en
Switch#conf t
Switch(config)#int range g0/1,g1/1 (-> 충돌이 발생하는 2개의 Port를 입력하시면 됩니다.)
Switch(config-if-range)#switchport mode access
Switch(config-if-range)#switchport access vlan 10 (-> 원하는 VLAN ID를 입력하시면 됩니다.)

Switch(config-if-range)#no shut
Switch(config-if-range)#channel-group 1 mode on (->원하는 Channel Group 번호를 입력하시면 됩니다.)
Switch(config-if-range)#exit
Switch(config)#int port-channel 1 (-> 생성한 Channel Group 번호를 입력하시면 됩니다.)
Switch(config-if)#no shut
Switch(config-if)#end
Switch#wr

Console Configuration
<Console Configuraton>

 

Running Configuration
<Show Running Configuration>