A network engineer inspects a router configuration designed to provide a redundant secondary path to a branch subnet . The primary path to this destination is dynamically learned via OSPF (default Administrative Distance of ). The engineer finds the following static route entry in the running configuration:
`ip route 10.240.12.0 255.255.255.0 192.168.1.2 95`
During normal operation with the OSPF link operational, traffic continues to traverse the backup link. Which TWO statements accurately explain this behavior and the required configuration fix?
- The configured static route takes precedence over the OSPF route because its configured administrative distance of is lower than the OSPF default administrative distance of .Answer
- Reconfiguring the static route with an administrative distance greater than allows OSPF to act as the primary route while maintaining the static route as a floating backup.Answer
- CThe router load-balances traffic between OSPF and the static route because static routes automatically inherit the metric of active dynamic protocols.
- DChanging the static route's administrative distance to will deactivate the static route and restore the OSPF path into the routing table.
Answer
The static route currently pre-empts OSPF because its administrative distance () is lower than OSPF's default (). To function correctly as a floating backup, the static route's administrative distance must be set to a value greater than .
Cisco IOS routing table selection relies strictly on Administrative Distance (AD) when comparing routes learned from different sources for the exact same network prefix. OSPF has a default AD of . The configured static route has an AD explicitly set to . Because is lower than , the router prefers the static route, placing it into the routing table and routing all traffic across the backup link. To convert this into a functional floating static route, the AD of the static route must be increased to a value higher than (for example, ), allowing OSPF to be preferred while the primary link is healthy.
Step-by-Step Solution
Key Concept
Floating static routes rely on configuring an Administrative Distance higher than the primary dynamic routing protocol.
Estimated Time:2m 0s