A network router currently receives its primary path to network 10.0.0.0/24 via RIP, which has a default administrative distance of 120. A network engineer needs to configure a static route to network 10.0.0.0/24 via the next-hop address 192.168.1.2 to act as a floating backup, activating only if the primary RIP route fails. Which command correctly configures this floating static route?
- ip route 10.0.0.0 255.255.255.0 192.168.1.2 130Answer
- Bip route 10.0.0.0 255.255.255.0 192.168.1.2
- Cip route 10.0.0.0 255.255.255.0 192.168.1.2 110
- Dip route 10.0.0.0 255.255.255.0 192.168.1.2 120
Answer
ip route 10.0.0.0 255.255.255.0 192.168.1.2 130
The command 'ip route 10.0.0.0 255.255.255.0 192.168.1.2 130' assigns an administrative distance of 130 to the static route. Because 130 is greater than RIP's administrative distance of 120, Cisco IOS keeps the static route out of the routing table as long as the RIP route remains active. If the RIP route fails, the floating static route is inserted into the routing table as the backup path.
Step-by-Step Solution
Key Concept
A floating static route requires an administrative distance configured higher than that of the active primary dynamic routing protocol.