시스코 스위치 포트의 속도와 duplex 조정하기.
사용 장비: Cisco Catalyst 3550 Switch
모든 포트 속도 자동, duplex 자동으로 설정되어 있으나, 다른 장비와 연결시 duplex가 half 상태로 연결됨.
아래와 같이 fa0/9번의 duplex가 half로 보인다.
Switch>sh int status Port Name Status Vlan Duplex Speed Type Fa0/1 notconnect 1 auto auto 10/100BaseTX ... Fa0/9 connected 1 a-half a-100 10/100BaseTX Fa0/10 notconnect 1 auto auto 10/100BaseTX Fa0/11 notconnect 1 auto auto 10/100BaseTX ... Gi0/1 connected 1 a-full a-1000 1000BaseSX SFP Gi0/2 notconnect 1 auto auto Not Present
9번 포트만 확인해 보면,
Switch#sh int fa0/9 status Port Name Status Vlan Duplex Speed Type Fa0/9 connected 1 a-half a-100 10/100BaseTX
이제 아래와 같이 duplex를 full로 강제 조정한다.
Switch#conf t Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#int fa0/9 Switch(config-if)# witch(config-if)# duplex full Switch(config-if)# *Mar 1 00:54:58.358: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/9, changed state to down *Mar 1 00:54:59.365: %LINK-3-UPDOWN: Interface FastEthernet0/9, changed state to down Switch(config-if)# witch(config-if)#end *Mar 1 00:55:02.519: %LINK-3-UPDOWN: Interface FastEthernet0/9, changed state to up *Mar 1 00:55:03.526: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/9, changed state to upend Switch# *Mar 1 00:55:05.572: %SYS-5-CONFIG_I: Configured from console by consolewr Building configuration... [OK]
다시 상태를 확인해보면 아래와 같이 duplex 상태가 바뀐 것을 볼 수 있다.
Switch#sh int status Port Name Status Vlan Duplex Speed Type ... Fa0/9 connected 1 full a-100 10/100BaseTX ... Gi0/1 connected 1 a-full a-1000 1000BaseSX SFP Gi0/2 notconnect 1 auto auto Not Present
아래는 fastethernet 0/11 포트의 속도와 duplex를 강제로 바꾸는 경우다. 속도를 100Mbps,duplex를 Full로 변경한다.
Switch#conf t Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#int fa0/11 Switch(config-if)#speed 100 Switch(config-if)#duplex full Switch(config-if)#end Switch#
변경후, 스위치의 설정을 확인해 보면 아래처럼 보이게 된다. 자동인 포트와 강제 설정한 포트의 차이도 볼 수 있다.(스위치 모델에 따라, 강제 설정하지 않아도 speed, duplex항목이 fastethernet 0/11 처럼 보일 수도 있다)
Switch#sh running-config Building configuration... ... ! interface FastEthernet0/9 duplex full ! interface FastEthernet0/10 ! interface FastEthernet0/11 speed 100 duplex full ! interface FastEthernet0/12 ! interface FastEthernet0/13 ! ...
Switch#sh running-config Building configuration... ... ! interface FastEthernet0/9 duplex full ! interface FastEthernet0/10 ! interface FastEthernet0/11 speed 100 duplex full ! interface FastEthernet0/12 ! interface FastEthernet0/13 ! ...