Router R1 connects an enterprise edge network to two service providers, ISP-A and ISP-B. The primary default path is dynamically learned from ISP-A via eBGP, which assigns an Administrative Distance (AD) of . A network engineer needs to configure a floating static default route toward ISP-B through next-hop IP as a redundant backup path that will remain inactive in the routing table until the primary eBGP path fails. Which Cisco IOS command correctly achieves this objective?
- ip route 0.0.0.0 0.0.0.0 198.51.100.1 25Answer
- Bip route 0.0.0.0 0.0.0.0 198.51.100.1 15
- Cip route 0.0.0.0 0.0.0.0 198.51.100.1 1
- Dip route 0.0.0.0 255.255.255.255 198.51.100.1 25
Answer
The command 'ip route 0.0.0.0 0.0.0.0 198.51.100.1 25' correctly specifies a default route with an Administrative Distance higher than the primary eBGP AD of 20, ensuring it remains inactive until link failure.
A floating static route acts as a backup path and must remain inactive in the Routing Information Base (RIB) until the primary route fails. Because the primary route is dynamically learned via eBGP with an Administrative Distance (AD) of 20, the static backup route must be explicitly configured with an AD value strictly greater than 20. The option specifying 'ip route 0.0.0.0 0.0.0.0 198.51.100.1 25' correctly applies an AD of 25 to the default network 0.0.0.0/0, ensuring it functions strictly as a backup.
Step-by-Step Solution
Key Concept
Floating Static Route Administrative Distance Selection