Question

Difficulty: MediumRouting Concepts and Dynamic Routing Protocols

A network engineer is configuring a core router that receives routes to the destination network 10.100.20.0/2410.100.20.0/24 from two distinct dynamic routing sources simultaneously:

- An OSPF advertisement with a calculated path metric of 4545
- An Internal EIGRP (iEIGRP) advertisement with a calculated path metric of 2,560,0002,560,000

Which path will the router install into its active IPv4 routing table for the 10.100.20.0/2410.100.20.0/24 network, and what is the primary reason for this selection?

  1. The Internal EIGRP path, because Internal EIGRP has a lower administrative distance (9090) than OSPF (110110).Answer
  2. B
    The OSPF path, because OSPF has a significantly lower metric (4545) than Internal EIGRP (2,560,0002,560,000).
  3. C
    The OSPF path, because link-state protocols take precedence over distance-vector and hybrid protocols in enterprise routing tables.
  4. D
    Both paths will be installed into the routing table to enable equal-cost multi-path (ECMP) load balancing.

Answer

The router installs the Internal EIGRP path because Internal EIGRP has a lower Administrative Distance (90) than OSPF (110). Metric values are protocol-specific and only evaluated after administrative distance comparison.
When a router receives multiple routes for the exact same network prefix from different routing protocols, it compares their Administrative Distance (AD). Internal EIGRP has a lower default AD (90) than OSPF (110). Because lower AD values are preferred, the router selects and installs the Internal EIGRP route into the routing table. Metric values are never directly compared between different dynamic routing protocols.

Step-by-Step Solution

1
Identify the destination prefix and routing sources
Both routing protocols offer a route to the exact same prefix (10.100.20.0/2410.100.20.0/24).
When prefix lengths are equal, the router compares Administrative Distance (AD) to select the trustworthy routing source.
2
Compare Administrative Distance (AD) values of the competing protocols
Internal EIGRP has a default AD of 9090, while OSPF has a default AD of 110110.
Lower AD values indicate higher trustworthiness. Since 90<11090 < 110, Internal EIGRP is selected.
3
Determine why metric comparison is bypassed
Metric values (4545 vs 2,560,0002,560,000) are ignored because metrics cannot be compared across different routing protocols.
Different dynamic routing protocols use incompatible metric formulas (e.g., cost based on bandwidth vs. composite metric based on bandwidth and delay).

Key Concept

Administrative Distance vs. Routing Metric in Path Selection
Rate this question