A network administrator is configuring IPv4 static routes on router R1. The administrator must implement a primary default static route pointing to next-hop IP address , as well as a backup floating static route for destination subnet via next-hop IP . The backup route must take effect only if the primary path learned via OSPF (Administrative Distance of 110) becomes unavailable. Which two commands must the administrator execute on router R1 to satisfy these requirements? (Select two.)
- ip route 0.0.0.0 0.0.0.0 203.0.113.1Answer
- ip route 172.16.10.0 255.255.255.0 192.168.1.2 120Answer
- Cip route 0.0.0.0 255.255.255.255 203.0.113.1
- Dip route 172.16.10.0 255.255.255.0 192.168.1.2 90
Answer
The administrator must configure the default route using `ip route 0.0.0.0 0.0.0.0 203.0.113.1` and the floating static backup route using `ip route 172.16.10.0 255.255.255.0 192.168.1.2 120`.
The default route requires the prefix and mask `0.0.0.0 0.0.0.0` pointing to next-hop . To serve as a backup to an OSPF route with an Administrative Distance of 110, the floating static route must specify an Administrative Distance higher than 110, which the command specifying an AD of 120 accomplishes.
Step-by-Step Solution
Key Concept
IPv4 Default Static Route Syntax and Floating Static Route Administrative Distance Selection