An enterprise router R1 learns the internal destination network dynamically via OSPF (default Administrative Distance of 110). A network administrator needs to manually configure two IPv4 static routes on R1:
1. A secondary backup (floating) static route to reach via the next-hop IP address .
2. A default static route to forward all non-matching IPv4 traffic to the upstream ISP router at next-hop IP .
Which TWO commands must be configured on router R1 to achieve these routing requirements? (Select TWO.)
- ip route 10.50.0.0 255.255.0.0 192.168.12.2 130Answer
- ip route 0.0.0.0 0.0.0.0 203.0.113.1Answer
- Cip route 10.50.0.0 255.255.0.0 192.168.12.2 90
- Dip route 0.0.0.0 255.255.255.255 203.0.113.1
Answer
The correct commands are 'ip route 10.50.0.0 255.255.0.0 192.168.12.2 130' to establish a floating static route with an Administrative Distance higher than OSPF (110), and 'ip route 0.0.0.0 0.0.0.0 203.0.113.1' to establish a standard default static route using the prefix 0.0.0.0/0.
To create a floating static route, the Administrative Distance specified at the end of the 'ip route' command must be higher than that of the primary routing source. Since OSPF has an AD of 110, setting an AD of 130 guarantees the route will only be installed in the Routing Information Base (RIB) if the primary OSPF route disappears. Additionally, a default static route requires matching any IP address, configured with destination network 0.0.0.0 and subnet mask 0.0.0.0 pointing to the next-hop router address.
Step-by-Step Solution
Key Concept
Floating Static Routes and Default Static Route Syntax