Question

Difficulty: HardRouting Concepts and Dynamic Routing Protocols

An enterprise edge router receives advertisements for the destination prefix 10.20.0.0/1610.20.0.0/16 from three distinct routing sources: an eBGP session (Administrative Distance 2020), an OSPF area (Administrative Distance 110110), and a floating static route configured with an Administrative Distance of 130130. Currently, the router installs the eBGP route into its routing table. The network operations team requires all traffic bound for 10.20.0.0/1610.20.0.0/16 to prefer the internal OSPF path under normal operating conditions, while maintaining the eBGP path as an automatic secondary backup if OSPF fails. Which configuration change directly achieves this objective without modifying network subnets or prefixes?

  1. A
    Increase the OSPF Administrative Distance for the prefix to a value greater than 130.
  2. B
    Lower the OSPF cost metric for the 10.20.0.0/1610.20.0.0/16 route to 0.
  3. Increase the eBGP Administrative Distance for the route above 110 but below 130.Answer
  4. D
    Change the transport layer port number used by OSPF to match BGP port 179.

Answer

Increase the eBGP Administrative Distance for the route to a value greater than OSPF (110) but less than the floating static route (130).
When a router learns the exact same destination prefix through multiple routing sources, it evaluates Administrative Distance (AD) first. Lower AD values indicate higher trust. By increasing the eBGP AD for the route to a value between 111 and 129, OSPF (AD 110) becomes the primary active route in the routing table, while eBGP (e.g., AD 120) remains available as the secondary backup before the floating static route (AD 130).

Step-by-Step Solution

1
Analyze how routers select paths among multiple routing sources.
When a router receives identical prefix routes (10.20.0.0/1610.20.0.0/16) from different protocols, it compares their Administrative Distance (AD). The route with the lowest AD is installed in the Routing Information Base (RIB).
Administrative Distance indicates the trustworthiness of a routing source.
2
Evaluate the current AD hierarchy.
Current order: eBGP (2020) < OSPF (110110) < Floating Static (130130). Hence, eBGP is active.
Lower AD values take precedence over higher AD values.
3
Adjust AD values to achieve the desired failover hierarchy (Primary: OSPF, Secondary: eBGP, Tertiary: Floating Static).
Increasing eBGP's AD to a value between 111111 and 129129 (e.g., 120120) causes OSPF (110110) to become the primary route, followed by eBGP (120120), and lastly the floating static route (130130).
This establishes the exact failover ordering specified in the requirements without altering prefix lengths.

Key Concept

Administrative Distance Hierarchy and Multi-Protocol Path Selection
Rate this question