Difficulty: Easy
Correct Answer: copy flash tftp
Explanation:
Introduction / Context:Backing up a known-good IOS image is a best practice before upgrades or hardware changes. The transfer typically uses TFTP due to its simplicity and wide support in network environments.
Given Data / Assumptions:
Concept / Approach:The IOS copy syntax is copy
Step-by-Step Solution:Verify image name: show flashPing the TFTP server to confirm reachability.Run: copy flash tftpProvide server IP and destination filename when prompted.
Verification / Alternative check:After the transfer, verify the file on the TFTP server and optionally compare checksums using verify /md5 (on platforms that support it) to ensure integrity.
Why Other Options Are Wrong:
Common Pitfalls:Confusing configuration backups with image backups and overwriting existing files on the TFTP server unintentionally.
Final Answer:copy flash tftp
Discussion & Comments