Network 11. Etherchannel

2024. 3. 14. 18:15Network

보안에서는 이중화가 중요한 요소중 하나이다.

그런데 스위치의 포트를 이중화 하면 몇개를 연결하던지

포트가 하나만 언블로킹 된다.

 

이유는 이전 시간에 말했던 것 처럼

링구조가 되기 때문에 루핑구조를 피하기 위해 블로킹 되는 것이다.

 

 

그래서 스위치 포트에서 이중화를 구현하기 위해선

이더채널 명령어를 사용해주어야 한다.

왼쪽 스위치

Switch>en
Switch#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#int ra
Switch(config)#int range f0/1-2
Switch(config-if-range)#switchport mode trunk 

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/2, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/2, changed state to up

Switch(config-if-range)#channel-group 1 mode on
Creating a port-channel interface Port-channel 1

%LINK-5-CHANGED: Interface Port-channel1, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface Port-channel1, changed state to up


오른쪽 스위치

Switch>en
Switch#conf t 
Switch(config)#int range  f0/1-2
Switch(config-if-range)#switchport mode trunk 

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up

Switch(config-if-range)#channel-group 1 mode on 
Creating a port-channel interface Port-channel 1

%LINK-5-CHANGED: Interface Port-channel1, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface Port-channel1, changed state to up

 

설정후 시간이 지나면 위처럼 모든 포트가 언블로킹 되어있고 통신도 잘 작동하는 것을 볼 수 있다!

 

 

Switch(config-if-range)#channel-group 1 mode ?
  active     Enable LACP unconditionally
  auto       Enable PAgP only if a PAgP device is detected
  desirable  Enable PAgP unconditionally
  on         Enable Etherchannel only
  passive    Enable LACP only if a LACP device is detected

이더 채널의 옵션엔 5가지가 존재하는데

 

  active  LACP (국제 표준 프로토콜)
  auto       PAgP(시스코 전용 프토로콜)
  desirable     PAgP(시스코 전용 프토로콜)      
  passive    LACP (국제 표준 프로토콜)    

on                                              

 

passive와 auto는

수동 모드고

active와 desirable은

능동모드다.

 

능동 모드만 연결을 위한 패킷을 전송하기에

양쪽 포트의 모드가

능동 - 수동

수동 - 능동

능동 - 능동

위 세가지면 통신이 가능해지지만

 

수동 - 수동은

이더채널이 작동하지 않으니 주의하자

 

마지막으로

on은 관리자가 설정해주면 자동으로 포트가 잡히게 된다.

 

 

 

 

부하 분산이나 가용성에 중요한 것이니 기억해두자

 

 

 

'Network' 카테고리의 다른 글

Network 13. Routing protocol  (0) 2024.03.18
Network 12. Access Control List  (0) 2024.03.17
Network 10. Spanning-Tree Protocol  (0) 2024.02.25
Network 9. NAT, PAT  (0) 2024.02.13
Network 8. Port Security  (0) 2024.02.13