EIGRP Summary Route with AD 5
Hi
I am not so clear why EIGRP summary route has AD 5 and How it's affecting the routing table when you have more specific route for that summary?????
Regards,
Notun
I am not so clear why EIGRP summary route has AD 5 and How it's affecting the routing table when you have more specific route for that summary?????
Regards,
Notun
===============
Currently working on 642-902 ROUTE
CCNP_ROUTE_642-902_Official_Certification_Guide(80%)
GNS3 LAB: (50%)
CBT_Nuggets: (80%)
Routing TCPIP, Volume I and II (0%)
642-902_Foundation_Learning_Guide (0%)
Currently working on 642-902 ROUTE
CCNP_ROUTE_642-902_Official_Certification_Guide(80%)
GNS3 LAB: (50%)
CBT_Nuggets: (80%)
Routing TCPIP, Volume I and II (0%)
642-902_Foundation_Learning_Guide (0%)
Comments
-
Daniel333 Member Posts: 2,077 ■■■■■■□□□□Well, more specific is always going to win out. No matter the AD.
If there is a route to 192.168.0.0/16 coming from a few different routing protocols it's going to choose the lowest AD of the options it has.
But if you get 192.168.1.1/24 even if it's from RIP over a 64k link its going to choose that over any less specific address, even if it's a 10gig link from EIGRP or anything.
I think that is what you are asking?-Daniel -
notun1 Member Posts: 51 ■■□□□□□□□□Well, more specific is always going to win out. No matter the AD.If there is a route to 192.168.0.0/16 coming from a few different routing protocols it's going to choose the lowest AD of the options it has.
That's Ok. My question is how the AD 5 affecting the routing table if I am only using EIGRP as I know AD is Locally significant. I mean what is the use of AD 5 in a EIGRP summary route ?===============
Currently working on 642-902 ROUTE
CCNP_ROUTE_642-902_Official_Certification_Guide(80%)
GNS3 LAB: (50%)
CBT_Nuggets: (80%)
Routing TCPIP, Volume I and II (0%)
642-902_Foundation_Learning_Guide (0%) -
Monkerz Member Posts: 842That's Ok. My question is how the AD 5 affecting the routing table if I am only using EIGRP as I know AD is Locally significant. I mean what is the use of AD 5 in a EIGRP summary route ?
The administrative distance metric (AD 5) is used to advertise a summary without installing it in the routing table.
In the end, the AD of 5 is a loop prevention mechanism thought up by Cisco. My best guess is with the AD of 5, rouge summary routes learned dynamically with the same prefix will not cause loops for the router will look at AD and the traffic will be toss at Null0. No other protocol as an AD lower than 5. -
notun1 Member Posts: 51 ■■□□□□□□□□The administrative distance metric (AD 5) is used to advertise a summary without installing it in the routing table.
In the end, the AD of 5 is a loop prevention mechanism thought up by Cisco. My best guess is with the AD of 5, rouge summary routes learned dynamically with the same prefix will not cause loops for the router will look at AD and the traffic will be toss at Null0. No other protocol as an AD lower than 5.
Yes..I got it.Thanks..===============
Currently working on 642-902 ROUTE
CCNP_ROUTE_642-902_Official_Certification_Guide(80%)
GNS3 LAB: (50%)
CBT_Nuggets: (80%)
Routing TCPIP, Volume I and II (0%)
642-902_Foundation_Learning_Guide (0%) -
isendel Registered Users Posts: 2 ■□□□□□□□□□The administrative distance metric (AD 5) is used to advertise a summary without installing it in the routing table.
In the end, the AD of 5 is a loop prevention mechanism thought up by Cisco. My best guess is with the AD of 5, rouge summary routes learned dynamically with the same prefix will not cause loops for the router will look at AD and the traffic will be toss at Null0. No other protocol as an AD lower than 5.
The AD is not a loop prevention mechanism thought by Cisco. AD represents how "believable" the prefix is compared to others like OSPF (default AD 110) or statically configured routes (AD1) or learned through a redistribution from an EIGRP AS (AD170 by default). By having a value of AD the routing table selects the best AD (lowest) and installs it in the routing table if no other "more specific route" to that network exists. If a more specific route to a network exist than that route will be preferable regardless of the AD it may have. I hope if was not too confusing.