An engineer needs to make an XML backup of Cisco UCS Manager.
The backup should be transferred using an authenticated and encrypted tunnel, and it should contain all system and service profiles configuration.
Which command must be implemented to meet these requirements?
Click on the arrows to vote for the correct answer
A. B. C. D.A.
The correct answer is B. create backup scp://user@host35/backups/all-config9.bak all-configuration.
To make an XML backup of Cisco UCS Manager, the "create backup" command is used. This command allows you to create a backup of the system configuration and save it to a file on a remote server using the SCP protocol. The SCP protocol provides encrypted and authenticated transfer of the backup file, which meets the requirement specified in the question.
The syntax of the "create backup" command is as follows:
create backup [protocol://server[/directory]/filename] [backup-options]
In this case, the protocol is "scp", the server is "user@host35", the directory is "/backups/", and the filename is "all-config9.bak". The backup options specify what information should be included in the backup, and in this case, the "all-configuration" option specifies that all system and service profiles configuration should be included in the backup.
Option A is incorrect because it uses the "copy" command instead of the "create backup" command, and it does not specify the backup options.
Option C is incorrect because it uses the "create file" command instead of the "create backup" command.
Option D is incorrect because it uses the "copy" command instead of the "create backup" command, and it specifies the "startup-config" instead of the system and service profiles configuration.