Due to a domain name change at a customer site, a Cisco UCS cluster must be renamed. An engineer must recommend a solution to ensure that the Cisco UCS Manager is available over HTTPS. Which action accomplishes this goal?
Correct Answer:
D
https://www.cisco.com/c/en/us/td/docs/unified_computing/ucs/ucs-manager/GUI-User-Guides/Admin-Managem
An engineer must configure a Nexus 7000 series switch for HSRP on VLAN 100. When fully functional, the router must be the active master. Which set of commands must be used to implement the scenario?
Correct Answer:
A
Refer to the exhibit.

Why does the python code for Cisco NX-API print an error message?
Correct Answer:
C
"Commands that belong to different message types should not be mixed. For example, show commands are cli_show message type and are not supported in cli_conf mode." https://www.cisco.com/c/en/us/td/docs/switches/datacenter/nexus7000/sw/programmability/guide/ cisco_nexus7000_programmability_guide_8x/b-cisco-nexus7000-programmability-guide- 8x_chapter_011.html
the payload "type" value is wrong in the body of the request. For the request to be successful, it should be changes to "cli_conf".
For example, if we run the same request with the updated payload:
{
"ins_api": { "version": "1.0",
"type": "cli_conf",
"chunk": "0",
"sid": "1",
"input": "configure terminal ;feature hsrp", "output_format": "json"
}
}
We get a 200 response:
{
"ins_api": { "sid": "eoc",
"type": "cli_conf",
"version": "1.0", "outputs": {
"output": [
{
"code": "200",
"msg": "Success",
"body": {}
},
{
"code": "200",
"msg": "Success",
"body": {}
}
]
}
}
}
CLI verification: nxos9kv# sh run | inc hsrp feature hsrp
An engineer must perform backup and restore of the Cisco UCS Manager configuration. The configuration must be stored on a remote server via XML encoding. The backup must store the configurations of the chassis. FEX, rack servers. lOMs, and blade server. Which set of actions accomplishes these goals?
Correct Answer:
A
An engineer must configure Cisco UCS Manager to accept only HTTPS connections that use TLS 1 2 The cipher security level must be high and the length of the keyring key value must be 2048 bits Drag and drop the code snippets from the right onto the blanks in the code on the left to accomplish these goals Not all commands are used
Solution:
Graphical user interface, application Description automatically generated
Does this meet the goal?
Correct Answer:
A