Difficulty: Easy
Correct Answer: copy running-config startup-config
Explanation:
Introduction / Context:
Cisco routers and switches store two main configuration files: the running configuration in RAM and the startup configuration in NVRAM. To preserve changes across reboots, administrators must save the running configuration to the startup configuration.
Given Data / Assumptions:
Concept / Approach:
The command copy running-config startup-config
is the full IOS syntax to copy the current configuration into NVRAM. Shortcuts like wr mem
exist but the canonical form is copy running-config startup-config
.
Step-by-Step Solution:
Verification / Alternative check:
Cisco documentation highlights this as the standard command, with wr mem
being a legacy equivalent.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
copy running-config startup-config
Discussion & Comments