반응형
AD (Administrative Distance)
- 2개 이상의 라우팅 프로토콜을 사용할 때, 우선적으로 경로를 적용하는 우선순위는 AD 값으로 판단한다.
Route Source | Default Distance |
Connected interface | 0 |
Static route out an interface | 0 |
Static route to a next hop | 1 |
EIGRP summary route | 5 |
External BGP | 20 |
Internal EIGRP | 90 |
IGRP | 100 |
OSPF | 110 |
IS-IS | 115 |
RIPv1, v2 | 120 |
EGP | 140 |
External EIGRP | 170 |
Internal BGP | 200 |
Unknown | 255 |
반응형
* Connected interface : 라우터가 직접 가지고 있는 인터페이스
ex) ethernet0, serial0/1
* Static route out an interface : 자신의 인터페이스 지정
ex) ip route 150.150.0.0 255.255.0.0 serial2/1
* Static route to a next hop
ex) ip route 150.150.0.0 255.255.0.0
AD 값이 작을수록 신뢰도가 높다.
- show ip protocol 명령어로 프로토콜에 대한 디스턴스 값을 확인할 수 있다.
반응형