An enterprise edge router receives internal routing updates for the prefix via OSPFv2 (Administrative Distance 110) and iBGP (Administrative Distance 200). A network administrator intends to provision a floating static route via next-hop that remains inactive during normal operation, activates as a backup if the OSPF path fails, and takes precedence over the iBGP path. The administrator executes the following Cisco IOS command:
`ip route 192.168.50.0 255.255.255.0 10.0.12.2 105`
What is the operational result of this configuration, and what modification is required to achieve the desired routing behavior?
- The static route immediately replaces the OSPF route in the routing table because its Administrative Distance of 105 is lower than 110; the Administrative Distance must be reconfigured to a value between 111 and 199.Answer
- BThe static route is installed in the routing table alongside OSPF to perform equal-cost multipath load balancing; the distance must be set to 201 to force failover.
- CThe static route remains inactive because static routes cannot override dynamic routing protocols unless the permanent keyword is appended; the command syntax must be updated.
- DThe static route is rejected by Cisco IOS because Administrative Distance values below 110 are strictly reserved for internal Cisco protocols; the next-hop IP must be replaced with a exit interface.
Answer
The static route immediately overrides the OSPF path because an Administrative Distance of 105 is lower than OSPF's default distance of 110. To function as a floating static backup for OSPF while remaining preferred over iBGP, the Administrative Distance must be configured to a value strictly between 111 and 199.
Cisco IOS selects routes for installation in the routing table based on Administrative Distance (AD), where lower values represent higher trustworthiness. OSPFv2 has a default AD of 110 and iBGP has a default AD of 200. Configuring the static route with AD 105 makes it more trustworthy than OSPF (), causing it to immediately active in the routing table rather than functioning as a backup. To properly float behind OSPF but remain ahead of iBGP, its AD must be set within the range of 111 to 199 (such as 120).
Step-by-Step Solution
Key Concept
Floating Static Route Administrative Distance Calibration
Estimated Time:2m 0s