A network administrator needs to configure static routes on a Cisco IOS router for destination subnet . The primary route should use next-hop IP address with default priority. Additionally, a floating static backup route must be configured via next-hop IP address to take over only if the primary path learned via OSPF (Administrative Distance 110) becomes unavailable. Which two CLI commands correctly configure this static routing behavior? (Select TWO options.)
- ip route 10.15.0.0 255.255.0.0 192.168.1.2Answer
- ip route 10.15.0.0 255.255.0.0 192.168.2.2 120Answer
- Cip route 10.15.0.0 255.255.0.0 192.168.2.2 90
- Dip route 10.15.0.0 0.0.255.255 192.168.1.2
Answer
The correct commands are 'ip route 10.15.0.0 255.255.0.0 192.168.1.2' for the primary static route and 'ip route 10.15.0.0 255.255.0.0 192.168.2.2 120' for the floating static route.
The standard primary static route is configured using subnet mask notation with an implicit administrative distance of 1. To create a floating static route that acts as a backup to OSPF (which has a default administrative distance of 110), the static route must explicitly specify an administrative distance greater than 110, such as 120.
Step-by-Step Solution
Key Concept
IPv4 Floating Static Route Configuration and Administrative Distance
Estimated Time:1m 30s