A core router receives a packet destined for . The router's Routing Information Base (RIB) contains four distinct candidate routes for reaching this destination network:
- A static route to configured with an administrative distance of .
- An OSPF route to with an administrative distance of and metric of .
- An EIGRP internal route to with an administrative distance of and metric of .
- A RIPv2 route to with an administrative distance of and metric of .
Which route will the router install into its active forwarding table to handle traffic destined for ?
- The EIGRP internal route because it possesses the lowest administrative distance value among all candidate routes.Answer
- BThe RIPv2 route because its hop-count metric of 2 represents the lowest numerical metric among the dynamic routing protocols.
- CThe static route because administrator-configured static routes always take precedence over dynamic protocols regardless of AD values.
- DThe OSPF route because link-state protocols are prioritised over distance-vector protocols at Layer 3.
Answer
The router will select the EIGRP internal route because it has the lowest administrative distance () among all routes advertising the exact same prefix mask length ().
When a router receives multiple routing updates for the exact same destination network prefix (), it uses Administrative Distance (AD) to evaluate which protocol source is most trustworthy. EIGRP internal routes have a default AD of , which is lower (and thus preferred) over OSPF (), RIPv2 (), and the explicitly configured static route ().
Step-by-Step Solution
Key Concept
Administrative Distance Precedence in Route Selection