◈ Errdisable Detect Command
Switch(config)#errdisable detect cause all
모든 옵션 포함
Switch(config)#errdisable detect cause bpduguard
STP portfast 설정 포트에서 BPDU프레임 수신 시
Switch(config)#errdisable detect cause dtp-flap
스위치를 트렁크로 연결했을 경우 트렁크는 엑세스 링크와 달리 모든 VLAN트래픽들을 실어나르기 때문에 어떤 VLAN,
에 속하는지 표시해 주는 헤더가 필요하다. 이것은 두 스위치가 사용하는 인캡슐레이션 방법이 다를경우 발생.
Switch(config)#errdisable detect cause link-flap
링크가 업/다운 반복할시 발생.
Switch(config)#errdisable detect cause pagp-flap
스위치간의 패스트 이더넷 연결이나 기가비트 이더넷 연결을 8개까지 묶을수 있는데 묶음 조건
(예를 들어 한쪽은 하프 듀플렉스, 반대쪽은 풀로 한 경우)을 만족 못한 경우
Switch(config)#errdisable detect cause rootguard
STP프로토콜의 루트 역할을 하는 스위치에 루트 스위치로부터 BPDU프레임이 도착한 경우
Switch(config)#errdisable detect cause udld
STP프로토콜이 동작하기 위해 양방향 BPDU프레임교환이 필요한 스위치 연결에서
단방향 연결만 가능하여 STP프로토콜이 제대로 동작할 수 없는 경우.
◈ 복구 명령
- 해당 Port에서 no shutdown
◈ 자동 복구
- Switch(config)#errdisable recovery cause all (all대신 하나씩 사용가능)
- 자동 복구는 Default 300초 후에 복구되며, 이 시간을 변경하고자 할 때에는
Switch(config)#errdisable recovery interval [30-86,400]
으로 설정 가능. 초 단위
예제 >
Feb 13 09:30:36: %PM-4-ERR_DISABLE: storm-control error detected on Fa0/15, putting Fa0/15 in err-disable state Feb 13 09:30:36: %STORM_CONTROL-3-SHUTDOWN: A packet storm was detected on Fa0/15. The interface has been disabled. Feb 13 09:30:37: %PM-4-ERR_DISABLE: storm-control error detected on Fa0/2, putting Fa0/2 in err-disable state Feb 13 09:30:37: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/15, changed state to down Feb 13 09:30:38: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/2, changed state to down Feb 13 09:30:38: %LINK-3-UPDOWN: Interface FastEthernet0/15, changed state to down Feb 13 09:30:39: %LINK-3-UPDOWN: Interface FastEthernet0/2, changed state to down
switch# sh int status
Port Name Status Vlan Duplex Speed Type Fa0/1 connected 1 a-full a-100 10/100BaseTX Fa0/2 err-disabled 1 auto auto 10/100BaseTX .... 중략 ... Fa0/15 err-disabled 1 auto auto 10/100BaseTX ....후략 .... Gi0/2 notconnect 1 auto auto Not Present Switch# sh errdisable recovery ErrDisable Reason Timer Status ----------------- -------------- arp-inspection Enabled bpduguard Enabled channel-misconfig (STP) Enabled dhcp-rate-limit Enabled dtp-flap Enabled gbic-invalid Enabled inline-power Enabled link-flap Enabled mac-limit Enabled loopback Enabled pagp-flap Enabled port-mode-failure Enabled pppoe-ia-rate-limit Enabled psecure-violation Enabled security-violation Enabled sfp-config-mismatch Enabled small-frame Enabled storm-control Enabled udld Enabled vmps Enabled
Timer interval: 300 seconds
Interfaces that will be enabled at the next timeout:
Interface Errdisable reason Time left(sec) --------- ----------------- -------------- Fa0/2 storm-control 136 Fa0/15 storm-control 136
Feb 13 09:34:34: %ILPOWER-7-DETECT: Interface Fa0/2: Power Device detected: IEEE PD Feb 13 09:34:35: %ILPOWER-5-POWER_GRANTED: Interface Fa0/2: Power granted Feb 13 09:34:39: %ILPOWER-7-DETECT: Interface Fa0/15: Power Device detected: IEEE PD Feb 13 09:34:40: %SYS-5-CONFIG_I: Configured from console by vty1 (10.149.16.25) Feb 13 09:34:40: %ILPOWER-5-POWER_GRANTED: Interface Fa0/15: Power granted Feb 13 09:34:41: %LINK-3-UPDOWN: Interface FastEthernet0/2, changed state to up Feb 13 09:34:42: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/2, changed state to up Feb 13 09:34:46: %LINK-3-UPDOWN: Interface FastEthernet0/15, changed state to up Feb 13 09:34:47: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/15, changed state to up |