Router R1 learns paths to remote subnet from two dynamic routing protocols: an Internal EIGRP path with an administrative distance of 90 and an OSPF path with an administrative distance of 110. An engineer must configure a floating static route pointing to next-hop that remains dormant in the routing table and only activates if both dynamic paths fail. Which command must be configured on R1?
- ip route 192.168.100.0 255.255.255.0 10.1.1.2 115Answer
- Bip route 192.168.100.0 255.255.255.0 10.1.1.2 95
- Cip route 192.168.100.0 255.255.255.0 10.1.1.2 1
- Dip route 192.168.100.0 255.255.255.0 10.1.1.2 90
Answer
The command 'ip route 192.168.100.0 255.255.255.0 10.1.1.2 115' correctly configures the floating static route.
The correct command specifies an administrative distance of 115. Cisco IOS routers select routes for insertion into the routing table based on the lowest administrative distance. Because EIGRP has an AD of 90 and OSPF has an AD of 110, an AD value higher than 110 (such as 115) ensures the static route is ignored as long as either EIGRP or OSPF delivers a valid path. It will only be installed into the routing table as a floating backup when both dynamic routes are removed.
Step-by-Step Solution
Key Concept
Floating Static Route Administrative Distance Selection