위의 화면은
Host# show interfaces status
명령어를 통해 확인을 할 수 있으며
Status는 주로 3가지로 나온다.
- connected
- 정상적인 연결된 상태
- notconnect
- 케이블이 연결되어 있지 않음
- disabled
- shutdown된 상태
- err-disabled
- 에러나 일정 정책에 의해 down된 상태
- shutdown과 같이 포트가 down 되어 있으나 shutdown과는 다르다.
그리고
#show interfaces fa0/0
을 통해 자세한 정보를 볼 수 있다.
Router#show interfaces fa0/0
FastEthernet0/0 is administratively down, line protocol is down // 포트의 상태
Hardware is AmdFE, address is cc00.0d34.0000 (bia cc00.0d34.0000)
MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec, // 포트의 정보
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Full-duplex, 100Mb/s, 100BaseTX/FX
ARP type: ARPA, ARP Timeout 04:00:00
Last input never, output never, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 0 bits/sec, 0 packets/sec //5분간 입력 평군
5 minute output rate 0 bits/sec, 0 packets/sec //5분간 출력 평균
0 packets input, 0 bytes //입력(input) 패킷 정보
Received 0 broadcasts, 0 runts, 0 giants, 0 throttles
0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
0 watchdog
0 input packets with dribble condition detected
21 packets output, 7956 bytes, 0 underruns //출력(output) 패킷 정보
0 output errors, 0 collisions, 0 interface resets
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out
Router#
Interface Link Speed에 대해서 간단하게 알아 보면
auto 로 설정시에는 자동으로 높은 속도로 설정하게 된다.
그리고 한쪽이 낮고, 한쪽이 auto라면 자동으로 속도를 맞추게 된다.
Interface Duplex Mode
이번에는 Duplex 모드에 대한 부분이다.
Half는 말 그대로 송신/수신을 분할한 것으로, 동시에 송신을 하려 한다면 충돌(Collision)이 발생 될것이다.
Full은 말 그대로 양측에서 서로 송신과 수신을 한다는 것이다.
대부분 Auto로 설정한다면 양쪽 모두 Full 로 동작하게 된다.
하지만 PC에서 Full Duplex 를 사용하고, 스위치에서는 Auto를 사용한다면
이와 같이 Duplex Mismatch 상황이 일어날 것이다.
아무튼 정리하면 인터페이스에서 아래와 같이 설정할 수 있다.
Router(config)#int fa0/0
Router(config-if)#spe
Router(config-if)#speed
Router(config-if)#speed ?
10 Force 10 Mbps operation
100 Force 100 Mbps operation
auto Enable AUTO speed configuration
Router(config-if)#speed auto
Router(config-if)#dupl
Router(config-if)#duplex ?
auto Enable AUTO duplex configuration
full Force full duplex operation
half Force half-duplex operation
Router(config-if)#duplex auto
Router(config-if)#
위에서 말한대로 Packet Tracer에서 PC의 랜카드를 Full Duplex로 하고, Switch에서는 auto로 두면 둘은 통신이 불가능해진다.
Duplex Mismatch 때문에 그렇게 되는 것이다.
ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ영상 첨부
#show power inline 을 통해서 스위치의 사용 전력을 확인해 볼 수 있다.
power inline {auto | never}
power inline {consumption mw | static max mw}
#show interfaces status err-disabled
명령을 사용하면 위에서 show interfaces status에서 err-disabled된 포트의 상태와 이유를 알 수 있다.
혹은
#show errdisable detect
#show errdisable recovery
를 사용하여 현재 사용하고 있는 정책에 대해서 enable되어 있는지 disable 되어 있는지 확인이 가능하다.
이 부분은 다음에 자세히 다뤄보도록 하겠습니다.