A network administrator needs to manually configure a backup floating static route on a Cisco IOS router. Arrange the following syntax elements in the correct sequential order from left to right to construct a valid Cisco IOS floating static route command.
- 1ip route
- 2172.16.1.0
- 3255.255.255.0
- 410.1.1.2
- 5130
Cevap
The correct sequence to construct the command is: ip route 172.16.1.0 255.255.255.0 10.1.1.2 130.
The correct order follows the standard Cisco IOS static route syntax: 'ip route <destination-prefix> <subnet-mask> {ip-address | exit-interface} [distance]'. The command starts with 'ip route', followed by the target destination network (172.16.1.0), the subnet mask (255.255.255.0), the next-hop address (10.1.1.2), and finally the optional Administrative Distance value (130).
Adım Adım Çözüm
Anahtar Kavram
Cisco IOS IPv4 static route CLI syntax structure and floating static route parameter placement.