CDP (Cisco Discovery Protocol)
<개요>
ㆍ 2계층 프로토콜로서 연결된 CISCO 장비 간의 정보를 파악하기 위해
사용되는 CISCO 전용 프로토콜
ㆍ Multicast 주소를 사용해 네이버(Neighbor) 정보 파악
ㆍ 시스코 장비가 아닌 장비는 기본적으로 비활성화 되어있음
ㆍ 같은 시스코 장비끼리 구성정보를 볼 수 있음
ㆍ LLDP(Link Layer Discovery Protocol) : 다른 벤더 사의 장비를 찾음 (표준)
config
cdp run
no cdp run
config t
interface serial 0
cdp enable
no cdp enable
show cdp
show cdp neighbor
show cdp neighbor detail
show cdp entry *
show cdp detail
show cdp trafic
show cdp interface
< show cdp neighbor detail >
* 참고
ㆍ Hold Time
호스트 이름 변경이나 구성 정보를 업데이트 했을 경우
180초까지만 저장하고 더 이상 CDP정보가 오지 않으면
정보를 버림
ㆍ Update Time
60초 마다 자신의 정보를 다른 장비에게 알림
<라우터(Router)>
<!-- R1 기본 셋팅 --!>
R1>enable
R1#configure terminal
R1(config)#interface serial0/0
R1(config-if)#ip address 1.1.1.1 255.255.255.0
R1(config-if)#no shutdown
R1(config-if)#exit
R1(config)#cdp run
<!-- R2 기본 셋팅 --!>
R2>enable
R2#configure terminal
R2(config)#interface serial0/0
R2(config-if)#ip address 1.1.1.2 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#cdp run
<!-- 실습 --!>
show cdp neighbors
show cdp neighbors detail
clear cdp table
<스위치(Switch)>
<!-- R1 기본 셋팅 --!>
R1>enable
R1#configure terminal
R1(config)#interface serial0/0
R1(config-if)#ip address 1.1.1.1 255.255.255.0
R1(config-if)#no shutdown
R1(config-if)#exit
R1(config)#cdp run
<!-- S1 기본 셋팅 --!>
S1>enable
S1#configure terminal
S1(config)#cdp run
<!-- 실습 --!>
show cdp neighbors
show cdp neighbors detail
clear cdp table : cdp테이블 초기화. 기다리면 다시 뜸.