본문 바로가기

CCNA 기초

CCNA 기초 - L2 이더 채널 설정 및 확인


이더 채널 설정

- 물리적인 복수개의 포트를 하나의 논리적인 포트로 동작시킨다.(Bundle)
- 최대 8개까지 구성이 가능하며 대역폭을 보장하기 위한 기술이다.


이더 채널 설정 조건
- 같은 Speed and Duplex 사용
- Fastethernet = Fastethernet , Gigabitethernet=Gigabitethernet
- 같은 협상 프로토콜 사용 (PAgP=
PAgP, LACP=LACP)
- 같은 포트 상태 (Trunk=Trunk, Access=Access)


------------------------------------------------------------------------------------------------------------------

이더 채널 협상 프로토콜

1-1. PAgP (Port Aggregation Protocol)
- Cisco 전용
- 인터페이스 들간의 패킷을 교환함으로써 이더채널 자동 생성


1-2. 지원 모드
- on : PAgP 교환없이 이더 채널로 동작하게 함
- Auto : PAgP를 수신만 가능, PAgp를 받으면 채널 생성, 받지 못하면 무시한다.
- Desirable : PAgp를 동적으로 적극적으로 교환


 Switch A
 Switch B
 채널상태
 on  on  Channel
 Auto  Desirable  Channel
 Desirable  Auto  Channel
 Desirable  Desirable  Channel

2-1. LACP (Link Aggregation Control Protocol)
- IEEE 802.3ad
- 하드웨어에 의해 허용된 최대 채널을 설정(8개)


2-2. 지원모드
- on : LACP 교환없이 이더 채널로 동작하게 함
- off : 채널 구성을 하지 않음
- Passive : LACP를 수신만 가능,
LACP를 받으면 채널 생성, 받지 못하면 무시한다.
- Active : LACP를 동적으로 적극적으로 교환

 Switch A
 Switch B
 채널상태
 on  on  Channel
 Passive  Active  Channel
 Active  Passive  Channel
 Active  Active  Channel

------------------------------------------------------------------------------------------------------------------

L2 이더 채널 설정
  
Switch#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#int ra fa 0/23 - 24
- 0번 슬롯의 23번, 24번 포트를 이더 채널로 묶어줌준다.

Switch(config-if-range)#shutdown


07:04:11: %LINK-5-CHANGED: Interface FastEthernet0/23, changed state to administratively down
07:04:11: %LINK-5-CHANGED: Interface FastEthernet0/24, changed state to administratively down
- 동작 중지

Switch(config-if-range)#channel-group 1 mode desirable
Switch(config-if-range)#switchport trunk enc isl
% Invalid input detected at '^' marker.
- C2950 에서는 isl 명령어를 지원하지 않는다.

Switch(config-if-range)#switchport mode trunk
Switch(config-if-range)#no shutdown
- 동작 재 시작

Switch(config-if-range)#end

07:06:51: %LINK-3-UPDOWN: Interface FastEthernet0/23, changed state to down
07:06:51: %LINK-3-UPDOWN: Interface FastEthernet0/24, changed state to down
07:06:53: %SYS-5-CONFIG_I: Configured from console by console

Switch#show run

!
interface Port-channel1
 flowcontrol send off
!

!        
interface FastEthernet0/23
 switchport mode trunk
 channel-group 1 mode desirable
!
interface FastEthernet0/24
 switchport mode trunk
 channel-group 1 mode desirable
!
Switch#
07:07:30: %LINK-3-UPDOWN: Interface FastEthernet0/23, changed state to up
07:07:30: %LINK-3-UPDOWN: Interface FastEthernet0/24, changed state to up

07:07:34: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/23, changed state to up
07:07:34: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/24, changed state to up

07:07:35: %LINK-3-UPDOWN: Interface Port-channel1, changed state to up
07:07:36: %LINEPROTO-5-UPDOWN: Line protocol on Interface Port-channel1, changed state to up
- 양쪽 Switch에서 모두 설정이 끝나면 state to up 으로 바뀐다.
         
Switch#show run
!
interface Port-channel1
 switchport mode trunk
 flowcontrol send off
!

!
interface FastEthernet0/23
 switchport mode trunk
 channel-group 1 mode desirable
!
interface FastEthernet0/24
 switchport mode trunk
 channel-group 1 mode desirable
!

------------------------------------------------------------------------------------------------------------------

L2 이더 채널 동작 확인

1. 트렁크 L2 이더 채널 동작 확인

Switch#show interfaces port-channel 1 switchport
Name: Po1
Switchport: Enabled
Administrative Mode: trunk
Operational Mode: trunk
Administrative Trunking Encapsulation: dot1q
Operational Trunking Encapsulation: dot1q
Negotiation of Trunking: On
Access Mode VLAN: 1 (default)
Trunking Native Mode VLAN: 1 (default)

2. Access L2 이더 채널 동작 확인

Switch#show interfaces port-channel 1 switchport
Name: Po1
Switchport: Enabled
Administrative Mode: dynamic desirable
Operational Mode: static access
Administrative Trunking Encapsulation: dot1q
Operational Trunking Encapsulation: native
Negotiation of Trunking: On
Access Mode VLAN: 1 (default)
Trunking Native Mode VLAN: 1 (default)

3.

Switch#show etherchannel summary
Flags:  D - down        P - in port-channel
        I - stand-alone s - suspended
        H - Hot-standby (LACP only)
        R - Layer3      S - Layer2
        u - unsuitable for bundling
        U - in use      f - failed to allocate aggregator
        d - default port

Number of channel-groups in use: 1
Number of aggregators:           1

Group  Port-channel    Protocol     Ports
------+-------------+-----------+-----------------------------------------------
1       Po1(SU)        PAgP      Fa0/23(P)   Fa0/24(Pd) 
Switch#

------------------------------------------------------------------------------------------------------------------

'CCNA 기초' 카테고리의 다른 글

IP Routing - Static routing & router0, 1  (0) 2008.12.01
VTP 설정하기  (0) 2008.12.01
VLAN과 Trunk 기본 설정  (0) 2008.12.01
CCNA 기초 - VLAN (Virtual LAN)  (0) 2008.11.30
CCNA 기초 - Switch 기본설정  (0) 2008.11.28
CCNA 기초 - 라우터 기본설정 - 3  (0) 2008.11.27