An administrator needs to manually configure an IPv4 static route on a Cisco router to reach remote network using the next-hop IP address , and then permanently save the configuration. What is the correct sequence of steps to complete this configuration starting from Privileged EXEC mode?
- 1Enter global configuration mode by executing the `configure terminal` command.
- 2Configure the static route using the command `ip route 172.20.10.0 255.255.255.0 10.0.0.2`.
- 3Return to privileged EXEC mode by executing the `end` command.
- 4Save the configuration to startup memory by executing `copy running-config startup-config`.
Answer
The correct order to enter global configuration mode, apply the static route command with the correct prefix, subnet mask, and next-hop IP, exit back to privileged EXEC mode, and save the active configuration to NVRAM is: Enter global configuration mode (`configure terminal`), Configure the static route (`ip route 172.20.10.0 255.255.255.0 10.0.0.2`), Return to privileged EXEC mode (`end`), and Save the configuration (`copy running-config startup-config`).
Configuring a persistent IPv4 static route on a Cisco router requires moving to global configuration mode via `configure terminal`, applying the static route with `ip route 172.20.10.0 255.255.255.0 10.0.0.2`, exiting back to privileged EXEC mode using `end`, and finally writing the running configuration to NVRAM using `copy running-config startup-config`.
Step-by-Step Solution
Key Concept
Cisco IOS IPv4 Static Route CLI Configuration Workflow