Multiple choice

What will be the effect of the command S1# copy system:running-config tftp://172.16.2.155/tokyo-config?

  1. The IOS will be copied to the TFTP server.

  2. The configuration file named tokyo-config will overwrite the startup configuration file on S1.

  3. The running configuration file on S1 will be saved via TFTP to a file named tokyo-config.

  4. The contents of NVRAM on S1 will become the startup configuration file on the tokyo switch.

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The copy command syntax is 'copy '. Here, the source is 'system:running-config' (the current running configuration in RAM) and the destination is 'tftp://172.16.2.155/tokyo-config' (a TFTP server with filename). This command saves the running configuration from the switch to the TFTP server, naming the file 'tokyo-config'. Option A is incorrect because IOS copying uses different commands. Option B would use 'copy tftp://... startup-config'. Option D confuses what NVRAM contains (it's the local switch's startup-config, not a remote file).