An enterprise router R1 learns the path to a remote branch subnet via Internal EIGRP, which has a default administrative distance of . A network engineer intends to configure a secondary floating static route via next-hop IP to serve strictly as a backup path when EIGRP fails. However, the engineer enters the following command on R1:
`ip route 10.150.0.0 255.255.0.0 192.168.99.2 85`
Which two statements correctly describe the operational impact of this configuration? (Select two.)
- The newly configured static route will immediately enter the Routing Information Base (RIB) and displace the EIGRP route as the active path.Answer
- To function correctly as a floating static backup route, the static route's administrative distance must be configured with a value greater than 90.Answer
- CThe static route will remain inactive in the routing table until the primary EIGRP neighbor adjacency fails, because dynamic routes take precedence over static routes by default.
- DRouter R1 will perform equal-cost load balancing between the EIGRP path and the static route because both routes point to the same destination network.
Answer
The static route will immediately enter the routing table and displace the EIGRP route because its assigned administrative distance (85) is lower than Internal EIGRP (90). To act as a backup floating static route, its administrative distance must be set to a value greater than 90.
Cisco routers select routes from different routing sources based on Administrative Distance (AD), where lower AD values indicate higher preference. Internal EIGRP has a default AD of 90. Because the static route command explicitly defines an AD of 85, the static route is considered more trustworthy than EIGRP and is immediately placed into the routing table. To function properly as a floating static route, the static route must have an AD set higher than the primary route's AD (greater than 90) so it remains inactive until the primary EIGRP route vanishes.
Step-by-Step Solution
Key Concept
Floating Static Route Administrative Distance Selection