A network administrator needs to configure and verify a floating static route for destination network via next-hop IP on a Cisco router. The primary path to this network is currently learned dynamically via EIGRP with an Administrative Distance of . Place the configuration and verification steps in the correct sequential order from first to last.
- 1Enter global configuration mode on the router using the `configure terminal` command.
- 2Configure the backup static route using `ip route 172.16.20.0 255.255.255.0 10.2.2.2 100` to set its Administrative Distance higher than EIGRP.
- 3Execute `show ip route` in privileged EXEC mode to confirm that only the primary EIGRP route appears in the routing table while the primary link is healthy.
- 4Issue `shutdown` on the primary outbound interface to simulate a link failure.
- 5Re-run `show ip route` to confirm that the floating static route via is now active in the routing table.
Answer
The correct sequential process is: Enter global configuration mode -> Configure the floating static route with AD 100 -> Verify the routing table to ensure the route is inactive during normal operation -> Shut down the primary interface to trigger failover -> Re-verify the routing table to confirm the floating static route becomes active.
The correct order follows standard Cisco IOS workflow: configuring global settings first, adding the floating static route with an AD higher than EIGRP (90), verifying that the route is inactive during normal operation, simulating a link failure by shutting down the primary interface, and finally verifying that the floating static route takes over as the active path in the routing table.
Step-by-Step Solution
Key Concept
Floating static route configuration, administrative distance precedence, and failover verification.
Estimated Time:1m 30s