A network administrator needs to configure an IPv4 static default route on a Cisco router pointing to the next-hop IP address 203.0.113.1. Which Cisco IOS command correctly accomplishes this configuration?
- ip route 0.0.0.0 0.0.0.0 203.0.113.1Answer
- Bip route 0.0.0.0 255.255.255.255 203.0.113.1
- Cip route default 203.0.113.1
- Dip route 203.0.113.1 0.0.0.0 0.0.0.0
Answer
ip route 0.0.0.0 0.0.0.0 203.0.113.1
The correct command uses 'ip route 0.0.0.0 0.0.0.0 203.0.113.1'. In Cisco IOS, a static default route is configured using the prefix 0.0.0.0 and mask 0.0.0.0 followed by either the next-hop IPv4 address or an outbound interface.
Step-by-Step Solution
Key Concept
IPv4 Static Default Route Configuration