Difficulty: Easy
Correct Answer: reload
Explanation:
Introduction / Context:
Routers maintain two primary configuration states: the running-config in RAM and the startup-config in NVRAM. To make the device apply the saved startup configuration in a clean state, you must reload the device so it boots fresh and reads startup-config at initialization. This is different from simply merging configurations while the device is running.
Given Data / Assumptions:
Concept / Approach:
The command reload restarts the router. During boot, IOS loads the startup-config from NVRAM into RAM, which becomes the new running-config. By contrast, copy start run merges the startup-config into the existing running configuration without clearing the current state, which can leave residual settings. copy run start saves the current configuration, which is the opposite of what we want.
Step-by-Step Solution:
Verification / Alternative check:
Post-reload, show running-config should match show startup-config taken before the reload, confirming that the startup-config has been applied cleanly.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
reload
Discussion & Comments