Administrative Distance Explained in Routing

x32x01
  • by x32x01 ||
In networking, routers sometimes receive the same route from multiple routing protocols.
And when that happens…
the router must make an important decision: "Which source should I trust more?" 🤔
This is exactly where Administrative Distance (AD) becomes important.

What Is Administrative Distance (AD)? 💡​

Administrative Distance (AD) is a value used by routers to measure how trustworthy a route source is.
Simple rule:
Lower AD = Higher Trust
Higher AD = Lower Trust
Think of AD like a trust score for routing information.
The router compares route sources and chooses the one with the lowest Administrative Distance.



Understanding Administrative Distance Values 📊​

Basic concept:
🔥 AD = 0 → Highest Trust
🚫 AD = 255 → Route Rejected
The closer the value is to 0, the more confident the router is in that route source.



Connected Route - AD = 0 🟢​

Connected routes have the highest priority.
Why?
Because the network is directly attached to the router.
No routing protocol is involved.
The router sees the connection itself.

Example:
If a router interface has an IP address configured:
Code:
interface GigabitEthernet0/0
 ip address 192.168.1.1 255.255.255.0
That network becomes a Connected Route automatically.
Connected routes are considered the most reliable.



Static Route - AD = 1 🔵​

A Static Route is manually configured by the network administrator.
Because an engineer explicitly defined the path, routers trust it very highly.

Example:
Code:
ip route 10.10.10.0 255.255.255.0 192.168.1.254
Static routes are commonly used for:
  • Backup paths
  • Small networks
  • Predictable traffic routes
  • Default gateways
They usually win against most dynamic routing protocols.



EIGRP Internal - AD = 90 🟣​

EIGRP Internal Routes have an AD value of 90.
EIGRP is known for:
✅ Fast convergence
✅ Efficient routing decisions
✅ Strong performance in enterprise environments​
Internal routes are considered more trustworthy than external EIGRP routes.



OSPF - AD = 110 🟠​

OSPF (Open Shortest Path First) is one of the most widely used enterprise routing protocols.
Features include:
✅ Open standard protocol
✅ Uses the SPF Algorithm
✅ Excellent scalability
✅ Popular in enterprise environments​

Example OSPF configuration:
Code:
router ospf 1
 network 192.168.1.0 0.0.0.255 area 0
Its default Administrative Distance = 110.



IS-IS - AD = 115 🟡​

IS-IS is another powerful routing protocol.
You will often find it in:
  • ISP environments
  • Carrier networks
  • Large-scale service provider infrastructure
Advantages:
✅ Stable
✅ Scalable
✅ High-performance routing​
Default AD: 115



RIP - AD = 120 🔴​

RIP (Routing Information Protocol) is one of the oldest routing protocols.
Characteristics:
❌ Slower convergence
❌ Limited scalability
❌ Maximum Hop Count = 15​
Because of these limitations, RIP is rarely used in modern enterprise networks.

Example:
Code:
router rip
version 2
network 192.168.1.0
Default AD: 120



EIGRP External - AD = 170 🟤​

External EIGRP routes come from outside the original EIGRP autonomous system.
Because they originate externally, routers assign them a higher Administrative Distance.
Default value: 170
This makes them less trusted than EIGRP Internal Routes.



BGP - AD = 200 ⚫🌍​

BGP (Border Gateway Protocol) is the protocol that powers the internet.
Seriously.
It handles routing between:
  • ISPs
  • Countries
  • Large organizations
  • Internet backbone networks
BGP is critical for global connectivity.
Yet its default AD is: 200
Why?
Because BGP primarily deals with external routing information.



Unknown Routes - AD = 255 ❌​

When AD reaches 255: the router completely rejects the route.
Result: 🚫 The route will never enter the routing table.



How Does the Router Choose? 🧠​

Imagine the router learns the same network from two protocols:
OSPF → AD 110​
RIP → AD 120​
Which one wins?

OSPF
Because: Lower Administrative Distance = Higher Trust
The router always prefers the route source with the smaller AD value.



Administrative Distance Quick Reference Table 📋​

Route SourceDefault AD
Connected0
Static Route1
EIGRP Internal90
OSPF110
IS-IS115
RIP120
EIGRP External170
BGP200
Unknown255

Why Administrative Distance Matters in Real Networks 🚀​

Understanding AD is essential for:
✅ Network Troubleshooting
✅ Route Selection Analysis
✅ Multi-Protocol Environments
✅ Backup Route Design
✅ Enterprise Routing Management​
Without understanding Administrative Distance, routing behavior can look confusing very quickly.



Final Thoughts 🔥​

Administrative Distance is basically the router’s way of asking: "Which routing source do I trust the most?"
The rule is simple: Lower Number = Higher Trust

Understanding AD helps network engineers predict:
  • Which routes win
  • Why routers make certain decisions
  • How routing protocols interact inside real infrastructures
Because in networking…
routing is not only about finding paths - it's about deciding which information deserves trust. 🌐⚡
 
Related Threads
x32x01
Replies
0
Views
83
x32x01
x32x01
x32x01
Replies
0
Views
2K
x32x01
x32x01
x32x01
Replies
0
Views
72
x32x01
x32x01
x32x01
Replies
0
Views
82
x32x01
x32x01
x32x01
  • x32x01
Replies
0
Views
36
x32x01
x32x01
Register & Login Faster
Forgot your password?
Forum Statistics
Threads
920
Messages
927
Members
75
Latest Member
Cripto_Card_Ova
Back
Top