An administrator is configuring a backup floating static route on a Cisco router for destination network . The primary path to this network is currently learned via EIGRP with an administrative distance of 90. Which `ip route` command correctly implements a backup static route via next-hop IP that takes effect only if the primary EIGRP route fails?
- ip route 10.50.0.0 255.255.0.0 192.168.100.2 95Answer
- Bip route 10.50.0.0 255.255.0.0 192.168.100.2 85
- Cip route 10.50.0.0 0.0.255.255 192.168.100.2 95
- Dip route 10.50.0.0 255.255.0.0 192.168.100.2 90
Answer
The command 'ip route 10.50.0.0 255.255.0.0 192.168.100.2 95' correctly configures a floating static route by specifying a higher Administrative Distance (95) than EIGRP (90).
The correct option uses valid Cisco IOS static route syntax with a standard subnet mask (255.255.0.0) and assigns an administrative distance of 95. Because 95 is higher than the primary EIGRP path AD of 90, the route remains inactive in the routing table until the primary EIGRP path becomes unavailable.
Step-by-Step Solution
Key Concept
Floating Static Route Administrative Distance Selection