Cisco Nexus 9000 Series NX-API CLI Reference, Release 7(x)
NX-OS 7(x)
- Cisco Nexus 9000 Series NX-API CLI Reference, Release 7.x
- About NX-API CLI
- Access-List Commands
- BFD Commands
- BGP Commands
- CDP Commands
- DHCP Commands
- Diagnostic Commands
- Environment Commands
- Flow Commands
- Hardware Commands
- Interface Commands
- Inventory Commands
- LLDP Commands
- Module Commands
- NVE Commands
- RADIUS Commands
- SNMP Commands
- System Commands
- TACACS Commands
- Version Commands
show diagnostic result module 1
Python
Copy
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show diagnostic result module 1",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"outputs": {
"output": {
"body": {
"TABLE_Test": {
"ROW_Test": [
{
"test_id": 1,
"testname": "ASICRegisterCheck",
"testresult": "Pass"
},
{
"test_id": 2,
"testname": "PrimaryBootROM",
"testresult": "Pass"
},
{
"test_id": 3,
"testname": "SecondaryBootROM",
"testresult": "Pass"
},
{
"test_id": 4,
"testname": "OBFL",
"testresult": "Pass"
},
{
"test_id": 5,
"testname": "ACT2",
"testresult": "Pass"
},
{
"test_id": 6,
"testname": "BootFlash",
"testresult": "Untested"
},
{
"test_id": 7,
"testname": "AsicMemory",
"testresult": "Pass"
},
{
"test_id": 8,
"testname": "FpgaRegTest",
"testresult": "Pass"
},
{
"test_id": 9,
"testname": "Pcie",
"testresult": "Pass"
},
{
"aborted_ports": "none",
"err_disabled_ports": "none",
"failed_ports": "none",
"incomplete_ports": "none",
"passed_ports": "none",
"test_id": 10,
"testname": "PortLoopback",
"testresult": "Untested",
"untested_ports": "1-128"
},
{
"test_id": 11,
"testname": "L2ACLRedirect",
"testresult": "Pass"
},
{
"aborted_ports": "none",
"err_disabled_ports": "none",
"failed_ports": "none",
"incomplete_ports": "none",
"passed_ports": "1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,85,89,93,97,101,105,109,113,117,121,125",
"test_id": 12,
"testname": "BootupPortLoopback",
"testresult": "Pass",
"untested_ports": "2-4,6-8,10-12,14-16,18-20,22-24,26-28,30-32,34-36,38-40,42-44,46-48,50-52,54-56,58-60,62-64,66-68,70-72,74-76,78-80,82-84,86-88,90-92,94-96,98-100,102-104,106-108,110-112,114-116,118-120,122-124,126-128"
}
]
},
"curr_diag_level": "complete",
"module_id": 1,
"module_name": "32x100G Ethernet Module "
},
"code": "200",
"input": "show diagnostic result module 1",
"msg": "Success"
}
},
"sid": "eoc",
"type": "cli_show",
"version": "1.0"
}
}