Difficulty: Easy
Correct Answer: The copy did not override the shutdown command in running-config.
Explanation:
Introduction / Context:
On Cisco devices, interface state is an explicit configuration element. If an interface is administratively shut down, it will remain down until a no shutdown command is applied, even if you paste or merge a configuration that contains IP addressing and other settings. Understanding merge semantics explains why a seemingly correct running-config may not pass traffic after being copied in.
Given Data / Assumptions:
Concept / Approach:
Copying or pasting configuration lines merges with the existing running-config; it does not automatically negate pre-existing commands. If an interface previously had the shutdown directive, and your pasted configuration did not include no shutdown, the interface will remain disabled. This is a common oversight when restoring configurations on lab or field devices.
Step-by-Step Solution:
Verification / Alternative check:
Use show running-config to ensure no shutdown is present. Confirm L1/L2 status with show interfaces and end-to-end pings or routing adjacencies forming (for example, show ip ospf neighbor).
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
The copy did not override the shutdown command in running-config.
Discussion & Comments