A network engineer is configuring router R1 to reach destination network . The primary path must use next-hop IP address with standard default static priority. A backup path must use next-hop IP address and function as a floating static route that only enters the routing table if the primary path is unavailable. Which TWO commands must be configured on R1 to meet these requirements? (Select two.)
- ip route 172.16.10.0 255.255.255.0 192.168.12.2Answer
- ip route 172.16.10.0 255.255.255.0 10.0.0.2 10Answer
- Cip route 172.16.10.0 255.255.255.0 10.0.0.2
- Dip route 172.16.10.0 0.0.0.255 192.168.12.2
Answer
The correct commands are 'ip route 172.16.10.0 255.255.255.0 192.168.12.2' for the primary path and 'ip route 172.16.10.0 255.255.255.0 10.0.0.2 10' for the backup floating path.
The command specifying next-hop 192.168.12.2 without an explicit administrative distance correctly creates the primary static route with the default Administrative Distance of 1. The command specifying next-hop 10.0.0.2 with an explicit administrative distance of 10 correctly creates a floating static route, because its higher administrative distance keeps it out of the routing table until the primary route disappears.
Step-by-Step Solution
Key Concept
IPv4 Static Route Syntax and Administrative Distance for Floating Static Routes