How do you save the current candidate configuration in the set format to permanent storage media?
Click on the arrows to vote for the correct answer
A. B. C. D.D
The correct answer to the question is A.
To save the current candidate configuration in the set format to permanent storage media, we need to use the following command:
sql[edit] user@router# show | set | save /var/tmp/current.conf
Let's break down this command into its individual components:
show
is the command used to display the configuration information.|
(pipe) is used to redirect the output of the show
command to the set
command.set
is the command used to convert the output of the show
command to the set format.save
is the command used to save the configuration to permanent storage media./var/tmp/current.conf
is the file name and location where the configuration will be saved.So, when we run this command, the current candidate configuration will be displayed in the set format and saved to the /var/tmp/current.conf
file.
Option B is incorrect because the compare
command is not necessary to save the configuration in the set format.
Option C is incorrect because the save
command does not have a display
option.