An enterprise router receives a primary path for the prefix via OSPF. An engineer attempts to configure a floating static backup route using the command `ip route 192.168.50.0 255.255.255.0 10.0.0.2 105`. However, after entering the command, the routing table immediately replaces the OSPF path with the static route. What is the cause of this behavior?
- The static route was assigned an administrative distance of 105, which is lower than the default OSPF administrative distance of 110.Answer
- BThe static route was assigned an administrative distance of 105, which is higher than the default OSPF administrative distance of 90.
- CThe numerical value 105 at the end of the static route command sets the routing metric cost rather than the administrative distance.
- DThe router requires an administrative distance of 255 to designate a static route as a floating backup route.
Answer
The static route was assigned an administrative distance of 105, which is lower than the default OSPF administrative distance of 110.
Cisco IOS selects routes based on Administrative Distance (AD), where lower AD values indicate higher trustworthiness. Default OSPF has an AD of 110. Because the engineer configured the static route with an AD of 105, it is lower than OSPF's AD of 110. Consequently, the router prefers the static route and installs it into the routing table immediately, preventing it from functioning as a backup route. A proper floating static route for OSPF must be configured with an AD greater than 110 (such as 120).
Step-by-Step Solution
Key Concept
Floating Static Route Administrative Distance Requirements