Platform Commands

show process cpu detailed

show process cpu detailed 8132
 
import requests
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 process cpu detailed 8132",
  "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)
{
  "fivesec_percent": 1, 
  "fivesec_intr_percent": 0, 
  "onemin_percent": 2, 
  "fivemin_percent": 3, 
  "TABLE_process_cpu": {
    "ROW_process_cpu": {
      "pid_s": 8132, 
      "runtime": 1040, 
      "invoked": 3874, 
      "usecs": 0, 
      "fivesec": 0.0, 
      "onemin": 0.0, 
      "fivemin": 0.0, 
      "tty": "-", 
      "process": "satmgr"
    }
  }
}
n7k2# show process cpu detailed 8132 | xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:process" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <process>
    <cpu>
     <detailed>
      <__XML__PARAM__pid>
       <__XML__value>8132</__XML__value>
       <__readonly__>
        <fivesec_percent>2</fivesec_percent>
        <fivesec_intr_percent>0</fivesec_intr_percent>
        <onemin_percent>2</onemin_percent>
        <fivemin_percent>3</fivemin_percent>
        <TABLE_process_cpu>
         <ROW_process_cpu>
          <pid_s>8132</pid_s>
          <runtime>1040</runtime>
          <invoked>3848</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>satmgr</process>
         </ROW_process_cpu>
        </TABLE_process_cpu>
       </__readonly__>
      </__XML__PARAM__pid>
     </detailed>
    </cpu>
   </process>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show process cpu detailed 8132**

CPU utilization for five seconds: 1%/0%; one minute: 2%; five minutes: 3%
PID    Runtime(ms)  Invoked   uSecs  5Sec    1Min    5Min    TTY  Process
-----  -----------  --------  -----  ------  ------  ------  ---  -----------
 8132         1040      3821      0   0.00%   0.00%  0.00%   -    satmgr

show process stack

show process stack 8132
 
import requests
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 process stack 8132”,
  "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)
{
  "TABLE_process_stack": {
    "ROW_process_stack": [
      {
        "line_in_file": "PID: 8132, Cmdline: /isan/bin/satmgr"
      }, 
      {
        "line_in_file": "Process Kernel Stack:"
      }, 
      {
        "line_in_file": "[<ffffffffbab2682e>] [<ffffffffbab2715a>] [<ffffffffbab5680d>] [<ffffffffbab5693e>] [<ffffffffbae77b19>] [<ffffffffffffffff>]"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:process" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <process>
    <stack>
     <__XML__PARAM__pid>
      <__XML__value>8132</__XML__value>
      <__readonly__>
       <TABLE_process_stack>
        <ROW_process_stack>
         <line_in_file>PID: 8132, Cmdline: /isan/bin/satmgr</line_in_file>
        </ROW_process_stack>
        <ROW_process_stack>
         <line_in_file>Process Kernel Stack: </line_in_file>
        </ROW_process_stack>
        <ROW_process_stack>
         <line_in_file>[&lt;ffffffffbab2682e&gt;] [&lt;ffffffffbab2715a&gt;] [&lt;ffffffffbab5680d&gt;] [&lt;ffffffffbab5693e&gt;] [&lt;ffffffffbae77b19&gt;] [&lt;ffffffffffffffff&gt;] </line_in_file>
        </ROW_process_stack>
       </TABLE_process_stack>
      </__readonly__>
     </__XML__PARAM__pid>
    </stack>
   </process>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show process stack 8132**

PID: 8132, Cmdline: /isan/bin/satmgr
Process Kernel Stack: 
[] [] [] [] [] [] 

show processes

show processes
 
import requests
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 processes”,
  "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)
{
  "TABLE_processes": {
    "ROW_processes": [
      {
        "pid": 1, 
        "state": "S", 
        "pc": "f76ccf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "O", 
        "process": "init"
      }, 
      {
        "pid": 2851, 
        "state": "S", 
        "pc": "f76988ad", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "O", 
        "process": "mcelog"
      }, 
      {
        "pid": 5764, 
        "state": "S", 
        "pc": "f765f80e", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "O", 
        "process": "portmap"
      }, 
      {
        "pid": 5767, 
        "state": "S", 
        "pc": "f771ff38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "O", 
        "process": "rpc.statd"
      }, 
      {
        "pid": 5787, 
        "state": "S", 
        "pc": "f764ff38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "O", 
        "process": "rpc.mountd"
      }, 
      {
        "pid": 5800, 
        "state": "S", 
        "pc": "f7202f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "sysmgr"
      }, 
      {
        "pid": 6949, 
        "state": "S", 
        "pc": "48cc9f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "xinetd"
      }, 
      {
        "pid": 6950, 
        "state": "S", 
        "pc": "48cc9f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "tftpd"
      }, 
      {
        "pid": 6951, 
        "state": "S", 
        "pc": "f63b2b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "syslogd"
      }, 
      {
        "pid": 6952, 
        "state": "S", 
        "pc": "f750cf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "sdwrapd"
      }, 
      {
        "pid": 6953, 
        "state": "S", 
        "pc": "f74fa634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "pfm_dummy"
      }, 
      {
        "pid": 6954, 
        "state": "R", 
        "pc": "f6bb5634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "platform"
      }, 
      {
        "pid": 7023, 
        "state": "S", 
        "pc": "f6c88f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "cmond"
      }, 
      {
        "pid": 7041, 
        "state": "S", 
        "pc": "f6483b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "vshd"
      }, 
      {
        "pid": 7042, 
        "state": "S", 
        "pc": "f7290f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "vpc_config_sync"
      }, 
      {
        "pid": 7043, 
        "state": "S", 
        "pc": "f687b1a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "smm"
      }, 
      {
        "pid": 7044, 
        "state": "S", 
        "pc": "f74f0f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "session-mgr"
      }, 
      {
        "pid": 7045, 
        "state": "S", 
        "pc": "f6a90f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "psshelper"
      }, 
      {
        "pid": 7046, 
        "state": "S", 
        "pc": "f7123f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "pixm_vl"
      }, 
      {
        "pid": 7047, 
        "state": "S", 
        "pc": "f70f3f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "pixm_gl"
      }, 
      {
        "pid": 7048, 
        "state": "S", 
        "pc": "f74f11a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "pdsd"
      }, 
      {
        "pid": 7049, 
        "state": "S", 
        "pc": "f6252b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "mmode"
      }, 
      {
        "pid": 7051, 
        "state": "S", 
        "pc": "48cc9f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "lmgrd"
      }, 
      {
        "pid": 7052, 
        "state": "S", 
        "pc": "48cc9634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "licmgr"
      }, 
      {
        "pid": 7053, 
        "state": "S", 
        "pc": "f744af38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "fs-daemon"
      }, 
      {
        "pid": 7055, 
        "state": "S", 
        "pc": "f6616b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "feature-mgr"
      }, 
      {
        "pid": 7056, 
        "state": "S", 
        "pc": "f7368f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "confcheck"
      }, 
      {
        "pid": 7057, 
        "state": "S", 
        "pc": "f7492f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "capability"
      }, 
      {
        "pid": 7058, 
        "state": "S", 
        "pc": "f6431b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "bloggerd"
      }, 
      {
        "pid": 7059, 
        "state": "S", 
        "pc": "f6b03f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "psshelper_gsvc"
      }, 
      {
        "pid": 7068, 
        "state": "S", 
        "pc": "48cc9f67", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "O", 
        "process": "cisco"
      }, 
      {
        "pid": 7078, 
        "state": "S", 
        "pc": "f62e4b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "clis"
      }, 
      {
        "pid": 7081, 
        "state": "S", 
        "pc": "f60e7b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "port-profile"
      }, 
      {
        "pid": 7189, 
        "state": "S", 
        "pc": "48cc9f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "O", 
        "process": "dhcpd"
      }, 
      {
        "pid": 7193, 
        "state": "S", 
        "pc": "f7453f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "xmpp"
      }, 
      {
        "pid": 7194, 
        "state": "S", 
        "pc": "f6552b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "xmlma"
      }, 
      {
        "pid": 7195, 
        "state": "S", 
        "pc": "f7301f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "vmm"
      }, 
      {
        "pid": 7196, 
        "state": "S", 
        "pc": "f6093634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "vman"
      }, 
      {
        "pid": 7198, 
        "state": "S", 
        "pc": "f6945f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "vdc_mgr"
      }, 
      {
        "pid": 7199, 
        "state": "S", 
        "pc": "f75b6f67", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "usbhsd"
      }, 
      {
        "pid": 7200, 
        "state": "S", 
        "pc": "f723ef38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "ttyd"
      }, 
      {
        "pid": 7201, 
        "state": "S", 
        "pc": "f75e7f67", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "sysinfo"
      }, 
      {
        "pid": 7202, 
        "state": "S", 
        "pc": "f73a1f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "statsprofiler"
      }, 
      {
        "pid": 7203, 
        "state": "S", 
        "pc": "f6b73f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "snmpmib_proc"
      }, 
      {
        "pid": 7204, 
        "state": "S", 
        "pc": "f690ff38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "sksd"
      }, 
      {
        "pid": 7206, 
        "state": "S", 
        "pc": "f64d0b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "rtd_monitor"
      }, 
      {
        "pid": 7207, 
        "state": "S", 
        "pc": "f741f3b3", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "res_mgr"
      }, 
      {
        "pid": 7208, 
        "state": "S", 
        "pc": "f737df67", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "plugin"
      }, 
      {
        "pid": 7209, 
        "state": "S", 
        "pc": "f75abf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "plog_sup"
      }, 
      {
        "pid": 7210, 
        "state": "S", 
        "pc": "f74e8f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "patch-installer"
      }, 
      {
        "pid": 7211, 
        "state": "S", 
        "pc": "f7346f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "mvsh"
      }, 
      {
        "pid": 7212, 
        "state": "S", 
        "pc": "f7436f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "mping_server"
      }, 
      {
        "pid": 7213, 
        "state": "S", 
        "pc": "f69f7f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "fw_app"
      }, 
      {
        "pid": 7214, 
        "state": "S", 
        "pc": "f73a68ad", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "fmd"
      }, 
      {
        "pid": 7215, 
        "state": "S", 
        "pc": "f728cf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "evms"
      }, 
      {
        "pid": 7217, 
        "state": "S", 
        "pc": "f73c4f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "evmc"
      }, 
      {
        "pid": 7218, 
        "state": "S", 
        "pc": "f710d634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "epld_upgrade_stdby"
      }, 
      {
        "pid": 7219, 
        "state": "S", 
        "pc": "f7139f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "epld_auto"
      }, 
      {
        "pid": 7220, 
        "state": "S", 
        "pc": "f7488f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "diagmgr"
      }, 
      {
        "pid": 7221, 
        "state": "S", 
        "pc": "f2b78f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "crdcfg_server"
      }, 
      {
        "pid": 7222, 
        "state": "S", 
        "pc": "f6a9af38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "core-dmon"
      }, 
      {
        "pid": 7223, 
        "state": "S", 
        "pc": "f7491f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "clk_mgr"
      }, 
      {
        "pid": 7224, 
        "state": "S", 
        "pc": "f74d1f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "cli_acl"
      }, 
      {
        "pid": 7225, 
        "state": "S", 
        "pc": "f74db634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "bios_daemon"
      }, 
      {
        "pid": 7226, 
        "state": "S", 
        "pc": "f5ee5634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ascii-cfg"
      }, 
      {
        "pid": 7227, 
        "state": "S", 
        "pc": "f6403634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "securityd"
      }, 
      {
        "pid": 7228, 
        "state": "S", 
        "pc": "f602bb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "cert_enroll"
      }, 
      {
        "pid": 7229, 
        "state": "S", 
        "pc": "f69b5f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "aaa"
      }, 
      {
        "pid": 7230, 
        "state": "S", 
        "pc": "f7511634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "obfl"
      }, 
      {
        "pid": 7237, 
        "state": "S", 
        "pc": "f66c71a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "l3vm"
      }, 
      {
        "pid": 7238, 
        "state": "S", 
        "pc": "f65ca1a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "urib"
      }, 
      {
        "pid": 7246, 
        "state": "S", 
        "pc": "f7217f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "diagclient"
      }, 
      {
        "pid": 7274, 
        "state": "S", 
        "pc": "f6b36f67", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "device_test"
      }, 
      {
        "pid": 7280, 
        "state": "S", 
        "pc": "f6a71f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "aclmgr"
      }, 
      {
        "pid": 7290, 
        "state": "S", 
        "pc": "f66fa1a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "adjmgr"
      }, 
      {
        "pid": 7291, 
        "state": "S", 
        "pc": "f666e1a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "u6rib"
      }, 
      {
        "pid": 7296, 
        "state": "S", 
        "pc": "f71abf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "eem_policy_dir"
      }, 
      {
        "pid": 7368, 
        "state": "S", 
        "pc": "f702a1a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "npacl"
      }, 
      {
        "pid": 7375, 
        "state": "S", 
        "pc": "f64871a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "arp"
      }, 
      {
        "pid": 7376, 
        "state": "S", 
        "pc": "f6545808", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "icmpv6"
      }, 
      {
        "pid": 7409, 
        "state": "S", 
        "pc": "f6e7cf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "xbar"
      }, 
      {
        "pid": 7430, 
        "state": "S", 
        "pc": "f728af38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "module"
      }, 
      {
        "pid": 7449, 
        "state": "S", 
        "pc": "f719cf67", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "ExceptionLog"
      }, 
      {
        "pid": 7450, 
        "state": "S", 
        "pc": "f7433f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "bootvar"
      }, 
      {
        "pid": 7451, 
        "state": "S", 
        "pc": "f737bf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "cardclient"
      }, 
      {
        "pid": 7452, 
        "state": "S", 
        "pc": "f6efcf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "ifmgr"
      }, 
      {
        "pid": 7469, 
        "state": "S", 
        "pc": "f7097f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ncpinframgr"
      }, 
      {
        "pid": 7471, 
        "state": "S", 
        "pc": "f65b01a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "pktmgr"
      }, 
      {
        "pid": 7478, 
        "state": "S", 
        "pc": "f6aacf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "clp_elam"
      }, 
      {
        "pid": 7479, 
        "state": "S", 
        "pc": "f6af8f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "clp_fwd"
      }, 
      {
        "pid": 7480, 
        "state": "S", 
        "pc": "f6b83f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "clp_l3"
      }, 
      {
        "pid": 7481, 
        "state": "S", 
        "pc": "f6b3af38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "clp_mac"
      }, 
      {
        "pid": 7483, 
        "state": "S", 
        "pc": "f6aeaf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "clp_xbar"
      }, 
      {
        "pid": 7484, 
        "state": "S", 
        "pc": "f6cd0f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "lit"
      }, 
      {
        "pid": 7486, 
        "state": "S", 
        "pc": "f6af5f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "sac_usd"
      }, 
      {
        "pid": 7487, 
        "state": "S", 
        "pc": "f74c3f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "sensor"
      }, 
      {
        "pid": 7488, 
        "state": "S", 
        "pc": "f6873f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "sm15_usd"
      }, 
      {
        "pid": 7497, 
        "state": "S", 
        "pc": "f63cb1a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "netstack"
      }, 
      {
        "pid": 7541, 
        "state": "S", 
        "pc": "f612eb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "radius"
      }, 
      {
        "pid": 7542, 
        "state": "S", 
        "pc": "f6296b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "cdp"
      }, 
      {
        "pid": 7544, 
        "state": "S", 
        "pc": "f6526b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "cfs"
      }, 
      {
        "pid": 7545, 
        "state": "S", 
        "pc": "f7619634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ip_dummy"
      }, 
      {
        "pid": 7546, 
        "state": "S", 
        "pc": "f75ee634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ipv6_dummy"
      }, 
      {
        "pid": 7547, 
        "state": "S", 
        "pc": "f64dcb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ntp"
      }, 
      {
        "pid": 7548, 
        "state": "S", 
        "pc": "f6296b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "otm"
      }, 
      {
        "pid": 7549, 
        "state": "S", 
        "pc": "f670eb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "snmpd"
      }, 
      {
        "pid": 7550, 
        "state": "S", 
        "pc": "f75dc634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "tcpudp_dummy"
      }, 
      {
        "pid": 7557, 
        "state": "S", 
        "pc": "48cccb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "dcos-xinetd"
      }, 
      {
        "pid": 7594, 
        "state": "S", 
        "pc": "f1b53b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "O", 
        "process": "ntpd"
      }, 
      {
        "pid": 7600, 
        "state": "S", 
        "pc": "f6aadb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "callhome"
      }, 
      {
        "pid": 7906, 
        "state": "S", 
        "pc": "48cc9f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "tftp_aa"
      }, 
      {
        "pid": 7907, 
        "state": "S", 
        "pc": "f6646b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "sim"
      }, 
      {
        "pid": 7908, 
        "state": "S", 
        "pc": "f65a21a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "rpm"
      }, 
      {
        "pid": 7909, 
        "state": "S", 
        "pc": "f7328f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "pltfm_debug"
      }, 
      {
        "pid": 7910, 
        "state": "S", 
        "pc": "f6456b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "pltfm_config"
      }, 
      {
        "pid": 7911, 
        "state": "S", 
        "pc": "f7156f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "plsm"
      }, 
      {
        "pid": 7912, 
        "state": "S", 
        "pc": "f703ef38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "plcmgr"
      }, 
      {
        "pid": 7913, 
        "state": "S", 
        "pc": "f71eff38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "pixmc"
      }, 
      {
        "pid": 7914, 
        "state": "S", 
        "pc": "f668bb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "pfstat"
      }, 
      {
        "pid": 7916, 
        "state": "S", 
        "pc": "f724ef38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "monitorc"
      }, 
      {
        "pid": 7917, 
        "state": "S", 
        "pc": "f60d2b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "lim"
      }, 
      {
        "pid": 7918, 
        "state": "S", 
        "pc": "f65efe4c", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "l2rib"
      }, 
      {
        "pid": 7919, 
        "state": "S", 
        "pc": "f648a1a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "igmp"
      }, 
      {
        "pid": 7920, 
        "state": "S", 
        "pc": "f6533b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "giscm"
      }, 
      {
        "pid": 7921, 
        "state": "S", 
        "pc": "f613db22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "eltm"
      }, 
      {
        "pid": 7922, 
        "state": "S", 
        "pc": "f68951a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ecp"
      }, 
      {
        "pid": 7924, 
        "state": "S", 
        "pc": "f5d79b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "adbm"
      }, 
      {
        "pid": 7925, 
        "state": "S", 
        "pc": "f6af6f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "acllog"
      }, 
      {
        "pid": 7952, 
        "state": "S", 
        "pc": "f61c3b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "monitor"
      }, 
      {
        "pid": 7953, 
        "state": "S", 
        "pc": "f65dfb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "eth_port_channel"
      }, 
      {
        "pid": 7954, 
        "state": "S", 
        "pc": "f62cdb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "vlan_mgr"
      }, 
      {
        "pid": 7962, 
        "state": "S", 
        "pc": "f73fcf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "eth_dstats"
      }, 
      {
        "pid": 7963, 
        "state": "S", 
        "pc": "f647ff38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ipqosmgr"
      }, 
      {
        "pid": 7964, 
        "state": "S", 
        "pc": "f6854f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "lacp"
      }, 
      {
        "pid": 7965, 
        "state": "S", 
        "pc": "f70f5f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "diag_port_lb"
      }, 
      {
        "pid": 7966, 
        "state": "S", 
        "pc": "f635fb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ethpm"
      }, 
      {
        "pid": 7967, 
        "state": "S", 
        "pc": "f6065b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "l2fm"
      }, 
      {
        "pid": 7968, 
        "state": "S", 
        "pc": "f666db22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "mhbfd_tracker"
      }, 
      {
        "pid": 7969, 
        "state": "S", 
        "pc": "f5f53b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "aclqos"
      }, 
      {
        "pid": 7970, 
        "state": "S", 
        "pc": "f6236f67", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "stp"
      }, 
      {
        "pid": 8004, 
        "state": "S", 
        "pc": "f6293b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "copp"
      }, 
      {
        "pid": 8057, 
        "state": "S", 
        "pc": "f617bb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "vpc"
      }, 
      {
        "pid": 8058, 
        "state": "S", 
        "pc": "f7115f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "u2"
      }, 
      {
        "pid": 8059, 
        "state": "S", 
        "pc": "f732df38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "spm"
      }, 
      {
        "pid": 8060, 
        "state": "S", 
        "pc": "f6643b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "sal"
      }, 
      {
        "pid": 8061, 
        "state": "S", 
        "pc": "f63d21a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "mrib"
      }, 
      {
        "pid": 8062, 
        "state": "S", 
        "pc": "f6354b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "mfdm"
      }, 
      {
        "pid": 8063, 
        "state": "S", 
        "pc": "f724af38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "mcm"
      }, 
      {
        "pid": 8064, 
        "state": "S", 
        "pc": "f65db1a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "m6rib"
      }, 
      {
        "pid": 8065, 
        "state": "S", 
        "pc": "f64adb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "l2pt"
      }, 
      {
        "pid": 8066, 
        "state": "S", 
        "pc": "f5fb5b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "hsrp_engine"
      }, 
      {
        "pid": 8075, 
        "state": "S", 
        "pc": "f6316b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ufdm"
      }, 
      {
        "pid": 8079, 
        "state": "S", 
        "pc": "f6730390", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "mcastfwd"
      }, 
      {
        "pid": 8084, 
        "state": "S", 
        "pc": "f6489b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "interface-vlan"
      }, 
      {
        "pid": 8094, 
        "state": "S", 
        "pc": "f68b9f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "m2rib"
      }, 
      {
        "pid": 8131, 
        "state": "S", 
        "pc": "f648ab22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "vntag_mgr"
      }, 
      {
        "pid": 8132, 
        "state": "S", 
        "pc": "f6d13f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "fex"
      }, 
      {
        "pid": 8188, 
        "state": "S", 
        "pc": "f7223f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "port_client"
      }, 
      {
        "pid": 8189, 
        "state": "S", 
        "pc": "f6c33f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "statsclient"
      }, 
      {
        "pid": 8190, 
        "state": "S", 
        "pc": "f7473f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VU", 
        "process": "xbar_client"
      }, 
      {
        "pid": 8576, 
        "state": "S", 
        "pc": "48c9a5c0", 
        "start_cnt": 1, 
        "tty": "S0", 
        "p_type": "O", 
        "process": "login"
      }, 
      {
        "pid": 8577, 
        "state": "S", 
        "pc": "f760765e", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "O", 
        "process": "sh"
      }, 
      {
        "pid": 8581, 
        "state": "S", 
        "pc": "48dd61a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "O", 
        "process": "libvirtd"
      }, 
      {
        "pid": 9170, 
        "state": "S", 
        "pc": "f637bf67", 
        "start_cnt": 1, 
        "tty": "S0", 
        "p_type": "O", 
        "process": "vsh"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ldap"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "tacacs"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis_fabricpath"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis_otv"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "rip"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "rip"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "rip"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "rip"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "amt"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "bfd"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "bfd_app"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "bgp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "bulkstat"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "catena"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "cmm"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "cts"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "dcm_cli_dp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "dcm_core"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "dcm_snmp_dp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "dhcp_snoop"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "dot1x"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "dpt"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "drap"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "elo"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "epld_main_auto"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "epld_upgrade"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eth_port_sec"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "evb"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "evc"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "evmed"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "fabric-access"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "fabric_mcast"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "fpoam"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "glbp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "hmm"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "icam"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "imp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "installer"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ipp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "iscm"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "l2vpn"
      }, 
      {
        "pid": "-", 
        "state": "ER", 
        "pc": "-", 
        "start_cnt": 16777216, 
        "tty": "-", 
        "p_type": "X", 
        "process": "lcdc3_syncpoint1"
      }, 
      {
        "pid": "-", 
        "state": "ER", 
        "pc": "-", 
        "start_cnt": 16777216, 
        "tty": "-", 
        "p_type": "X", 
        "process": "lcdc3_syncpoint2"
      }, 
      {
        "pid": "-", 
        "state": "ER", 
        "pc": "-", 
        "start_cnt": 16777216, 
        "tty": "-", 
        "p_type": "X", 
        "process": "lcdc3_syncpoint3"
      }, 
      {
        "pid": "-", 
        "state": "ER", 
        "pc": "-", 
        "start_cnt": 16777216, 
        "tty": "-", 
        "p_type": "X", 
        "process": "lcdc3_syncpoint4"
      }, 
      {
        "pid": "-", 
        "state": "ER", 
        "pc": "-", 
        "start_cnt": 16777216, 
        "tty": "-", 
        "p_type": "X", 
        "process": "lcdc3_syncpoint5"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ldp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "lisp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "lldp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "mka"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "mpls"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "mpls_oam"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "mpls_te"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "msdp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "msrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "mvrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "nfm"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ngoam"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "nve"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "nxapi"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "oim"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "onep"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "orib"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "otv"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "pim"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "pim6"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "plbm"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "pnp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "poap"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "pong"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "private-vlan"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ptp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "rsvp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "sc_engine"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "scheduler"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "sla_responder"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "sla_sender"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "sla_twamp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "smartc"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "telemetry"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "tunnel"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "u2rib"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "udld"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ulib"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "vbuilder"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "vmtracker"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "vnsegment_mgr"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "vrrp-cfg"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "vrrp-eng"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "vrrpv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "vtp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "wccp"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:process" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <processes>
    <__readonly__>
     <TABLE_processes>
      <ROW_processes>
       <pid>1</pid>
       <state>S</state>
       <pc>f76ccf38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>O</p_type>
       <process>init</process>
      </ROW_processes>
      <ROW_processes>
       <pid>2851</pid>
       <state>S</state>
       <pc>f76988ad</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>O</p_type>
       <process>mcelog</process>
      </ROW_processes>
      <ROW_processes>
       <pid>5764</pid>
       <state>S</state>
       <pc>f765f80e</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>O</p_type>
       <process>portmap</process>
      </ROW_processes>
      <ROW_processes>
       <pid>5767</pid>
       <state>S</state>
       <pc>f771ff38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>O</p_type>
       <process>rpc.statd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>5787</pid>
       <state>S</state>
       <pc>f764ff38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>O</p_type>
       <process>rpc.mountd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>5800</pid>
       <state>S</state>
       <pc>f7202f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>sysmgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>6949</pid>
       <state>S</state>
       <pc>48cc9f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>xinetd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>6950</pid>
       <state>S</state>
       <pc>48cc9f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>tftpd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>6951</pid>
       <state>S</state>
       <pc>f63b2b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>syslogd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>6952</pid>
       <state>S</state>
       <pc>f750cf38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>sdwrapd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>6953</pid>
       <state>S</state>
       <pc>f74fa634</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>pfm_dummy</process>
      </ROW_processes>
      <ROW_processes>
       <pid>6954</pid>
       <state>S</state>
       <pc>f6bb5f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>platform</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7023</pid>
       <state>S</state>
       <pc>f6c88f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>cmond</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7041</pid>
       <state>S</state>
       <pc>f6483b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>vshd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7042</pid>
       <state>S</state>
       <pc>f7290f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>vpc_config_sync</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7043</pid>
       <state>S</state>
       <pc>f687b1a1</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>smm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7044</pid>
       <state>S</state>
       <pc>f74f0f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>session-mgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7045</pid>
       <state>S</state>
       <pc>f6a90f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>psshelper</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7046</pid>
       <state>S</state>
       <pc>f7123f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>pixm_vl</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7047</pid>
       <state>S</state>
       <pc>f70f3f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>pixm_gl</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7048</pid>
       <state>S</state>
       <pc>f74f11a1</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>pdsd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7049</pid>
       <state>S</state>
       <pc>f6252b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>mmode</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7051</pid>
       <state>S</state>
       <pc>48cc9f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>lmgrd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7052</pid>
       <state>S</state>
       <pc>48cc9634</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>licmgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7053</pid>
       <state>S</state>
       <pc>f744af38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>fs-daemon</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7055</pid>
       <state>S</state>
       <pc>f6616b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>feature-mgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7056</pid>
       <state>S</state>
       <pc>f7368f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>confcheck</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7057</pid>
       <state>S</state>
       <pc>f7492f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>capability</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7058</pid>
       <state>S</state>
       <pc>f6431b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>bloggerd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7059</pid>
       <state>S</state>
       <pc>f6b03f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>psshelper_gsvc</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7068</pid>
       <state>S</state>
       <pc>48cc9f67</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>O</p_type>
       <process>cisco</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7078</pid>
       <state>S</state>
       <pc>f62e4b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>clis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7081</pid>
       <state>S</state>
       <pc>f60e7b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>port-profile</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7189</pid>
       <state>S</state>
       <pc>48cc9f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>O</p_type>
       <process>dhcpd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7193</pid>
       <state>S</state>
       <pc>f7453f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>xmpp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7194</pid>
       <state>S</state>
       <pc>f6552b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>xmlma</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7195</pid>
       <state>S</state>
       <pc>f7301f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>vmm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7196</pid>
       <state>S</state>
       <pc>f6093634</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>vman</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7198</pid>
       <state>S</state>
       <pc>f6945f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>vdc_mgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7199</pid>
       <state>S</state>
       <pc>f75b6f67</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>usbhsd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7200</pid>
       <state>S</state>
       <pc>f723ef38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>ttyd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7201</pid>
       <state>S</state>
       <pc>f75e7f67</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>sysinfo</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7202</pid>
       <state>S</state>
       <pc>f73a1f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>statsprofiler</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7203</pid>
       <state>S</state>
       <pc>f6b73f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>snmpmib_proc</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7204</pid>
       <state>S</state>
       <pc>f690ff38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>sksd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7206</pid>
       <state>S</state>
       <pc>f64d0b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>rtd_monitor</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7207</pid>
       <state>S</state>
       <pc>f741f3b3</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>res_mgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7208</pid>
       <state>S</state>
       <pc>f737df67</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>plugin</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7209</pid>
       <state>S</state>
       <pc>f75abf38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>plog_sup</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7210</pid>
       <state>S</state>
       <pc>f74e8f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>patch-installer</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7211</pid>
       <state>S</state>
       <pc>f7346f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>mvsh</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7212</pid>
       <state>S</state>
       <pc>f7436f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>mping_server</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7213</pid>
       <state>S</state>
       <pc>f69f7f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>fw_app</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7214</pid>
       <state>S</state>
       <pc>f73a68ad</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>fmd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7215</pid>
       <state>S</state>
       <pc>f728cf38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>evms</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7217</pid>
       <state>S</state>
       <pc>f73c4f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>evmc</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7218</pid>
       <state>S</state>
       <pc>f710d634</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>epld_upgrade_stdby</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7219</pid>
       <state>S</state>
       <pc>f7139f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>epld_auto</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7220</pid>
       <state>S</state>
       <pc>f7488f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>diagmgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7221</pid>
       <state>S</state>
       <pc>f2b78f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>crdcfg_server</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7222</pid>
       <state>S</state>
       <pc>f6a9af38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>core-dmon</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7223</pid>
       <state>S</state>
       <pc>f7491f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>clk_mgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7224</pid>
       <state>S</state>
       <pc>f74d1f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>cli_acl</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7225</pid>
       <state>S</state>
       <pc>f74db634</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>bios_daemon</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7226</pid>
       <state>S</state>
       <pc>f5ee5634</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>ascii-cfg</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7227</pid>
       <state>S</state>
       <pc>f6403634</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>securityd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7228</pid>
       <state>S</state>
       <pc>f602bb22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>cert_enroll</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7229</pid>
       <state>S</state>
       <pc>f69b5f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>aaa</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7230</pid>
       <state>S</state>
       <pc>f7511634</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>obfl</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7237</pid>
       <state>S</state>
       <pc>f66c71a1</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>l3vm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7238</pid>
       <state>S</state>
       <pc>f65ca1a1</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>urib</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7246</pid>
       <state>S</state>
       <pc>f7217f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>diagclient</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7274</pid>
       <state>S</state>
       <pc>f6b36f67</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>device_test</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7280</pid>
       <state>S</state>
       <pc>f6a71f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>aclmgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7290</pid>
       <state>S</state>
       <pc>f66fa1a1</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>adjmgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7291</pid>
       <state>S</state>
       <pc>f666e1a1</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>u6rib</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7296</pid>
       <state>S</state>
       <pc>f71abf38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>eem_policy_dir</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7368</pid>
       <state>S</state>
       <pc>f702a1a1</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>npacl</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7375</pid>
       <state>S</state>
       <pc>f64871a1</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>arp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7376</pid>
       <state>S</state>
       <pc>f6545808</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>icmpv6</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7409</pid>
       <state>S</state>
       <pc>f6e7cf38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>xbar</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7430</pid>
       <state>S</state>
       <pc>f728af38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>module</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7449</pid>
       <state>S</state>
       <pc>f719cf67</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>ExceptionLog</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7450</pid>
       <state>S</state>
       <pc>f7433f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>bootvar</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7451</pid>
       <state>S</state>
       <pc>f737bf38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>cardclient</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7452</pid>
       <state>S</state>
       <pc>f6efcf38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>ifmgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7469</pid>
       <state>S</state>
       <pc>f7097f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>ncpinframgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7471</pid>
       <state>S</state>
       <pc>f65b01a1</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>pktmgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7478</pid>
       <state>S</state>
       <pc>f6aacf38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>clp_elam</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7479</pid>
       <state>S</state>
       <pc>f6af8f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>clp_fwd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7480</pid>
       <state>S</state>
       <pc>f6b83f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>clp_l3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7481</pid>
       <state>S</state>
       <pc>f6b3af38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>clp_mac</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7483</pid>
       <state>S</state>
       <pc>f6aeaf38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>clp_xbar</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7484</pid>
       <state>S</state>
       <pc>f6cd0f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>lit</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7486</pid>
       <state>S</state>
       <pc>f6af5f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>sac_usd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7487</pid>
       <state>S</state>
       <pc>f74c3f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>sensor</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7488</pid>
       <state>S</state>
       <pc>f6873f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>sm15_usd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7497</pid>
       <state>S</state>
       <pc>f63cb1a1</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>netstack</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7541</pid>
       <state>S</state>
       <pc>f612eb22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>radius</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7542</pid>
       <state>S</state>
       <pc>f6296b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>cdp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7544</pid>
       <state>S</state>
       <pc>f6526b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>cfs</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7545</pid>
       <state>S</state>
       <pc>f7619634</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>ip_dummy</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7546</pid>
       <state>S</state>
       <pc>f75ee634</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>ipv6_dummy</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7547</pid>
       <state>S</state>
       <pc>f64dcb22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>ntp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7548</pid>
       <state>S</state>
       <pc>f6296b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>otm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7549</pid>
       <state>S</state>
       <pc>f670eb22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>snmpd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7550</pid>
       <state>S</state>
       <pc>f75dc634</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>tcpudp_dummy</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7557</pid>
       <state>S</state>
       <pc>48cccb22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>dcos-xinetd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7594</pid>
       <state>S</state>
       <pc>f1b53b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>O</p_type>
       <process>ntpd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7600</pid>
       <state>S</state>
       <pc>f6aadb22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>callhome</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7906</pid>
       <state>S</state>
       <pc>48cc9f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>tftp_aa</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7907</pid>
       <state>S</state>
       <pc>f6646b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>sim</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7908</pid>
       <state>S</state>
       <pc>f65a21a1</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>rpm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7909</pid>
       <state>S</state>
       <pc>f7328f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>pltfm_debug</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7910</pid>
       <state>S</state>
       <pc>f6456b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>pltfm_config</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7911</pid>
       <state>S</state>
       <pc>f7156f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>plsm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7912</pid>
       <state>S</state>
       <pc>f703ef38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>plcmgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7913</pid>
       <state>S</state>
       <pc>f71eff38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>pixmc</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7914</pid>
       <state>S</state>
       <pc>f668bb22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>pfstat</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7916</pid>
       <state>S</state>
       <pc>f724ef38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>monitorc</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7917</pid>
       <state>S</state>
       <pc>f60d2b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>lim</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7918</pid>
       <state>S</state>
       <pc>f65efe4c</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>l2rib</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7919</pid>
       <state>S</state>
       <pc>f648a1a1</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>igmp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7920</pid>
       <state>S</state>
       <pc>f6533b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>giscm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7921</pid>
       <state>S</state>
       <pc>f613db22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>eltm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7922</pid>
       <state>S</state>
       <pc>f68951a1</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>ecp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7924</pid>
       <state>S</state>
       <pc>f5d79b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>adbm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7925</pid>
       <state>S</state>
       <pc>f6af6f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>acllog</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7952</pid>
       <state>S</state>
       <pc>f61c3b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>monitor</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7953</pid>
       <state>S</state>
       <pc>f65dfb22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>eth_port_channel</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7954</pid>
       <state>S</state>
       <pc>f62cdb22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>vlan_mgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7962</pid>
       <state>S</state>
       <pc>f73fcf38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>eth_dstats</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7963</pid>
       <state>S</state>
       <pc>f647ff38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>ipqosmgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7964</pid>
       <state>S</state>
       <pc>f6854f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>lacp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7965</pid>
       <state>S</state>
       <pc>f70f5f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VG</p_type>
       <process>diag_port_lb</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7966</pid>
       <state>S</state>
       <pc>f635fb22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>ethpm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7967</pid>
       <state>S</state>
       <pc>f6065b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>l2fm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7968</pid>
       <state>S</state>
       <pc>f666db22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>mhbfd_tracker</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7969</pid>
       <state>S</state>
       <pc>f5f53b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>aclqos</process>
      </ROW_processes>
      <ROW_processes>
       <pid>7970</pid>
       <state>S</state>
       <pc>f6236f67</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>stp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8004</pid>
       <state>S</state>
       <pc>f6293b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>copp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8057</pid>
       <state>S</state>
       <pc>f617bb22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>vpc</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8058</pid>
       <state>S</state>
       <pc>f7115f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>u2</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8059</pid>
       <state>S</state>
       <pc>f732df38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>spm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8060</pid>
       <state>S</state>
       <pc>f6643b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>sal</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8061</pid>
       <state>S</state>
       <pc>f63d21a1</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>mrib</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8062</pid>
       <state>S</state>
       <pc>f6354b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>mfdm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8063</pid>
       <state>S</state>
       <pc>f724af38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>mcm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8064</pid>
       <state>S</state>
       <pc>f65db1a1</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>m6rib</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8065</pid>
       <state>S</state>
       <pc>f64adb22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>l2pt</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8066</pid>
       <state>S</state>
       <pc>f5fb5b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>hsrp_engine</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8075</pid>
       <state>S</state>
       <pc>f6316b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>ufdm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8079</pid>
       <state>S</state>
       <pc>f6730390</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>mcastfwd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8084</pid>
       <state>S</state>
       <pc>f6489b22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>interface-vlan</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8094</pid>
       <state>S</state>
       <pc>f68b9f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>m2rib</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8131</pid>
       <state>S</state>
       <pc>f648ab22</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>vntag_mgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8132</pid>
       <state>S</state>
       <pc>f6d13f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VL</p_type>
       <process>fex</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8188</pid>
       <state>S</state>
       <pc>f7223f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>port_client</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8189</pid>
       <state>S</state>
       <pc>f6c33f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>statsclient</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8190</pid>
       <state>S</state>
       <pc>f7473f38</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>VU</p_type>
       <process>xbar_client</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8576</pid>
       <state>S</state>
       <pc>48c9a5c0</pc>
       <start_cnt>1</start_cnt>
       <tty>S0</tty>
       <p_type>O</p_type>
       <process>login</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8577</pid>
       <state>S</state>
       <pc>f760765e</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>O</p_type>
       <process>sh</process>
      </ROW_processes>
      <ROW_processes>
       <pid>8581</pid>
       <state>S</state>
       <pc>48dd61a1</pc>
       <start_cnt>1</start_cnt>
       <tty>-</tty>
       <p_type>O</p_type>
       <process>libvirtd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>9170</pid>
       <state>S</state>
       <pc>f637bf67</pc>
       <start_cnt>1</start_cnt>
       <tty>S0</tty>
       <p_type>O</p_type>
       <process>vsh</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ldap</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>tacacs</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eigrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis_fabricpath</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis_otv</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospf</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospfv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>rip</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eigrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospf</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospfv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>rip</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eigrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospf</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospfv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>rip</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eigrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospf</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospfv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>rip</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eigrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospf</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospfv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eigrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospf</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospfv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eigrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospf</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospfv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eigrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospf</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospfv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eigrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospf</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospfv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eigrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospf</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospfv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eigrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospf</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospfv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eigrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospf</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospfv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eigrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospf</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospfv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eigrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospf</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospfv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eigrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospf</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospfv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eigrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>isis</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospf</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ospfv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>amt</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>bfd</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>bfd_app</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>bgp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>bulkstat</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>catena</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>cmm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>cts</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>dcm_cli_dp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>dcm_core</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>dcm_snmp_dp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>dhcp_snoop</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>dot1x</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>dpt</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>drap</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>elo</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>epld_main_auto</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>epld_upgrade</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>eth_port_sec</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>evb</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>evc</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>evmed</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>fabric-access</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>fabric_mcast</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>fpoam</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>glbp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>hmm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>icam</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>imp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>installer</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ipp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>iscm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>l2vpn</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>ER</state>
       <pc>-</pc>
       <start_cnt>16777216</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>lcdc3_syncpoint1</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>ER</state>
       <pc>-</pc>
       <start_cnt>16777216</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>lcdc3_syncpoint2</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>ER</state>
       <pc>-</pc>
       <start_cnt>16777216</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>lcdc3_syncpoint3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>ER</state>
       <pc>-</pc>
       <start_cnt>16777216</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>lcdc3_syncpoint4</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>ER</state>
       <pc>-</pc>
       <start_cnt>16777216</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>lcdc3_syncpoint5</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ldp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>lisp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>lldp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>mka</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>mpls</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>mpls_oam</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>mpls_te</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>msdp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>msrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>mvrp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>nfm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ngoam</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>nve</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>nxapi</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>oim</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>onep</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>orib</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>otv</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>pim</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>pim6</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>plbm</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>pnp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>poap</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>pong</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>private-vlan</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ptp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>rsvp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>sc_engine</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>scheduler</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>sla_responder</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>sla_sender</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>sla_twamp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>smartc</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>telemetry</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>tunnel</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>u2rib</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>udld</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>ulib</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>vbuilder</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>vmtracker</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>vnsegment_mgr</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>vrrp-cfg</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>vrrp-eng</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>vrrpv3</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>vtp</process>
      </ROW_processes>
      <ROW_processes>
       <pid>-</pid>
       <state>NR</state>
       <pc>-</pc>
       <start_cnt>0</start_cnt>
       <tty>-</tty>
       <p_type>X</p_type>
       <process>wccp</process>
      </ROW_processes>
     </TABLE_processes>
    </__readonly__>
   </processes>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show processes**

PID    State  PC        Start_cnt    TTY   Type  Process
-----  -----  --------  -----------  ----  ----  -------------
    1      S  f76ccf38            1     -     O  init
 2851      S  f76988ad            1     -     O  mcelog
 5764      S  f765f80e            1     -     O  portmap
 5767      S  f771ff38            1     -     O  rpc.statd
 5787      S  f764ff38            1     -     O  rpc.mountd
 5800      S  f7202f38            1     -    VG  sysmgr
 6949      S  48cc9f38            1     -    VU  xinetd
 6950      S  48cc9f38            1     -    VU  tftpd
 6951      S  f63b2b22            1     -    VL  syslogd
 6952      S  f750cf38            1     -    VU  sdwrapd
 6953      S  f74fa634            1     -    VU  pfm_dummy
 6954      S  f6bb5f38            1     -    VG  platform
 7023      S  f6c88f38            1     -    VU  cmond
 7041      S  f6483b22            1     -    VL  vshd
 7042      S  f7290f38            1     -    VL  vpc_config_sync
 7043      S  f687b1a1            1     -    VL  smm
 7044      S  f74f0f38            1     -    VL  session-mgr
 7045      S  f6a90f38            1     -    VL  psshelper
 7046      S  f7123f38            1     -    VL  pixm_vl
 7047      S  f70f3f38            1     -    VG  pixm_gl
 7048      S  f74f11a1            1     -    VG  pdsd
 7049      S  f6252b22            1     -    VL  mmode
 7051      S  48cc9f38            1     -    VU  lmgrd
 7052      S  48cc9634            1     -    VG  licmgr
 7053      S  f744af38            1     -    VG  fs-daemon
 7055      S  f6616b22            1     -    VL  feature-mgr
 7056      S  f7368f38            1     -    VL  confcheck
 7057      S  f7492f38            1     -    VU  capability
 7058      S  f6431b22            1     -    VG  bloggerd
 7059      S  f6b03f38            1     -    VU  psshelper_gsvc
 7068      S  48cc9f67            1     -     O  cisco
 7078      S  f62e4b22            1     -    VL  clis
 7081      S  f60e7b22            1     -    VL  port-profile
 7189      S  48cc9f38            1     -     O  dhcpd
 7193      S  f7453f38            1     -    VL  xmpp
 7194      S  f6552b22            1     -    VL  xmlma
 7195      S  f7301f38            1     -    VL  vmm
 7196      S  f6093634            1     -    VL  vman
 7198      S  f6945f38            1     -    VG  vdc_mgr
 7199      S  f75b6f67            1     -    VU  usbhsd
 7200      S  f723ef38            1     -    VU  ttyd
 7201      S  f75e7f67            1     -    VG  sysinfo
 7202      S  f73a1f38            1     -    VL  statsprofiler
 7203      S  f6b73f38            1     -    VL  snmpmib_proc
 7204      S  f690ff38            1     -    VL  sksd
 7206      S  f64d0b22            1     -    VU  rtd_monitor
 7207      S  f741f3b3            1     -    VG  res_mgr
 7208      S  f737df67            1     -    VG  plugin
 7209      S  f75abf38            1     -    VU  plog_sup
 7210      S  f74e8f38            1     -    VU  patch-installer
 7211      S  f7346f38            1     -    VL  mvsh
 7212      S  f7436f38            1     -    VL  mping_server
 7213      S  f69f7f38            1     -    VU  fw_app
 7214      S  f73a68ad            1     -    VL  fmd
 7215      S  f728cf38            1     -    VL  evms
 7217      S  f73c4f38            1     -    VL  evmc
 7218      S  f710d634            1     -    VU  epld_upgrade_stdby
 7219      S  f7139f38            1     -    VU  epld_auto
 7220      S  f7488f38            1     -    VG  diagmgr
 7221      S  f2b78f38            1     -    VU  crdcfg_server
 7222      S  f6a9af38            1     -    VU  core-dmon
 7223      S  f7491f38            1     -    VG  clk_mgr
 7224      S  f74d1f38            1     -    VL  cli_acl
 7225      S  f74db634            1     -    VU  bios_daemon
 7226      S  f5ee5634            1     -    VL  ascii-cfg
 7227      S  f6403634            1     -    VL  securityd
 7228      S  f602bb22            1     -    VL  cert_enroll
 7229      S  f69b5f38            1     -    VL  aaa
 7230      S  f7511634            1     -    VU  obfl
 7237      S  f66c71a1            1     -    VL  l3vm
 7238      S  f65ca1a1            1     -    VL  urib
 7246      S  f7217f38            1     -    VG  diagclient
 7274      S  f6b36f67            1     -    VU  device_test
 7280      S  f6a71f38            1     -    VL  aclmgr
 7290      S  f66fa1a1            1     -    VL  adjmgr
 7291      S  f666e1a1            1     -    VL  u6rib
 7296      S  f71abf38            1     -    VL  eem_policy_dir
 7368      S  f702a1a1            1     -    VL  npacl
 7375      S  f64871a1            1     -    VL  arp
 7376      S  f6545808            1     -    VL  icmpv6
 7409      S  f6e7cf38            1     -    VG  xbar
 7430      S  f728af38            1     -    VG  module
 7449      S  f719cf67            1     -    VU  ExceptionLog
 7450      S  f7433f38            1     -    VU  bootvar
 7451      S  f737bf38            1     -    VU  cardclient
 7452      S  f6efcf38            1     -    VG  ifmgr
 7469      S  f7097f38            1     -    VL  ncpinframgr
 7471      S  f65b01a1            1     -    VL  pktmgr
 7478      S  f6aacf38            1     -    VU  clp_elam
 7479      S  f6af8f38            1     -    VU  clp_fwd
 7480      S  f6b83f38            1     -    VU  clp_l3
 7481      R  f6b3a634            1     -    VU  clp_mac
 7483      S  f6aeaf38            1     -    VU  clp_xbar
 7484      S  f6cd0f38            1     -    VU  lit
 7486      S  f6af5f38            1     -    VU  sac_usd
 7487      S  f74c3f38            1     -    VU  sensor
 7488      S  f6873f38            1     -    VU  sm15_usd
 7497      S  f63cb1a1            1     -    VL  netstack
 7541      S  f612eb22            1     -    VL  radius
 7542      S  f6296b22            1     -    VL  cdp
 7544      S  f6526b22            1     -    VL  cfs
 7545      S  f7619634            1     -    VL  ip_dummy
 7546      S  f75ee634            1     -    VL  ipv6_dummy
 7547      S  f64dcb22            1     -    VL  ntp
 7548      S  f6296b22            1     -    VL  otm
 7549      S  f670eb22            1     -    VL  snmpd
 7550      S  f75dc634            1     -    VL  tcpudp_dummy
 7557      S  48cccb22            1     -    VL  dcos-xinetd
 7594      S  f1b53b22            1     -     O  ntpd
 7600      S  f6aadb22            1     -    VL  callhome
 7906      S  48cc9f38            1     -    VU  tftp_aa
 7907      S  f6646b22            1     -    VG  sim
 7908      S  f65a21a1            1     -    VL  rpm
 7909      S  f7328f38            1     -    VG  pltfm_debug
 7910      S  f6456b22            1     -    VG  pltfm_config
 7911      S  f7156f38            1     -    VL  plsm
 7912      S  f703ef38            1     -    VL  plcmgr
 7913      S  f71eff38            1     -    VG  pixmc
 7914      S  f668bb22            1     -    VL  pfstat
 7916      S  f724ef38            1     -    VG  monitorc
 7917      S  f60d2b22            1     -    VL  lim
 7918      S  f65efe4c            1     -    VL  l2rib
 7919      S  f648a1a1            1     -    VL  igmp
 7920      S  f6533b22            1     -    VG  giscm
 7921      S  f613db22            1     -    VL  eltm
 7922      S  f68951a1            1     -    VL  ecp
 7924      S  f5d79b22            1     -    VL  adbm
 7925      S  f6af6f38            1     -    VL  acllog
 7952      S  f61c3b22            1     -    VL  monitor
 7953      S  f65dfb22            1     -    VL  eth_port_channel
 7954      S  f62cdb22            1     -    VL  vlan_mgr
 7962      S  f73fcf38            1     -    VL  eth_dstats
 7963      S  f647ff38            1     -    VL  ipqosmgr
 7964      S  f6854f38            1     -    VL  lacp
 7965      S  f70f5f38            1     -    VG  diag_port_lb
 7966      S  f635fb22            1     -    VL  ethpm
 7967      S  f6065b22            1     -    VL  l2fm
 7968      S  f666db22            1     -    VL  mhbfd_tracker
 7969      S  f5f53b22            1     -    VL  aclqos
 7970      S  f6236f67            1     -    VL  stp
 8004      S  f6293b22            1     -    VU  copp
 8057      S  f617bb22            1     -    VL  vpc
 8058      S  f7115f38            1     -    VL  u2
 8059      S  f732df38            1     -    VL  spm
 8060      S  f6643b22            1     -    VL  sal
 8061      S  f63d21a1            1     -    VL  mrib
 8062      S  f6354b22            1     -    VL  mfdm
 8063      S  f724af38            1     -    VL  mcm
 8064      S  f65db1a1            1     -    VL  m6rib
 8065      S  f64adb22            1     -    VL  l2pt
 8066      S  f5fb5b22            1     -    VL  hsrp_engine
 8075      S  f6316b22            1     -    VL  ufdm
 8079      S  f6730390            1     -    VL  mcastfwd
 8084      S  f6489b22            1     -    VL  interface-vlan
 8094      S  f68b9f38            1     -    VL  m2rib
 8131      S  f648ab22            1     -    VL  vntag_mgr
 8132      S  f6d13f38            1     -    VL  fex
 8188      S  f7223f38            1     -    VU  port_client
 8189      S  f6c33f38            1     -    VU  statsclient
 8190      S  f7473f38            1     -    VU  xbar_client
 8576      S  48c9a5c0            1    S0     O  login
 8577      S  f760765e            1     -     O  sh
 8581      S  48dd61a1            1     -     O  libvirtd
 9170      S  f637bf67            1    S0     O  vsh
    -     NR         -            0     -     X  ldap
    -     NR         -            0     -     X  tacacs
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  isis_fabricpath
    -     NR         -            0     -     X  isis_otv
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  rip
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  rip
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  rip
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  rip
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  amt
    -     NR         -            0     -     X  bfd
    -     NR         -            0     -     X  bfd_app
    -     NR         -            0     -     X  bgp
    -     NR         -            0     -     X  bulkstat
    -     NR         -            0     -     X  catena
    -     NR         -            0     -     X  cmm
    -     NR         -            0     -     X  cts
    -     NR         -            0     -     X  dcm_cli_dp
    -     NR         -            0     -     X  dcm_core
    -     NR         -            0     -     X  dcm_snmp_dp
    -     NR         -            0     -     X  dhcp_snoop
    -     NR         -            0     -     X  dot1x
    -     NR         -            0     -     X  dpt
    -     NR         -            0     -     X  drap
    -     NR         -            0     -     X  elo
    -     NR         -            0     -     X  epld_main_auto
    -     NR         -            0     -     X  epld_upgrade
    -     NR         -            0     -     X  eth_port_sec
    -     NR         -            0     -     X  evb
    -     NR         -            0     -     X  evc
    -     NR         -            0     -     X  evmed
    -     NR         -            0     -     X  fabric-access
    -     NR         -            0     -     X  fabric_mcast
    -     NR         -            0     -     X  fpoam
    -     NR         -            0     -     X  glbp
    -     NR         -            0     -     X  hmm
    -     NR         -            0     -     X  icam
    -     NR         -            0     -     X  imp
    -     NR         -            0     -     X  installer
    -     NR         -            0     -     X  ipp
    -     NR         -            0     -     X  iscm
    -     NR         -            0     -     X  l2vpn
    -     ER         -     16777216     -     X  lcdc3_syncpoint1
    -     ER         -     16777216     -     X  lcdc3_syncpoint2
    -     ER         -     16777216     -     X  lcdc3_syncpoint3
    -     ER         -     16777216     -     X  lcdc3_syncpoint4
    -     ER         -     16777216     -     X  lcdc3_syncpoint5
    -     NR         -            0     -     X  ldp
    -     NR         -            0     -     X  lisp
    -     NR         -            0     -     X  lldp
    -     NR         -            0     -     X  mka
    -     NR         -            0     -     X  mpls
    -     NR         -            0     -     X  mpls_oam
    -     NR         -            0     -     X  mpls_te
    -     NR         -            0     -     X  msdp
    -     NR         -            0     -     X  msrp
    -     NR         -            0     -     X  mvrp
    -     NR         -            0     -     X  nfm
    -     NR         -            0     -     X  ngoam
    -     NR         -            0     -     X  nve
    -     NR         -            0     -     X  nxapi
    -     NR         -            0     -     X  oim
    -     NR         -            0     -     X  onep
    -     NR         -            0     -     X  orib
    -     NR         -            0     -     X  otv
    -     NR         -            0     -     X  pim
    -     NR         -            0     -     X  pim6
    -     NR         -            0     -     X  plbm
    -     NR         -            0     -     X  pnp
    -     NR         -            0     -     X  poap
    -     NR         -            0     -     X  pong
    -     NR         -            0     -     X  private-vlan
    -     NR         -            0     -     X  ptp
    -     NR         -            0     -     X  rsvp
    -     NR         -            0     -     X  sc_engine
    -     NR         -            0     -     X  scheduler
    -     NR         -            0     -     X  sla_responder
    -     NR         -            0     -     X  sla_sender
    -     NR         -            0     -     X  sla_twamp
    -     NR         -            0     -     X  smartc
    -     NR         -            0     -     X  telemetry
    -     NR         -            0     -     X  tunnel
    -     NR         -            0     -     X  u2rib
    -     NR         -            0     -     X  udld
    -     NR         -            0     -     X  ulib
    -     NR         -            0     -     X  vbuilder
    -     NR         -            0     -     X  vmtracker
    -     NR         -            0     -     X  vnsegment_mgr
    -     NR         -            0     -     X  vrrp-cfg
    -     NR         -            0     -     X  vrrp-eng
    -     NR         -            0     -     X  vrrpv3
    -     NR         -            0     -     X  vtp
    -     NR         -            0     -     X  wccp

State: R(runnable), S(sleeping), Z(defunct)

Type: U(unknown), O(non sysmgr) VL(vdc-local), VG(vdc-global), VU(vdc-unaware) NR(not running), ER(terminated etc)

show processes cpu

show processes cpu
 
import requests
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 processes cpu”,
  "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)
{
  "fivesec_percent": 1, 
  "fivesec_intr_percent": 0, 
  "onemin_percent": 1, 
  "fivemin_percent": 1, 
  "TABLE_process_cpu": {
    "ROW_process_cpu": [
      {
        "pid": 1, 
        "runtime": 2970, 
        "invoked": 773, 
        "usecs": 3, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "init"
      }, 
      {
        "pid": 2851, 
        "runtime": 0, 
        "invoked": 1, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mcelog"
      }, 
      {
        "pid": 5764, 
        "runtime": 0, 
        "invoked": 34, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "portmap"
      }, 
      {
        "pid": 5767, 
        "runtime": 0, 
        "invoked": 8, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "rpc.statd"
      }, 
      {
        "pid": 5787, 
        "runtime": 0, 
        "invoked": 1, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "rpc.mountd"
      }, 
      {
        "pid": 5800, 
        "runtime": 3220, 
        "invoked": 17561, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "sysmgr"
      }, 
      {
        "pid": 6949, 
        "runtime": 40, 
        "invoked": 176, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "xinetd"
      }, 
      {
        "pid": 6950, 
        "runtime": 80, 
        "invoked": 326, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "tftpd"
      }, 
      {
        "pid": 6951, 
        "runtime": 800, 
        "invoked": 2961, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "syslogd"
      }, 
      {
        "pid": 6952, 
        "runtime": 540, 
        "invoked": 41, 
        "usecs": 13, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "sdwrapd"
      }, 
      {
        "pid": 6953, 
        "runtime": 6290, 
        "invoked": 868, 
        "usecs": 7, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pfm_dummy"
      }, 
      {
        "pid": 6954, 
        "runtime": 220650, 
        "invoked": 6357, 
        "usecs": 34, 
        "fivesec": 0.0, 
        "onemin": 0.68, 
        "fivemin": 0.67, 
        "tty": "-", 
        "process": "platform"
      }, 
      {
        "pid": 7023, 
        "runtime": 5710, 
        "invoked": 757, 
        "usecs": 7, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "cmond"
      }, 
      {
        "pid": 7041, 
        "runtime": 600, 
        "invoked": 558, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "vshd"
      }, 
      {
        "pid": 7042, 
        "runtime": 620, 
        "invoked": 781, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "vpc_config_sync"
      }, 
      {
        "pid": 7043, 
        "runtime": 470, 
        "invoked": 66, 
        "usecs": 7, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "smm"
      }, 
      {
        "pid": 7044, 
        "runtime": 930, 
        "invoked": 485, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "session-mgr"
      }, 
      {
        "pid": 7045, 
        "runtime": 1400, 
        "invoked": 5459, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "psshelper"
      }, 
      {
        "pid": 7046, 
        "runtime": 1180, 
        "invoked": 818, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pixm_vl"
      }, 
      {
        "pid": 7047, 
        "runtime": 890, 
        "invoked": 884, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pixm_gl"
      }, 
      {
        "pid": 7048, 
        "runtime": 480, 
        "invoked": 12, 
        "usecs": 40, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pdsd"
      }, 
      {
        "pid": 7049, 
        "runtime": 610, 
        "invoked": 65, 
        "usecs": 9, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mmode"
      }, 
      {
        "pid": 7051, 
        "runtime": 50, 
        "invoked": 519, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "lmgrd"
      }, 
      {
        "pid": 7052, 
        "runtime": 660, 
        "invoked": 521, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "licmgr"
      }, 
      {
        "pid": 7053, 
        "runtime": 980, 
        "invoked": 252, 
        "usecs": 3, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "fs-daemon"
      }, 
      {
        "pid": 7055, 
        "runtime": 750, 
        "invoked": 589, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "feature-mgr"
      }, 
      {
        "pid": 7056, 
        "runtime": 550, 
        "invoked": 187, 
        "usecs": 2, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "confcheck"
      }, 
      {
        "pid": 7057, 
        "runtime": 820, 
        "invoked": 506, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "capability"
      }, 
      {
        "pid": 7058, 
        "runtime": 630, 
        "invoked": 2151, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "bloggerd"
      }, 
      {
        "pid": 7059, 
        "runtime": 1040, 
        "invoked": 2495, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "psshelper_gsvc"
      }, 
      {
        "pid": 7068, 
        "runtime": 90, 
        "invoked": 2109, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "cisco"
      }, 
      {
        "pid": 7078, 
        "runtime": 23120, 
        "invoked": 1015, 
        "usecs": 22, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "clis"
      }, 
      {
        "pid": 7081, 
        "runtime": 450, 
        "invoked": 211, 
        "usecs": 2, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "port-profile"
      }, 
      {
        "pid": 7189, 
        "runtime": 0, 
        "invoked": 217, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "dhcpd"
      }, 
      {
        "pid": 7193, 
        "runtime": 850, 
        "invoked": 464, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "xmpp"
      }, 
      {
        "pid": 7194, 
        "runtime": 570, 
        "invoked": 736, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "xmlma"
      }, 
      {
        "pid": 7195, 
        "runtime": 1310, 
        "invoked": 1341, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "vmm"
      }, 
      {
        "pid": 7196, 
        "runtime": 660, 
        "invoked": 328, 
        "usecs": 2, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "vman"
      }, 
      {
        "pid": 7198, 
        "runtime": 2160, 
        "invoked": 667, 
        "usecs": 3, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "vdc_mgr"
      }, 
      {
        "pid": 7199, 
        "runtime": 100, 
        "invoked": 570, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "usbhsd"
      }, 
      {
        "pid": 7200, 
        "runtime": 640, 
        "invoked": 1103, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ttyd"
      }, 
      {
        "pid": 7201, 
        "runtime": 50, 
        "invoked": 258, 
        "usecs": 0, 
        "fivesec": 0.07, 
        "onemin": 0.07, 
        "fivemin": 0.06, 
        "tty": "-", 
        "process": "sysinfo"
      }, 
      {
        "pid": 7202, 
        "runtime": 980, 
        "invoked": 514, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "statsprofiler"
      }, 
      {
        "pid": 7203, 
        "runtime": 950, 
        "invoked": 300, 
        "usecs": 3, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "snmpmib_proc"
      }, 
      {
        "pid": 7204, 
        "runtime": 600, 
        "invoked": 2164, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "sksd"
      }, 
      {
        "pid": 7206, 
        "runtime": 580, 
        "invoked": 539, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "rtd_monitor"
      }, 
      {
        "pid": 7207, 
        "runtime": 1230, 
        "invoked": 881, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "res_mgr"
      }, 
      {
        "pid": 7208, 
        "runtime": 670, 
        "invoked": 2185, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "plugin"
      }, 
      {
        "pid": 7209, 
        "runtime": 70, 
        "invoked": 654, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "plog_sup"
      }, 
      {
        "pid": 7210, 
        "runtime": 580, 
        "invoked": 401, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "patch-installer"
      }, 
      {
        "pid": 7211, 
        "runtime": 930, 
        "invoked": 197, 
        "usecs": 4, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mvsh"
      }, 
      {
        "pid": 7212, 
        "runtime": 30, 
        "invoked": 13, 
        "usecs": 2, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mping_server"
      }, 
      {
        "pid": 7213, 
        "runtime": 810, 
        "invoked": 52, 
        "usecs": 15, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "fw_app"
      }, 
      {
        "pid": 7214, 
        "runtime": 600, 
        "invoked": 867, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "fmd"
      }, 
      {
        "pid": 7215, 
        "runtime": 760, 
        "invoked": 1632, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "evms"
      }, 
      {
        "pid": 7217, 
        "runtime": 990, 
        "invoked": 475, 
        "usecs": 2, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "evmc"
      }, 
      {
        "pid": 7218, 
        "runtime": 510, 
        "invoked": 29, 
        "usecs": 17, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "epld_upgrade_stdby"
      }, 
      {
        "pid": 7219, 
        "runtime": 580, 
        "invoked": 46, 
        "usecs": 12, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "epld_auto"
      }, 
      {
        "pid": 7220, 
        "runtime": 3380, 
        "invoked": 2846, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "diagmgr"
      }, 
      {
        "pid": 7221, 
        "runtime": 1170, 
        "invoked": 1952, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "crdcfg_server"
      }, 
      {
        "pid": 7222, 
        "runtime": 910, 
        "invoked": 134, 
        "usecs": 6, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "core-dmon"
      }, 
      {
        "pid": 7223, 
        "runtime": 1330, 
        "invoked": 1900, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "clk_mgr"
      }, 
      {
        "pid": 7224, 
        "runtime": 960, 
        "invoked": 483, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "cli_acl"
      }, 
      {
        "pid": 7225, 
        "runtime": 430, 
        "invoked": 529, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "bios_daemon"
      }, 
      {
        "pid": 7226, 
        "runtime": 770, 
        "invoked": 604, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ascii-cfg"
      }, 
      {
        "pid": 7227, 
        "runtime": 700, 
        "invoked": 2228, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "securityd"
      }, 
      {
        "pid": 7228, 
        "runtime": 670, 
        "invoked": 2155, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "cert_enroll"
      }, 
      {
        "pid": 7229, 
        "runtime": 1030, 
        "invoked": 2383, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "aaa"
      }, 
      {
        "pid": 7230, 
        "runtime": 630, 
        "invoked": 453, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "obfl"
      }, 
      {
        "pid": 7237, 
        "runtime": 470, 
        "invoked": 81, 
        "usecs": 5, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "l3vm"
      }, 
      {
        "pid": 7238, 
        "runtime": 500, 
        "invoked": 85, 
        "usecs": 5, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "urib"
      }, 
      {
        "pid": 7246, 
        "runtime": 2290, 
        "invoked": 1464, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "diagclient"
      }, 
      {
        "pid": 7274, 
        "runtime": 750, 
        "invoked": 2916, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "device_test"
      }, 
      {
        "pid": 7280, 
        "runtime": 920, 
        "invoked": 801, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "aclmgr"
      }, 
      {
        "pid": 7290, 
        "runtime": 370, 
        "invoked": 59, 
        "usecs": 6, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "adjmgr"
      }, 
      {
        "pid": 7291, 
        "runtime": 370, 
        "invoked": 49, 
        "usecs": 7, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "u6rib"
      }, 
      {
        "pid": 7296, 
        "runtime": 420, 
        "invoked": 430, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "eem_policy_dir"
      }, 
      {
        "pid": 7368, 
        "runtime": 320, 
        "invoked": 19, 
        "usecs": 16, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "npacl"
      }, 
      {
        "pid": 7375, 
        "runtime": 370, 
        "invoked": 17, 
        "usecs": 21, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "arp"
      }, 
      {
        "pid": 7376, 
        "runtime": 320, 
        "invoked": 9, 
        "usecs": 35, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "icmpv6"
      }, 
      {
        "pid": 7409, 
        "runtime": 1480, 
        "invoked": 4339, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "xbar"
      }, 
      {
        "pid": 7430, 
        "runtime": 1930, 
        "invoked": 9196, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "module"
      }, 
      {
        "pid": 7449, 
        "runtime": 770, 
        "invoked": 43, 
        "usecs": 17, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ExceptionLog"
      }, 
      {
        "pid": 7450, 
        "runtime": 830, 
        "invoked": 1107, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "bootvar"
      }, 
      {
        "pid": 7451, 
        "runtime": 810, 
        "invoked": 564, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "cardclient"
      }, 
      {
        "pid": 7452, 
        "runtime": 1730, 
        "invoked": 867, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ifmgr"
      }, 
      {
        "pid": 7469, 
        "runtime": 780, 
        "invoked": 1911, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ncpinframgr"
      }, 
      {
        "pid": 7471, 
        "runtime": 370, 
        "invoked": 52, 
        "usecs": 7, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pktmgr"
      }, 
      {
        "pid": 7478, 
        "runtime": 800, 
        "invoked": 460, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "clp_elam"
      }, 
      {
        "pid": 7479, 
        "runtime": 1940, 
        "invoked": 15989, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "clp_fwd"
      }, 
      {
        "pid": 7480, 
        "runtime": 1170, 
        "invoked": 1391, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "clp_l3"
      }, 
      {
        "pid": 7481, 
        "runtime": 26920, 
        "invoked": 24890, 
        "usecs": 1, 
        "fivesec": 0.05, 
        "onemin": 0.07, 
        "fivemin": 0.07, 
        "tty": "-", 
        "process": "clp_mac"
      }, 
      {
        "pid": 7483, 
        "runtime": 21370, 
        "invoked": 4750, 
        "usecs": 4, 
        "fivesec": 0.11, 
        "onemin": 0.06, 
        "fivemin": 0.05, 
        "tty": "-", 
        "process": "clp_xbar"
      }, 
      {
        "pid": 7484, 
        "runtime": 4520, 
        "invoked": 5213, 
        "usecs": 0, 
        "fivesec": 0.03, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "lit"
      }, 
      {
        "pid": 7486, 
        "runtime": 26280, 
        "invoked": 8164, 
        "usecs": 3, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "sac_usd"
      }, 
      {
        "pid": 7487, 
        "runtime": 7100, 
        "invoked": 1580, 
        "usecs": 4, 
        "fivesec": 0.15, 
        "onemin": 0.02, 
        "fivemin": 0.01, 
        "tty": "-", 
        "process": "sensor"
      }, 
      {
        "pid": 7488, 
        "runtime": 18730, 
        "invoked": 23548, 
        "usecs": 0, 
        "fivesec": 0.01, 
        "onemin": 0.04, 
        "fivemin": 0.04, 
        "tty": "-", 
        "process": "sm15_usd"
      }, 
      {
        "pid": 7497, 
        "runtime": 520, 
        "invoked": 28, 
        "usecs": 18, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "netstack"
      }, 
      {
        "pid": 7541, 
        "runtime": 530, 
        "invoked": 2144, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "radius"
      }, 
      {
        "pid": 7542, 
        "runtime": 730, 
        "invoked": 1621, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "cdp"
      }, 
      {
        "pid": 7544, 
        "runtime": 560, 
        "invoked": 765, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "cfs"
      }, 
      {
        "pid": 7545, 
        "runtime": 20, 
        "invoked": 14, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ip_dummy"
      }, 
      {
        "pid": 7546, 
        "runtime": 30, 
        "invoked": 8, 
        "usecs": 3, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ipv6_dummy"
      }, 
      {
        "pid": 7547, 
        "runtime": 630, 
        "invoked": 1739, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ntp"
      }, 
      {
        "pid": 7548, 
        "runtime": 500, 
        "invoked": 972, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "otm"
      }, 
      {
        "pid": 7549, 
        "runtime": 2030, 
        "invoked": 6275, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "snmpd"
      }, 
      {
        "pid": 7550, 
        "runtime": 20, 
        "invoked": 6, 
        "usecs": 3, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "tcpudp_dummy"
      }, 
      {
        "pid": 7557, 
        "runtime": 290, 
        "invoked": 25, 
        "usecs": 11, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "dcos-xinetd"
      }, 
      {
        "pid": 7594, 
        "runtime": 410, 
        "invoked": 2125, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ntpd"
      }, 
      {
        "pid": 7600, 
        "runtime": 490, 
        "invoked": 2238, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "callhome"
      }, 
      {
        "pid": 7906, 
        "runtime": 20, 
        "invoked": 5, 
        "usecs": 4, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "tftp_aa"
      }, 
      {
        "pid": 7907, 
        "runtime": 710, 
        "invoked": 536, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "sim"
      }, 
      {
        "pid": 7908, 
        "runtime": 570, 
        "invoked": 60, 
        "usecs": 9, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "rpm"
      }, 
      {
        "pid": 7909, 
        "runtime": 720, 
        "invoked": 525, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pltfm_debug"
      }, 
      {
        "pid": 7910, 
        "runtime": 1010, 
        "invoked": 1640, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pltfm_config"
      }, 
      {
        "pid": 7911, 
        "runtime": 570, 
        "invoked": 498, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "plsm"
      }, 
      {
        "pid": 7912, 
        "runtime": 790, 
        "invoked": 1080, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "plcmgr"
      }, 
      {
        "pid": 7913, 
        "runtime": 740, 
        "invoked": 632, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pixmc"
      }, 
      {
        "pid": 7914, 
        "runtime": 840, 
        "invoked": 545, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pfstat"
      }, 
      {
        "pid": 7916, 
        "runtime": 680, 
        "invoked": 544, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "monitorc"
      }, 
      {
        "pid": 7917, 
        "runtime": 710, 
        "invoked": 475, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "lim"
      }, 
      {
        "pid": 7918, 
        "runtime": 660, 
        "invoked": 2124, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "l2rib"
      }, 
      {
        "pid": 7919, 
        "runtime": 650, 
        "invoked": 96, 
        "usecs": 6, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "igmp"
      }, 
      {
        "pid": 7920, 
        "runtime": 590, 
        "invoked": 495, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "giscm"
      }, 
      {
        "pid": 7921, 
        "runtime": 1090, 
        "invoked": 1228, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "eltm"
      }, 
      {
        "pid": 7922, 
        "runtime": 530, 
        "invoked": 54, 
        "usecs": 9, 
        "fivesec": 0.01, 
        "onemin": 0.01, 
        "fivemin": 0.01, 
        "tty": "-", 
        "process": "ecp"
      }, 
      {
        "pid": 7924, 
        "runtime": 490, 
        "invoked": 106, 
        "usecs": 4, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "adbm"
      }, 
      {
        "pid": 7925, 
        "runtime": 460, 
        "invoked": 117, 
        "usecs": 3, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "acllog"
      }, 
      {
        "pid": 7952, 
        "runtime": 890, 
        "invoked": 1192, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "monitor"
      }, 
      {
        "pid": 7953, 
        "runtime": 640, 
        "invoked": 533, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "eth_port_channel"
      }, 
      {
        "pid": 7954, 
        "runtime": 1590, 
        "invoked": 394, 
        "usecs": 4, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "vlan_mgr"
      }, 
      {
        "pid": 7962, 
        "runtime": 340, 
        "invoked": 57, 
        "usecs": 5, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "eth_dstats"
      }, 
      {
        "pid": 7963, 
        "runtime": 5970, 
        "invoked": 1994, 
        "usecs": 2, 
        "fivesec": 0.09, 
        "onemin": 0.02, 
        "fivemin": 0.01, 
        "tty": "-", 
        "process": "ipqosmgr"
      }, 
      {
        "pid": 7964, 
        "runtime": 590, 
        "invoked": 3041, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "lacp"
      }, 
      {
        "pid": 7965, 
        "runtime": 9300, 
        "invoked": 19470, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.01, 
        "tty": "-", 
        "process": "diag_port_lb"
      }, 
      {
        "pid": 7966, 
        "runtime": 1970, 
        "invoked": 1015, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ethpm"
      }, 
      {
        "pid": 7967, 
        "runtime": 550, 
        "invoked": 544, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "l2fm"
      }, 
      {
        "pid": 7968, 
        "runtime": 380, 
        "invoked": 538, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mhbfd_tracker"
      }, 
      {
        "pid": 7969, 
        "runtime": 530, 
        "invoked": 237, 
        "usecs": 2, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "aclqos"
      }, 
      {
        "pid": 7970, 
        "runtime": 880, 
        "invoked": 10075, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "stp"
      }, 
      {
        "pid": 8004, 
        "runtime": 990, 
        "invoked": 748, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "copp"
      }, 
      {
        "pid": 8057, 
        "runtime": 580, 
        "invoked": 498, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "vpc"
      }, 
      {
        "pid": 8058, 
        "runtime": 400, 
        "invoked": 219, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "u2"
      }, 
      {
        "pid": 8059, 
        "runtime": 700, 
        "invoked": 762, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "spm"
      }, 
      {
        "pid": 8060, 
        "runtime": 460, 
        "invoked": 486, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "sal"
      }, 
      {
        "pid": 8061, 
        "runtime": 470, 
        "invoked": 71, 
        "usecs": 6, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mrib"
      }, 
      {
        "pid": 8062, 
        "runtime": 680, 
        "invoked": 884, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mfdm"
      }, 
      {
        "pid": 8063, 
        "runtime": 530, 
        "invoked": 513, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mcm"
      }, 
      {
        "pid": 8064, 
        "runtime": 460, 
        "invoked": 43, 
        "usecs": 10, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "m6rib"
      }, 
      {
        "pid": 8065, 
        "runtime": 410, 
        "invoked": 492, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "l2pt"
      }, 
      {
        "pid": 8066, 
        "runtime": 540, 
        "invoked": 556, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "hsrp_engine"
      }, 
      {
        "pid": 8075, 
        "runtime": 510, 
        "invoked": 919, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ufdm"
      }, 
      {
        "pid": 8079, 
        "runtime": 400, 
        "invoked": 13, 
        "usecs": 30, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mcastfwd"
      }, 
      {
        "pid": 8084, 
        "runtime": 450, 
        "invoked": 165, 
        "usecs": 2, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "interface-vlan"
      }, 
      {
        "pid": 8094, 
        "runtime": 370, 
        "invoked": 155, 
        "usecs": 2, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "m2rib"
      }, 
      {
        "pid": 8131, 
        "runtime": 480, 
        "invoked": 725, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "vntag_mgr"
      }, 
      {
        "pid": 8132, 
        "runtime": 1470, 
        "invoked": 10326, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "fex"
      }, 
      {
        "pid": 8188, 
        "runtime": 370, 
        "invoked": 242, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "port_client"
      }, 
      {
        "pid": 8189, 
        "runtime": 7460, 
        "invoked": 11568, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "statsclient"
      }, 
      {
        "pid": 8190, 
        "runtime": 510, 
        "invoked": 898, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "xbar_client"
      }, 
      {
        "pid": 8576, 
        "runtime": 290, 
        "invoked": 37, 
        "usecs": 7, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "S0", 
        "process": "login"
      }, 
      {
        "pid": 8577, 
        "runtime": 0, 
        "invoked": 6, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "sh"
      }, 
      {
        "pid": 8581, 
        "runtime": 20, 
        "invoked": 14, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "libvirtd"
      }, 
      {
        "pid": 9170, 
        "runtime": 760, 
        "invoked": 3319, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "S0", 
        "process": "vsh"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:process" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <processes>
    <cpu>
     <__readonly__>
      <fivesec_percent>1</fivesec_percent>
      <fivesec_intr_percent>0</fivesec_intr_percent>
      <onemin_percent>1</onemin_percent>
      <fivemin_percent>1</fivemin_percent>
      <TABLE_process_cpu>
       <ROW_process_cpu>
        <pid>1</pid>
        <runtime>2970</runtime>
        <invoked>769</invoked>
        <usecs>3</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>init</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>2851</pid>
        <runtime>0</runtime>
        <invoked>1</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>mcelog</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>5764</pid>
        <runtime>0</runtime>
        <invoked>34</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>portmap</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>5767</pid>
        <runtime>0</runtime>
        <invoked>8</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>rpc.statd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>5787</pid>
        <runtime>0</runtime>
        <invoked>1</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>rpc.mountd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>5800</pid>
        <runtime>3190</runtime>
        <invoked>16852</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>sysmgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>6949</pid>
        <runtime>40</runtime>
        <invoked>176</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>xinetd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>6950</pid>
        <runtime>80</runtime>
        <invoked>326</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>tftpd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>6951</pid>
        <runtime>800</runtime>
        <invoked>2946</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>syslogd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>6952</pid>
        <runtime>540</runtime>
        <invoked>41</invoked>
        <usecs>13</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>sdwrapd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>6953</pid>
        <runtime>6290</runtime>
        <invoked>868</invoked>
        <usecs>7</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>pfm_dummy</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>6954</pid>
        <runtime>219570</runtime>
        <invoked>6308</invoked>
        <usecs>34</usecs>
        <fivesec>0.78</fivesec>
        <onemin>0.75</onemin>
        <fivemin>0.68</fivemin>
        <tty>-</tty>
        <process>platform</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7023</pid>
        <runtime>5700</runtime>
        <invoked>753</invoked>
        <usecs>7</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>cmond</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7041</pid>
        <runtime>600</runtime>
        <invoked>555</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>vshd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7042</pid>
        <runtime>620</runtime>
        <invoked>778</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>vpc_config_sync</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7043</pid>
        <runtime>470</runtime>
        <invoked>66</invoked>
        <usecs>7</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>smm</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7044</pid>
        <runtime>930</runtime>
        <invoked>482</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>session-mgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7045</pid>
        <runtime>1400</runtime>
        <invoked>5443</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>psshelper</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7046</pid>
        <runtime>1180</runtime>
        <invoked>815</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>pixm_vl</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7047</pid>
        <runtime>890</runtime>
        <invoked>881</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>pixm_gl</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7048</pid>
        <runtime>480</runtime>
        <invoked>12</invoked>
        <usecs>40</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>pdsd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7049</pid>
        <runtime>610</runtime>
        <invoked>64</invoked>
        <usecs>9</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>mmode</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7051</pid>
        <runtime>50</runtime>
        <invoked>515</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>lmgrd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7052</pid>
        <runtime>660</runtime>
        <invoked>518</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>licmgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7053</pid>
        <runtime>980</runtime>
        <invoked>247</invoked>
        <usecs>3</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>fs-daemon</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7055</pid>
        <runtime>750</runtime>
        <invoked>586</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>feature-mgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7056</pid>
        <runtime>550</runtime>
        <invoked>187</invoked>
        <usecs>2</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>confcheck</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7057</pid>
        <runtime>820</runtime>
        <invoked>504</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>capability</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7058</pid>
        <runtime>630</runtime>
        <invoked>2150</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>bloggerd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7059</pid>
        <runtime>1040</runtime>
        <invoked>2479</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>psshelper_gsvc</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7068</pid>
        <runtime>90</runtime>
        <invoked>2093</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>cisco</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7078</pid>
        <runtime>23120</runtime>
        <invoked>1014</invoked>
        <usecs>22</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>clis</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7081</pid>
        <runtime>450</runtime>
        <invoked>210</invoked>
        <usecs>2</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>port-profile</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7189</pid>
        <runtime>0</runtime>
        <invoked>217</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>dhcpd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7193</pid>
        <runtime>850</runtime>
        <invoked>461</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>xmpp</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7194</pid>
        <runtime>570</runtime>
        <invoked>731</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>xmlma</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7195</pid>
        <runtime>1310</runtime>
        <invoked>1338</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>vmm</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7196</pid>
        <runtime>660</runtime>
        <invoked>326</invoked>
        <usecs>2</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>vman</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7198</pid>
        <runtime>2160</runtime>
        <invoked>664</invoked>
        <usecs>3</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>vdc_mgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7199</pid>
        <runtime>100</runtime>
        <invoked>567</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>usbhsd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7200</pid>
        <runtime>640</runtime>
        <invoked>1095</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>ttyd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7201</pid>
        <runtime>50</runtime>
        <invoked>256</invoked>
        <usecs>0</usecs>
        <fivesec>0.07</fivesec>
        <onemin>0.07</onemin>
        <fivemin>0.06</fivemin>
        <tty>-</tty>
        <process>sysinfo</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7202</pid>
        <runtime>980</runtime>
        <invoked>511</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>statsprofiler</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7203</pid>
        <runtime>950</runtime>
        <invoked>298</invoked>
        <usecs>3</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>snmpmib_proc</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7204</pid>
        <runtime>600</runtime>
        <invoked>2149</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>sksd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7206</pid>
        <runtime>580</runtime>
        <invoked>536</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>rtd_monitor</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7207</pid>
        <runtime>1230</runtime>
        <invoked>875</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>res_mgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7208</pid>
        <runtime>670</runtime>
        <invoked>2169</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>plugin</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7209</pid>
        <runtime>70</runtime>
        <invoked>651</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>plog_sup</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7210</pid>
        <runtime>580</runtime>
        <invoked>400</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>patch-installer</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7211</pid>
        <runtime>930</runtime>
        <invoked>196</invoked>
        <usecs>4</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>mvsh</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7212</pid>
        <runtime>30</runtime>
        <invoked>13</invoked>
        <usecs>2</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>mping_server</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7213</pid>
        <runtime>810</runtime>
        <invoked>52</invoked>
        <usecs>15</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>fw_app</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7214</pid>
        <runtime>600</runtime>
        <invoked>865</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>fmd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7215</pid>
        <runtime>760</runtime>
        <invoked>1631</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>evms</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7217</pid>
        <runtime>990</runtime>
        <invoked>474</invoked>
        <usecs>2</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>evmc</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7218</pid>
        <runtime>510</runtime>
        <invoked>29</invoked>
        <usecs>17</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>epld_upgrade_stdby</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7219</pid>
        <runtime>580</runtime>
        <invoked>46</invoked>
        <usecs>12</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>epld_auto</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7220</pid>
        <runtime>3360</runtime>
        <invoked>2819</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>diagmgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7221</pid>
        <runtime>1170</runtime>
        <invoked>1951</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>crdcfg_server</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7222</pid>
        <runtime>910</runtime>
        <invoked>134</invoked>
        <usecs>6</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>core-dmon</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7223</pid>
        <runtime>1330</runtime>
        <invoked>1900</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>clk_mgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7224</pid>
        <runtime>960</runtime>
        <invoked>480</invoked>
        <usecs>2</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>cli_acl</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7225</pid>
        <runtime>430</runtime>
        <invoked>526</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>bios_daemon</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7226</pid>
        <runtime>770</runtime>
        <invoked>602</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>ascii-cfg</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7227</pid>
        <runtime>700</runtime>
        <invoked>2213</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>securityd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7228</pid>
        <runtime>670</runtime>
        <invoked>2140</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>cert_enroll</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7229</pid>
        <runtime>1030</runtime>
        <invoked>2366</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>aaa</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7230</pid>
        <runtime>630</runtime>
        <invoked>451</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>obfl</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7237</pid>
        <runtime>470</runtime>
        <invoked>81</invoked>
        <usecs>5</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>l3vm</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7238</pid>
        <runtime>500</runtime>
        <invoked>85</invoked>
        <usecs>5</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>urib</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7246</pid>
        <runtime>2280</runtime>
        <invoked>1450</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>diagclient</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7274</pid>
        <runtime>750</runtime>
        <invoked>2890</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>device_test</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7280</pid>
        <runtime>920</runtime>
        <invoked>788</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>aclmgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7290</pid>
        <runtime>370</runtime>
        <invoked>59</invoked>
        <usecs>6</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>adjmgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7291</pid>
        <runtime>370</runtime>
        <invoked>49</invoked>
        <usecs>7</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>u6rib</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7296</pid>
        <runtime>420</runtime>
        <invoked>427</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>eem_policy_dir</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7368</pid>
        <runtime>320</runtime>
        <invoked>19</invoked>
        <usecs>16</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>npacl</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7375</pid>
        <runtime>370</runtime>
        <invoked>17</invoked>
        <usecs>21</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>arp</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7376</pid>
        <runtime>320</runtime>
        <invoked>9</invoked>
        <usecs>35</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>icmpv6</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7409</pid>
        <runtime>1480</runtime>
        <invoked>4338</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>xbar</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7430</pid>
        <runtime>1920</runtime>
        <invoked>9118</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>module</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7449</pid>
        <runtime>770</runtime>
        <invoked>43</invoked>
        <usecs>17</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>ExceptionLog</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7450</pid>
        <runtime>830</runtime>
        <invoked>1099</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>bootvar</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7451</pid>
        <runtime>800</runtime>
        <invoked>561</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>cardclient</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7452</pid>
        <runtime>1730</runtime>
        <invoked>865</invoked>
        <usecs>2</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>ifmgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7469</pid>
        <runtime>780</runtime>
        <invoked>1908</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>ncpinframgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7471</pid>
        <runtime>370</runtime>
        <invoked>52</invoked>
        <usecs>7</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>pktmgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7478</pid>
        <runtime>800</runtime>
        <invoked>457</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>clp_elam</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7479</pid>
        <runtime>1930</runtime>
        <invoked>15861</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>clp_fwd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7480</pid>
        <runtime>1170</runtime>
        <invoked>1381</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>clp_l3</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7481</pid>
        <runtime>26720</runtime>
        <invoked>24693</invoked>
        <usecs>1</usecs>
        <fivesec>0.05</fivesec>
        <onemin>0.06</onemin>
        <fivemin>0.07</fivemin>
        <tty>-</tty>
        <process>clp_mac</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7483</pid>
        <runtime>21160</runtime>
        <invoked>4705</invoked>
        <usecs>4</usecs>
        <fivesec>0.01</fivesec>
        <onemin>0.05</onemin>
        <fivemin>0.05</fivemin>
        <tty>-</tty>
        <process>clp_xbar</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7484</pid>
        <runtime>4470</runtime>
        <invoked>5163</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>lit</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7486</pid>
        <runtime>26260</runtime>
        <invoked>8115</invoked>
        <usecs>3</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>sac_usd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7487</pid>
        <runtime>6970</runtime>
        <invoked>1552</invoked>
        <usecs>4</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.01</onemin>
        <fivemin>0.01</fivemin>
        <tty>-</tty>
        <process>sensor</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7488</pid>
        <runtime>18600</runtime>
        <invoked>23380</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.03</onemin>
        <fivemin>0.04</fivemin>
        <tty>-</tty>
        <process>sm15_usd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7497</pid>
        <runtime>520</runtime>
        <invoked>28</invoked>
        <usecs>18</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>netstack</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7541</pid>
        <runtime>530</runtime>
        <invoked>2128</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>radius</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7542</pid>
        <runtime>730</runtime>
        <invoked>1616</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>cdp</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7544</pid>
        <runtime>560</runtime>
        <invoked>761</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>cfs</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7545</pid>
        <runtime>20</runtime>
        <invoked>14</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>ip_dummy</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7546</pid>
        <runtime>30</runtime>
        <invoked>8</invoked>
        <usecs>3</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>ipv6_dummy</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7547</pid>
        <runtime>620</runtime>
        <invoked>1728</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>ntp</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7548</pid>
        <runtime>500</runtime>
        <invoked>969</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>otm</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7549</pid>
        <runtime>2030</runtime>
        <invoked>6237</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>snmpd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7550</pid>
        <runtime>20</runtime>
        <invoked>6</invoked>
        <usecs>3</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>tcpudp_dummy</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7557</pid>
        <runtime>290</runtime>
        <invoked>25</invoked>
        <usecs>11</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>dcos-xinetd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7594</pid>
        <runtime>410</runtime>
        <invoked>2110</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>ntpd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7600</pid>
        <runtime>490</runtime>
        <invoked>2223</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>callhome</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7906</pid>
        <runtime>20</runtime>
        <invoked>5</invoked>
        <usecs>4</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>tftp_aa</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7907</pid>
        <runtime>710</runtime>
        <invoked>533</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>sim</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7908</pid>
        <runtime>570</runtime>
        <invoked>60</invoked>
        <usecs>9</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>rpm</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7909</pid>
        <runtime>720</runtime>
        <invoked>522</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>pltfm_debug</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7910</pid>
        <runtime>1010</runtime>
        <invoked>1620</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>pltfm_config</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7911</pid>
        <runtime>570</runtime>
        <invoked>495</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>plsm</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7912</pid>
        <runtime>790</runtime>
        <invoked>1064</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>plcmgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7913</pid>
        <runtime>740</runtime>
        <invoked>629</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>pixmc</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7914</pid>
        <runtime>840</runtime>
        <invoked>541</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>pfstat</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7916</pid>
        <runtime>680</runtime>
        <invoked>541</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>monitorc</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7917</pid>
        <runtime>710</runtime>
        <invoked>472</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>lim</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7918</pid>
        <runtime>660</runtime>
        <invoked>2109</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>l2rib</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7919</pid>
        <runtime>650</runtime>
        <invoked>96</invoked>
        <usecs>6</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>igmp</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7920</pid>
        <runtime>590</runtime>
        <invoked>492</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>giscm</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7921</pid>
        <runtime>1090</runtime>
        <invoked>1227</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>eltm</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7922</pid>
        <runtime>530</runtime>
        <invoked>54</invoked>
        <usecs>9</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.01</onemin>
        <fivemin>0.01</fivemin>
        <tty>-</tty>
        <process>ecp</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7924</pid>
        <runtime>490</runtime>
        <invoked>105</invoked>
        <usecs>4</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>adbm</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7925</pid>
        <runtime>460</runtime>
        <invoked>115</invoked>
        <usecs>4</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>acllog</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7952</pid>
        <runtime>890</runtime>
        <invoked>1189</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>monitor</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7953</pid>
        <runtime>640</runtime>
        <invoked>531</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>eth_port_channel</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7954</pid>
        <runtime>1590</runtime>
        <invoked>392</invoked>
        <usecs>4</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>vlan_mgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7962</pid>
        <runtime>340</runtime>
        <invoked>56</invoked>
        <usecs>6</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>eth_dstats</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7963</pid>
        <runtime>5800</runtime>
        <invoked>1977</invoked>
        <usecs>2</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.01</onemin>
        <fivemin>0.01</fivemin>
        <tty>-</tty>
        <process>ipqosmgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7964</pid>
        <runtime>590</runtime>
        <invoked>3009</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>lacp</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7965</pid>
        <runtime>9270</runtime>
        <invoked>19339</invoked>
        <usecs>0</usecs>
        <fivesec>0.01</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.01</fivemin>
        <tty>-</tty>
        <process>diag_port_lb</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7966</pid>
        <runtime>1970</runtime>
        <invoked>1013</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>ethpm</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7967</pid>
        <runtime>550</runtime>
        <invoked>542</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>l2fm</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7968</pid>
        <runtime>380</runtime>
        <invoked>535</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>mhbfd_tracker</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7969</pid>
        <runtime>530</runtime>
        <invoked>234</invoked>
        <usecs>2</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>aclqos</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>7970</pid>
        <runtime>870</runtime>
        <invoked>9995</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>stp</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8004</pid>
        <runtime>990</runtime>
        <invoked>735</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>copp</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8057</pid>
        <runtime>580</runtime>
        <invoked>497</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>vpc</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8058</pid>
        <runtime>400</runtime>
        <invoked>217</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>u2</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8059</pid>
        <runtime>690</runtime>
        <invoked>750</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>spm</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8060</pid>
        <runtime>460</runtime>
        <invoked>483</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>sal</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8061</pid>
        <runtime>470</runtime>
        <invoked>71</invoked>
        <usecs>6</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>mrib</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8062</pid>
        <runtime>680</runtime>
        <invoked>883</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>mfdm</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8063</pid>
        <runtime>530</runtime>
        <invoked>510</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>mcm</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8064</pid>
        <runtime>460</runtime>
        <invoked>43</invoked>
        <usecs>10</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>m6rib</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8065</pid>
        <runtime>410</runtime>
        <invoked>489</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>l2pt</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8066</pid>
        <runtime>540</runtime>
        <invoked>555</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>hsrp_engine</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8075</pid>
        <runtime>510</runtime>
        <invoked>916</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>ufdm</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8079</pid>
        <runtime>400</runtime>
        <invoked>13</invoked>
        <usecs>30</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>mcastfwd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8084</pid>
        <runtime>450</runtime>
        <invoked>164</invoked>
        <usecs>2</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>interface-vlan</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8094</pid>
        <runtime>370</runtime>
        <invoked>154</invoked>
        <usecs>2</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>m2rib</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8131</pid>
        <runtime>480</runtime>
        <invoked>722</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>vntag_mgr</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8132</pid>
        <runtime>1470</runtime>
        <invoked>10247</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>fex</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8188</pid>
        <runtime>370</runtime>
        <invoked>241</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>port_client</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8189</pid>
        <runtime>7430</runtime>
        <invoked>11489</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>statsclient</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8190</pid>
        <runtime>510</runtime>
        <invoked>897</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>xbar_client</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8576</pid>
        <runtime>290</runtime>
        <invoked>37</invoked>
        <usecs>7</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>S0</tty>
        <process>login</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8577</pid>
        <runtime>0</runtime>
        <invoked>6</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>sh</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>8581</pid>
        <runtime>20</runtime>
        <invoked>14</invoked>
        <usecs>1</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>-</tty>
        <process>libvirtd</process>
       </ROW_process_cpu>
       <ROW_process_cpu>
        <pid>9170</pid>
        <runtime>750</runtime>
        <invoked>3297</invoked>
        <usecs>0</usecs>
        <fivesec>0.00</fivesec>
        <onemin>0.00</onemin>
        <fivemin>0.00</fivemin>
        <tty>S0</tty>
        <process>vsh</process>
       </ROW_process_cpu>
      </TABLE_process_cpu>
     </__readonly__>
    </cpu>
   </processes>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show processes cpu**

CPU utilization for five seconds: 1%/0%; one minute: 1%; five minutes: 1%
PID    Runtime(ms)  Invoked   uSecs  5Sec    1Min    5Min    TTY  Process
-----  -----------  --------  -----  ------  ------  ------  ---  -----------
    1         2970       765      3   0.00%   0.00%  0.00%   -    init
 2851            0         1      0   0.00%   0.00%  0.00%   -    mcelog
 5764            0        34      0   0.00%   0.00%  0.00%   -    portmap
 5767            0         8      0   0.00%   0.00%  0.00%   -    rpc.statd
 5787            0         1      0   0.00%   0.00%  0.00%   -    rpc.mountd
 5800         3150     16134      0   0.00%   0.00%  0.00%   -    sysmgr
 6949           40       176      0   0.00%   0.00%  0.00%   -    xinetd
 6950           80       326      0   0.00%   0.00%  0.00%   -    tftpd
 6951          800      2926      0   0.00%   0.00%  0.00%   -    syslogd
 6952          540        41     13   0.00%   0.00%  0.00%   -    sdwrapd
 6953         6290       868      7   0.00%   0.00%  0.00%   -    pfm_dummy
 6954       216890      6282     34   0.83%   0.73%  0.67%   -    platform
 7023         5670       745      7   0.00%   0.01%  0.01%   -    cmond
 7041          600       551      1   0.00%   0.00%  0.00%   -    vshd
 7042          620       774      0   0.00%   0.00%  0.00%   -    vpc_config_sync
 7043          470        66      7   0.00%   0.00%  0.00%   -    smm
 7044          930       478      1   0.00%   0.00%  0.00%   -    session-mgr
 7045         1400      5423      0   0.00%   0.00%  0.00%   -    psshelper
 7046         1180       811      1   0.00%   0.00%  0.00%   -    pixm_vl
 7047          890       877      1   0.00%   0.00%  0.00%   -    pixm_gl
 7048          480        12     40   0.00%   0.00%  0.00%   -    pdsd
 7049          610        64      9   0.00%   0.00%  0.00%   -    mmode
 7051           50       511      0   0.00%   0.00%  0.00%   -    lmgrd
 7052          660       514      1   0.00%   0.00%  0.00%   -    licmgr
 7053          980       247      3   0.00%   0.00%  0.00%   -    fs-daemon
 7055          750       578      1   0.00%   0.00%  0.00%   -    feature-mgr
 7056          550       187      2   0.00%   0.00%  0.00%   -    confcheck
 7057          820       502      1   0.00%   0.00%  0.00%   -    capability
 7058          630      2146      0   0.00%   0.00%  0.00%   -    bloggerd
 7059         1040      2459      0   0.00%   0.00%  0.00%   -    psshelper_gsvc
 7068           90      2073      0   0.00%   0.00%  0.00%   -    cisco
 7078        23120      1013     22   0.00%   0.00%  0.00%   -    clis
 7081          450       209      2   0.00%   0.00%  0.00%   -    port-profile
 7189            0       217      0   0.00%   0.00%  0.00%   -    dhcpd
 7193          850       457      1   0.00%   0.00%  0.00%   -    xmpp
 7194          570       724      0   0.00%   0.00%  0.00%   -    xmlma
 7195         1310      1334      0   0.00%   0.00%  0.00%   -    vmm
 7196          660       324      2   0.00%   0.00%  0.00%   -    vman
 7198         2160       660      3   0.00%   0.00%  0.00%   -    vdc_mgr
 7199          100       563      0   0.01%   0.00%  0.00%   -    usbhsd
 7200          640      1085      0   0.00%   0.00%  0.00%   -    ttyd
 7201           50       252      0   0.05%   0.06%  0.06%   -    sysinfo
 7202          980       507      1   0.00%   0.00%  0.00%   -    statsprofiler
 7203          950       296      3   0.00%   0.00%  0.00%   -    snmpmib_proc
 7204          600      2129      0   0.00%   0.00%  0.00%   -    sksd
 7206          580       532      1   0.00%   0.00%  0.00%   -    rtd_monitor
 7207         1230       870      1   0.00%   0.00%  0.00%   -    res_mgr
 7208          670      2149      0   0.00%   0.00%  0.00%   -    plugin
 7209           70       646      0   0.00%   0.00%  0.00%   -    plog_sup
 7210          580       400      1   0.00%   0.00%  0.00%   -    patch-installer
 7211          930       195      4   0.00%   0.00%  0.00%   -    mvsh
 7212           30        13      2   0.00%   0.00%  0.00%   -    mping_server
 7213          810        52     15   0.00%   0.00%  0.00%   -    fw_app
 7214          600       863      0   0.00%   0.00%  0.00%   -    fmd
 7215          760      1630      0   0.00%   0.00%  0.00%   -    evms
 7217          990       473      2   0.00%   0.00%  0.00%   -    evmc
 7218          510        29     17   0.00%   0.00%  0.00%   -    epld_upgrade_stdby
 7219          580        46     12   0.00%   0.00%  0.00%   -    epld_auto
 7220         3330      2794      1   0.00%   0.00%  0.00%   -    diagmgr
 7221         1170      1950      0   0.00%   0.00%  0.00%   -    crdcfg_server
 7222          910       134      6   0.00%   0.00%  0.00%   -    core-dmon
 7223         1330      1880      0   0.00%   0.00%  0.00%   -    clk_mgr
 7224          960       476      2   0.00%   0.00%  0.00%   -    cli_acl
 7225          430       522      0   0.00%   0.00%  0.00%   -    bios_daemon
 7226          770       599      1   0.00%   0.00%  0.00%   -    ascii-cfg
 7227          700      2192      0   0.00%   0.00%  0.00%   -    securityd
 7228          670      2120      0   0.00%   0.00%  0.00%   -    cert_enroll
 7229         1030      2346      0   0.00%   0.00%  0.00%   -    aaa
 7230          630       449      1   0.00%   0.00%  0.00%   -    obfl
 7237          470        81      5   0.00%   0.00%  0.00%   -    l3vm
 7238          500        85      5   0.00%   0.00%  0.00%   -    urib
 7246         2270      1437      1   0.00%   0.00%  0.00%   -    diagclient
 7274          750      2862      0   0.00%   0.00%  0.00%   -    device_test
 7280          920       788      1   0.00%   0.00%  0.00%   -    aclmgr
 7290          370        59      6   0.00%   0.00%  0.00%   -    adjmgr
 7291          370        49      7   0.00%   0.00%  0.00%   -    u6rib
 7296          420       423      0   0.00%   0.00%  0.00%   -    eem_policy_dir
 7368          320        19     16   0.00%   0.00%  0.00%   -    npacl
 7375          370        17     21   0.00%   0.00%  0.00%   -    arp
 7376          320         9     35   0.00%   0.00%  0.00%   -    icmpv6
 7409         1480      4336      0   0.00%   0.00%  0.00%   -    xbar
 7430         1920      9019      0   0.00%   0.00%  0.00%   -    module
 7449          770        43     17   0.00%   0.00%  0.00%   -    ExceptionLog
 7450          830      1089      0   0.00%   0.00%  0.00%   -    bootvar
 7451          800       557      1   0.00%   0.00%  0.00%   -    cardclient
 7452         1730       863      2   0.00%   0.00%  0.00%   -    ifmgr
 7469          780      1904      0   0.00%   0.00%  0.00%   -    ncpinframgr
 7471          370        52      7   0.00%   0.00%  0.00%   -    pktmgr
 7478          800       453      1   0.00%   0.00%  0.00%   -    clp_elam
 7479         1910     15707      0   0.00%   0.00%  0.00%   -    clp_fwd
 7480         1170      1369      0   0.00%   0.00%  0.00%   -    clp_l3
 7481        26460     24440      1   0.05%   0.06%  0.07%   -    clp_mac
 7483        20940      4659      4   0.05%   0.05%  0.05%   -    clp_xbar
 7484         4440      5112      0   0.00%   0.00%  0.00%   -    lit
 7486        26240      8056      3   0.00%   0.00%  0.00%   -    sac_usd
 7487         6910      1534      4   0.00%   0.01%  0.01%   -    sensor
 7488        18470     23151      0   0.05%   0.04%  0.04%   -    sm15_usd
 7497          520        28     18   0.00%   0.00%  0.00%   -    netstack
 7541          530      2108      0   0.00%   0.00%  0.00%   -    radius
 7542          730      1612      0   0.00%   0.00%  0.00%   -    cdp
 7544          560       757      0   0.00%   0.00%  0.00%   -    cfs
 7545           20        14      1   0.00%   0.00%  0.00%   -    ip_dummy
 7546           30         8      3   0.00%   0.00%  0.00%   -    ipv6_dummy
 7547          620      1727      0   0.00%   0.00%  0.00%   -    ntp
 7548          500       965      0   0.00%   0.00%  0.00%   -    otm
 7549         2010      6146      0   0.00%   0.00%  0.00%   -    snmpd
 7550           20         6      3   0.00%   0.00%  0.00%   -    tcpudp_dummy
 7557          290        25     11   0.00%   0.00%  0.00%   -    dcos-xinetd
 7594          410      2089      0   0.00%   0.00%  0.00%   -    ntpd
 7600          490      2202      0   0.00%   0.00%  0.00%   -    callhome
 7906           20         5      4   0.00%   0.00%  0.00%   -    tftp_aa
 7907          710       529      1   0.00%   0.00%  0.00%   -    sim
 7908          570        60      9   0.00%   0.00%  0.00%   -    rpm
 7909          720       518      1   0.00%   0.00%  0.00%   -    pltfm_debug
 7910         1010      1616      0   0.00%   0.00%  0.00%   -    pltfm_config
 7911          570       491      1   0.00%   0.00%  0.00%   -    plsm
 7912          790      1060      0   0.00%   0.00%  0.00%   -    plcmgr
 7913          740       625      1   0.00%   0.00%  0.00%   -    pixmc
 7914          840       540      1   0.00%   0.00%  0.00%   -    pfstat
 7916          680       537      1   0.00%   0.00%  0.00%   -    monitorc
 7917          710       468      1   0.00%   0.00%  0.00%   -    lim
 7918          660      2089      0   0.00%   0.00%  0.00%   -    l2rib
 7919          650        96      6   0.00%   0.00%  0.00%   -    igmp
 7920          590       488      1   0.00%   0.00%  0.00%   -    giscm
 7921         1090      1226      0   0.00%   0.00%  0.00%   -    eltm
 7922          530        54      9   0.00%   0.01%  0.01%   -    ecp
 7924          490       105      4   0.00%   0.00%  0.00%   -    adbm
 7925          460       115      4   0.00%   0.00%  0.00%   -    acllog
 7952          890      1185      0   0.00%   0.00%  0.00%   -    monitor
 7953          640       529      1   0.00%   0.00%  0.00%   -    eth_port_channel
 7954         1590       390      4   0.00%   0.00%  0.00%   -    vlan_mgr
 7962          340        56      6   0.00%   0.00%  0.00%   -    eth_dstats
 7963         5800      1970      2   0.00%   0.01%  0.01%   -    ipqosmgr
 7964          580      2966      0   0.00%   0.00%  0.00%   -    lacp
 7965         9240     19209      0   0.00%   0.01%  0.01%   -    diag_port_lb
 7966         1970      1011      1   0.00%   0.00%  0.00%   -    ethpm
 7967          550       540      1   0.00%   0.00%  0.00%   -    l2fm
 7968          380       531      0   0.00%   0.00%  0.00%   -    mhbfd_tracker
 7969          530       233      2   0.00%   0.00%  0.00%   -    aclqos
 7970          870      9889      0   0.00%   0.00%  0.00%   -    stp
 8004          990       735      1   0.00%   0.00%  0.00%   -    copp
 8057          580       496      1   0.00%   0.00%  0.00%   -    vpc
 8058          400       215      1   0.00%   0.00%  0.00%   -    u2
 8059          690       750      0   0.00%   0.00%  0.00%   -    spm
 8060          460       479      0   0.00%   0.00%  0.00%   -    sal
 8061          470        71      6   0.00%   0.00%  0.00%   -    mrib
 8062          680       882      0   0.00%   0.00%  0.00%   -    mfdm
 8063          530       506      1   0.00%   0.00%  0.00%   -    mcm
 8064          460        43     10   0.00%   0.00%  0.00%   -    m6rib
 8065          410       485      0   0.00%   0.00%  0.00%   -    l2pt
 8066          540       554      0   0.00%   0.00%  0.00%   -    hsrp_engine
 8075          510       912      0   0.00%   0.00%  0.00%   -    ufdm
 8079          400        13     30   0.00%   0.00%  0.00%   -    mcastfwd
 8084          450       163      2   0.00%   0.00%  0.00%   -    interface-vlan
 8094          370       153      2   0.00%   0.00%  0.00%   -    m2rib
 8131          480       718      0   0.00%   0.00%  0.00%   -    vntag_mgr
 8132         1460     10144      0   0.00%   0.00%  0.00%   -    fex
 8188          370       239      1   0.00%   0.00%  0.00%   -    port_client
 8189         7420     11401      0   0.00%   0.00%  0.00%   -    statsclient
 8190          510       895      0   0.00%   0.00%  0.00%   -    xbar_client
 8576          290        37      7   0.00%   0.00%  0.00%   S0    login
 8577            0         6      0   0.00%   0.00%  0.00%   -    sh
 8581           20        14      1   0.00%   0.00%  0.00%   -    libvirtd
 9170          740      3205      0   0.00%   0.00%  0.00%   S0    vsh

show processes cpu module

show processes cpu module 1
 
import requests
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 processes cpu 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)
{
  "fivesec_percent": 20, 
  "fivesec_intr_percent": 0, 
  "onemin_percent": 19, 
  "fivemin_percent": 19, 
  "TABLE_process_cpu": {
    "ROW_process_cpu": [
      {
        "pid_s": 1, 
        "runtime": 3250, 
        "invoked": 5973, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "init"
      }, 
      {
        "pid_s": 350, 
        "runtime": 0, 
        "invoked": 1, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "xinetd"
      }, 
      {
        "pid_s": 782, 
        "runtime": 670, 
        "invoked": 12706, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "syslogd"
      }, 
      {
        "pid_s": 842, 
        "runtime": 4320, 
        "invoked": 25824, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.03, 
        "fivemin": 0.02, 
        "tty": "-", 
        "process": "sysmgr"
      }, 
      {
        "pid_s": 843, 
        "runtime": 0, 
        "invoked": 2, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "S0", 
        "process": "getty"
      }, 
      {
        "pid_s": 1038, 
        "runtime": 140, 
        "invoked": 119, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "sdwrapd"
      }, 
      {
        "pid_s": 1043, 
        "runtime": 70, 
        "invoked": 49, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "klogd"
      }, 
      {
        "pid_s": 1044, 
        "runtime": 300, 
        "invoked": 1392, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "bloggerd"
      }, 
      {
        "pid_s": 1045, 
        "runtime": 590, 
        "invoked": 2520, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "vntagc"
      }, 
      {
        "pid_s": 1046, 
        "runtime": 270, 
        "invoked": 1291, 
        "usecs": 0, 
        "fivesec": 0.28, 
        "onemin": 0.34, 
        "fivemin": 0.3, 
        "tty": "-", 
        "process": "sysinfo"
      }, 
      {
        "pid_s": 1049, 
        "runtime": 260, 
        "invoked": 1260, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "quack_smc"
      }, 
      {
        "pid_s": 1050, 
        "runtime": 870, 
        "invoked": 12493, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "psshelper_gsvc"
      }, 
      {
        "pid_s": 1051, 
        "runtime": 1010, 
        "invoked": 14093, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "psshelper"
      }, 
      {
        "pid_s": 1052, 
        "runtime": 4600, 
        "invoked": 6595, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "plog"
      }, 
      {
        "pid_s": 1053, 
        "runtime": 300, 
        "invoked": 1568, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "obfl"
      }, 
      {
        "pid_s": 1054, 
        "runtime": 270, 
        "invoked": 2712, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mvsh"
      }, 
      {
        "pid_s": 1055, 
        "runtime": 150, 
        "invoked": 132, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mping_server"
      }, 
      {
        "pid_s": 1056, 
        "runtime": 870, 
        "invoked": 4617, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "evmc"
      }, 
      {
        "pid_s": 1057, 
        "runtime": 18280, 
        "invoked": 16898, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.06, 
        "tty": "-", 
        "process": "dt_helper"
      }, 
      {
        "pid_s": 1058, 
        "runtime": 2110, 
        "invoked": 3337, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "diagclient"
      }, 
      {
        "pid_s": 1059, 
        "runtime": 400, 
        "invoked": 1126, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "crdcfg_server"
      }, 
      {
        "pid_s": 1060, 
        "runtime": 310, 
        "invoked": 222, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "card_lcm"
      }, 
      {
        "pid_s": 1061, 
        "runtime": 240, 
        "invoked": 2268, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "bios_daemon"
      }, 
      {
        "pid_s": 1062, 
        "runtime": 1400, 
        "invoked": 7242, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "bfdc"
      }, 
      {
        "pid_s": 1066, 
        "runtime": 2600, 
        "invoked": 9092, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ncpmgr"
      }, 
      {
        "pid_s": 1068, 
        "runtime": 1350, 
        "invoked": 13628, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "device_test"
      }, 
      {
        "pid_s": 1069, 
        "runtime": 12460, 
        "invoked": 5217, 
        "usecs": 2, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "cardclient"
      }, 
      {
        "pid_s": 1080, 
        "runtime": 530, 
        "invoked": 3969, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "amm"
      }, 
      {
        "pid_s": 1081, 
        "runtime": 140, 
        "invoked": 161, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "fw_app"
      }, 
      {
        "pid_s": 1082, 
        "runtime": 1860, 
        "invoked": 5739, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ncpinfraclnt"
      }, 
      {
        "pid_s": 1199, 
        "runtime": 3400, 
        "invoked": 2655, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "edc_usd"
      }, 
      {
        "pid_s": 1200, 
        "runtime": 530, 
        "invoked": 2498, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "fln_elam"
      }, 
      {
        "pid_s": 1201, 
        "runtime": 1797420, 
        "invoked": 367621, 
        "usecs": 4, 
        "fivesec": 8.5, 
        "onemin": 8.05, 
        "fivemin": 8.03, 
        "tty": "-", 
        "process": "fln_em"
      }, 
      {
        "pid_s": 1202, 
        "runtime": 179360, 
        "invoked": 291372, 
        "usecs": 0, 
        "fivesec": 1.05, 
        "onemin": 0.75, 
        "fivemin": 0.75, 
        "tty": "-", 
        "process": "fln_fwd_usd"
      }, 
      {
        "pid_s": 1203, 
        "runtime": 174340, 
        "invoked": 173439, 
        "usecs": 1, 
        "fivesec": 2.0, 
        "onemin": 0.84, 
        "fivemin": 0.75, 
        "tty": "-", 
        "process": "fln_l3"
      }, 
      {
        "pid_s": 1204, 
        "runtime": 440250, 
        "invoked": 144664, 
        "usecs": 3, 
        "fivesec": 0.85, 
        "onemin": 1.92, 
        "fivemin": 1.97, 
        "tty": "-", 
        "process": "fln_que"
      }, 
      {
        "pid_s": 1205, 
        "runtime": 235140, 
        "invoked": 156459, 
        "usecs": 1, 
        "fivesec": 1.62, 
        "onemin": 1.01, 
        "fivemin": 0.99, 
        "tty": "-", 
        "process": "fln_xbar"
      }, 
      {
        "pid_s": 1206, 
        "runtime": 61340, 
        "invoked": 103501, 
        "usecs": 0, 
        "fivesec": 0.38, 
        "onemin": 0.28, 
        "fivemin": 0.27, 
        "tty": "-", 
        "process": "lit"
      }, 
      {
        "pid_s": 1207, 
        "runtime": 34420, 
        "invoked": 15731, 
        "usecs": 2, 
        "fivesec": 0.0, 
        "onemin": 0.08, 
        "fivemin": 0.08, 
        "tty": "-", 
        "process": "sac_usd"
      }, 
      {
        "pid_s": 1208, 
        "runtime": 62520, 
        "invoked": 7952, 
        "usecs": 7, 
        "fivesec": 0.0, 
        "onemin": 0.33, 
        "fivemin": 0.29, 
        "tty": "-", 
        "process": "sensor"
      }, 
      {
        "pid_s": 1210, 
        "runtime": 17730, 
        "invoked": 20777, 
        "usecs": 0, 
        "fivesec": 0.19, 
        "onemin": 0.06, 
        "fivemin": 0.05, 
        "tty": "-", 
        "process": "xcvr_usd"
      }, 
      {
        "pid_s": 1213, 
        "runtime": 720, 
        "invoked": 282, 
        "usecs": 2, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "dcefib"
      }, 
      {
        "pid_s": 1238, 
        "runtime": 360, 
        "invoked": 1296, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "capability"
      }, 
      {
        "pid_s": 1239, 
        "runtime": 310, 
        "invoked": 1241, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "fwd_stats_client"
      }, 
      {
        "pid_s": 1240, 
        "runtime": 65950, 
        "invoked": 10489, 
        "usecs": 6, 
        "fivesec": 0.0, 
        "onemin": 0.26, 
        "fivemin": 0.28, 
        "tty": "-", 
        "process": "ipfib"
      }, 
      {
        "pid_s": 1241, 
        "runtime": 430, 
        "invoked": 204, 
        "usecs": 2, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "l2mcast"
      }, 
      {
        "pid_s": 1242, 
        "runtime": 370, 
        "invoked": 2374, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "lc_port_channel"
      }, 
      {
        "pid_s": 1244, 
        "runtime": 420, 
        "invoked": 755, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "monitorc"
      }, 
      {
        "pid_s": 1245, 
        "runtime": 4500, 
        "invoked": 45828, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.01, 
        "fivemin": 0.01, 
        "tty": "-", 
        "process": "nfp"
      }, 
      {
        "pid_s": 1246, 
        "runtime": 200, 
        "invoked": 500, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "patch-installer"
      }, 
      {
        "pid_s": 1247, 
        "runtime": 850, 
        "invoked": 2712, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pixmc"
      }, 
      {
        "pid_s": 1248, 
        "runtime": 16050, 
        "invoked": 17103, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.03, 
        "tty": "-", 
        "process": "port_client"
      }, 
      {
        "pid_s": 1249, 
        "runtime": 52670, 
        "invoked": 530012, 
        "usecs": 0, 
        "fivesec": 0.85, 
        "onemin": 0.26, 
        "fivemin": 0.23, 
        "tty": "-", 
        "process": "ptplc"
      }, 
      {
        "pid_s": 1250, 
        "runtime": 965610, 
        "invoked": 82636, 
        "usecs": 11, 
        "fivesec": 2.57, 
        "onemin": 4.06, 
        "fivemin": 4.31, 
        "tty": "-", 
        "process": "statsclient"
      }, 
      {
        "pid_s": 1251, 
        "runtime": 28680, 
        "invoked": 2294, 
        "usecs": 12, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "xbar_client"
      }, 
      {
        "pid_s": 1252, 
        "runtime": 420, 
        "invoked": 199, 
        "usecs": 2, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "fcoelc"
      }, 
      {
        "pid_s": 1253, 
        "runtime": 3410, 
        "invoked": 9772, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.01, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "iftmc"
      }, 
      {
        "pid_s": 1254, 
        "runtime": 900, 
        "invoked": 324, 
        "usecs": 2, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "fib"
      }, 
      {
        "pid_s": 1257, 
        "runtime": 30760, 
        "invoked": 147786, 
        "usecs": 0, 
        "fivesec": 0.19, 
        "onemin": 0.13, 
        "fivemin": 0.13, 
        "tty": "-", 
        "process": "mtm"
      }, 
      {
        "pid_s": 1258, 
        "runtime": 350, 
        "invoked": 895, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "elo_io"
      }, 
      {
        "pid_s": 1273, 
        "runtime": 94630, 
        "invoked": 67857, 
        "usecs": 1, 
        "fivesec": 1.91, 
        "onemin": 0.52, 
        "fivemin": 0.43, 
        "tty": "-", 
        "process": "aclqos"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:process" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <processes>
    <cpu>
     <module>
      <__XML__PARAM__i0>
       <__XML__value>1</__XML__value>
       <__readonly__>
        <fivesec_percent>14</fivesec_percent>
        <fivesec_intr_percent>0</fivesec_intr_percent>
        <onemin_percent>19</onemin_percent>
        <fivemin_percent>19</fivemin_percent>
        <TABLE_process_cpu>
         <ROW_process_cpu>
          <pid_s>1</pid_s>
          <runtime>3250</runtime>
          <invoked>5969</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>init</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>350</pid_s>
          <runtime>0</runtime>
          <invoked>1</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>xinetd</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>782</pid_s>
          <runtime>670</runtime>
          <invoked>12686</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>syslogd</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>842</pid_s>
          <runtime>4300</runtime>
          <invoked>25663</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.02</onemin>
          <fivemin>0.01</fivemin>
          <tty>-</tty>
          <process>sysmgr</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>843</pid_s>
          <runtime>0</runtime>
          <invoked>2</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>S0</tty>
          <process>getty</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1038</pid_s>
          <runtime>140</runtime>
          <invoked>119</invoked>
          <usecs>1</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>sdwrapd</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1043</pid_s>
          <runtime>70</runtime>
          <invoked>49</invoked>
          <usecs>1</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>klogd</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1044</pid_s>
          <runtime>300</runtime>
          <invoked>1390</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>bloggerd</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1045</pid_s>
          <runtime>590</runtime>
          <invoked>2516</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>vntagc</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1046</pid_s>
          <runtime>270</runtime>
          <invoked>1288</invoked>
          <usecs>0</usecs>
          <fivesec>0.29</fivesec>
          <onemin>0.32</onemin>
          <fivemin>0.29</fivemin>
          <tty>-</tty>
          <process>sysinfo</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1049</pid_s>
          <runtime>260</runtime>
          <invoked>1258</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>quack_smc</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1050</pid_s>
          <runtime>860</runtime>
          <invoked>12472</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>psshelper_gsvc</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1051</pid_s>
          <runtime>1010</runtime>
          <invoked>14072</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>psshelper</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1052</pid_s>
          <runtime>4600</runtime>
          <invoked>6591</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>plog</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1053</pid_s>
          <runtime>300</runtime>
          <invoked>1566</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>obfl</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1054</pid_s>
          <runtime>270</runtime>
          <invoked>2711</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>mvsh</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1055</pid_s>
          <runtime>150</runtime>
          <invoked>132</invoked>
          <usecs>1</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>mping_server</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1056</pid_s>
          <runtime>870</runtime>
          <invoked>4612</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>evmc</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1057</pid_s>
          <runtime>18280</runtime>
          <invoked>16878</invoked>
          <usecs>1</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.01</onemin>
          <fivemin>0.06</fivemin>
          <tty>-</tty>
          <process>dt_helper</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1058</pid_s>
          <runtime>2110</runtime>
          <invoked>3336</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.01</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>diagclient</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1059</pid_s>
          <runtime>400</runtime>
          <invoked>1125</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>crdcfg_server</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1060</pid_s>
          <runtime>310</runtime>
          <invoked>222</invoked>
          <usecs>1</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>card_lcm</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1061</pid_s>
          <runtime>240</runtime>
          <invoked>2263</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>bios_daemon</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1062</pid_s>
          <runtime>1400</runtime>
          <invoked>7227</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>bfdc</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1066</pid_s>
          <runtime>2590</runtime>
          <invoked>9088</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>ncpmgr</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1068</pid_s>
          <runtime>1350</runtime>
          <invoked>13607</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>device_test</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1069</pid_s>
          <runtime>12460</runtime>
          <invoked>5207</invoked>
          <usecs>2</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>cardclient</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1080</pid_s>
          <runtime>530</runtime>
          <invoked>3965</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>amm</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1081</pid_s>
          <runtime>140</runtime>
          <invoked>161</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>fw_app</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1082</pid_s>
          <runtime>1860</runtime>
          <invoked>5738</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>ncpinfraclnt</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1199</pid_s>
          <runtime>3400</runtime>
          <invoked>2655</invoked>
          <usecs>1</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>edc_usd</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1200</pid_s>
          <runtime>530</runtime>
          <invoked>2494</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>fln_elam</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1201</pid_s>
          <runtime>1793910</runtime>
          <invoked>367123</invoked>
          <usecs>4</usecs>
          <fivesec>7.47</fivesec>
          <onemin>7.90</onemin>
          <fivemin>8.00</fivemin>
          <tty>-</tty>
          <process>fln_em</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1202</pid_s>
          <runtime>179040</runtime>
          <invoked>290839</invoked>
          <usecs>0</usecs>
          <fivesec>0.77</fivesec>
          <onemin>0.74</onemin>
          <fivemin>0.74</fivemin>
          <tty>-</tty>
          <process>fln_fwd_usd</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1203</pid_s>
          <runtime>174000</runtime>
          <invoked>173158</invoked>
          <usecs>1</usecs>
          <fivesec>0.38</fivesec>
          <onemin>0.83</onemin>
          <fivemin>0.74</fivemin>
          <tty>-</tty>
          <process>fln_l3</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1204</pid_s>
          <runtime>439580</runtime>
          <invoked>144419</invoked>
          <usecs>3</usecs>
          <fivesec>0.87</fivesec>
          <onemin>2.05</onemin>
          <fivemin>1.99</fivemin>
          <tty>-</tty>
          <process>fln_que</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1205</pid_s>
          <runtime>234690</runtime>
          <invoked>156232</invoked>
          <usecs>1</usecs>
          <fivesec>0.38</fivesec>
          <onemin>0.96</onemin>
          <fivemin>0.99</fivemin>
          <tty>-</tty>
          <process>fln_xbar</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1206</pid_s>
          <runtime>61200</runtime>
          <invoked>103303</invoked>
          <usecs>0</usecs>
          <fivesec>0.48</fivesec>
          <onemin>0.26</onemin>
          <fivemin>0.27</fivemin>
          <tty>-</tty>
          <process>lit</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1207</pid_s>
          <runtime>34400</runtime>
          <invoked>15684</invoked>
          <usecs>2</usecs>
          <fivesec>0.09</fivesec>
          <onemin>0.10</onemin>
          <fivemin>0.08</fivemin>
          <tty>-</tty>
          <process>sac_usd</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1208</pid_s>
          <runtime>62180</runtime>
          <invoked>7912</invoked>
          <usecs>7</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.17</onemin>
          <fivemin>0.25</fivemin>
          <tty>-</tty>
          <process>sensor</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1210</pid_s>
          <runtime>17700</runtime>
          <invoked>20753</invoked>
          <usecs>0</usecs>
          <fivesec>0.09</fivesec>
          <onemin>0.05</onemin>
          <fivemin>0.05</fivemin>
          <tty>-</tty>
          <process>xcvr_usd</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1213</pid_s>
          <runtime>720</runtime>
          <invoked>282</invoked>
          <usecs>2</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>dcefib</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1238</pid_s>
          <runtime>360</runtime>
          <invoked>1294</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>capability</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1239</pid_s>
          <runtime>310</runtime>
          <invoked>1239</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>fwd_stats_client</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1240</pid_s>
          <runtime>65860</runtime>
          <invoked>10467</invoked>
          <usecs>6</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.28</onemin>
          <fivemin>0.29</fivemin>
          <tty>-</tty>
          <process>ipfib</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1241</pid_s>
          <runtime>430</runtime>
          <invoked>204</invoked>
          <usecs>2</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>l2mcast</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1242</pid_s>
          <runtime>370</runtime>
          <invoked>2370</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>lc_port_channel</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1244</pid_s>
          <runtime>420</runtime>
          <invoked>754</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>monitorc</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1245</pid_s>
          <runtime>4490</runtime>
          <invoked>45744</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.01</onemin>
          <fivemin>0.01</fivemin>
          <tty>-</tty>
          <process>nfp</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1246</pid_s>
          <runtime>200</runtime>
          <invoked>499</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>patch-installer</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1247</pid_s>
          <runtime>850</runtime>
          <invoked>2708</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>pixmc</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1248</pid_s>
          <runtime>16050</runtime>
          <invoked>17101</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.03</fivemin>
          <tty>-</tty>
          <process>port_client</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1249</pid_s>
          <runtime>52580</runtime>
          <invoked>529020</invoked>
          <usecs>0</usecs>
          <fivesec>0.97</fivesec>
          <onemin>0.26</onemin>
          <fivemin>0.24</fivemin>
          <tty>-</tty>
          <process>ptplc</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1250</pid_s>
          <runtime>964240</runtime>
          <invoked>82521</invoked>
          <usecs>11</usecs>
          <fivesec>1.64</fivesec>
          <onemin>4.35</onemin>
          <fivemin>4.38</fivemin>
          <tty>-</tty>
          <process>statsclient</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1251</pid_s>
          <runtime>28680</runtime>
          <invoked>2293</invoked>
          <usecs>12</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>xbar_client</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1252</pid_s>
          <runtime>420</runtime>
          <invoked>199</invoked>
          <usecs>2</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>fcoelc</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1253</pid_s>
          <runtime>3400</runtime>
          <invoked>9754</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>iftmc</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1254</pid_s>
          <runtime>900</runtime>
          <invoked>324</invoked>
          <usecs>2</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>fib</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1257</pid_s>
          <runtime>30710</runtime>
          <invoked>147494</invoked>
          <usecs>0</usecs>
          <fivesec>0.19</fivesec>
          <onemin>0.13</onemin>
          <fivemin>0.13</fivemin>
          <tty>-</tty>
          <process>mtm</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1258</pid_s>
          <runtime>350</runtime>
          <invoked>893</invoked>
          <usecs>0</usecs>
          <fivesec>0.00</fivesec>
          <onemin>0.00</onemin>
          <fivemin>0.00</fivemin>
          <tty>-</tty>
          <process>elo_io</process>
         </ROW_process_cpu>
         <ROW_process_cpu>
          <pid_s>1273</pid_s>
          <runtime>94430</runtime>
          <invoked>67752</invoked>
          <usecs>1</usecs>
          <fivesec>0.19</fivesec>
          <onemin>0.52</onemin>
          <fivemin>0.42</fivemin>
          <tty>-</tty>
          <process>aclqos</process>
         </ROW_process_cpu>
        </TABLE_process_cpu>
       </__readonly__>
      </__XML__PARAM__i0>
     </module>
    </cpu>
   </processes>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show processes cpu module 1**

CPU utilization for five seconds: 19%/0%; one minute: 19%; five minutes: 19%
PID    Runtime(ms)  Invoked   uSecs  5Sec    1Min    5Min    TTY  Process
-----  -----------  --------  -----  ------  ------  ------  ---  -----------
    1         3250      5967      0   0.00%   0.00%  0.00%   -    init
  350            0         1      0   0.00%   0.00%  0.00%   -    xinetd
  782          670     12675      0   0.00%   0.00%  0.00%   -    syslogd
  842         4270     25519      0   0.00%   0.00%  0.01%   -    sysmgr
  843            0         2      0   0.00%   0.00%  0.00%   S0    getty
 1038          140       119      1   0.00%   0.00%  0.00%   -    sdwrapd
 1043           70        49      1   0.00%   0.00%  0.00%   -    klogd
 1044          300      1389      0   0.00%   0.00%  0.00%   -    bloggerd
 1045          590      2514      0   0.00%   0.00%  0.00%   -    vntagc
 1046          270      1285      0   0.29%   0.28%  0.28%   -    sysinfo
 1049          260      1257      0   0.00%   0.00%  0.00%   -    quack_smc
 1050          860     12462      0   0.00%   0.00%  0.00%   -    psshelper_gsvc
 1051         1010     14062      0   0.00%   0.00%  0.00%   -    psshelper
 1052         4600      6589      0   0.00%   0.00%  0.00%   -    plog
 1053          300      1564      0   0.00%   0.00%  0.00%   -    obfl
 1054          270      2710      0   0.00%   0.00%  0.00%   -    mvsh
 1055          150       132      1   0.00%   0.00%  0.00%   -    mping_server
 1056          870      4609      0   0.00%   0.00%  0.00%   -    evmc
 1057        18280     16867      1   0.00%   0.01%  0.06%   -    dt_helper
 1058         2110      3336      0   0.09%   0.01%  0.00%   -    diagclient
 1059          400      1124      0   0.00%   0.00%  0.00%   -    crdcfg_server
 1060          310       222      1   0.00%   0.00%  0.00%   -    card_lcm
 1061          240      2261      0   0.00%   0.00%  0.00%   -    bios_daemon
 1062         1400      7220      0   0.00%   0.00%  0.00%   -    bfdc
 1066         2590      9086      0   0.00%   0.00%  0.00%   -    ncpmgr
 1068         1350     13596      0   0.00%   0.00%  0.00%   -    device_test
 1069        12460      5203      2   0.00%   0.00%  0.00%   -    cardclient
 1080          530      3963      0   0.00%   0.00%  0.00%   -    amm
 1081          140       161      0   0.00%   0.00%  0.00%   -    fw_app
 1082         1860      5737      0   0.00%   0.00%  0.00%   -    ncpinfraclnt
 1199         3400      2655      1   0.00%   0.00%  0.00%   -    edc_usd
 1200          530      2492      0   0.00%   0.00%  0.00%   -    fln_elam
 1201      1792300    366794      4   7.67%   7.91%  8.00%   -    fln_em
 1202       178890    290516      0   0.48%   0.74%  0.75%   -    fln_fwd_usd
 1203       173610    172406      1   0.09%   0.65%  0.70%   -    fln_l3
 1204       439220    144220      3   2.62%   2.11%  2.00%   -    fln_que
 1205       234510    156037      1   1.36%   0.99%  0.99%   -    fln_xbar
 1206        61130    103125      0   0.09%   0.25%  0.27%   -    lit
 1207        34380     15677      2   0.00%   0.10%  0.08%   -    sac_usd
 1208        62180      7912      7   0.00%   0.20%  0.26%   -    sensor
 1210        17680     20742      0   0.00%   0.05%  0.05%   -    xcvr_usd
 1213          720       282      2   0.00%   0.00%  0.00%   -    dcefib
 1238          360      1293      0   0.00%   0.00%  0.00%   -    capability
 1239          310      1238      0   0.00%   0.00%  0.00%   -    fwd_stats_client
 1240        65810     10459      6   0.00%   0.29%  0.29%   -    ipfib
 1241          430       204      2   0.00%   0.00%  0.00%   -    l2mcast
 1242          370      2368      0   0.00%   0.00%  0.00%   -    lc_port_channel
 1244          420       753      0   0.00%   0.00%  0.00%   -    monitorc
 1245         4490     45700      0   0.09%   0.02%  0.01%   -    nfp
 1246          200       499      0   0.00%   0.00%  0.00%   -    patch-installer
 1247          850      2706      0   0.00%   0.00%  0.00%   -    pixmc
 1248        16050     17100      0   0.00%   0.00%  0.03%   -    port_client
 1249        52480    528026      0   0.00%   0.22%  0.23%   -    ptplc
 1250       963540     82472     11   6.02%   4.54%  4.42%   -    statsclient
 1251        28680      2292     12   0.00%   0.00%  0.00%   -    xbar_client
 1252          420       199      2   0.00%   0.00%  0.00%   -    fcoelc
 1253         3400      9754      0   0.00%   0.00%  0.00%   -    iftmc
 1254          900       324      2   0.00%   0.00%  0.00%   -    fib
 1257        30680    147354      0   0.09%   0.13%  0.13%   -    mtm
 1258          350       893      0   0.00%   0.00%  0.00%   -    elo_io
 1273        94080     67063      1   0.00%   0.32%  0.38%   -    aclqos

show processes log

show processes log
 
import requests
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 processes log”,
  "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)
n7k2# show processes log | json
n7k2# 
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:process" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <processes>
    <log/>
   </processes>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show processes log**

VDC Process          PID     Normal-exit  Stack  Core   Log-create-time

show processes log vdc-all

show processes log vdc-all 
 
import requests
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 processes log vdc-all ”,
  "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)
{
  "TABLE_processes_log_vdc_all": {
    "ROW_processes_log_vdc_all": {
      "vdc": 2, 
      "process": "monitor", 
      "pid": 9374, 
      "normal_exit": "N", 
      "stack": "N", 
      "core": "N", 
      "create_time": "Tue Mar 20 15:44:48 2018"
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:process" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <processes>
    <log>
     <vdc-all>
      <__readonly__>
       <TABLE_processes_log_vdc_all>
        <ROW_processes_log_vdc_all>
         <vdc>2</vdc>
         <process>monitor</process>
         <pid>9374</pid>
         <normal_exit>N</normal_exit>
         <stack>N</stack>
         <core>N</core>
         <create_time>Tue Mar 20 15:44:48 2018
</create_time>
        </ROW_processes_log_vdc_all>
       </TABLE_processes_log_vdc_all>
      </__readonly__>
     </vdc-all>
    </log>
   </processes>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show processes log vdc-all **

VDC Process          PID     Normal-exit  Stack  Core   Log-create-time
--- ---------------  ------  -----------  -----  -----  ---------------
  2 monitor          9374              N      N      N Tue Mar 20 15:44:48 2018

show processes memory

show processes memory 
 
import requests
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 processes memory”,
  "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)
{
  "TABLE_process_memory": {
    "ROW_process_memory": [
      {
        "mem_pid": 1, 
        "mem_alloc": 167936, 
        "mem_limit": 0, 
        "mem_used": 1953792, 
        "stack_base_ptr": "ff9486d0/ff948030", 
        "process": "init"
      }, 
      {
        "mem_pid": 2851, 
        "mem_alloc": 196608, 
        "mem_limit": 0, 
        "mem_used": 2461696, 
        "stack_base_ptr": "ffb6a310/ffb6a1a0", 
        "process": "mcelog"
      }, 
      {
        "mem_pid": 5764, 
        "mem_alloc": 167936, 
        "mem_limit": 0, 
        "mem_used": 1974272, 
        "stack_base_ptr": "ffa56720/ffa565a8", 
        "process": "portmap"
      }, 
      {
        "mem_pid": 5767, 
        "mem_alloc": 184320, 
        "mem_limit": 0, 
        "mem_used": 2142208, 
        "stack_base_ptr": "ffbd9400/ffbd9190", 
        "process": "rpc.statd"
      }, 
      {
        "mem_pid": 5787, 
        "mem_alloc": 253952, 
        "mem_limit": 0, 
        "mem_used": 2711552, 
        "stack_base_ptr": "fff26650/fff26340", 
        "process": "rpc.mountd"
      }, 
      {
        "mem_pid": 5800, 
        "mem_alloc": 12107776, 
        "mem_limit": 0, 
        "mem_used": 384692224, 
        "stack_base_ptr": "fffa1960/fffa1560", 
        "process": "sysmgr"
      }, 
      {
        "mem_pid": 6949, 
        "mem_alloc": 1069056, 
        "mem_limit": 613788876, 
        "mem_used": 7942144, 
        "stack_base_ptr": "fff1a1b0/fff19fe0", 
        "process": "xinetd"
      }, 
      {
        "mem_pid": 6950, 
        "mem_alloc": 708608, 
        "mem_limit": 354188876, 
        "mem_used": 7168000, 
        "stack_base_ptr": "ff9264c0/ff925ee0", 
        "process": "tftpd"
      }, 
      {
        "mem_pid": 6951, 
        "mem_alloc": 12042240, 
        "mem_limit": 781691046, 
        "mem_used": 396578816, 
        "stack_base_ptr": "ff8e78d0/ff8e32dc", 
        "process": "syslogd"
      }, 
      {
        "mem_pid": 6952, 
        "mem_alloc": 3170304, 
        "mem_limit": 675189011, 
        "mem_used": 382054400, 
        "stack_base_ptr": "ff949900/ff948c40", 
        "process": "sdwrapd"
      }, 
      {
        "mem_pid": 6953, 
        "mem_alloc": 946176, 
        "mem_limit": 745502912, 
        "mem_used": 377434112, 
        "stack_base_ptr": "ffe5bc90/ffe5ac18", 
        "process": "pfm_dummy"
      }, 
      {
        "mem_pid": 6954, 
        "mem_alloc": 24633344, 
        "mem_limit": 0, 
        "mem_used": 415715328, 
        "stack_base_ptr": "ffe7dbd0/ffe7b810", 
        "process": "platform"
      }, 
      {
        "mem_pid": 7023, 
        "mem_alloc": 1966080, 
        "mem_limit": 784668403, 
        "mem_used": 381247488, 
        "stack_base_ptr": "ffabe350/ffabde90", 
        "process": "cmond"
      }, 
      {
        "mem_pid": 7041, 
        "mem_alloc": 2674688, 
        "mem_limit": 967294310, 
        "mem_used": 385753088, 
        "stack_base_ptr": "ffa7e820/ffa7e0fc", 
        "process": "vshd"
      }, 
      {
        "mem_pid": 7042, 
        "mem_alloc": 5017600, 
        "mem_limit": 1033477209, 
        "mem_used": 490401792, 
        "stack_base_ptr": "ffc5d6a0/ffc5c470", 
        "process": "vpc_config_sync"
      }, 
      {
        "mem_pid": 7043, 
        "mem_alloc": 8032256, 
        "mem_limit": 1026326822, 
        "mem_used": 389283840, 
        "stack_base_ptr": "fff510f0/fff50b30", 
        "process": "smm"
      }, 
      {
        "mem_pid": 7044, 
        "mem_alloc": 4300800, 
        "mem_limit": 732585990, 
        "mem_used": 380825600, 
        "stack_base_ptr": "fff1cab0/fff1ba90", 
        "process": "session-mgr"
      }, 
      {
        "mem_pid": 7045, 
        "mem_alloc": 2404352, 
        "mem_limit": 1035634828, 
        "mem_used": 378720256, 
        "stack_base_ptr": "ffd32e00/ffd329d0", 
        "process": "psshelper"
      }, 
      {
        "mem_pid": 7046, 
        "mem_alloc": 30625792, 
        "mem_limit": 977183539, 
        "mem_used": 417177600, 
        "stack_base_ptr": "ff9bc0b0/ff9bb470", 
        "process": "pixm_vl"
      }, 
      {
        "mem_pid": 7047, 
        "mem_alloc": 20439040, 
        "mem_limit": 988731392, 
        "mem_used": 413450240, 
        "stack_base_ptr": "ff85f7d0/ff85eb90", 
        "process": "pixm_gl"
      }, 
      {
        "mem_pid": 7048, 
        "mem_alloc": 29364224, 
        "mem_limit": 0, 
        "mem_used": 494329856, 
        "stack_base_ptr": "ffe5c660/ffe5c530", 
        "process": "pdsd"
      }, 
      {
        "mem_pid": 7049, 
        "mem_alloc": 4595712, 
        "mem_limit": 1303061478, 
        "mem_used": 486293504, 
        "stack_base_ptr": "fff20e40/fff1e29c", 
        "process": "mmode"
      }, 
      {
        "mem_pid": 7051, 
        "mem_alloc": 425984, 
        "mem_limit": 0, 
        "mem_used": 4272128, 
        "stack_base_ptr": "ff88ead0/ff88d0d0", 
        "process": "lmgrd"
      }, 
      {
        "mem_pid": 7052, 
        "mem_alloc": 2711552, 
        "mem_limit": 761488780, 
        "mem_used": 388321280, 
        "stack_base_ptr": "ffc05810/ffc05168", 
        "process": "licmgr"
      }, 
      {
        "mem_pid": 7053, 
        "mem_alloc": 1368064, 
        "mem_limit": 0, 
        "mem_used": 378785792, 
        "stack_base_ptr": "fff99f60/fff996f0", 
        "process": "fs-daemon"
      }, 
      {
        "mem_pid": 7055, 
        "mem_alloc": 3289088, 
        "mem_limit": 0, 
        "mem_used": 386281472, 
        "stack_base_ptr": "ffc62ee0/ffc61f4c", 
        "process": "feature-mgr"
      }, 
      {
        "mem_pid": 7056, 
        "mem_alloc": 1982464, 
        "mem_limit": 0, 
        "mem_used": 381001728, 
        "stack_base_ptr": "ffd4f2a0/ffd4f080", 
        "process": "confcheck"
      }, 
      {
        "mem_pid": 7057, 
        "mem_alloc": 2658304, 
        "mem_limit": 746850086, 
        "mem_used": 379191296, 
        "stack_base_ptr": "fff2dda0/fff2d1b0", 
        "process": "capability"
      }, 
      {
        "mem_pid": 7058, 
        "mem_alloc": 7053312, 
        "mem_limit": 751084153, 
        "mem_used": 389844992, 
        "stack_base_ptr": "ff841330/ff84038c", 
        "process": "bloggerd"
      }, 
      {
        "mem_pid": 7059, 
        "mem_alloc": 2260992, 
        "mem_limit": 1035477132, 
        "mem_used": 378621952, 
        "stack_base_ptr": "ffeb19b0/ffeb1580", 
        "process": "psshelper_gsvc"
      }, 
      {
        "mem_pid": 7068, 
        "mem_alloc": 18800640, 
        "mem_limit": 0, 
        "mem_used": 22335488, 
        "stack_base_ptr": "ff910970/ff910744", 
        "process": "cisco"
      }, 
      {
        "mem_pid": 7078, 
        "mem_alloc": 19128320, 
        "mem_limit": 1412394368, 
        "mem_used": 504541184, 
        "stack_base_ptr": "ff875400/ff8747ec", 
        "process": "clis"
      }, 
      {
        "mem_pid": 7081, 
        "mem_alloc": 63733760, 
        "mem_limit": 1701749350, 
        "mem_used": 551370752, 
        "stack_base_ptr": "ffed9dd0/ffed825c", 
        "process": "port-profile"
      }, 
      {
        "mem_pid": 7189, 
        "mem_alloc": 614400, 
        "mem_limit": 0, 
        "mem_used": 7217152, 
        "stack_base_ptr": "ffc71700/ffc71370", 
        "process": "dhcpd"
      }, 
      {
        "mem_pid": 7193, 
        "mem_alloc": 1839104, 
        "mem_limit": 922355596, 
        "mem_used": 378155008, 
        "stack_base_ptr": "ff95e1b0/ff95d170", 
        "process": "xmpp"
      }, 
      {
        "mem_pid": 7194, 
        "mem_alloc": 2297856, 
        "mem_limit": 0, 
        "mem_used": 383467520, 
        "stack_base_ptr": "ffec9bb0/ffec8e3c", 
        "process": "xmlma"
      }, 
      {
        "mem_pid": 7195, 
        "mem_alloc": 3661824, 
        "mem_limit": 758778240, 
        "mem_used": 383787008, 
        "stack_base_ptr": "ff835400/ff833dc0", 
        "process": "vmm"
      }, 
      {
        "mem_pid": 7196, 
        "mem_alloc": 5419008, 
        "mem_limit": 781336441, 
        "mem_used": 393887744, 
        "stack_base_ptr": "ff8a5a40/ff8a5308", 
        "process": "vman"
      }, 
      {
        "mem_pid": 7198, 
        "mem_alloc": 1925120, 
        "mem_limit": 825476608, 
        "mem_used": 382525440, 
        "stack_base_ptr": "ffb1c670/ffb1b8e0", 
        "process": "vdc_mgr"
      }, 
      {
        "mem_pid": 7199, 
        "mem_alloc": 9895936, 
        "mem_limit": 0, 
        "mem_used": 285274112, 
        "stack_base_ptr": "ffa70360/ffa6e03c", 
        "process": "usbhsd"
      }, 
      {
        "mem_pid": 7200, 
        "mem_alloc": 2187264, 
        "mem_limit": 763162188, 
        "mem_used": 380735488, 
        "stack_base_ptr": "ffb33e50/ffb337b0", 
        "process": "ttyd"
      }, 
      {
        "mem_pid": 7201, 
        "mem_alloc": 12718080, 
        "mem_limit": 747826252, 
        "mem_used": 287657984, 
        "stack_base_ptr": "ffec1640/ffec14ac", 
        "process": "sysinfo"
      }, 
      {
        "mem_pid": 7202, 
        "mem_alloc": 3629056, 
        "mem_limit": 748539686, 
        "mem_used": 382914560, 
        "stack_base_ptr": "ff95e5b0/ff95d550", 
        "process": "statsprofiler"
      }, 
      {
        "mem_pid": 7203, 
        "mem_alloc": 1855488, 
        "mem_limit": 744917184, 
        "mem_used": 379441152, 
        "stack_base_ptr": "ffb30060/ffb2f000", 
        "process": "snmpmib_proc"
      }, 
      {
        "mem_pid": 7204, 
        "mem_alloc": 1331200, 
        "mem_limit": 766877971, 
        "mem_used": 381018112, 
        "stack_base_ptr": "ffeb5e90/ffeb58d0", 
        "process": "sksd"
      }, 
      {
        "mem_pid": 7206, 
        "mem_alloc": 2887680, 
        "mem_limit": 757798694, 
        "mem_used": 383840256, 
        "stack_base_ptr": "fff35980/fff33fbc", 
        "process": "rtd_monitor"
      }, 
      {
        "mem_pid": 7207, 
        "mem_alloc": 3170304, 
        "mem_limit": 756517555, 
        "mem_used": 385015808, 
        "stack_base_ptr": "ffa1ddf0/ffa1d92c", 
        "process": "res_mgr"
      }, 
      {
        "mem_pid": 7208, 
        "mem_alloc": 3923968, 
        "mem_limit": 2022446694, 
        "mem_used": 371843072, 
        "stack_base_ptr": "fffc44e0/fffc34ac", 
        "process": "plugin"
      }, 
      {
        "mem_pid": 7209, 
        "mem_alloc": 491520, 
        "mem_limit": 774602892, 
        "mem_used": 352190464, 
        "stack_base_ptr": "ffa71a00/ffa71230", 
        "process": "plog_sup"
      }, 
      {
        "mem_pid": 7210, 
        "mem_alloc": 2859008, 
        "mem_limit": 0, 
        "mem_used": 385138688, 
        "stack_base_ptr": "ffe54f40/ffe54690", 
        "process": "patch-installer"
      }, 
      {
        "mem_pid": 7211, 
        "mem_alloc": 1765376, 
        "mem_limit": 818026809, 
        "mem_used": 378179584, 
        "stack_base_ptr": "fff058e0/fff046a0", 
        "process": "mvsh"
      }, 
      {
        "mem_pid": 7212, 
        "mem_alloc": 454656, 
        "mem_limit": 0, 
        "mem_used": 276865024, 
        "stack_base_ptr": "ffccce40/ffccca10", 
        "process": "mping_server"
      }, 
      {
        "mem_pid": 7213, 
        "mem_alloc": 3207168, 
        "mem_limit": 0, 
        "mem_used": 383115264, 
        "stack_base_ptr": "ffeb7410/ffeb6360", 
        "process": "fw_app"
      }, 
      {
        "mem_pid": 7214, 
        "mem_alloc": 5406720, 
        "mem_limit": 665645657, 
        "mem_used": 386166784, 
        "stack_base_ptr": "ffad9d60/ffad9ba0", 
        "process": "fmd"
      }, 
      {
        "mem_pid": 7215, 
        "mem_alloc": 3088384, 
        "mem_limit": 759254003, 
        "mem_used": 385011712, 
        "stack_base_ptr": "ff8176b0/ff816680", 
        "process": "evms"
      }, 
      {
        "mem_pid": 7217, 
        "mem_alloc": 2240512, 
        "mem_limit": 923590131, 
        "mem_used": 379666432, 
        "stack_base_ptr": "ffa4e4a0/ffa4d480", 
        "process": "evmc"
      }, 
      {
        "mem_pid": 7218, 
        "mem_alloc": 2166784, 
        "mem_limit": 846426803, 
        "mem_used": 384905216, 
        "stack_base_ptr": "ff9d7490/ff9d6ba8", 
        "process": "epld_upgrade_stdby"
      }, 
      {
        "mem_pid": 7219, 
        "mem_alloc": 2494464, 
        "mem_limit": 846823296, 
        "mem_used": 386342912, 
        "stack_base_ptr": "ff9e9d60/ff9e8d60", 
        "process": "epld_auto"
      }, 
      {
        "mem_pid": 7220, 
        "mem_alloc": 4456448, 
        "mem_limit": 662491737, 
        "mem_used": 383934464, 
        "stack_base_ptr": "ffd1f110/ffd1e0b0", 
        "process": "diagmgr"
      }, 
      {
        "mem_pid": 7221, 
        "mem_alloc": 13557760, 
        "mem_limit": 1135574387, 
        "mem_used": 391614464, 
        "stack_base_ptr": "ff8d47b0/ff8d4010", 
        "process": "crdcfg_server"
      }, 
      {
        "mem_pid": 7222, 
        "mem_alloc": 1335296, 
        "mem_limit": 0, 
        "mem_used": 379432960, 
        "stack_base_ptr": "fffdbce0/fffdb6a0", 
        "process": "core-dmon"
      }, 
      {
        "mem_pid": 7223, 
        "mem_alloc": 2195456, 
        "mem_limit": 745615552, 
        "mem_used": 388001792, 
        "stack_base_ptr": "ffd713b0/ffd70380", 
        "process": "clk_mgr"
      }, 
      {
        "mem_pid": 7224, 
        "mem_alloc": 3543040, 
        "mem_limit": 658459225, 
        "mem_used": 384626688, 
        "stack_base_ptr": "ffa49530/ffa48710", 
        "process": "cli_acl"
      }, 
      {
        "mem_pid": 7225, 
        "mem_alloc": 618496, 
        "mem_limit": 497188876, 
        "mem_used": 288452608, 
        "stack_base_ptr": "ffc77bf0/ffc76ff8", 
        "process": "bios_daemon"
      }, 
      {
        "mem_pid": 7226, 
        "mem_alloc": 2916352, 
        "mem_limit": 0, 
        "mem_used": 495820800, 
        "stack_base_ptr": "fffae400/fffad7f8", 
        "process": "ascii-cfg"
      }, 
      {
        "mem_pid": 7227, 
        "mem_alloc": 1941504, 
        "mem_limit": 0, 
        "mem_used": 383873024, 
        "stack_base_ptr": "ffb19ea0/ffb189e8", 
        "process": "securityd"
      }, 
      {
        "mem_pid": 7228, 
        "mem_alloc": 3219456, 
        "mem_limit": 0, 
        "mem_used": 390320128, 
        "stack_base_ptr": "ffc35590/ffc337ec", 
        "process": "cert_enroll"
      }, 
      {
        "mem_pid": 7229, 
        "mem_alloc": 1802240, 
        "mem_limit": 0, 
        "mem_used": 381370368, 
        "stack_base_ptr": "ffa8efc0/ffa8db50", 
        "process": "aaa"
      }, 
      {
        "mem_pid": 7230, 
        "mem_alloc": 1642496, 
        "mem_limit": 796666816, 
        "mem_used": 381362176, 
        "stack_base_ptr": "fffcdef0/fffcd1a8", 
        "process": "obfl"
      }, 
      {
        "mem_pid": 7237, 
        "mem_alloc": 14442496, 
        "mem_limit": 1032787852, 
        "mem_used": 400297984, 
        "stack_base_ptr": "ffcd6980/ffcd65d0", 
        "process": "l3vm"
      }, 
      {
        "mem_pid": 7238, 
        "mem_alloc": 17166336, 
        "mem_limit": 1628092416, 
        "mem_used": 528625664, 
        "stack_base_ptr": "ffa860b0/ffa85e70", 
        "process": "urib"
      }, 
      {
        "mem_pid": 7246, 
        "mem_alloc": 20770816, 
        "mem_limit": 679392243, 
        "mem_used": 400662528, 
        "stack_base_ptr": "ff941fc0/ff940ca0", 
        "process": "diagclient"
      }, 
      {
        "mem_pid": 7274, 
        "mem_alloc": 13705216, 
        "mem_limit": 849395993, 
        "mem_used": 395317248, 
        "stack_base_ptr": "ffe63f10/ffe6349c", 
        "process": "device_test"
      }, 
      {
        "mem_pid": 7280, 
        "mem_alloc": 7356416, 
        "mem_limit": 1632385638, 
        "mem_used": 396648448, 
        "stack_base_ptr": "ffb300f0/ffb2ee40", 
        "process": "aclmgr"
      }, 
      {
        "mem_pid": 7290, 
        "mem_alloc": 34295808, 
        "mem_limit": 1134731020, 
        "mem_used": 583098368, 
        "stack_base_ptr": "ffa4ac70/ffa4a8d0", 
        "process": "adjmgr"
      }, 
      {
        "mem_pid": 7291, 
        "mem_alloc": 27435008, 
        "mem_limit": 1057851276, 
        "mem_used": 556855296, 
        "stack_base_ptr": "ffc49790/ffc49650", 
        "process": "u6rib"
      }, 
      {
        "mem_pid": 7296, 
        "mem_alloc": 2801664, 
        "mem_limit": 1021514841, 
        "mem_used": 383930368, 
        "stack_base_ptr": "ff802f90/ff801f50", 
        "process": "eem_policy_dir"
      }, 
      {
        "mem_pid": 7368, 
        "mem_alloc": 8511488, 
        "mem_limit": 1056559398, 
        "mem_used": 419692544, 
        "stack_base_ptr": "fffcf6a0/fffcf120", 
        "process": "npacl"
      }, 
      {
        "mem_pid": 7375, 
        "mem_alloc": 83218432, 
        "mem_limit": 1253813747, 
        "mem_used": 719196160, 
        "stack_base_ptr": "ff965960/ff9655c0", 
        "process": "arp"
      }, 
      {
        "mem_pid": 7376, 
        "mem_alloc": 18001920, 
        "mem_limit": 1057774681, 
        "mem_used": 595214336, 
        "stack_base_ptr": "ffeb1fe0/ffeb1a6c", 
        "process": "icmpv6"
      }, 
      {
        "mem_pid": 7409, 
        "mem_alloc": 19988480, 
        "mem_limit": 0, 
        "mem_used": 416063488, 
        "stack_base_ptr": "ff939250/ff931670", 
        "process": "xbar"
      }, 
      {
        "mem_pid": 7430, 
        "mem_alloc": 7335936, 
        "mem_limit": 792551372, 
        "mem_used": 390787072, 
        "stack_base_ptr": "ffcde6a0/ffcdc310", 
        "process": "module"
      }, 
      {
        "mem_pid": 7449, 
        "mem_alloc": 10465280, 
        "mem_limit": 794972710, 
        "mem_used": 392654848, 
        "stack_base_ptr": "ffd343e0/ffd3348c", 
        "process": "ExceptionLog"
      }, 
      {
        "mem_pid": 7450, 
        "mem_alloc": 1626112, 
        "mem_limit": 793778726, 
        "mem_used": 380723200, 
        "stack_base_ptr": "ffff4e90/ffff4780", 
        "process": "bootvar"
      }, 
      {
        "mem_pid": 7451, 
        "mem_alloc": 1220608, 
        "mem_limit": 0, 
        "mem_used": 377483264, 
        "stack_base_ptr": "ffef7380/ffef70e0", 
        "process": "cardclient"
      }, 
      {
        "mem_pid": 7452, 
        "mem_alloc": 9367552, 
        "mem_limit": 777900006, 
        "mem_used": 404787200, 
        "stack_base_ptr": "fffc8210/fffc71c0", 
        "process": "ifmgr"
      }, 
      {
        "mem_pid": 7469, 
        "mem_alloc": 3936256, 
        "mem_limit": 756131622, 
        "mem_used": 389009408, 
        "stack_base_ptr": "ffe66d80/ffe65d40", 
        "process": "ncpinframgr"
      }, 
      {
        "mem_pid": 7471, 
        "mem_alloc": 27865088, 
        "mem_limit": 1136921280, 
        "mem_used": 540000256, 
        "stack_base_ptr": "ffa05eb0/ffa05da0", 
        "process": "pktmgr"
      }, 
      {
        "mem_pid": 7478, 
        "mem_alloc": 5320704, 
        "mem_limit": 748634304, 
        "mem_used": 384851968, 
        "stack_base_ptr": "ffa922d0/ffa912c0", 
        "process": "clp_elam"
      }, 
      {
        "mem_pid": 7479, 
        "mem_alloc": 5124096, 
        "mem_limit": 0, 
        "mem_used": 398258176, 
        "stack_base_ptr": "ff9b7a30/ff9b6ed0", 
        "process": "clp_fwd"
      }, 
      {
        "mem_pid": 7480, 
        "mem_alloc": 7409664, 
        "mem_limit": 0, 
        "mem_used": 400162816, 
        "stack_base_ptr": "ff89d130/ff89c870", 
        "process": "clp_l3"
      }, 
      {
        "mem_pid": 7481, 
        "mem_alloc": 5160960, 
        "mem_limit": 0, 
        "mem_used": 400961536, 
        "stack_base_ptr": "ff8202e0/ff81f800", 
        "process": "clp_mac"
      }, 
      {
        "mem_pid": 7483, 
        "mem_alloc": 4763648, 
        "mem_limit": 0, 
        "mem_used": 397176832, 
        "stack_base_ptr": "ff9bc5f0/ff9bbd50", 
        "process": "clp_xbar"
      }, 
      {
        "mem_pid": 7484, 
        "mem_alloc": 4296704, 
        "mem_limit": 0, 
        "mem_used": 381542400, 
        "stack_base_ptr": "ffd17070/ffd167c0", 
        "process": "lit"
      }, 
      {
        "mem_pid": 7486, 
        "mem_alloc": 27815936, 
        "mem_limit": 1034706534, 
        "mem_used": 532971520, 
        "stack_base_ptr": "ff8a78e0/ff8a6e10", 
        "process": "sac_usd"
      }, 
      {
        "mem_pid": 7487, 
        "mem_alloc": 2961408, 
        "mem_limit": 0, 
        "mem_used": 382877696, 
        "stack_base_ptr": "ffc00290/ffbffdf0", 
        "process": "sensor"
      }, 
      {
        "mem_pid": 7488, 
        "mem_alloc": 127524864, 
        "mem_limit": 0, 
        "mem_used": 508030976, 
        "stack_base_ptr": "ffe735b0/ffe72cf0", 
        "process": "sm15_usd"
      }, 
      {
        "mem_pid": 7497, 
        "mem_alloc": 77430784, 
        "mem_limit": 1299995315, 
        "mem_used": 755855360, 
        "stack_base_ptr": "fffdaee0/fffda930", 
        "process": "netstack"
      }, 
      {
        "mem_pid": 7541, 
        "mem_alloc": 3506176, 
        "mem_limit": 902919520, 
        "mem_used": 511770624, 
        "stack_base_ptr": "ff938540/ff93328c", 
        "process": "radius"
      }, 
      {
        "mem_pid": 7542, 
        "mem_alloc": 3522560, 
        "mem_limit": 876446796, 
        "mem_used": 512749568, 
        "stack_base_ptr": "ffaa8760/ffaa759c", 
        "process": "cdp"
      }, 
      {
        "mem_pid": 7544, 
        "mem_alloc": 9256960, 
        "mem_limit": 1084764595, 
        "mem_used": 391540736, 
        "stack_base_ptr": "ffeb9ae0/ffeb7f6c", 
        "process": "cfs"
      }, 
      {
        "mem_pid": 7545, 
        "mem_alloc": 450560, 
        "mem_limit": 657001241, 
        "mem_used": 275283968, 
        "stack_base_ptr": "fff1cd00/fff1c8e8", 
        "process": "ip_dummy"
      }, 
      {
        "mem_pid": 7546, 
        "mem_alloc": 450560, 
        "mem_limit": 657001241, 
        "mem_used": 275283968, 
        "stack_base_ptr": "ffe94160/ffe93d48", 
        "process": "ipv6_dummy"
      }, 
      {
        "mem_pid": 7547, 
        "mem_alloc": 3346432, 
        "mem_limit": 1040356441, 
        "mem_used": 559476736, 
        "stack_base_ptr": "ffe75b70/ffe7178c", 
        "process": "ntp"
      }, 
      {
        "mem_pid": 7548, 
        "mem_alloc": 4050944, 
        "mem_limit": 1039333670, 
        "mem_used": 558772224, 
        "stack_base_ptr": "ffe8c2f0/ffe8a77c", 
        "process": "otm"
      }, 
      {
        "mem_pid": 7549, 
        "mem_alloc": 25989120, 
        "mem_limit": 915360819, 
        "mem_used": 552292352, 
        "stack_base_ptr": "ffd60530/ffd5b2dc", 
        "process": "snmpd"
      }, 
      {
        "mem_pid": 7550, 
        "mem_alloc": 450560, 
        "mem_limit": 657001241, 
        "mem_used": 275283968, 
        "stack_base_ptr": "ffe11b40/ffe11728", 
        "process": "tcpudp_dummy"
      }, 
      {
        "mem_pid": 7557, 
        "mem_alloc": 2609152, 
        "mem_limit": 472988876, 
        "mem_used": 375205888, 
        "stack_base_ptr": "ff9589e0/ff954c0c", 
        "process": "dcos-xinetd"
      }, 
      {
        "mem_pid": 7594, 
        "mem_alloc": 1581056, 
        "mem_limit": 0, 
        "mem_used": 374321152, 
        "stack_base_ptr": "fff418a0/fff3dacc", 
        "process": "ntpd"
      }, 
      {
        "mem_pid": 7600, 
        "mem_alloc": 24272896, 
        "mem_limit": 884710886, 
        "mem_used": 410439680, 
        "stack_base_ptr": "ffd70040/ffd6fb0c", 
        "process": "callhome"
      }, 
      {
        "mem_pid": 7906, 
        "mem_alloc": 708608, 
        "mem_limit": 354188876, 
        "mem_used": 7168000, 
        "stack_base_ptr": "ffc67f80/ffc679a0", 
        "process": "tftp_aa"
      }, 
      {
        "mem_pid": 7907, 
        "mem_alloc": 8450048, 
        "mem_limit": 836465388, 
        "mem_used": 395792384, 
        "stack_base_ptr": "ffe4f570/ffe4dd6c", 
        "process": "sim"
      }, 
      {
        "mem_pid": 7908, 
        "mem_alloc": 16080896, 
        "mem_limit": 1055396134, 
        "mem_used": 589991936, 
        "stack_base_ptr": "ffc05c60/ffc05b40", 
        "process": "rpm"
      }, 
      {
        "mem_pid": 7909, 
        "mem_alloc": 4907008, 
        "mem_limit": 766188121, 
        "mem_used": 391376896, 
        "stack_base_ptr": "ff880160/ff87f100", 
        "process": "pltfm_debug"
      }, 
      {
        "mem_pid": 7910, 
        "mem_alloc": 4145152, 
        "mem_limit": 784765203, 
        "mem_used": 392970240, 
        "stack_base_ptr": "ffec13d0/ffebf81c", 
        "process": "pltfm_config"
      }, 
      {
        "mem_pid": 7911, 
        "mem_alloc": 4530176, 
        "mem_limit": 843228672, 
        "mem_used": 384872448, 
        "stack_base_ptr": "ffffb130/ffffa100", 
        "process": "plsm"
      }, 
      {
        "mem_pid": 7912, 
        "mem_alloc": 6500352, 
        "mem_limit": 1031733542, 
        "mem_used": 392921088, 
        "stack_base_ptr": "ffd5b220/ffd5a200", 
        "process": "plcmgr"
      }, 
      {
        "mem_pid": 7913, 
        "mem_alloc": 28327936, 
        "mem_limit": 870378572, 
        "mem_used": 418869248, 
        "stack_base_ptr": "ffab48c0/ffab3c90", 
        "process": "pixmc"
      }, 
      {
        "mem_pid": 7914, 
        "mem_alloc": 5079040, 
        "mem_limit": 1030927040, 
        "mem_used": 388476928, 
        "stack_base_ptr": "ffe47570/ffe459bc", 
        "process": "pfstat"
      }, 
      {
        "mem_pid": 7916, 
        "mem_alloc": 3571712, 
        "mem_limit": 764926553, 
        "mem_used": 390905856, 
        "stack_base_ptr": "ffbbb920/ffbba8e0", 
        "process": "monitorc"
      }, 
      {
        "mem_pid": 7917, 
        "mem_alloc": 77000704, 
        "mem_limit": 997711475, 
        "mem_used": 461725696, 
        "stack_base_ptr": "ffbc8a60/ffbc6e5c", 
        "process": "lim"
      }, 
      {
        "mem_pid": 7918, 
        "mem_alloc": 47632384, 
        "mem_limit": 1074409881, 
        "mem_used": 433668096, 
        "stack_base_ptr": "ff8dc220/ff8db790", 
        "process": "l2rib"
      }, 
      {
        "mem_pid": 7919, 
        "mem_alloc": 151097344, 
        "mem_limit": 1417398720, 
        "mem_used": 736837632, 
        "stack_base_ptr": "ffec5800/ffec52d0", 
        "process": "igmp"
      }, 
      {
        "mem_pid": 7920, 
        "mem_alloc": 10510336, 
        "mem_limit": 787747417, 
        "mem_used": 411803648, 
        "stack_base_ptr": "ffce3080/ffce14fc", 
        "process": "giscm"
      }, 
      {
        "mem_pid": 7921, 
        "mem_alloc": 15360000, 
        "mem_limit": 790023238, 
        "mem_used": 403529728, 
        "stack_base_ptr": "ff86fc50/ff86e48c", 
        "process": "eltm"
      }, 
      {
        "mem_pid": 7922, 
        "mem_alloc": 8499200, 
        "mem_limit": 1030426918, 
        "mem_used": 389902336, 
        "stack_base_ptr": "ff809430/ff809310", 
        "process": "ecp"
      }, 
      {
        "mem_pid": 7924, 
        "mem_alloc": 13787136, 
        "mem_limit": 981622118, 
        "mem_used": 400723968, 
        "stack_base_ptr": "ffc984c0/ffc9693c", 
        "process": "adbm"
      }, 
      {
        "mem_pid": 7925, 
        "mem_alloc": 3485696, 
        "mem_limit": 1030571097, 
        "mem_used": 386428928, 
        "stack_base_ptr": "ffac10c0/ffac0070", 
        "process": "acllog"
      }, 
      {
        "mem_pid": 7952, 
        "mem_alloc": 208961536, 
        "mem_limit": 885737344, 
        "mem_used": 719724544, 
        "stack_base_ptr": "ffcbb4f0/ffcb996c", 
        "process": "monitor"
      }, 
      {
        "mem_pid": 7953, 
        "mem_alloc": 7303168, 
        "mem_limit": 780382592, 
        "mem_used": 395427840, 
        "stack_base_ptr": "ffde3cc0/ffde1f3c", 
        "process": "eth_port_channel"
      }, 
      {
        "mem_pid": 7954, 
        "mem_alloc": 51900416, 
        "mem_limit": 823596787, 
        "mem_used": 446259200, 
        "stack_base_ptr": "ff8564e0/ff85510c", 
        "process": "vlan_mgr"
      }, 
      {
        "mem_pid": 7962, 
        "mem_alloc": 2519040, 
        "mem_limit": 785439705, 
        "mem_used": 383795200, 
        "stack_base_ptr": "ff92dc10/ff92d860", 
        "process": "eth_dstats"
      }, 
      {
        "mem_pid": 7963, 
        "mem_alloc": 34107392, 
        "mem_limit": 1653169971, 
        "mem_used": 430669824, 
        "stack_base_ptr": "ffc95d50/ffc94750", 
        "process": "ipqosmgr"
      }, 
      {
        "mem_pid": 7964, 
        "mem_alloc": 8871936, 
        "mem_limit": 780256435, 
        "mem_used": 393961472, 
        "stack_base_ptr": "ffc285c0/ffc27580", 
        "process": "lacp"
      }, 
      {
        "mem_pid": 7965, 
        "mem_alloc": 33157120, 
        "mem_limit": 846688972, 
        "mem_used": 427773952, 
        "stack_base_ptr": "ff83ca50/ff83bc60", 
        "process": "diag_port_lb"
      }, 
      {
        "mem_pid": 7966, 
        "mem_alloc": 15687680, 
        "mem_limit": 864989900, 
        "mem_used": 584257536, 
        "stack_base_ptr": "ffa34fb0/ffa333cc", 
        "process": "ethpm"
      }, 
      {
        "mem_pid": 7967, 
        "mem_alloc": 20111360, 
        "mem_limit": 1047368608, 
        "mem_used": 425996288, 
        "stack_base_ptr": "ff8aab80/ff8a8ddc", 
        "process": "l2fm"
      }, 
      {
        "mem_pid": 7968, 
        "mem_alloc": 5267456, 
        "mem_limit": 774175731, 
        "mem_used": 500441088, 
        "stack_base_ptr": "ffb5bf70/ffb5a3ec", 
        "process": "mhbfd_tracker"
      }, 
      {
        "mem_pid": 7969, 
        "mem_alloc": 33533952, 
        "mem_limit": 778357747, 
        "mem_used": 425009152, 
        "stack_base_ptr": "fff8efe0/fff8d44c", 
        "process": "aclqos"
      }, 
      {
        "mem_pid": 7970, 
        "mem_alloc": 9138176, 
        "mem_limit": 1077199411, 
        "mem_used": 484216832, 
        "stack_base_ptr": "ff8a66a0/ff8a5b3c", 
        "process": "stp"
      }, 
      {
        "mem_pid": 8004, 
        "mem_alloc": 5267456, 
        "mem_limit": 985596057, 
        "mem_used": 395567104, 
        "stack_base_ptr": "ff9444e0/ff9426dc", 
        "process": "copp"
      }, 
      {
        "mem_pid": 8057, 
        "mem_alloc": 8949760, 
        "mem_limit": 1194218316, 
        "mem_used": 574808064, 
        "stack_base_ptr": "ff8f16f0/ff8efd8c", 
        "process": "vpc"
      }, 
      {
        "mem_pid": 8058, 
        "mem_alloc": 3067904, 
        "mem_limit": 768625651, 
        "mem_used": 386756608, 
        "stack_base_ptr": "ffe04070/ffe03040", 
        "process": "u2"
      }, 
      {
        "mem_pid": 8059, 
        "mem_alloc": 6844416, 
        "mem_limit": 1417823897, 
        "mem_used": 392826880, 
        "stack_base_ptr": "ffa687f0/ffa67b70", 
        "process": "spm"
      }, 
      {
        "mem_pid": 8060, 
        "mem_alloc": 3043328, 
        "mem_limit": 1038180236, 
        "mem_used": 524177408, 
        "stack_base_ptr": "ffb45810/ffb43c9c", 
        "process": "sal"
      }, 
      {
        "mem_pid": 8061, 
        "mem_alloc": 125378560, 
        "mem_limit": 1276765145, 
        "mem_used": 777396224, 
        "stack_base_ptr": "ffd11730/ffd11610", 
        "process": "mrib"
      }, 
      {
        "mem_pid": 8062, 
        "mem_alloc": 10600448, 
        "mem_limit": 1147257408, 
        "mem_used": 406286336, 
        "stack_base_ptr": "fff96640/fff94a3c", 
        "process": "mfdm"
      }, 
      {
        "mem_pid": 8063, 
        "mem_alloc": 3350528, 
        "mem_limit": 767620902, 
        "mem_used": 390868992, 
        "stack_base_ptr": "ffca9c60/ffca8bd0", 
        "process": "mcm"
      }, 
      {
        "mem_pid": 8064, 
        "mem_alloc": 65372160, 
        "mem_limit": 1099564531, 
        "mem_used": 636751872, 
        "stack_base_ptr": "ffc31e10/ffc31cf0", 
        "process": "m6rib"
      }, 
      {
        "mem_pid": 8065, 
        "mem_alloc": 3219456, 
        "mem_limit": 1030332300, 
        "mem_used": 388907008, 
        "stack_base_ptr": "ff95a010/ff95826c", 
        "process": "l2pt"
      }, 
      {
        "mem_pid": 8066, 
        "mem_alloc": 7815168, 
        "mem_limit": 1144994086, 
        "mem_used": 582615040, 
        "stack_base_ptr": "ffbd6cd0/ffbd206c", 
        "process": "hsrp_engine"
      }, 
      {
        "mem_pid": 8075, 
        "mem_alloc": 25661440, 
        "mem_limit": 1037234880, 
        "mem_used": 453365760, 
        "stack_base_ptr": "ff99f020/ff99d3ac", 
        "process": "ufdm"
      }, 
      {
        "mem_pid": 8079, 
        "mem_alloc": 65646592, 
        "mem_limit": 1120519936, 
        "mem_used": 698863616, 
        "stack_base_ptr": "ffffbad0/ffffb9e0", 
        "process": "mcastfwd"
      }, 
      {
        "mem_pid": 8084, 
        "mem_alloc": 5951488, 
        "mem_limit": 814067443, 
        "mem_used": 393633792, 
        "stack_base_ptr": "ffa84770/ffa829bc", 
        "process": "interface-vlan"
      }, 
      {
        "mem_pid": 8094, 
        "mem_alloc": 12918784, 
        "mem_limit": 1170622604, 
        "mem_used": 398573568, 
        "stack_base_ptr": "ffbd8e50/ffbd8580", 
        "process": "m2rib"
      }, 
      {
        "mem_pid": 8131, 
        "mem_alloc": 39665664, 
        "mem_limit": 866625408, 
        "mem_used": 424820736, 
        "stack_base_ptr": "ffe05040/ffe036fc", 
        "process": "vntag_mgr"
      }, 
      {
        "mem_pid": 8132, 
        "mem_alloc": 22032384, 
        "mem_limit": 787878080, 
        "mem_used": 412332032, 
        "stack_base_ptr": "fffab7c0/fffaa8f0", 
        "process": "fex"
      }, 
      {
        "mem_pid": 8188, 
        "mem_alloc": 4378624, 
        "mem_limit": 0, 
        "mem_used": 386154496, 
        "stack_base_ptr": "fff5e420/fff5d800", 
        "process": "port_client"
      }, 
      {
        "mem_pid": 8189, 
        "mem_alloc": 15745024, 
        "mem_limit": 774428864, 
        "mem_used": 406118400, 
        "stack_base_ptr": "ff9c7b00/ff9c7850", 
        "process": "statsclient"
      }, 
      {
        "mem_pid": 8190, 
        "mem_alloc": 4706304, 
        "mem_limit": 0, 
        "mem_used": 384536576, 
        "stack_base_ptr": "ff8db0f0/ff8da080", 
        "process": "xbar_client"
      }, 
      {
        "mem_pid": 8576, 
        "mem_alloc": 806912, 
        "mem_limit": 0, 
        "mem_used": 10641408, 
        "stack_base_ptr": "ff9566f0/ff9544e0", 
        "process": "login"
      }, 
      {
        "mem_pid": 8577, 
        "mem_alloc": 102400, 
        "mem_limit": 0, 
        "mem_used": 3264512, 
        "stack_base_ptr": "ffc61af0/ffc612d8", 
        "process": "sh"
      }, 
      {
        "mem_pid": 8581, 
        "mem_alloc": 14098432, 
        "mem_limit": 0, 
        "mem_used": 19865600, 
        "stack_base_ptr": "ffb93470/ffb92e90", 
        "process": "libvirtd"
      }, 
      {
        "mem_pid": 9170, 
        "mem_alloc": 12414976, 
        "mem_limit": 0, 
        "mem_used": 496939008, 
        "stack_base_ptr": "ff9c36b0/ff9c32fc", 
        "process": "vsh"
      }
    ]
  }, 
  "sum_mem_malloced": "2391318528"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:process" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <processes>
    <memory>
     <__readonly__>
      <TABLE_process_memory>
       <ROW_process_memory>
        <mem_pid>1</mem_pid>
        <mem_alloc>167936</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>1953792</mem_used>
        <stack_base_ptr>ff9486d0/ff948030</stack_base_ptr>
        <process>init</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>2851</mem_pid>
        <mem_alloc>196608</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>2461696</mem_used>
        <stack_base_ptr>ffb6a310/ffb6a1a0</stack_base_ptr>
        <process>mcelog</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>5764</mem_pid>
        <mem_alloc>167936</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>1974272</mem_used>
        <stack_base_ptr>ffa56720/ffa565a8</stack_base_ptr>
        <process>portmap</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>5767</mem_pid>
        <mem_alloc>184320</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>2142208</mem_used>
        <stack_base_ptr>ffbd9400/ffbd9190</stack_base_ptr>
        <process>rpc.statd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>5787</mem_pid>
        <mem_alloc>253952</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>2711552</mem_used>
        <stack_base_ptr>fff26650/fff26340</stack_base_ptr>
        <process>rpc.mountd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>5800</mem_pid>
        <mem_alloc>12107776</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>384692224</mem_used>
        <stack_base_ptr>fffa1960/fffa1560</stack_base_ptr>
        <process>sysmgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>6949</mem_pid>
        <mem_alloc>1069056</mem_alloc>
        <mem_limit>613788876</mem_limit>
        <mem_used>7942144</mem_used>
        <stack_base_ptr>fff1a1b0/fff19fe0</stack_base_ptr>
        <process>xinetd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>6950</mem_pid>
        <mem_alloc>708608</mem_alloc>
        <mem_limit>354188876</mem_limit>
        <mem_used>7168000</mem_used>
        <stack_base_ptr>ff9264c0/ff925ee0</stack_base_ptr>
        <process>tftpd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>6951</mem_pid>
        <mem_alloc>12042240</mem_alloc>
        <mem_limit>781691046</mem_limit>
        <mem_used>396578816</mem_used>
        <stack_base_ptr>ff8e78d0/ff8e32dc</stack_base_ptr>
        <process>syslogd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>6952</mem_pid>
        <mem_alloc>3170304</mem_alloc>
        <mem_limit>675189011</mem_limit>
        <mem_used>382054400</mem_used>
        <stack_base_ptr>ff949900/ff948c40</stack_base_ptr>
        <process>sdwrapd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>6953</mem_pid>
        <mem_alloc>946176</mem_alloc>
        <mem_limit>745502912</mem_limit>
        <mem_used>377434112</mem_used>
        <stack_base_ptr>ffe5bc90/ffe5ac18</stack_base_ptr>
        <process>pfm_dummy</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>6954</mem_pid>
        <mem_alloc>24633344</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>415715328</mem_used>
        <stack_base_ptr>ffe7dbd0/ffe7b810</stack_base_ptr>
        <process>platform</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7023</mem_pid>
        <mem_alloc>1966080</mem_alloc>
        <mem_limit>784668403</mem_limit>
        <mem_used>381247488</mem_used>
        <stack_base_ptr>ffabe350/ffabde90</stack_base_ptr>
        <process>cmond</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7041</mem_pid>
        <mem_alloc>2674688</mem_alloc>
        <mem_limit>967294310</mem_limit>
        <mem_used>385753088</mem_used>
        <stack_base_ptr>ffa7e820/ffa7e0fc</stack_base_ptr>
        <process>vshd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7042</mem_pid>
        <mem_alloc>5017600</mem_alloc>
        <mem_limit>1033477209</mem_limit>
        <mem_used>490401792</mem_used>
        <stack_base_ptr>ffc5d6a0/ffc5c470</stack_base_ptr>
        <process>vpc_config_sync</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7043</mem_pid>
        <mem_alloc>8032256</mem_alloc>
        <mem_limit>1026326822</mem_limit>
        <mem_used>389283840</mem_used>
        <stack_base_ptr>fff510f0/fff50b30</stack_base_ptr>
        <process>smm</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7044</mem_pid>
        <mem_alloc>4300800</mem_alloc>
        <mem_limit>732585990</mem_limit>
        <mem_used>380825600</mem_used>
        <stack_base_ptr>fff1cab0/fff1ba90</stack_base_ptr>
        <process>session-mgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7045</mem_pid>
        <mem_alloc>2404352</mem_alloc>
        <mem_limit>1035634828</mem_limit>
        <mem_used>378720256</mem_used>
        <stack_base_ptr>ffd32e00/ffd329d0</stack_base_ptr>
        <process>psshelper</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7046</mem_pid>
        <mem_alloc>30625792</mem_alloc>
        <mem_limit>977183539</mem_limit>
        <mem_used>417177600</mem_used>
        <stack_base_ptr>ff9bc0b0/ff9bb470</stack_base_ptr>
        <process>pixm_vl</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7047</mem_pid>
        <mem_alloc>20439040</mem_alloc>
        <mem_limit>988731392</mem_limit>
        <mem_used>413450240</mem_used>
        <stack_base_ptr>ff85f7d0/ff85eb90</stack_base_ptr>
        <process>pixm_gl</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7048</mem_pid>
        <mem_alloc>29364224</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>494329856</mem_used>
        <stack_base_ptr>ffe5c660/ffe5c530</stack_base_ptr>
        <process>pdsd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7049</mem_pid>
        <mem_alloc>4595712</mem_alloc>
        <mem_limit>1303061478</mem_limit>
        <mem_used>486293504</mem_used>
        <stack_base_ptr>fff20e40/fff1e29c</stack_base_ptr>
        <process>mmode</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7051</mem_pid>
        <mem_alloc>425984</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>4272128</mem_used>
        <stack_base_ptr>ff88ead0/ff88d0d0</stack_base_ptr>
        <process>lmgrd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7052</mem_pid>
        <mem_alloc>2711552</mem_alloc>
        <mem_limit>761488780</mem_limit>
        <mem_used>388321280</mem_used>
        <stack_base_ptr>ffc05810/ffc05168</stack_base_ptr>
        <process>licmgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7053</mem_pid>
        <mem_alloc>1368064</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>378785792</mem_used>
        <stack_base_ptr>fff99f60/fff996f0</stack_base_ptr>
        <process>fs-daemon</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7055</mem_pid>
        <mem_alloc>3289088</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>386281472</mem_used>
        <stack_base_ptr>ffc62ee0/ffc61f4c</stack_base_ptr>
        <process>feature-mgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7056</mem_pid>
        <mem_alloc>1982464</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>381001728</mem_used>
        <stack_base_ptr>ffd4f2a0/ffd4f080</stack_base_ptr>
        <process>confcheck</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7057</mem_pid>
        <mem_alloc>2658304</mem_alloc>
        <mem_limit>746850086</mem_limit>
        <mem_used>379191296</mem_used>
        <stack_base_ptr>fff2dda0/fff2d1b0</stack_base_ptr>
        <process>capability</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7058</mem_pid>
        <mem_alloc>7053312</mem_alloc>
        <mem_limit>751084153</mem_limit>
        <mem_used>389844992</mem_used>
        <stack_base_ptr>ff841330/ff84038c</stack_base_ptr>
        <process>bloggerd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7059</mem_pid>
        <mem_alloc>2260992</mem_alloc>
        <mem_limit>1035477132</mem_limit>
        <mem_used>378621952</mem_used>
        <stack_base_ptr>ffeb19b0/ffeb1580</stack_base_ptr>
        <process>psshelper_gsvc</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7068</mem_pid>
        <mem_alloc>18800640</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>22335488</mem_used>
        <stack_base_ptr>ff910970/ff910744</stack_base_ptr>
        <process>cisco</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7078</mem_pid>
        <mem_alloc>19128320</mem_alloc>
        <mem_limit>1412394368</mem_limit>
        <mem_used>504541184</mem_used>
        <stack_base_ptr>ff875400/ff8747ec</stack_base_ptr>
        <process>clis</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7081</mem_pid>
        <mem_alloc>63733760</mem_alloc>
        <mem_limit>1701749350</mem_limit>
        <mem_used>551370752</mem_used>
        <stack_base_ptr>ffed9dd0/ffed825c</stack_base_ptr>
        <process>port-profile</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7189</mem_pid>
        <mem_alloc>614400</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>7217152</mem_used>
        <stack_base_ptr>ffc71700/ffc71370</stack_base_ptr>
        <process>dhcpd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7193</mem_pid>
        <mem_alloc>1839104</mem_alloc>
        <mem_limit>922355596</mem_limit>
        <mem_used>378155008</mem_used>
        <stack_base_ptr>ff95e1b0/ff95d170</stack_base_ptr>
        <process>xmpp</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7194</mem_pid>
        <mem_alloc>2297856</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>383467520</mem_used>
        <stack_base_ptr>ffec9bb0/ffec8e3c</stack_base_ptr>
        <process>xmlma</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7195</mem_pid>
        <mem_alloc>3661824</mem_alloc>
        <mem_limit>758778240</mem_limit>
        <mem_used>383787008</mem_used>
        <stack_base_ptr>ff835400/ff833dc0</stack_base_ptr>
        <process>vmm</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7196</mem_pid>
        <mem_alloc>5419008</mem_alloc>
        <mem_limit>781336441</mem_limit>
        <mem_used>393887744</mem_used>
        <stack_base_ptr>ff8a5a40/ff8a5308</stack_base_ptr>
        <process>vman</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7198</mem_pid>
        <mem_alloc>1925120</mem_alloc>
        <mem_limit>825476608</mem_limit>
        <mem_used>382525440</mem_used>
        <stack_base_ptr>ffb1c670/ffb1b8e0</stack_base_ptr>
        <process>vdc_mgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7199</mem_pid>
        <mem_alloc>9895936</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>285274112</mem_used>
        <stack_base_ptr>ffa70360/ffa6e03c</stack_base_ptr>
        <process>usbhsd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7200</mem_pid>
        <mem_alloc>2187264</mem_alloc>
        <mem_limit>763162188</mem_limit>
        <mem_used>380735488</mem_used>
        <stack_base_ptr>ffb33e50/ffb337b0</stack_base_ptr>
        <process>ttyd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7201</mem_pid>
        <mem_alloc>12718080</mem_alloc>
        <mem_limit>747826252</mem_limit>
        <mem_used>287657984</mem_used>
        <stack_base_ptr>ffec1640/ffec14ac</stack_base_ptr>
        <process>sysinfo</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7202</mem_pid>
        <mem_alloc>3629056</mem_alloc>
        <mem_limit>748539686</mem_limit>
        <mem_used>382914560</mem_used>
        <stack_base_ptr>ff95e5b0/ff95d550</stack_base_ptr>
        <process>statsprofiler</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7203</mem_pid>
        <mem_alloc>1855488</mem_alloc>
        <mem_limit>744917184</mem_limit>
        <mem_used>379441152</mem_used>
        <stack_base_ptr>ffb30060/ffb2f000</stack_base_ptr>
        <process>snmpmib_proc</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7204</mem_pid>
        <mem_alloc>1331200</mem_alloc>
        <mem_limit>766877971</mem_limit>
        <mem_used>381018112</mem_used>
        <stack_base_ptr>ffeb5e90/ffeb58d0</stack_base_ptr>
        <process>sksd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7206</mem_pid>
        <mem_alloc>2887680</mem_alloc>
        <mem_limit>757798694</mem_limit>
        <mem_used>383840256</mem_used>
        <stack_base_ptr>fff35980/fff33fbc</stack_base_ptr>
        <process>rtd_monitor</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7207</mem_pid>
        <mem_alloc>3170304</mem_alloc>
        <mem_limit>756517555</mem_limit>
        <mem_used>385015808</mem_used>
        <stack_base_ptr>ffa1ddf0/ffa1d92c</stack_base_ptr>
        <process>res_mgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7208</mem_pid>
        <mem_alloc>3923968</mem_alloc>
        <mem_limit>2022446694</mem_limit>
        <mem_used>371843072</mem_used>
        <stack_base_ptr>fffc44e0/fffc34ac</stack_base_ptr>
        <process>plugin</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7209</mem_pid>
        <mem_alloc>491520</mem_alloc>
        <mem_limit>774602892</mem_limit>
        <mem_used>352190464</mem_used>
        <stack_base_ptr>ffa71a00/ffa71230</stack_base_ptr>
        <process>plog_sup</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7210</mem_pid>
        <mem_alloc>2859008</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>385138688</mem_used>
        <stack_base_ptr>ffe54f40/ffe54690</stack_base_ptr>
        <process>patch-installer</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7211</mem_pid>
        <mem_alloc>1765376</mem_alloc>
        <mem_limit>818026809</mem_limit>
        <mem_used>378179584</mem_used>
        <stack_base_ptr>fff058e0/fff046a0</stack_base_ptr>
        <process>mvsh</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7212</mem_pid>
        <mem_alloc>454656</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>276865024</mem_used>
        <stack_base_ptr>ffccce40/ffccca10</stack_base_ptr>
        <process>mping_server</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7213</mem_pid>
        <mem_alloc>3207168</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>383115264</mem_used>
        <stack_base_ptr>ffeb7410/ffeb6360</stack_base_ptr>
        <process>fw_app</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7214</mem_pid>
        <mem_alloc>5406720</mem_alloc>
        <mem_limit>665645657</mem_limit>
        <mem_used>386166784</mem_used>
        <stack_base_ptr>ffad9d60/ffad9ba0</stack_base_ptr>
        <process>fmd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7215</mem_pid>
        <mem_alloc>3088384</mem_alloc>
        <mem_limit>759254003</mem_limit>
        <mem_used>385011712</mem_used>
        <stack_base_ptr>ff8176b0/ff816680</stack_base_ptr>
        <process>evms</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7217</mem_pid>
        <mem_alloc>2240512</mem_alloc>
        <mem_limit>923590131</mem_limit>
        <mem_used>379666432</mem_used>
        <stack_base_ptr>ffa4e4a0/ffa4d480</stack_base_ptr>
        <process>evmc</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7218</mem_pid>
        <mem_alloc>2166784</mem_alloc>
        <mem_limit>846426803</mem_limit>
        <mem_used>384905216</mem_used>
        <stack_base_ptr>ff9d7490/ff9d6ba8</stack_base_ptr>
        <process>epld_upgrade_stdby</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7219</mem_pid>
        <mem_alloc>2494464</mem_alloc>
        <mem_limit>846823296</mem_limit>
        <mem_used>386342912</mem_used>
        <stack_base_ptr>ff9e9d60/ff9e8d60</stack_base_ptr>
        <process>epld_auto</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7220</mem_pid>
        <mem_alloc>4456448</mem_alloc>
        <mem_limit>662491737</mem_limit>
        <mem_used>383934464</mem_used>
        <stack_base_ptr>ffd1f110/ffd1e0b0</stack_base_ptr>
        <process>diagmgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7221</mem_pid>
        <mem_alloc>13557760</mem_alloc>
        <mem_limit>1135574387</mem_limit>
        <mem_used>391614464</mem_used>
        <stack_base_ptr>ff8d47b0/ff8d4010</stack_base_ptr>
        <process>crdcfg_server</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7222</mem_pid>
        <mem_alloc>1335296</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>379432960</mem_used>
        <stack_base_ptr>fffdbce0/fffdb6a0</stack_base_ptr>
        <process>core-dmon</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7223</mem_pid>
        <mem_alloc>2195456</mem_alloc>
        <mem_limit>745615552</mem_limit>
        <mem_used>388001792</mem_used>
        <stack_base_ptr>ffd713b0/ffd70380</stack_base_ptr>
        <process>clk_mgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7224</mem_pid>
        <mem_alloc>3543040</mem_alloc>
        <mem_limit>658459225</mem_limit>
        <mem_used>384626688</mem_used>
        <stack_base_ptr>ffa49530/ffa48710</stack_base_ptr>
        <process>cli_acl</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7225</mem_pid>
        <mem_alloc>618496</mem_alloc>
        <mem_limit>497188876</mem_limit>
        <mem_used>288452608</mem_used>
        <stack_base_ptr>ffc77bf0/ffc76ff8</stack_base_ptr>
        <process>bios_daemon</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7226</mem_pid>
        <mem_alloc>2916352</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>495820800</mem_used>
        <stack_base_ptr>fffae400/fffad7f8</stack_base_ptr>
        <process>ascii-cfg</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7227</mem_pid>
        <mem_alloc>1941504</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>383873024</mem_used>
        <stack_base_ptr>ffb19ea0/ffb189e8</stack_base_ptr>
        <process>securityd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7228</mem_pid>
        <mem_alloc>3219456</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>390320128</mem_used>
        <stack_base_ptr>ffc35590/ffc337ec</stack_base_ptr>
        <process>cert_enroll</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7229</mem_pid>
        <mem_alloc>1802240</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>381370368</mem_used>
        <stack_base_ptr>ffa8efc0/ffa8db50</stack_base_ptr>
        <process>aaa</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7230</mem_pid>
        <mem_alloc>1642496</mem_alloc>
        <mem_limit>796666816</mem_limit>
        <mem_used>381362176</mem_used>
        <stack_base_ptr>fffcdef0/fffcd1a8</stack_base_ptr>
        <process>obfl</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7237</mem_pid>
        <mem_alloc>14442496</mem_alloc>
        <mem_limit>1032787852</mem_limit>
        <mem_used>400297984</mem_used>
        <stack_base_ptr>ffcd6980/ffcd65d0</stack_base_ptr>
        <process>l3vm</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7238</mem_pid>
        <mem_alloc>17166336</mem_alloc>
        <mem_limit>1628092416</mem_limit>
        <mem_used>528625664</mem_used>
        <stack_base_ptr>ffa860b0/ffa85e70</stack_base_ptr>
        <process>urib</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7246</mem_pid>
        <mem_alloc>20770816</mem_alloc>
        <mem_limit>679392243</mem_limit>
        <mem_used>400662528</mem_used>
        <stack_base_ptr>ff941fc0/ff940ca0</stack_base_ptr>
        <process>diagclient</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7274</mem_pid>
        <mem_alloc>13705216</mem_alloc>
        <mem_limit>849395993</mem_limit>
        <mem_used>395317248</mem_used>
        <stack_base_ptr>ffe63f10/ffe6349c</stack_base_ptr>
        <process>device_test</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7280</mem_pid>
        <mem_alloc>7356416</mem_alloc>
        <mem_limit>1632385638</mem_limit>
        <mem_used>396648448</mem_used>
        <stack_base_ptr>ffb300f0/ffb2ee40</stack_base_ptr>
        <process>aclmgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7290</mem_pid>
        <mem_alloc>34295808</mem_alloc>
        <mem_limit>1134731020</mem_limit>
        <mem_used>583098368</mem_used>
        <stack_base_ptr>ffa4ac70/ffa4a8d0</stack_base_ptr>
        <process>adjmgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7291</mem_pid>
        <mem_alloc>27435008</mem_alloc>
        <mem_limit>1057851276</mem_limit>
        <mem_used>556855296</mem_used>
        <stack_base_ptr>ffc49790/ffc49650</stack_base_ptr>
        <process>u6rib</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7296</mem_pid>
        <mem_alloc>2801664</mem_alloc>
        <mem_limit>1021514841</mem_limit>
        <mem_used>383930368</mem_used>
        <stack_base_ptr>ff802f90/ff801f50</stack_base_ptr>
        <process>eem_policy_dir</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7368</mem_pid>
        <mem_alloc>8511488</mem_alloc>
        <mem_limit>1056559398</mem_limit>
        <mem_used>419692544</mem_used>
        <stack_base_ptr>fffcf6a0/fffcf120</stack_base_ptr>
        <process>npacl</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7375</mem_pid>
        <mem_alloc>83218432</mem_alloc>
        <mem_limit>1253813747</mem_limit>
        <mem_used>719196160</mem_used>
        <stack_base_ptr>ff965960/ff9655c0</stack_base_ptr>
        <process>arp</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7376</mem_pid>
        <mem_alloc>18001920</mem_alloc>
        <mem_limit>1057774681</mem_limit>
        <mem_used>595214336</mem_used>
        <stack_base_ptr>ffeb1fe0/ffeb1a6c</stack_base_ptr>
        <process>icmpv6</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7409</mem_pid>
        <mem_alloc>19988480</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>416063488</mem_used>
        <stack_base_ptr>ff939250/ff931670</stack_base_ptr>
        <process>xbar</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7430</mem_pid>
        <mem_alloc>7335936</mem_alloc>
        <mem_limit>792551372</mem_limit>
        <mem_used>390787072</mem_used>
        <stack_base_ptr>ffcde6a0/ffcdc310</stack_base_ptr>
        <process>module</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7449</mem_pid>
        <mem_alloc>10465280</mem_alloc>
        <mem_limit>794972710</mem_limit>
        <mem_used>392654848</mem_used>
        <stack_base_ptr>ffd343e0/ffd3348c</stack_base_ptr>
        <process>ExceptionLog</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7450</mem_pid>
        <mem_alloc>1626112</mem_alloc>
        <mem_limit>793778726</mem_limit>
        <mem_used>380723200</mem_used>
        <stack_base_ptr>ffff4e90/ffff4780</stack_base_ptr>
        <process>bootvar</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7451</mem_pid>
        <mem_alloc>1220608</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>377483264</mem_used>
        <stack_base_ptr>ffef7380/ffef70e0</stack_base_ptr>
        <process>cardclient</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7452</mem_pid>
        <mem_alloc>9367552</mem_alloc>
        <mem_limit>777900006</mem_limit>
        <mem_used>404787200</mem_used>
        <stack_base_ptr>fffc8210/fffc71c0</stack_base_ptr>
        <process>ifmgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7469</mem_pid>
        <mem_alloc>3936256</mem_alloc>
        <mem_limit>756131622</mem_limit>
        <mem_used>389009408</mem_used>
        <stack_base_ptr>ffe66d80/ffe65d40</stack_base_ptr>
        <process>ncpinframgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7471</mem_pid>
        <mem_alloc>27865088</mem_alloc>
        <mem_limit>1136921280</mem_limit>
        <mem_used>540000256</mem_used>
        <stack_base_ptr>ffa05eb0/ffa05da0</stack_base_ptr>
        <process>pktmgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7478</mem_pid>
        <mem_alloc>5320704</mem_alloc>
        <mem_limit>748634304</mem_limit>
        <mem_used>384851968</mem_used>
        <stack_base_ptr>ffa922d0/ffa912c0</stack_base_ptr>
        <process>clp_elam</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7479</mem_pid>
        <mem_alloc>5124096</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>398258176</mem_used>
        <stack_base_ptr>ff9b7a30/ff9b6ed0</stack_base_ptr>
        <process>clp_fwd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7480</mem_pid>
        <mem_alloc>7409664</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>400162816</mem_used>
        <stack_base_ptr>ff89d130/ff89c870</stack_base_ptr>
        <process>clp_l3</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7481</mem_pid>
        <mem_alloc>5160960</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>400961536</mem_used>
        <stack_base_ptr>ff8202e0/ff81dfc8</stack_base_ptr>
        <process>clp_mac</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7483</mem_pid>
        <mem_alloc>4763648</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>397176832</mem_used>
        <stack_base_ptr>ff9bc5f0/ff9bbd50</stack_base_ptr>
        <process>clp_xbar</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7484</mem_pid>
        <mem_alloc>4296704</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>381542400</mem_used>
        <stack_base_ptr>ffd17070/ffd167c0</stack_base_ptr>
        <process>lit</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7486</mem_pid>
        <mem_alloc>27815936</mem_alloc>
        <mem_limit>1034706534</mem_limit>
        <mem_used>532971520</mem_used>
        <stack_base_ptr>ff8a78e0/ff8a6e10</stack_base_ptr>
        <process>sac_usd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7487</mem_pid>
        <mem_alloc>2961408</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>382877696</mem_used>
        <stack_base_ptr>ffc00290/ffbffdf0</stack_base_ptr>
        <process>sensor</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7488</mem_pid>
        <mem_alloc>127524864</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>508030976</mem_used>
        <stack_base_ptr>ffe735b0/ffe72cf0</stack_base_ptr>
        <process>sm15_usd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7497</mem_pid>
        <mem_alloc>77430784</mem_alloc>
        <mem_limit>1299995315</mem_limit>
        <mem_used>755855360</mem_used>
        <stack_base_ptr>fffdaee0/fffda930</stack_base_ptr>
        <process>netstack</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7541</mem_pid>
        <mem_alloc>3506176</mem_alloc>
        <mem_limit>902919520</mem_limit>
        <mem_used>511770624</mem_used>
        <stack_base_ptr>ff938540/ff93328c</stack_base_ptr>
        <process>radius</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7542</mem_pid>
        <mem_alloc>3522560</mem_alloc>
        <mem_limit>876446796</mem_limit>
        <mem_used>512749568</mem_used>
        <stack_base_ptr>ffaa8760/ffaa759c</stack_base_ptr>
        <process>cdp</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7544</mem_pid>
        <mem_alloc>9256960</mem_alloc>
        <mem_limit>1084764595</mem_limit>
        <mem_used>391540736</mem_used>
        <stack_base_ptr>ffeb9ae0/ffeb7f6c</stack_base_ptr>
        <process>cfs</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7545</mem_pid>
        <mem_alloc>450560</mem_alloc>
        <mem_limit>657001241</mem_limit>
        <mem_used>275283968</mem_used>
        <stack_base_ptr>fff1cd00/fff1c8e8</stack_base_ptr>
        <process>ip_dummy</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7546</mem_pid>
        <mem_alloc>450560</mem_alloc>
        <mem_limit>657001241</mem_limit>
        <mem_used>275283968</mem_used>
        <stack_base_ptr>ffe94160/ffe93d48</stack_base_ptr>
        <process>ipv6_dummy</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7547</mem_pid>
        <mem_alloc>3346432</mem_alloc>
        <mem_limit>1040356441</mem_limit>
        <mem_used>559476736</mem_used>
        <stack_base_ptr>ffe75b70/ffe7178c</stack_base_ptr>
        <process>ntp</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7548</mem_pid>
        <mem_alloc>4050944</mem_alloc>
        <mem_limit>1039333670</mem_limit>
        <mem_used>558772224</mem_used>
        <stack_base_ptr>ffe8c2f0/ffe8a77c</stack_base_ptr>
        <process>otm</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7549</mem_pid>
        <mem_alloc>25989120</mem_alloc>
        <mem_limit>915360819</mem_limit>
        <mem_used>552292352</mem_used>
        <stack_base_ptr>ffd60530/ffd5b2dc</stack_base_ptr>
        <process>snmpd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7550</mem_pid>
        <mem_alloc>450560</mem_alloc>
        <mem_limit>657001241</mem_limit>
        <mem_used>275283968</mem_used>
        <stack_base_ptr>ffe11b40/ffe11728</stack_base_ptr>
        <process>tcpudp_dummy</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7557</mem_pid>
        <mem_alloc>2609152</mem_alloc>
        <mem_limit>472988876</mem_limit>
        <mem_used>375205888</mem_used>
        <stack_base_ptr>ff9589e0/ff954c0c</stack_base_ptr>
        <process>dcos-xinetd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7594</mem_pid>
        <mem_alloc>1581056</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>374321152</mem_used>
        <stack_base_ptr>fff418a0/fff3dacc</stack_base_ptr>
        <process>ntpd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7600</mem_pid>
        <mem_alloc>24272896</mem_alloc>
        <mem_limit>884710886</mem_limit>
        <mem_used>410439680</mem_used>
        <stack_base_ptr>ffd70040/ffd6fb0c</stack_base_ptr>
        <process>callhome</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7906</mem_pid>
        <mem_alloc>708608</mem_alloc>
        <mem_limit>354188876</mem_limit>
        <mem_used>7168000</mem_used>
        <stack_base_ptr>ffc67f80/ffc679a0</stack_base_ptr>
        <process>tftp_aa</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7907</mem_pid>
        <mem_alloc>8450048</mem_alloc>
        <mem_limit>836465388</mem_limit>
        <mem_used>395792384</mem_used>
        <stack_base_ptr>ffe4f570/ffe4dd6c</stack_base_ptr>
        <process>sim</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7908</mem_pid>
        <mem_alloc>16080896</mem_alloc>
        <mem_limit>1055396134</mem_limit>
        <mem_used>589991936</mem_used>
        <stack_base_ptr>ffc05c60/ffc05b40</stack_base_ptr>
        <process>rpm</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7909</mem_pid>
        <mem_alloc>4907008</mem_alloc>
        <mem_limit>766188121</mem_limit>
        <mem_used>391376896</mem_used>
        <stack_base_ptr>ff880160/ff87f100</stack_base_ptr>
        <process>pltfm_debug</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7910</mem_pid>
        <mem_alloc>4145152</mem_alloc>
        <mem_limit>784765203</mem_limit>
        <mem_used>392970240</mem_used>
        <stack_base_ptr>ffec13d0/ffebf81c</stack_base_ptr>
        <process>pltfm_config</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7911</mem_pid>
        <mem_alloc>4530176</mem_alloc>
        <mem_limit>843228672</mem_limit>
        <mem_used>384872448</mem_used>
        <stack_base_ptr>ffffb130/ffffa100</stack_base_ptr>
        <process>plsm</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7912</mem_pid>
        <mem_alloc>6500352</mem_alloc>
        <mem_limit>1031733542</mem_limit>
        <mem_used>392921088</mem_used>
        <stack_base_ptr>ffd5b220/ffd5a200</stack_base_ptr>
        <process>plcmgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7913</mem_pid>
        <mem_alloc>28327936</mem_alloc>
        <mem_limit>870378572</mem_limit>
        <mem_used>418869248</mem_used>
        <stack_base_ptr>ffab48c0/ffab3c90</stack_base_ptr>
        <process>pixmc</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7914</mem_pid>
        <mem_alloc>5079040</mem_alloc>
        <mem_limit>1030927040</mem_limit>
        <mem_used>388476928</mem_used>
        <stack_base_ptr>ffe47570/ffe459bc</stack_base_ptr>
        <process>pfstat</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7916</mem_pid>
        <mem_alloc>3571712</mem_alloc>
        <mem_limit>764926553</mem_limit>
        <mem_used>390905856</mem_used>
        <stack_base_ptr>ffbbb920/ffbba8e0</stack_base_ptr>
        <process>monitorc</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7917</mem_pid>
        <mem_alloc>77000704</mem_alloc>
        <mem_limit>997711475</mem_limit>
        <mem_used>461725696</mem_used>
        <stack_base_ptr>ffbc8a60/ffbc6e5c</stack_base_ptr>
        <process>lim</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7918</mem_pid>
        <mem_alloc>47632384</mem_alloc>
        <mem_limit>1074409881</mem_limit>
        <mem_used>433668096</mem_used>
        <stack_base_ptr>ff8dc220/ff8db790</stack_base_ptr>
        <process>l2rib</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7919</mem_pid>
        <mem_alloc>151097344</mem_alloc>
        <mem_limit>1417398720</mem_limit>
        <mem_used>736837632</mem_used>
        <stack_base_ptr>ffec5800/ffec52d0</stack_base_ptr>
        <process>igmp</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7920</mem_pid>
        <mem_alloc>10510336</mem_alloc>
        <mem_limit>787747417</mem_limit>
        <mem_used>411803648</mem_used>
        <stack_base_ptr>ffce3080/ffce14fc</stack_base_ptr>
        <process>giscm</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7921</mem_pid>
        <mem_alloc>15360000</mem_alloc>
        <mem_limit>790023238</mem_limit>
        <mem_used>403529728</mem_used>
        <stack_base_ptr>ff86fc50/ff86e48c</stack_base_ptr>
        <process>eltm</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7922</mem_pid>
        <mem_alloc>8499200</mem_alloc>
        <mem_limit>1030426918</mem_limit>
        <mem_used>389902336</mem_used>
        <stack_base_ptr>ff809430/ff809310</stack_base_ptr>
        <process>ecp</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7924</mem_pid>
        <mem_alloc>13787136</mem_alloc>
        <mem_limit>981622118</mem_limit>
        <mem_used>400723968</mem_used>
        <stack_base_ptr>ffc984c0/ffc9693c</stack_base_ptr>
        <process>adbm</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7925</mem_pid>
        <mem_alloc>3485696</mem_alloc>
        <mem_limit>1030571097</mem_limit>
        <mem_used>386428928</mem_used>
        <stack_base_ptr>ffac10c0/ffac0070</stack_base_ptr>
        <process>acllog</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7952</mem_pid>
        <mem_alloc>208961536</mem_alloc>
        <mem_limit>885737344</mem_limit>
        <mem_used>719724544</mem_used>
        <stack_base_ptr>ffcbb4f0/ffcb996c</stack_base_ptr>
        <process>monitor</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7953</mem_pid>
        <mem_alloc>7303168</mem_alloc>
        <mem_limit>780382592</mem_limit>
        <mem_used>395427840</mem_used>
        <stack_base_ptr>ffde3cc0/ffde1f3c</stack_base_ptr>
        <process>eth_port_channel</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7954</mem_pid>
        <mem_alloc>51900416</mem_alloc>
        <mem_limit>823596787</mem_limit>
        <mem_used>446259200</mem_used>
        <stack_base_ptr>ff8564e0/ff85510c</stack_base_ptr>
        <process>vlan_mgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7962</mem_pid>
        <mem_alloc>2519040</mem_alloc>
        <mem_limit>785439705</mem_limit>
        <mem_used>383795200</mem_used>
        <stack_base_ptr>ff92dc10/ff92d860</stack_base_ptr>
        <process>eth_dstats</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7963</mem_pid>
        <mem_alloc>34107392</mem_alloc>
        <mem_limit>1653169971</mem_limit>
        <mem_used>430669824</mem_used>
        <stack_base_ptr>ffc95d50/ffc94750</stack_base_ptr>
        <process>ipqosmgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7964</mem_pid>
        <mem_alloc>8871936</mem_alloc>
        <mem_limit>780256435</mem_limit>
        <mem_used>393961472</mem_used>
        <stack_base_ptr>ffc285c0/ffc27580</stack_base_ptr>
        <process>lacp</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7965</mem_pid>
        <mem_alloc>33157120</mem_alloc>
        <mem_limit>846688972</mem_limit>
        <mem_used>427773952</mem_used>
        <stack_base_ptr>ff83ca50/ff83bc60</stack_base_ptr>
        <process>diag_port_lb</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7966</mem_pid>
        <mem_alloc>15687680</mem_alloc>
        <mem_limit>864989900</mem_limit>
        <mem_used>584257536</mem_used>
        <stack_base_ptr>ffa34fb0/ffa333cc</stack_base_ptr>
        <process>ethpm</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7967</mem_pid>
        <mem_alloc>20111360</mem_alloc>
        <mem_limit>1047368608</mem_limit>
        <mem_used>425996288</mem_used>
        <stack_base_ptr>ff8aab80/ff8a8ddc</stack_base_ptr>
        <process>l2fm</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7968</mem_pid>
        <mem_alloc>5267456</mem_alloc>
        <mem_limit>774175731</mem_limit>
        <mem_used>500441088</mem_used>
        <stack_base_ptr>ffb5bf70/ffb5a3ec</stack_base_ptr>
        <process>mhbfd_tracker</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7969</mem_pid>
        <mem_alloc>33533952</mem_alloc>
        <mem_limit>778357747</mem_limit>
        <mem_used>425009152</mem_used>
        <stack_base_ptr>fff8efe0/fff8d44c</stack_base_ptr>
        <process>aclqos</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>7970</mem_pid>
        <mem_alloc>9138176</mem_alloc>
        <mem_limit>1077199411</mem_limit>
        <mem_used>484216832</mem_used>
        <stack_base_ptr>ff8a66a0/ff8a5b3c</stack_base_ptr>
        <process>stp</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8004</mem_pid>
        <mem_alloc>5267456</mem_alloc>
        <mem_limit>985596057</mem_limit>
        <mem_used>395567104</mem_used>
        <stack_base_ptr>ff9444e0/ff9426dc</stack_base_ptr>
        <process>copp</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8057</mem_pid>
        <mem_alloc>8949760</mem_alloc>
        <mem_limit>1194218316</mem_limit>
        <mem_used>574808064</mem_used>
        <stack_base_ptr>ff8f16f0/ff8efd8c</stack_base_ptr>
        <process>vpc</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8058</mem_pid>
        <mem_alloc>3067904</mem_alloc>
        <mem_limit>768625651</mem_limit>
        <mem_used>386756608</mem_used>
        <stack_base_ptr>ffe04070/ffe03040</stack_base_ptr>
        <process>u2</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8059</mem_pid>
        <mem_alloc>6844416</mem_alloc>
        <mem_limit>1417823897</mem_limit>
        <mem_used>392826880</mem_used>
        <stack_base_ptr>ffa687f0/ffa67b70</stack_base_ptr>
        <process>spm</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8060</mem_pid>
        <mem_alloc>3043328</mem_alloc>
        <mem_limit>1038180236</mem_limit>
        <mem_used>524177408</mem_used>
        <stack_base_ptr>ffb45810/ffb43c9c</stack_base_ptr>
        <process>sal</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8061</mem_pid>
        <mem_alloc>125378560</mem_alloc>
        <mem_limit>1276765145</mem_limit>
        <mem_used>777396224</mem_used>
        <stack_base_ptr>ffd11730/ffd11610</stack_base_ptr>
        <process>mrib</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8062</mem_pid>
        <mem_alloc>10600448</mem_alloc>
        <mem_limit>1147257408</mem_limit>
        <mem_used>406286336</mem_used>
        <stack_base_ptr>fff96640/fff94a3c</stack_base_ptr>
        <process>mfdm</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8063</mem_pid>
        <mem_alloc>3350528</mem_alloc>
        <mem_limit>767620902</mem_limit>
        <mem_used>390868992</mem_used>
        <stack_base_ptr>ffca9c60/ffca8bd0</stack_base_ptr>
        <process>mcm</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8064</mem_pid>
        <mem_alloc>65372160</mem_alloc>
        <mem_limit>1099564531</mem_limit>
        <mem_used>636751872</mem_used>
        <stack_base_ptr>ffc31e10/ffc31cf0</stack_base_ptr>
        <process>m6rib</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8065</mem_pid>
        <mem_alloc>3219456</mem_alloc>
        <mem_limit>1030332300</mem_limit>
        <mem_used>388907008</mem_used>
        <stack_base_ptr>ff95a010/ff95826c</stack_base_ptr>
        <process>l2pt</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8066</mem_pid>
        <mem_alloc>7815168</mem_alloc>
        <mem_limit>1144994086</mem_limit>
        <mem_used>582615040</mem_used>
        <stack_base_ptr>ffbd6cd0/ffbd206c</stack_base_ptr>
        <process>hsrp_engine</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8075</mem_pid>
        <mem_alloc>25661440</mem_alloc>
        <mem_limit>1037234880</mem_limit>
        <mem_used>453365760</mem_used>
        <stack_base_ptr>ff99f020/ff99d3ac</stack_base_ptr>
        <process>ufdm</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8079</mem_pid>
        <mem_alloc>65646592</mem_alloc>
        <mem_limit>1120519936</mem_limit>
        <mem_used>698863616</mem_used>
        <stack_base_ptr>ffffbad0/ffffb9e0</stack_base_ptr>
        <process>mcastfwd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8084</mem_pid>
        <mem_alloc>5951488</mem_alloc>
        <mem_limit>814067443</mem_limit>
        <mem_used>393633792</mem_used>
        <stack_base_ptr>ffa84770/ffa829bc</stack_base_ptr>
        <process>interface-vlan</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8094</mem_pid>
        <mem_alloc>12918784</mem_alloc>
        <mem_limit>1170622604</mem_limit>
        <mem_used>398573568</mem_used>
        <stack_base_ptr>ffbd8e50/ffbd8580</stack_base_ptr>
        <process>m2rib</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8131</mem_pid>
        <mem_alloc>39665664</mem_alloc>
        <mem_limit>866625408</mem_limit>
        <mem_used>424820736</mem_used>
        <stack_base_ptr>ffe05040/ffe036fc</stack_base_ptr>
        <process>vntag_mgr</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8132</mem_pid>
        <mem_alloc>22032384</mem_alloc>
        <mem_limit>787878080</mem_limit>
        <mem_used>412332032</mem_used>
        <stack_base_ptr>fffab7c0/fffaa8f0</stack_base_ptr>
        <process>fex</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8188</mem_pid>
        <mem_alloc>4378624</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>386154496</mem_used>
        <stack_base_ptr>fff5e420/fff5d800</stack_base_ptr>
        <process>port_client</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8189</mem_pid>
        <mem_alloc>15745024</mem_alloc>
        <mem_limit>774428864</mem_limit>
        <mem_used>406118400</mem_used>
        <stack_base_ptr>ff9c7b00/ff9c6f18</stack_base_ptr>
        <process>statsclient</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8190</mem_pid>
        <mem_alloc>4706304</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>384536576</mem_used>
        <stack_base_ptr>ff8db0f0/ff8da080</stack_base_ptr>
        <process>xbar_client</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8576</mem_pid>
        <mem_alloc>806912</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>10641408</mem_used>
        <stack_base_ptr>ff9566f0/ff9544e0</stack_base_ptr>
        <process>login</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8577</mem_pid>
        <mem_alloc>102400</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>3264512</mem_used>
        <stack_base_ptr>ffc61af0/ffc612d8</stack_base_ptr>
        <process>sh</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>8581</mem_pid>
        <mem_alloc>14098432</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>19865600</mem_used>
        <stack_base_ptr>ffb93470/ffb92e90</stack_base_ptr>
        <process>libvirtd</process>
       </ROW_process_memory>
       <ROW_process_memory>
        <mem_pid>9170</mem_pid>
        <mem_alloc>12414976</mem_alloc>
        <mem_limit>0</mem_limit>
        <mem_used>496939008</mem_used>
        <stack_base_ptr>ff9c36b0/ff9c32fc</stack_base_ptr>
        <process>vsh</process>
       </ROW_process_memory>
      </TABLE_process_memory>
      <sum_mem_malloced>2391318528</sum_mem_malloced>
     </__readonly__>
    </memory>
   </processes>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show processes memory **

PID    MemAlloc  MemLimit    MemUsed     StackBase/Ptr      Process
-----  --------  ----------  ----------  -----------------  ----------------
    1    167936  0           1953792     ff9486d0/ff948030  init
 2851    196608  0           2461696     ffb6a310/ffb6a1a0  mcelog
 5764    167936  0           1974272     ffa56720/ffa565a8  portmap
 5767    184320  0           2142208     ffbd9400/ffbd9190  rpc.statd
 5787    253952  0           2711552     fff26650/fff26340  rpc.mountd
 5800  12107776  0           384692224   fffa1960/fffa1560  sysmgr
 6949   1069056  613788876   7942144     fff1a1b0/fff19fe0  xinetd
 6950    708608  354188876   7168000     ff9264c0/ff925ee0  tftpd
 6951  12042240  781691046   396578816   ff8e78d0/ff8e32dc  syslogd
 6952   3170304  675189011   382054400   ff949900/ff948c40  sdwrapd
 6953    946176  745502912   377434112   ffe5bc90/ffe5ac18  pfm_dummy
 6954  24633344  0           415715328   ffe7dbd0/ffe7b810  platform
 7023   1966080  784668403   381247488   ffabe350/ffabde90  cmond
 7041   2674688  967294310   385753088   ffa7e820/ffa7e0fc  vshd
 7042   5017600  1033477209  490401792   ffc5d6a0/ffc5c470  vpc_config_sync
 7043   8032256  1026326822  389283840   fff510f0/fff50b30  smm
 7044   4300800  732585990   380825600   fff1cab0/fff1ba90  session-mgr
 7045   2404352  1035634828  378720256   ffd32e00/ffd329d0  psshelper
 7046  30625792  977183539   417177600   ff9bc0b0/ff9bb470  pixm_vl
 7047  20439040  988731392   413450240   ff85f7d0/ff85eb90  pixm_gl
 7048  29364224  0           494329856   ffe5c660/ffe5c530  pdsd
 7049   4595712  1303061478  486293504   fff20e40/fff1e29c  mmode
 7051    425984  0           4272128     ff88ead0/ff88d0d0  lmgrd
 7052   2711552  761488780   388321280   ffc05810/ffc05168  licmgr
 7053   1368064  0           378785792   fff99f60/fff996f0  fs-daemon
 7055   3289088  0           386281472   ffc62ee0/ffc61f4c  feature-mgr
 7056   1982464  0           381001728   ffd4f2a0/ffd4f080  confcheck
 7057   2658304  746850086   379191296   fff2dda0/fff2d1b0  capability
 7058   7053312  751084153   389844992   ff841330/ff84038c  bloggerd
 7059   2260992  1035477132  378621952   ffeb19b0/ffeb1580  psshelper_gsvc
 7068  18800640  0           22335488    ff910970/ff910744  cisco
 7078  19128320  1412394368  504541184   ff875400/ff8747ec  clis
 7081  63733760  1701749350  551370752   ffed9dd0/ffed825c  port-profile
 7189    614400  0           7217152     ffc71700/ffc71370  dhcpd
 7193   1839104  922355596   378155008   ff95e1b0/ff95d170  xmpp
 7194   2297856  0           383467520   ffec9bb0/ffec8e3c  xmlma
 7195   3661824  758778240   383787008   ff835400/ff833dc0  vmm
 7196   5419008  781336441   393887744   ff8a5a40/ff8a5308  vman
 7198   1925120  825476608   382525440   ffb1c670/ffb1b8e0  vdc_mgr
 7199   9895936  0           285274112   ffa70360/ffa6e03c  usbhsd
 7200   2187264  763162188   380735488   ffb33e50/ffb337b0  ttyd
 7201  12718080  747826252   287657984   ffec1640/ffec14ac  sysinfo
 7202   3629056  748539686   382914560   ff95e5b0/ff95d550  statsprofiler
 7203   1855488  744917184   379441152   ffb30060/ffb2f000  snmpmib_proc
 7204   1331200  766877971   381018112   ffeb5e90/ffeb58d0  sksd
 7206   2887680  757798694   383840256   fff35980/fff33fbc  rtd_monitor
 7207   3170304  756517555   385015808   ffa1ddf0/ffa1d92c  res_mgr
 7208   3923968  2022446694  371843072   fffc44e0/fffc34ac  plugin
 7209    491520  774602892   352190464   ffa71a00/ffa71230  plog_sup
 7210   2859008  0           385138688   ffe54f40/ffe54690  patch-installer
 7211   1765376  818026809   378179584   fff058e0/fff046a0  mvsh
 7212    454656  0           276865024   ffccce40/ffccca10  mping_server
 7213   3207168  0           383115264   ffeb7410/ffeb6360  fw_app
 7214   5406720  665645657   386166784   ffad9d60/ffad9ba0  fmd
 7215   3088384  759254003   385011712   ff8176b0/ff816680  evms
 7217   2240512  923590131   379666432   ffa4e4a0/ffa4d480  evmc
 7218   2166784  846426803   384905216   ff9d7490/ff9d6ba8  epld_upgrade_stdby
 7219   2494464  846823296   386342912   ff9e9d60/ff9e8d60  epld_auto
 7220   4456448  662491737   383934464   ffd1f110/ffd1e0b0  diagmgr
 7221  13557760  1135574387  391614464   ff8d47b0/ff8d4010  crdcfg_server
 7222   1335296  0           379432960   fffdbce0/fffdb6a0  core-dmon
 7223   2195456  745615552   388001792   ffd713b0/ffd70380  clk_mgr
 7224   3543040  658459225   384626688   ffa49530/ffa48710  cli_acl
 7225    618496  497188876   288452608   ffc77bf0/ffc76ff8  bios_daemon
 7226   2916352  0           495820800   fffae400/fffad7f8  ascii-cfg
 7227   1941504  0           383873024   ffb19ea0/ffb189e8  securityd
 7228   3219456  0           390320128   ffc35590/ffc337ec  cert_enroll
 7229   1802240  0           381370368   ffa8efc0/ffa8db50  aaa
 7230   1642496  796666816   381362176   fffcdef0/fffcd1a8  obfl
 7237  14442496  1032787852  400297984   ffcd6980/ffcd65d0  l3vm
 7238  17166336  1628092416  528625664   ffa860b0/ffa85e70  urib
 7246  20770816  679392243   400662528   ff941fc0/ff940ca0  diagclient
 7274  13709312  849395993   395321344   ffe63f10/ffe6349c  device_test
 7280   7356416  1632385638  396648448   ffb300f0/ffb2ee40  aclmgr
 7290  34295808  1134731020  583098368   ffa4ac70/ffa4a8d0  adjmgr
 7291  27435008  1057851276  556855296   ffc49790/ffc49650  u6rib
 7296   2801664  1021514841  383930368   ff802f90/ff801f50  eem_policy_dir
 7368   8511488  1056559398  419692544   fffcf6a0/fffcf120  npacl
 7375  83218432  1253813747  719196160   ff965960/ff9655c0  arp
 7376  18001920  1057774681  595214336   ffeb1fe0/ffeb1a6c  icmpv6
 7409  19988480  0           416063488   ff939250/ff931670  xbar
 7430   7335936  792551372   390787072   ffcde6a0/ffcdc310  module
 7449  10465280  794972710   392654848   ffd343e0/ffd3348c  ExceptionLog
 7450   1626112  793778726   380723200   ffff4e90/ffff4780  bootvar
 7451   1220608  0           377483264   ffef7380/ffef70e0  cardclient
 7452   9367552  777900006   404787200   fffc8210/fffc71c0  ifmgr
 7469   3936256  756131622   389009408   ffe66d80/ffe65d40  ncpinframgr
 7471  27865088  1136921280  540000256   ffa05eb0/ffa05da0  pktmgr
 7478   5320704  748634304   384851968   ffa922d0/ffa912c0  clp_elam
 7479   5124096  0           398258176   ff9b7a30/ff9b6ed0  clp_fwd
 7480   7409664  0           400162816   ff89d130/ff89c870  clp_l3
 7481   5160960  0           400961536   ff8202e0/ff81f800  clp_mac
 7483   4763648  0           397176832   ff9bc5f0/ff9bbd50  clp_xbar
 7484   4296704  0           381542400   ffd17070/ffd167c0  lit
 7486  27815936  1034706534  532971520   ff8a78e0/ff8a6e10  sac_usd
 7487   2961408  0           382877696   ffc00290/ffbffdf0  sensor
 7488  127524864  0           508030976   ffe735b0/ffe72cf0  sm15_usd
 7497  77430784  1299995315  755855360   fffdaee0/fffda930  netstack
 7541   3506176  902919520   511770624   ff938540/ff93328c  radius
 7542   3522560  876446796   512749568   ffaa8760/ffaa759c  cdp
 7544   9256960  1084764595  391540736   ffeb9ae0/ffeb7f6c  cfs
 7545    450560  657001241   275283968   fff1cd00/fff1c8e8  ip_dummy
 7546    450560  657001241   275283968   ffe94160/ffe93d48  ipv6_dummy
 7547   3346432  1040356441  559476736   ffe75b70/ffe7178c  ntp
 7548   4050944  1039333670  558772224   ffe8c2f0/ffe8a77c  otm
 7549  25989120  915360819   552292352   ffd60530/ffd5b2dc  snmpd
 7550    450560  657001241   275283968   ffe11b40/ffe11728  tcpudp_dummy
 7557   2609152  472988876   375205888   ff9589e0/ff954c0c  dcos-xinetd
 7594   1581056  0           374321152   fff418a0/fff3dacc  ntpd
 7600  24272896  884710886   410439680   ffd70040/ffd6fb0c  callhome
 7906    708608  354188876   7168000     ffc67f80/ffc679a0  tftp_aa
 7907   8450048  836465388   395792384   ffe4f570/ffe4dd6c  sim
 7908  16080896  1055396134  589991936   ffc05c60/ffc05b40  rpm
 7909   4907008  766188121   391376896   ff880160/ff87f100  pltfm_debug
 7910   4145152  784765203   392970240   ffec13d0/ffebf81c  pltfm_config
 7911   4530176  843228672   384872448   ffffb130/ffffa100  plsm
 7912   6500352  1031733542  392921088   ffd5b220/ffd5a200  plcmgr
 7913  28327936  870378572   418869248   ffab48c0/ffab3c90  pixmc
 7914   5079040  1030927040  388476928   ffe47570/ffe459bc  pfstat
 7916   3571712  764926553   390905856   ffbbb920/ffbba8e0  monitorc
 7917  77000704  997711475   461725696   ffbc8a60/ffbc6e5c  lim
 7918  47632384  1074409881  433668096   ff8dc220/ff8db790  l2rib
 7919  151097344  1417398720  736837632   ffec5800/ffec52d0  igmp
 7920  10510336  787747417   411803648   ffce3080/ffce14fc  giscm
 7921  15360000  790023238   403529728   ff86fc50/ff86e48c  eltm
 7922   8499200  1030426918  389902336   ff809430/ff809310  ecp
 7924  13787136  981622118   400723968   ffc984c0/ffc9693c  adbm
 7925   3485696  1030571097  386428928   ffac10c0/ffac0070  acllog
 7952  208961536  885737344   719724544   ffcbb4f0/ffcb996c  monitor
 7953   7303168  780382592   395427840   ffde3cc0/ffde1f3c  eth_port_channel
 7954  51900416  823596787   446259200   ff8564e0/ff85510c  vlan_mgr
 7962   2519040  785439705   383795200   ff92dc10/ff92d860  eth_dstats
 7963  34107392  1653169971  430669824   ffc95d50/ffc94750  ipqosmgr
 7964   8871936  780256435   393961472   ffc285c0/ffc27580  lacp
 7965  33157120  846688972   427773952   ff83ca50/ff83bc60  diag_port_lb
 7966  15687680  864989900   584257536   ffa34fb0/ffa333cc  ethpm
 7967  20111360  1047368608  425996288   ff8aab80/ff8a8ddc  l2fm
 7968   5267456  774175731   500441088   ffb5bf70/ffb5a3ec  mhbfd_tracker
 7969  33533952  778357747   425009152   fff8efe0/fff8d44c  aclqos
 7970   9138176  1077199411  484216832   ff8a66a0/ff8a5b3c  stp
 8004   5267456  985596057   395567104   ff9444e0/ff9426dc  copp
 8057   8949760  1194218316  574808064   ff8f16f0/ff8efd8c  vpc
 8058   3067904  768625651   386756608   ffe04070/ffe03040  u2
 8059   6844416  1417823897  392826880   ffa687f0/ffa67b70  spm
 8060   3043328  1038180236  524177408   ffb45810/ffb43c9c  sal
 8061  125378560  1276765145  777396224   ffd11730/ffd11610  mrib
 8062  10600448  1147257408  406286336   fff96640/fff94a3c  mfdm
 8063   3350528  767620902   390868992   ffca9c60/ffca8bd0  mcm
 8064  65372160  1099564531  636751872   ffc31e10/ffc31cf0  m6rib
 8065   3219456  1030332300  388907008   ff95a010/ff95826c  l2pt
 8066   7815168  1144994086  582615040   ffbd6cd0/ffbd206c  hsrp_engine
 8075  25661440  1037234880  453365760   ff99f020/ff99d3ac  ufdm
 8079  65646592  1120519936  698863616   ffffbad0/ffffb9e0  mcastfwd
 8084   5951488  814067443   393633792   ffa84770/ffa829bc  interface-vlan
 8094  12918784  1170622604  398573568   ffbd8e50/ffbd8580  m2rib
 8131  39665664  866625408   424820736   ffe05040/ffe036fc  vntag_mgr
 8132  22032384  787878080   412332032   fffab7c0/fffaa8f0  fex
 8188   4378624  0           386154496   fff5e420/fff5d800  port_client
 8189  15745024  774428864   406118400   ff9c7b00/ff9c7850  statsclient
 8190   4706304  0           384536576   ff8db0f0/ff8da080  xbar_client
 8576    806912  0           10641408    ff9566f0/ff9544e0  login
 8577    102400  0           3264512     ffc61af0/ffc612d8  sh
 8581  14098432  0           19865600    ffb93470/ffb92e90  libvirtd
 9170  12414976  0           496939008   ff9c36b0/ff9c32fc  vsh

All processes: MemAlloc = 2391322624

show processes memory sort

show processes memory sort 
 
import requests
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 processes memory sort”,
  "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)
{
  "TABLE_process_memory": {
    "ROW_process_memory": [
      {
        "mem_pid": 8061, 
        "mem_alloc": 125378560, 
        "mem_limit": 1276765145, 
        "mem_used": 777396224, 
        "stack_base_ptr": "ffd11730/ffd11610", 
        "process": "mrib"
      }, 
      {
        "mem_pid": 7497, 
        "mem_alloc": 77430784, 
        "mem_limit": 1299995315, 
        "mem_used": 755855360, 
        "stack_base_ptr": "fffdaee0/fffda930", 
        "process": "netstack"
      }, 
      {
        "mem_pid": 7919, 
        "mem_alloc": 151097344, 
        "mem_limit": 1417398720, 
        "mem_used": 736837632, 
        "stack_base_ptr": "ffec5800/ffec52d0", 
        "process": "igmp"
      }, 
      {
        "mem_pid": 7952, 
        "mem_alloc": 208961536, 
        "mem_limit": 885737344, 
        "mem_used": 719724544, 
        "stack_base_ptr": "ffcbb4f0/ffcb996c", 
        "process": "monitor"
      }, 
      {
        "mem_pid": 7375, 
        "mem_alloc": 83218432, 
        "mem_limit": 1253813747, 
        "mem_used": 719196160, 
        "stack_base_ptr": "ff965960/ff9655c0", 
        "process": "arp"
      }, 
      {
        "mem_pid": 8079, 
        "mem_alloc": 65646592, 
        "mem_limit": 1120519936, 
        "mem_used": 698863616, 
        "stack_base_ptr": "ffffbad0/ffffb9e0", 
        "process": "mcastfwd"
      }, 
      {
        "mem_pid": 8064, 
        "mem_alloc": 65372160, 
        "mem_limit": 1099564531, 
        "mem_used": 636751872, 
        "stack_base_ptr": "ffc31e10/ffc31cf0", 
        "process": "m6rib"
      }, 
      {
        "mem_pid": 7376, 
        "mem_alloc": 18001920, 
        "mem_limit": 1057774681, 
        "mem_used": 595214336, 
        "stack_base_ptr": "ffeb1fe0/ffeb1a6c", 
        "process": "icmpv6"
      }, 
      {
        "mem_pid": 7908, 
        "mem_alloc": 16080896, 
        "mem_limit": 1055396134, 
        "mem_used": 589991936, 
        "stack_base_ptr": "ffc05c60/ffc05b40", 
        "process": "rpm"
      }, 
      {
        "mem_pid": 7966, 
        "mem_alloc": 15687680, 
        "mem_limit": 864989900, 
        "mem_used": 584257536, 
        "stack_base_ptr": "ffa34fb0/ffa333cc", 
        "process": "ethpm"
      }, 
      {
        "mem_pid": 7290, 
        "mem_alloc": 34295808, 
        "mem_limit": 1134731020, 
        "mem_used": 583098368, 
        "stack_base_ptr": "ffa4ac70/ffa4a8d0", 
        "process": "adjmgr"
      }, 
      {
        "mem_pid": 8066, 
        "mem_alloc": 7815168, 
        "mem_limit": 1144994086, 
        "mem_used": 582615040, 
        "stack_base_ptr": "ffbd6cd0/ffbd206c", 
        "process": "hsrp_engine"
      }, 
      {
        "mem_pid": 8057, 
        "mem_alloc": 8949760, 
        "mem_limit": 1194218316, 
        "mem_used": 574808064, 
        "stack_base_ptr": "ff8f16f0/ff8efd8c", 
        "process": "vpc"
      }, 
      {
        "mem_pid": 7547, 
        "mem_alloc": 3346432, 
        "mem_limit": 1040356441, 
        "mem_used": 559476736, 
        "stack_base_ptr": "ffe75b70/ffe7178c", 
        "process": "ntp"
      }, 
      {
        "mem_pid": 7548, 
        "mem_alloc": 4050944, 
        "mem_limit": 1039333670, 
        "mem_used": 558772224, 
        "stack_base_ptr": "ffe8c2f0/ffe8a77c", 
        "process": "otm"
      }, 
      {
        "mem_pid": 7291, 
        "mem_alloc": 27435008, 
        "mem_limit": 1057851276, 
        "mem_used": 556855296, 
        "stack_base_ptr": "ffc49790/ffc49650", 
        "process": "u6rib"
      }, 
      {
        "mem_pid": 7549, 
        "mem_alloc": 25989120, 
        "mem_limit": 915360819, 
        "mem_used": 552292352, 
        "stack_base_ptr": "ffd60530/ffd5b2dc", 
        "process": "snmpd"
      }, 
      {
        "mem_pid": 7081, 
        "mem_alloc": 63733760, 
        "mem_limit": 1701749350, 
        "mem_used": 551370752, 
        "stack_base_ptr": "ffed9dd0/ffed825c", 
        "process": "port-profile"
      }, 
      {
        "mem_pid": 7471, 
        "mem_alloc": 27865088, 
        "mem_limit": 1136921280, 
        "mem_used": 540000256, 
        "stack_base_ptr": "ffa05eb0/ffa05da0", 
        "process": "pktmgr"
      }, 
      {
        "mem_pid": 7486, 
        "mem_alloc": 27815936, 
        "mem_limit": 1034706534, 
        "mem_used": 532971520, 
        "stack_base_ptr": "ff8a78e0/ff8a6e10", 
        "process": "sac_usd"
      }, 
      {
        "mem_pid": 7238, 
        "mem_alloc": 17166336, 
        "mem_limit": 1628092416, 
        "mem_used": 528625664, 
        "stack_base_ptr": "ffa860b0/ffa85e70", 
        "process": "urib"
      }, 
      {
        "mem_pid": 8060, 
        "mem_alloc": 3043328, 
        "mem_limit": 1038180236, 
        "mem_used": 524177408, 
        "stack_base_ptr": "ffb45810/ffb43c9c", 
        "process": "sal"
      }, 
      {
        "mem_pid": 7542, 
        "mem_alloc": 3522560, 
        "mem_limit": 876446796, 
        "mem_used": 512749568, 
        "stack_base_ptr": "ffaa8760/ffaa759c", 
        "process": "cdp"
      }, 
      {
        "mem_pid": 7541, 
        "mem_alloc": 3506176, 
        "mem_limit": 902919520, 
        "mem_used": 511770624, 
        "stack_base_ptr": "ff938540/ff93328c", 
        "process": "radius"
      }, 
      {
        "mem_pid": 7488, 
        "mem_alloc": 127524864, 
        "mem_limit": 0, 
        "mem_used": 508030976, 
        "stack_base_ptr": "ffe735b0/ffe72cf0", 
        "process": "sm15_usd"
      }, 
      {
        "mem_pid": 7078, 
        "mem_alloc": 19128320, 
        "mem_limit": 1412394368, 
        "mem_used": 504541184, 
        "stack_base_ptr": "ff875400/ff8747ec", 
        "process": "clis"
      }, 
      {
        "mem_pid": 7968, 
        "mem_alloc": 5267456, 
        "mem_limit": 774175731, 
        "mem_used": 500441088, 
        "stack_base_ptr": "ffb5bf70/ffb5a3ec", 
        "process": "mhbfd_tracker"
      }, 
      {
        "mem_pid": 9170, 
        "mem_alloc": 12414976, 
        "mem_limit": 0, 
        "mem_used": 496939008, 
        "stack_base_ptr": "ff9c36b0/ff9c32fc", 
        "process": "vsh"
      }, 
      {
        "mem_pid": 7226, 
        "mem_alloc": 2916352, 
        "mem_limit": 0, 
        "mem_used": 495820800, 
        "stack_base_ptr": "fffae400/fffad7f8", 
        "process": "ascii-cfg"
      }, 
      {
        "mem_pid": 7048, 
        "mem_alloc": 29364224, 
        "mem_limit": 0, 
        "mem_used": 494329856, 
        "stack_base_ptr": "ffe5c660/ffe5c530", 
        "process": "pdsd"
      }, 
      {
        "mem_pid": 7042, 
        "mem_alloc": 5017600, 
        "mem_limit": 1033477209, 
        "mem_used": 490401792, 
        "stack_base_ptr": "ffc5d6a0/ffc5c470", 
        "process": "vpc_config_sync"
      }, 
      {
        "mem_pid": 7049, 
        "mem_alloc": 4595712, 
        "mem_limit": 1303061478, 
        "mem_used": 486293504, 
        "stack_base_ptr": "fff20e40/fff1e29c", 
        "process": "mmode"
      }, 
      {
        "mem_pid": 7970, 
        "mem_alloc": 9138176, 
        "mem_limit": 1077199411, 
        "mem_used": 484216832, 
        "stack_base_ptr": "ff8a66a0/ff8a5b3c", 
        "process": "stp"
      }, 
      {
        "mem_pid": 7917, 
        "mem_alloc": 77000704, 
        "mem_limit": 997711475, 
        "mem_used": 461725696, 
        "stack_base_ptr": "ffbc8a60/ffbc6e5c", 
        "process": "lim"
      }, 
      {
        "mem_pid": 8075, 
        "mem_alloc": 25661440, 
        "mem_limit": 1037234880, 
        "mem_used": 453365760, 
        "stack_base_ptr": "ff99f020/ff99d3ac", 
        "process": "ufdm"
      }, 
      {
        "mem_pid": 7954, 
        "mem_alloc": 51900416, 
        "mem_limit": 823596787, 
        "mem_used": 446259200, 
        "stack_base_ptr": "ff8564e0/ff85510c", 
        "process": "vlan_mgr"
      }, 
      {
        "mem_pid": 7918, 
        "mem_alloc": 47632384, 
        "mem_limit": 1074409881, 
        "mem_used": 433668096, 
        "stack_base_ptr": "ff8dc220/ff8db790", 
        "process": "l2rib"
      }, 
      {
        "mem_pid": 7963, 
        "mem_alloc": 34107392, 
        "mem_limit": 1653169971, 
        "mem_used": 430669824, 
        "stack_base_ptr": "ffc95d50/ffc94750", 
        "process": "ipqosmgr"
      }, 
      {
        "mem_pid": 7965, 
        "mem_alloc": 33157120, 
        "mem_limit": 846688972, 
        "mem_used": 427773952, 
        "stack_base_ptr": "ff83ca50/ff83bc60", 
        "process": "diag_port_lb"
      }, 
      {
        "mem_pid": 7967, 
        "mem_alloc": 20111360, 
        "mem_limit": 1047368608, 
        "mem_used": 425996288, 
        "stack_base_ptr": "ff8aab80/ff8a8ddc", 
        "process": "l2fm"
      }, 
      {
        "mem_pid": 7969, 
        "mem_alloc": 33533952, 
        "mem_limit": 778357747, 
        "mem_used": 425009152, 
        "stack_base_ptr": "fff8efe0/fff8d44c", 
        "process": "aclqos"
      }, 
      {
        "mem_pid": 8131, 
        "mem_alloc": 39665664, 
        "mem_limit": 866625408, 
        "mem_used": 424820736, 
        "stack_base_ptr": "ffe05040/ffe036fc", 
        "process": "vntag_mgr"
      }, 
      {
        "mem_pid": 7368, 
        "mem_alloc": 8511488, 
        "mem_limit": 1056559398, 
        "mem_used": 419692544, 
        "stack_base_ptr": "fffcf6a0/fffcf120", 
        "process": "npacl"
      }, 
      {
        "mem_pid": 7913, 
        "mem_alloc": 28327936, 
        "mem_limit": 870378572, 
        "mem_used": 418869248, 
        "stack_base_ptr": "ffab48c0/ffab3c90", 
        "process": "pixmc"
      }, 
      {
        "mem_pid": 7046, 
        "mem_alloc": 30625792, 
        "mem_limit": 977183539, 
        "mem_used": 417177600, 
        "stack_base_ptr": "ff9bc0b0/ff9bb470", 
        "process": "pixm_vl"
      }, 
      {
        "mem_pid": 7409, 
        "mem_alloc": 19988480, 
        "mem_limit": 0, 
        "mem_used": 416063488, 
        "stack_base_ptr": "ff939250/ff931670", 
        "process": "xbar"
      }, 
      {
        "mem_pid": 6954, 
        "mem_alloc": 24633344, 
        "mem_limit": 0, 
        "mem_used": 415715328, 
        "stack_base_ptr": "ffe7dbd0/ffe7b810", 
        "process": "platform"
      }, 
      {
        "mem_pid": 7047, 
        "mem_alloc": 20439040, 
        "mem_limit": 988731392, 
        "mem_used": 413450240, 
        "stack_base_ptr": "ff85f7d0/ff85eb90", 
        "process": "pixm_gl"
      }, 
      {
        "mem_pid": 8132, 
        "mem_alloc": 22032384, 
        "mem_limit": 787878080, 
        "mem_used": 412332032, 
        "stack_base_ptr": "fffab7c0/fffaa8f0", 
        "process": "fex"
      }, 
      {
        "mem_pid": 7920, 
        "mem_alloc": 10510336, 
        "mem_limit": 787747417, 
        "mem_used": 411803648, 
        "stack_base_ptr": "ffce3080/ffce14fc", 
        "process": "giscm"
      }, 
      {
        "mem_pid": 7600, 
        "mem_alloc": 24272896, 
        "mem_limit": 884710886, 
        "mem_used": 410439680, 
        "stack_base_ptr": "ffd70040/ffd6fb0c", 
        "process": "callhome"
      }, 
      {
        "mem_pid": 8062, 
        "mem_alloc": 10600448, 
        "mem_limit": 1147257408, 
        "mem_used": 406286336, 
        "stack_base_ptr": "fff96640/fff94a3c", 
        "process": "mfdm"
      }, 
      {
        "mem_pid": 8189, 
        "mem_alloc": 15745024, 
        "mem_limit": 774428864, 
        "mem_used": 406118400, 
        "stack_base_ptr": "ff9c7b00/ff9c7850", 
        "process": "statsclient"
      }, 
      {
        "mem_pid": 7452, 
        "mem_alloc": 9367552, 
        "mem_limit": 777900006, 
        "mem_used": 404787200, 
        "stack_base_ptr": "fffc8210/fffc71c0", 
        "process": "ifmgr"
      }, 
      {
        "mem_pid": 7921, 
        "mem_alloc": 15360000, 
        "mem_limit": 790023238, 
        "mem_used": 403529728, 
        "stack_base_ptr": "ff86fc50/ff86e48c", 
        "process": "eltm"
      }, 
      {
        "mem_pid": 7481, 
        "mem_alloc": 5160960, 
        "mem_limit": 0, 
        "mem_used": 400961536, 
        "stack_base_ptr": "ff8202e0/ff81f800", 
        "process": "clp_mac"
      }, 
      {
        "mem_pid": 7924, 
        "mem_alloc": 13787136, 
        "mem_limit": 981622118, 
        "mem_used": 400723968, 
        "stack_base_ptr": "ffc984c0/ffc9693c", 
        "process": "adbm"
      }, 
      {
        "mem_pid": 7246, 
        "mem_alloc": 20770816, 
        "mem_limit": 679392243, 
        "mem_used": 400662528, 
        "stack_base_ptr": "ff941fc0/ff940ca0", 
        "process": "diagclient"
      }, 
      {
        "mem_pid": 7237, 
        "mem_alloc": 14442496, 
        "mem_limit": 1032787852, 
        "mem_used": 400297984, 
        "stack_base_ptr": "ffcd6980/ffcd65d0", 
        "process": "l3vm"
      }, 
      {
        "mem_pid": 7480, 
        "mem_alloc": 7409664, 
        "mem_limit": 0, 
        "mem_used": 400162816, 
        "stack_base_ptr": "ff89d130/ff89c870", 
        "process": "clp_l3"
      }, 
      {
        "mem_pid": 8094, 
        "mem_alloc": 12918784, 
        "mem_limit": 1170622604, 
        "mem_used": 398573568, 
        "stack_base_ptr": "ffbd8e50/ffbd8580", 
        "process": "m2rib"
      }, 
      {
        "mem_pid": 7479, 
        "mem_alloc": 5124096, 
        "mem_limit": 0, 
        "mem_used": 398258176, 
        "stack_base_ptr": "ff9b7a30/ff9b6ed0", 
        "process": "clp_fwd"
      }, 
      {
        "mem_pid": 7483, 
        "mem_alloc": 4763648, 
        "mem_limit": 0, 
        "mem_used": 397176832, 
        "stack_base_ptr": "ff9bc5f0/ff9bbd50", 
        "process": "clp_xbar"
      }, 
      {
        "mem_pid": 7280, 
        "mem_alloc": 7356416, 
        "mem_limit": 1632385638, 
        "mem_used": 396648448, 
        "stack_base_ptr": "ffb300f0/ffb2ee40", 
        "process": "aclmgr"
      }, 
      {
        "mem_pid": 6951, 
        "mem_alloc": 12042240, 
        "mem_limit": 781691046, 
        "mem_used": 396578816, 
        "stack_base_ptr": "ff8e78d0/ff8e32dc", 
        "process": "syslogd"
      }, 
      {
        "mem_pid": 7907, 
        "mem_alloc": 8450048, 
        "mem_limit": 836465388, 
        "mem_used": 395792384, 
        "stack_base_ptr": "ffe4f570/ffe4dd6c", 
        "process": "sim"
      }, 
      {
        "mem_pid": 8004, 
        "mem_alloc": 5267456, 
        "mem_limit": 985596057, 
        "mem_used": 395567104, 
        "stack_base_ptr": "ff9444e0/ff9426dc", 
        "process": "copp"
      }, 
      {
        "mem_pid": 7953, 
        "mem_alloc": 7303168, 
        "mem_limit": 780382592, 
        "mem_used": 395427840, 
        "stack_base_ptr": "ffde3cc0/ffde1f3c", 
        "process": "eth_port_channel"
      }, 
      {
        "mem_pid": 7274, 
        "mem_alloc": 13705216, 
        "mem_limit": 849395993, 
        "mem_used": 395317248, 
        "stack_base_ptr": "ffe63f10/ffe6349c", 
        "process": "device_test"
      }, 
      {
        "mem_pid": 7964, 
        "mem_alloc": 8871936, 
        "mem_limit": 780256435, 
        "mem_used": 393961472, 
        "stack_base_ptr": "ffc285c0/ffc27580", 
        "process": "lacp"
      }, 
      {
        "mem_pid": 7196, 
        "mem_alloc": 5419008, 
        "mem_limit": 781336441, 
        "mem_used": 393887744, 
        "stack_base_ptr": "ff8a5a40/ff8a5308", 
        "process": "vman"
      }, 
      {
        "mem_pid": 8084, 
        "mem_alloc": 5951488, 
        "mem_limit": 814067443, 
        "mem_used": 393633792, 
        "stack_base_ptr": "ffa84770/ffa829bc", 
        "process": "interface-vlan"
      }, 
      {
        "mem_pid": 7910, 
        "mem_alloc": 4145152, 
        "mem_limit": 784765203, 
        "mem_used": 392970240, 
        "stack_base_ptr": "ffec13d0/ffebf81c", 
        "process": "pltfm_config"
      }, 
      {
        "mem_pid": 7912, 
        "mem_alloc": 6500352, 
        "mem_limit": 1031733542, 
        "mem_used": 392921088, 
        "stack_base_ptr": "ffd5b220/ffd5a200", 
        "process": "plcmgr"
      }, 
      {
        "mem_pid": 8059, 
        "mem_alloc": 6844416, 
        "mem_limit": 1417823897, 
        "mem_used": 392826880, 
        "stack_base_ptr": "ffa687f0/ffa67b70", 
        "process": "spm"
      }, 
      {
        "mem_pid": 7449, 
        "mem_alloc": 10465280, 
        "mem_limit": 794972710, 
        "mem_used": 392654848, 
        "stack_base_ptr": "ffd343e0/ffd3348c", 
        "process": "ExceptionLog"
      }, 
      {
        "mem_pid": 7221, 
        "mem_alloc": 13557760, 
        "mem_limit": 1135574387, 
        "mem_used": 391614464, 
        "stack_base_ptr": "ff8d47b0/ff8d4010", 
        "process": "crdcfg_server"
      }, 
      {
        "mem_pid": 7544, 
        "mem_alloc": 9256960, 
        "mem_limit": 1084764595, 
        "mem_used": 391540736, 
        "stack_base_ptr": "ffeb9ae0/ffeb7f6c", 
        "process": "cfs"
      }, 
      {
        "mem_pid": 7909, 
        "mem_alloc": 4907008, 
        "mem_limit": 766188121, 
        "mem_used": 391376896, 
        "stack_base_ptr": "ff880160/ff87f100", 
        "process": "pltfm_debug"
      }, 
      {
        "mem_pid": 7916, 
        "mem_alloc": 3571712, 
        "mem_limit": 764926553, 
        "mem_used": 390905856, 
        "stack_base_ptr": "ffbbb920/ffbba8e0", 
        "process": "monitorc"
      }, 
      {
        "mem_pid": 8063, 
        "mem_alloc": 3350528, 
        "mem_limit": 767620902, 
        "mem_used": 390868992, 
        "stack_base_ptr": "ffca9c60/ffca8bd0", 
        "process": "mcm"
      }, 
      {
        "mem_pid": 7430, 
        "mem_alloc": 7335936, 
        "mem_limit": 792551372, 
        "mem_used": 390787072, 
        "stack_base_ptr": "ffcde6a0/ffcdc310", 
        "process": "module"
      }, 
      {
        "mem_pid": 7228, 
        "mem_alloc": 3219456, 
        "mem_limit": 0, 
        "mem_used": 390320128, 
        "stack_base_ptr": "ffc35590/ffc337ec", 
        "process": "cert_enroll"
      }, 
      {
        "mem_pid": 7922, 
        "mem_alloc": 8499200, 
        "mem_limit": 1030426918, 
        "mem_used": 389902336, 
        "stack_base_ptr": "ff809430/ff809310", 
        "process": "ecp"
      }, 
      {
        "mem_pid": 7058, 
        "mem_alloc": 7053312, 
        "mem_limit": 751084153, 
        "mem_used": 389844992, 
        "stack_base_ptr": "ff841330/ff84038c", 
        "process": "bloggerd"
      }, 
      {
        "mem_pid": 7043, 
        "mem_alloc": 8032256, 
        "mem_limit": 1026326822, 
        "mem_used": 389283840, 
        "stack_base_ptr": "fff510f0/fff50b30", 
        "process": "smm"
      }, 
      {
        "mem_pid": 7469, 
        "mem_alloc": 3936256, 
        "mem_limit": 756131622, 
        "mem_used": 389009408, 
        "stack_base_ptr": "ffe66d80/ffe65d40", 
        "process": "ncpinframgr"
      }, 
      {
        "mem_pid": 8065, 
        "mem_alloc": 3219456, 
        "mem_limit": 1030332300, 
        "mem_used": 388907008, 
        "stack_base_ptr": "ff95a010/ff95826c", 
        "process": "l2pt"
      }, 
      {
        "mem_pid": 7914, 
        "mem_alloc": 5079040, 
        "mem_limit": 1030927040, 
        "mem_used": 388476928, 
        "stack_base_ptr": "ffe47570/ffe459bc", 
        "process": "pfstat"
      }, 
      {
        "mem_pid": 7052, 
        "mem_alloc": 2711552, 
        "mem_limit": 761488780, 
        "mem_used": 388321280, 
        "stack_base_ptr": "ffc05810/ffc05168", 
        "process": "licmgr"
      }, 
      {
        "mem_pid": 7223, 
        "mem_alloc": 2195456, 
        "mem_limit": 745615552, 
        "mem_used": 388001792, 
        "stack_base_ptr": "ffd713b0/ffd70380", 
        "process": "clk_mgr"
      }, 
      {
        "mem_pid": 8058, 
        "mem_alloc": 3067904, 
        "mem_limit": 768625651, 
        "mem_used": 386756608, 
        "stack_base_ptr": "ffe04070/ffe03040", 
        "process": "u2"
      }, 
      {
        "mem_pid": 7925, 
        "mem_alloc": 3485696, 
        "mem_limit": 1030571097, 
        "mem_used": 386428928, 
        "stack_base_ptr": "ffac10c0/ffac0070", 
        "process": "acllog"
      }, 
      {
        "mem_pid": 7219, 
        "mem_alloc": 2494464, 
        "mem_limit": 846823296, 
        "mem_used": 386342912, 
        "stack_base_ptr": "ff9e9d60/ff9e8d60", 
        "process": "epld_auto"
      }, 
      {
        "mem_pid": 7055, 
        "mem_alloc": 3289088, 
        "mem_limit": 0, 
        "mem_used": 386281472, 
        "stack_base_ptr": "ffc62ee0/ffc61f4c", 
        "process": "feature-mgr"
      }, 
      {
        "mem_pid": 7214, 
        "mem_alloc": 5406720, 
        "mem_limit": 665645657, 
        "mem_used": 386166784, 
        "stack_base_ptr": "ffad9d60/ffad9ba0", 
        "process": "fmd"
      }, 
      {
        "mem_pid": 8188, 
        "mem_alloc": 4378624, 
        "mem_limit": 0, 
        "mem_used": 386154496, 
        "stack_base_ptr": "fff5e420/fff5d800", 
        "process": "port_client"
      }, 
      {
        "mem_pid": 7041, 
        "mem_alloc": 2674688, 
        "mem_limit": 967294310, 
        "mem_used": 385753088, 
        "stack_base_ptr": "ffa7e820/ffa7e0fc", 
        "process": "vshd"
      }, 
      {
        "mem_pid": 7210, 
        "mem_alloc": 2859008, 
        "mem_limit": 0, 
        "mem_used": 385138688, 
        "stack_base_ptr": "ffe54f40/ffe54690", 
        "process": "patch-installer"
      }, 
      {
        "mem_pid": 7207, 
        "mem_alloc": 3170304, 
        "mem_limit": 756517555, 
        "mem_used": 385015808, 
        "stack_base_ptr": "ffa1ddf0/ffa1d92c", 
        "process": "res_mgr"
      }, 
      {
        "mem_pid": 7215, 
        "mem_alloc": 3088384, 
        "mem_limit": 759254003, 
        "mem_used": 385011712, 
        "stack_base_ptr": "ff8176b0/ff816680", 
        "process": "evms"
      }, 
      {
        "mem_pid": 7218, 
        "mem_alloc": 2166784, 
        "mem_limit": 846426803, 
        "mem_used": 384905216, 
        "stack_base_ptr": "ff9d7490/ff9d6ba8", 
        "process": "epld_upgrade_stdby"
      }, 
      {
        "mem_pid": 7911, 
        "mem_alloc": 4530176, 
        "mem_limit": 843228672, 
        "mem_used": 384872448, 
        "stack_base_ptr": "ffffb130/ffffa100", 
        "process": "plsm"
      }, 
      {
        "mem_pid": 7478, 
        "mem_alloc": 5320704, 
        "mem_limit": 748634304, 
        "mem_used": 384851968, 
        "stack_base_ptr": "ffa922d0/ffa912c0", 
        "process": "clp_elam"
      }, 
      {
        "mem_pid": 5800, 
        "mem_alloc": 12107776, 
        "mem_limit": 0, 
        "mem_used": 384692224, 
        "stack_base_ptr": "fffa1960/fffa1560", 
        "process": "sysmgr"
      }, 
      {
        "mem_pid": 7224, 
        "mem_alloc": 3543040, 
        "mem_limit": 658459225, 
        "mem_used": 384626688, 
        "stack_base_ptr": "ffa49530/ffa48710", 
        "process": "cli_acl"
      }, 
      {
        "mem_pid": 8190, 
        "mem_alloc": 4706304, 
        "mem_limit": 0, 
        "mem_used": 384536576, 
        "stack_base_ptr": "ff8db0f0/ff8da080", 
        "process": "xbar_client"
      }, 
      {
        "mem_pid": 7220, 
        "mem_alloc": 4456448, 
        "mem_limit": 662491737, 
        "mem_used": 383934464, 
        "stack_base_ptr": "ffd1f110/ffd1e0b0", 
        "process": "diagmgr"
      }, 
      {
        "mem_pid": 7296, 
        "mem_alloc": 2801664, 
        "mem_limit": 1021514841, 
        "mem_used": 383930368, 
        "stack_base_ptr": "ff802f90/ff801f50", 
        "process": "eem_policy_dir"
      }, 
      {
        "mem_pid": 7227, 
        "mem_alloc": 1941504, 
        "mem_limit": 0, 
        "mem_used": 383873024, 
        "stack_base_ptr": "ffb19ea0/ffb189e8", 
        "process": "securityd"
      }, 
      {
        "mem_pid": 7206, 
        "mem_alloc": 2887680, 
        "mem_limit": 757798694, 
        "mem_used": 383840256, 
        "stack_base_ptr": "fff35980/fff33fbc", 
        "process": "rtd_monitor"
      }, 
      {
        "mem_pid": 7962, 
        "mem_alloc": 2519040, 
        "mem_limit": 785439705, 
        "mem_used": 383795200, 
        "stack_base_ptr": "ff92dc10/ff92d860", 
        "process": "eth_dstats"
      }, 
      {
        "mem_pid": 7195, 
        "mem_alloc": 3661824, 
        "mem_limit": 758778240, 
        "mem_used": 383787008, 
        "stack_base_ptr": "ff835400/ff833dc0", 
        "process": "vmm"
      }, 
      {
        "mem_pid": 7194, 
        "mem_alloc": 2297856, 
        "mem_limit": 0, 
        "mem_used": 383467520, 
        "stack_base_ptr": "ffec9bb0/ffec8e3c", 
        "process": "xmlma"
      }, 
      {
        "mem_pid": 7213, 
        "mem_alloc": 3207168, 
        "mem_limit": 0, 
        "mem_used": 383115264, 
        "stack_base_ptr": "ffeb7410/ffeb6360", 
        "process": "fw_app"
      }, 
      {
        "mem_pid": 7202, 
        "mem_alloc": 3629056, 
        "mem_limit": 748539686, 
        "mem_used": 382914560, 
        "stack_base_ptr": "ff95e5b0/ff95d550", 
        "process": "statsprofiler"
      }, 
      {
        "mem_pid": 7487, 
        "mem_alloc": 2961408, 
        "mem_limit": 0, 
        "mem_used": 382877696, 
        "stack_base_ptr": "ffc00290/ffbffdf0", 
        "process": "sensor"
      }, 
      {
        "mem_pid": 7198, 
        "mem_alloc": 1925120, 
        "mem_limit": 825476608, 
        "mem_used": 382525440, 
        "stack_base_ptr": "ffb1c670/ffb1b8e0", 
        "process": "vdc_mgr"
      }, 
      {
        "mem_pid": 6952, 
        "mem_alloc": 3170304, 
        "mem_limit": 675189011, 
        "mem_used": 382054400, 
        "stack_base_ptr": "ff949900/ff948c40", 
        "process": "sdwrapd"
      }, 
      {
        "mem_pid": 7484, 
        "mem_alloc": 4296704, 
        "mem_limit": 0, 
        "mem_used": 381542400, 
        "stack_base_ptr": "ffd17070/ffd167c0", 
        "process": "lit"
      }, 
      {
        "mem_pid": 7229, 
        "mem_alloc": 1802240, 
        "mem_limit": 0, 
        "mem_used": 381370368, 
        "stack_base_ptr": "ffa8efc0/ffa8db50", 
        "process": "aaa"
      }, 
      {
        "mem_pid": 7230, 
        "mem_alloc": 1642496, 
        "mem_limit": 796666816, 
        "mem_used": 381362176, 
        "stack_base_ptr": "fffcdef0/fffcd1a8", 
        "process": "obfl"
      }, 
      {
        "mem_pid": 7023, 
        "mem_alloc": 1966080, 
        "mem_limit": 784668403, 
        "mem_used": 381247488, 
        "stack_base_ptr": "ffabe350/ffabde90", 
        "process": "cmond"
      }, 
      {
        "mem_pid": 7204, 
        "mem_alloc": 1331200, 
        "mem_limit": 766877971, 
        "mem_used": 381018112, 
        "stack_base_ptr": "ffeb5e90/ffeb58d0", 
        "process": "sksd"
      }, 
      {
        "mem_pid": 7056, 
        "mem_alloc": 1982464, 
        "mem_limit": 0, 
        "mem_used": 381001728, 
        "stack_base_ptr": "ffd4f2a0/ffd4f080", 
        "process": "confcheck"
      }, 
      {
        "mem_pid": 7044, 
        "mem_alloc": 4300800, 
        "mem_limit": 732585990, 
        "mem_used": 380825600, 
        "stack_base_ptr": "fff1cab0/fff1ba90", 
        "process": "session-mgr"
      }, 
      {
        "mem_pid": 7200, 
        "mem_alloc": 2187264, 
        "mem_limit": 763162188, 
        "mem_used": 380735488, 
        "stack_base_ptr": "ffb33e50/ffb337b0", 
        "process": "ttyd"
      }, 
      {
        "mem_pid": 7450, 
        "mem_alloc": 1626112, 
        "mem_limit": 793778726, 
        "mem_used": 380723200, 
        "stack_base_ptr": "ffff4e90/ffff4780", 
        "process": "bootvar"
      }, 
      {
        "mem_pid": 7217, 
        "mem_alloc": 2240512, 
        "mem_limit": 923590131, 
        "mem_used": 379666432, 
        "stack_base_ptr": "ffa4e4a0/ffa4d480", 
        "process": "evmc"
      }, 
      {
        "mem_pid": 7203, 
        "mem_alloc": 1855488, 
        "mem_limit": 744917184, 
        "mem_used": 379441152, 
        "stack_base_ptr": "ffb30060/ffb2f000", 
        "process": "snmpmib_proc"
      }, 
      {
        "mem_pid": 7222, 
        "mem_alloc": 1335296, 
        "mem_limit": 0, 
        "mem_used": 379432960, 
        "stack_base_ptr": "fffdbce0/fffdb6a0", 
        "process": "core-dmon"
      }, 
      {
        "mem_pid": 7057, 
        "mem_alloc": 2658304, 
        "mem_limit": 746850086, 
        "mem_used": 379191296, 
        "stack_base_ptr": "fff2dda0/fff2d1b0", 
        "process": "capability"
      }, 
      {
        "mem_pid": 7053, 
        "mem_alloc": 1368064, 
        "mem_limit": 0, 
        "mem_used": 378785792, 
        "stack_base_ptr": "fff99f60/fff996f0", 
        "process": "fs-daemon"
      }, 
      {
        "mem_pid": 7045, 
        "mem_alloc": 2404352, 
        "mem_limit": 1035634828, 
        "mem_used": 378720256, 
        "stack_base_ptr": "ffd32e00/ffd329d0", 
        "process": "psshelper"
      }, 
      {
        "mem_pid": 7059, 
        "mem_alloc": 2260992, 
        "mem_limit": 1035477132, 
        "mem_used": 378621952, 
        "stack_base_ptr": "ffeb19b0/ffeb1580", 
        "process": "psshelper_gsvc"
      }, 
      {
        "mem_pid": 7211, 
        "mem_alloc": 1765376, 
        "mem_limit": 818026809, 
        "mem_used": 378179584, 
        "stack_base_ptr": "fff058e0/fff046a0", 
        "process": "mvsh"
      }, 
      {
        "mem_pid": 7193, 
        "mem_alloc": 1839104, 
        "mem_limit": 922355596, 
        "mem_used": 378155008, 
        "stack_base_ptr": "ff95e1b0/ff95d170", 
        "process": "xmpp"
      }, 
      {
        "mem_pid": 7451, 
        "mem_alloc": 1220608, 
        "mem_limit": 0, 
        "mem_used": 377483264, 
        "stack_base_ptr": "ffef7380/ffef70e0", 
        "process": "cardclient"
      }, 
      {
        "mem_pid": 6953, 
        "mem_alloc": 946176, 
        "mem_limit": 745502912, 
        "mem_used": 377434112, 
        "stack_base_ptr": "ffe5bc90/ffe5ac18", 
        "process": "pfm_dummy"
      }, 
      {
        "mem_pid": 7557, 
        "mem_alloc": 2609152, 
        "mem_limit": 472988876, 
        "mem_used": 375205888, 
        "stack_base_ptr": "ff9589e0/ff954c0c", 
        "process": "dcos-xinetd"
      }, 
      {
        "mem_pid": 7594, 
        "mem_alloc": 1581056, 
        "mem_limit": 0, 
        "mem_used": 374321152, 
        "stack_base_ptr": "fff418a0/fff3dacc", 
        "process": "ntpd"
      }, 
      {
        "mem_pid": 7208, 
        "mem_alloc": 3923968, 
        "mem_limit": 2022446694, 
        "mem_used": 371843072, 
        "stack_base_ptr": "fffc44e0/fffc34ac", 
        "process": "plugin"
      }, 
      {
        "mem_pid": 7209, 
        "mem_alloc": 491520, 
        "mem_limit": 774602892, 
        "mem_used": 352190464, 
        "stack_base_ptr": "ffa71a00/ffa71230", 
        "process": "plog_sup"
      }, 
      {
        "mem_pid": 7225, 
        "mem_alloc": 618496, 
        "mem_limit": 497188876, 
        "mem_used": 288452608, 
        "stack_base_ptr": "ffc77bf0/ffc76ff8", 
        "process": "bios_daemon"
      }, 
      {
        "mem_pid": 7201, 
        "mem_alloc": 12718080, 
        "mem_limit": 747826252, 
        "mem_used": 287657984, 
        "stack_base_ptr": "ffec1640/ffec14ac", 
        "process": "sysinfo"
      }, 
      {
        "mem_pid": 7199, 
        "mem_alloc": 9895936, 
        "mem_limit": 0, 
        "mem_used": 285274112, 
        "stack_base_ptr": "ffa70360/ffa6e03c", 
        "process": "usbhsd"
      }, 
      {
        "mem_pid": 7212, 
        "mem_alloc": 454656, 
        "mem_limit": 0, 
        "mem_used": 276865024, 
        "stack_base_ptr": "ffccce40/ffccca10", 
        "process": "mping_server"
      }, 
      {
        "mem_pid": 7545, 
        "mem_alloc": 450560, 
        "mem_limit": 657001241, 
        "mem_used": 275283968, 
        "stack_base_ptr": "fff1cd00/fff1c8e8", 
        "process": "ip_dummy"
      }, 
      {
        "mem_pid": 7546, 
        "mem_alloc": 450560, 
        "mem_limit": 657001241, 
        "mem_used": 275283968, 
        "stack_base_ptr": "ffe94160/ffe93d48", 
        "process": "ipv6_dummy"
      }, 
      {
        "mem_pid": 7550, 
        "mem_alloc": 450560, 
        "mem_limit": 657001241, 
        "mem_used": 275283968, 
        "stack_base_ptr": "ffe11b40/ffe11728", 
        "process": "tcpudp_dummy"
      }, 
      {
        "mem_pid": 7068, 
        "mem_alloc": 18800640, 
        "mem_limit": 0, 
        "mem_used": 22335488, 
        "stack_base_ptr": "ff910970/ff910744", 
        "process": "cisco"
      }, 
      {
        "mem_pid": 8581, 
        "mem_alloc": 14098432, 
        "mem_limit": 0, 
        "mem_used": 19865600, 
        "stack_base_ptr": "ffb93470/ffb92e90", 
        "process": "libvirtd"
      }, 
      {
        "mem_pid": 8576, 
        "mem_alloc": 806912, 
        "mem_limit": 0, 
        "mem_used": 10641408, 
        "stack_base_ptr": "ff9566f0/ff9544e0", 
        "process": "login"
      }, 
      {
        "mem_pid": 6949, 
        "mem_alloc": 1069056, 
        "mem_limit": 613788876, 
        "mem_used": 7942144, 
        "stack_base_ptr": "fff1a1b0/fff19fe0", 
        "process": "xinetd"
      }, 
      {
        "mem_pid": 7189, 
        "mem_alloc": 614400, 
        "mem_limit": 0, 
        "mem_used": 7217152, 
        "stack_base_ptr": "ffc71700/ffc71370", 
        "process": "dhcpd"
      }, 
      {
        "mem_pid": 6950, 
        "mem_alloc": 708608, 
        "mem_limit": 354188876, 
        "mem_used": 7168000, 
        "stack_base_ptr": "ff9264c0/ff925ee0", 
        "process": "tftpd"
      }, 
      {
        "mem_pid": 7906, 
        "mem_alloc": 708608, 
        "mem_limit": 354188876, 
        "mem_used": 7168000, 
        "stack_base_ptr": "ffc67f80/ffc679a0", 
        "process": "tftp_aa"
      }, 
      {
        "mem_pid": 7051, 
        "mem_alloc": 425984, 
        "mem_limit": 0, 
        "mem_used": 4272128, 
        "stack_base_ptr": "ff88ead0/ff88d0d0", 
        "process": "lmgrd"
      }, 
      {
        "mem_pid": 8577, 
        "mem_alloc": 102400, 
        "mem_limit": 0, 
        "mem_used": 3264512, 
        "stack_base_ptr": "ffc61af0/ffc612d8", 
        "process": "sh"
      }, 
      {
        "mem_pid": 5787, 
        "mem_alloc": 253952, 
        "mem_limit": 0, 
        "mem_used": 2711552, 
        "stack_base_ptr": "fff26650/fff26340", 
        "process": "rpc.mountd"
      }, 
      {
        "mem_pid": 2851, 
        "mem_alloc": 196608, 
        "mem_limit": 0, 
        "mem_used": 2461696, 
        "stack_base_ptr": "ffb6a310/ffb6a1a0", 
        "process": "mcelog"
      }, 
      {
        "mem_pid": 5767, 
        "mem_alloc": 184320, 
        "mem_limit": 0, 
        "mem_used": 2142208, 
        "stack_base_ptr": "ffbd9400/ffbd9190", 
        "process": "rpc.statd"
      }, 
      {
        "mem_pid": 5764, 
        "mem_alloc": 167936, 
        "mem_limit": 0, 
        "mem_used": 1974272, 
        "stack_base_ptr": "ffa56720/ffa565a8", 
        "process": "portmap"
      }, 
      {
        "mem_pid": 1, 
        "mem_alloc": 167936, 
        "mem_limit": 0, 
        "mem_used": 1953792, 
        "stack_base_ptr": "ff9486d0/ff948030", 
        "process": "init"
      }
    ]
  }, 
  "sum_mem_malloced": "2391318528"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:process" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <processes>
    <memory>
     <sort>
      <__readonly__>
       <TABLE_process_memory>
        <ROW_process_memory>
         <mem_pid>8061</mem_pid>
         <mem_alloc>125378560</mem_alloc>
         <mem_limit>1276765145</mem_limit>
         <mem_used>777396224</mem_used>
         <stack_base_ptr>ffd11730/ffd11610</stack_base_ptr>
         <process>mrib</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7497</mem_pid>
         <mem_alloc>77430784</mem_alloc>
         <mem_limit>1299995315</mem_limit>
         <mem_used>755855360</mem_used>
         <stack_base_ptr>fffdaee0/fffda930</stack_base_ptr>
         <process>netstack</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7919</mem_pid>
         <mem_alloc>151097344</mem_alloc>
         <mem_limit>1417398720</mem_limit>
         <mem_used>736837632</mem_used>
         <stack_base_ptr>ffec5800/ffec52d0</stack_base_ptr>
         <process>igmp</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7952</mem_pid>
         <mem_alloc>208961536</mem_alloc>
         <mem_limit>885737344</mem_limit>
         <mem_used>719724544</mem_used>
         <stack_base_ptr>ffcbb4f0/ffcb996c</stack_base_ptr>
         <process>monitor</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7375</mem_pid>
         <mem_alloc>83218432</mem_alloc>
         <mem_limit>1253813747</mem_limit>
         <mem_used>719196160</mem_used>
         <stack_base_ptr>ff965960/ff9655c0</stack_base_ptr>
         <process>arp</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8079</mem_pid>
         <mem_alloc>65646592</mem_alloc>
         <mem_limit>1120519936</mem_limit>
         <mem_used>698863616</mem_used>
         <stack_base_ptr>ffffbad0/ffffb9e0</stack_base_ptr>
         <process>mcastfwd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8064</mem_pid>
         <mem_alloc>65372160</mem_alloc>
         <mem_limit>1099564531</mem_limit>
         <mem_used>636751872</mem_used>
         <stack_base_ptr>ffc31e10/ffc31cf0</stack_base_ptr>
         <process>m6rib</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7376</mem_pid>
         <mem_alloc>18001920</mem_alloc>
         <mem_limit>1057774681</mem_limit>
         <mem_used>595214336</mem_used>
         <stack_base_ptr>ffeb1fe0/ffeb1a6c</stack_base_ptr>
         <process>icmpv6</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7908</mem_pid>
         <mem_alloc>16080896</mem_alloc>
         <mem_limit>1055396134</mem_limit>
         <mem_used>589991936</mem_used>
         <stack_base_ptr>ffc05c60/ffc05b40</stack_base_ptr>
         <process>rpm</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7966</mem_pid>
         <mem_alloc>15687680</mem_alloc>
         <mem_limit>864989900</mem_limit>
         <mem_used>584257536</mem_used>
         <stack_base_ptr>ffa34fb0/ffa333cc</stack_base_ptr>
         <process>ethpm</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7290</mem_pid>
         <mem_alloc>34295808</mem_alloc>
         <mem_limit>1134731020</mem_limit>
         <mem_used>583098368</mem_used>
         <stack_base_ptr>ffa4ac70/ffa4a8d0</stack_base_ptr>
         <process>adjmgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8066</mem_pid>
         <mem_alloc>7815168</mem_alloc>
         <mem_limit>1144994086</mem_limit>
         <mem_used>582615040</mem_used>
         <stack_base_ptr>ffbd6cd0/ffbd206c</stack_base_ptr>
         <process>hsrp_engine</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8057</mem_pid>
         <mem_alloc>8949760</mem_alloc>
         <mem_limit>1194218316</mem_limit>
         <mem_used>574808064</mem_used>
         <stack_base_ptr>ff8f16f0/ff8efd8c</stack_base_ptr>
         <process>vpc</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7547</mem_pid>
         <mem_alloc>3346432</mem_alloc>
         <mem_limit>1040356441</mem_limit>
         <mem_used>559476736</mem_used>
         <stack_base_ptr>ffe75b70/ffe7178c</stack_base_ptr>
         <process>ntp</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7548</mem_pid>
         <mem_alloc>4050944</mem_alloc>
         <mem_limit>1039333670</mem_limit>
         <mem_used>558772224</mem_used>
         <stack_base_ptr>ffe8c2f0/ffe8a77c</stack_base_ptr>
         <process>otm</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7291</mem_pid>
         <mem_alloc>27435008</mem_alloc>
         <mem_limit>1057851276</mem_limit>
         <mem_used>556855296</mem_used>
         <stack_base_ptr>ffc49790/ffc49650</stack_base_ptr>
         <process>u6rib</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7549</mem_pid>
         <mem_alloc>25989120</mem_alloc>
         <mem_limit>915360819</mem_limit>
         <mem_used>552292352</mem_used>
         <stack_base_ptr>ffd60530/ffd5b2dc</stack_base_ptr>
         <process>snmpd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7081</mem_pid>
         <mem_alloc>63733760</mem_alloc>
         <mem_limit>1701749350</mem_limit>
         <mem_used>551370752</mem_used>
         <stack_base_ptr>ffed9dd0/ffed825c</stack_base_ptr>
         <process>port-profile</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7471</mem_pid>
         <mem_alloc>27865088</mem_alloc>
         <mem_limit>1136921280</mem_limit>
         <mem_used>540000256</mem_used>
         <stack_base_ptr>ffa05eb0/ffa05da0</stack_base_ptr>
         <process>pktmgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7486</mem_pid>
         <mem_alloc>27815936</mem_alloc>
         <mem_limit>1034706534</mem_limit>
         <mem_used>532971520</mem_used>
         <stack_base_ptr>ff8a78e0/ff8a6e10</stack_base_ptr>
         <process>sac_usd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7238</mem_pid>
         <mem_alloc>17166336</mem_alloc>
         <mem_limit>1628092416</mem_limit>
         <mem_used>528625664</mem_used>
         <stack_base_ptr>ffa860b0/ffa85e70</stack_base_ptr>
         <process>urib</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8060</mem_pid>
         <mem_alloc>3043328</mem_alloc>
         <mem_limit>1038180236</mem_limit>
         <mem_used>524177408</mem_used>
         <stack_base_ptr>ffb45810/ffb43c9c</stack_base_ptr>
         <process>sal</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7542</mem_pid>
         <mem_alloc>3522560</mem_alloc>
         <mem_limit>876446796</mem_limit>
         <mem_used>512749568</mem_used>
         <stack_base_ptr>ffaa8760/ffaa759c</stack_base_ptr>
         <process>cdp</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7541</mem_pid>
         <mem_alloc>3506176</mem_alloc>
         <mem_limit>902919520</mem_limit>
         <mem_used>511770624</mem_used>
         <stack_base_ptr>ff938540/ff93328c</stack_base_ptr>
         <process>radius</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7488</mem_pid>
         <mem_alloc>127524864</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>508030976</mem_used>
         <stack_base_ptr>ffe735b0/ffe72cf0</stack_base_ptr>
         <process>sm15_usd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7078</mem_pid>
         <mem_alloc>19128320</mem_alloc>
         <mem_limit>1412394368</mem_limit>
         <mem_used>504541184</mem_used>
         <stack_base_ptr>ff875400/ff8747ec</stack_base_ptr>
         <process>clis</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7968</mem_pid>
         <mem_alloc>5267456</mem_alloc>
         <mem_limit>774175731</mem_limit>
         <mem_used>500441088</mem_used>
         <stack_base_ptr>ffb5bf70/ffb5a3ec</stack_base_ptr>
         <process>mhbfd_tracker</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>9170</mem_pid>
         <mem_alloc>12414976</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>496939008</mem_used>
         <stack_base_ptr>ff9c36b0/ff9c32fc</stack_base_ptr>
         <process>vsh</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7226</mem_pid>
         <mem_alloc>2916352</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>495820800</mem_used>
         <stack_base_ptr>fffae400/fffad7f8</stack_base_ptr>
         <process>ascii-cfg</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7048</mem_pid>
         <mem_alloc>29364224</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>494329856</mem_used>
         <stack_base_ptr>ffe5c660/ffe5c530</stack_base_ptr>
         <process>pdsd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7042</mem_pid>
         <mem_alloc>5017600</mem_alloc>
         <mem_limit>1033477209</mem_limit>
         <mem_used>490401792</mem_used>
         <stack_base_ptr>ffc5d6a0/ffc5c470</stack_base_ptr>
         <process>vpc_config_sync</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7049</mem_pid>
         <mem_alloc>4595712</mem_alloc>
         <mem_limit>1303061478</mem_limit>
         <mem_used>486293504</mem_used>
         <stack_base_ptr>fff20e40/fff1e29c</stack_base_ptr>
         <process>mmode</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7970</mem_pid>
         <mem_alloc>9138176</mem_alloc>
         <mem_limit>1077199411</mem_limit>
         <mem_used>484216832</mem_used>
         <stack_base_ptr>ff8a66a0/ff8a5b3c</stack_base_ptr>
         <process>stp</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7917</mem_pid>
         <mem_alloc>77000704</mem_alloc>
         <mem_limit>997711475</mem_limit>
         <mem_used>461725696</mem_used>
         <stack_base_ptr>ffbc8a60/ffbc6e5c</stack_base_ptr>
         <process>lim</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8075</mem_pid>
         <mem_alloc>25661440</mem_alloc>
         <mem_limit>1037234880</mem_limit>
         <mem_used>453365760</mem_used>
         <stack_base_ptr>ff99f020/ff99d3ac</stack_base_ptr>
         <process>ufdm</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7954</mem_pid>
         <mem_alloc>51900416</mem_alloc>
         <mem_limit>823596787</mem_limit>
         <mem_used>446259200</mem_used>
         <stack_base_ptr>ff8564e0/ff85510c</stack_base_ptr>
         <process>vlan_mgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7918</mem_pid>
         <mem_alloc>47632384</mem_alloc>
         <mem_limit>1074409881</mem_limit>
         <mem_used>433668096</mem_used>
         <stack_base_ptr>ff8dc220/ff8db790</stack_base_ptr>
         <process>l2rib</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7963</mem_pid>
         <mem_alloc>34107392</mem_alloc>
         <mem_limit>1653169971</mem_limit>
         <mem_used>430669824</mem_used>
         <stack_base_ptr>ffc95d50/ffc94750</stack_base_ptr>
         <process>ipqosmgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7965</mem_pid>
         <mem_alloc>33157120</mem_alloc>
         <mem_limit>846688972</mem_limit>
         <mem_used>427773952</mem_used>
         <stack_base_ptr>ff83ca50/ff83bc60</stack_base_ptr>
         <process>diag_port_lb</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7967</mem_pid>
         <mem_alloc>20111360</mem_alloc>
         <mem_limit>1047368608</mem_limit>
         <mem_used>425996288</mem_used>
         <stack_base_ptr>ff8aab80/ff8a8ddc</stack_base_ptr>
         <process>l2fm</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7969</mem_pid>
         <mem_alloc>33533952</mem_alloc>
         <mem_limit>778357747</mem_limit>
         <mem_used>425009152</mem_used>
         <stack_base_ptr>fff8efe0/fff8d44c</stack_base_ptr>
         <process>aclqos</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8131</mem_pid>
         <mem_alloc>39665664</mem_alloc>
         <mem_limit>866625408</mem_limit>
         <mem_used>424820736</mem_used>
         <stack_base_ptr>ffe05040/ffe036fc</stack_base_ptr>
         <process>vntag_mgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7368</mem_pid>
         <mem_alloc>8511488</mem_alloc>
         <mem_limit>1056559398</mem_limit>
         <mem_used>419692544</mem_used>
         <stack_base_ptr>fffcf6a0/fffcf120</stack_base_ptr>
         <process>npacl</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7913</mem_pid>
         <mem_alloc>28327936</mem_alloc>
         <mem_limit>870378572</mem_limit>
         <mem_used>418869248</mem_used>
         <stack_base_ptr>ffab48c0/ffab3c90</stack_base_ptr>
         <process>pixmc</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7046</mem_pid>
         <mem_alloc>30625792</mem_alloc>
         <mem_limit>977183539</mem_limit>
         <mem_used>417177600</mem_used>
         <stack_base_ptr>ff9bc0b0/ff9bb470</stack_base_ptr>
         <process>pixm_vl</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7409</mem_pid>
         <mem_alloc>19988480</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>416063488</mem_used>
         <stack_base_ptr>ff939250/ff931670</stack_base_ptr>
         <process>xbar</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>6954</mem_pid>
         <mem_alloc>24633344</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>415715328</mem_used>
         <stack_base_ptr>ffe7dbd0/ffe7b810</stack_base_ptr>
         <process>platform</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7047</mem_pid>
         <mem_alloc>20439040</mem_alloc>
         <mem_limit>988731392</mem_limit>
         <mem_used>413450240</mem_used>
         <stack_base_ptr>ff85f7d0/ff85eb90</stack_base_ptr>
         <process>pixm_gl</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8132</mem_pid>
         <mem_alloc>22032384</mem_alloc>
         <mem_limit>787878080</mem_limit>
         <mem_used>412332032</mem_used>
         <stack_base_ptr>fffab7c0/fffaa8f0</stack_base_ptr>
         <process>fex</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7920</mem_pid>
         <mem_alloc>10510336</mem_alloc>
         <mem_limit>787747417</mem_limit>
         <mem_used>411803648</mem_used>
         <stack_base_ptr>ffce3080/ffce14fc</stack_base_ptr>
         <process>giscm</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7600</mem_pid>
         <mem_alloc>24272896</mem_alloc>
         <mem_limit>884710886</mem_limit>
         <mem_used>410439680</mem_used>
         <stack_base_ptr>ffd70040/ffd6fb0c</stack_base_ptr>
         <process>callhome</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8062</mem_pid>
         <mem_alloc>10600448</mem_alloc>
         <mem_limit>1147257408</mem_limit>
         <mem_used>406286336</mem_used>
         <stack_base_ptr>fff96640/fff94a3c</stack_base_ptr>
         <process>mfdm</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8189</mem_pid>
         <mem_alloc>15745024</mem_alloc>
         <mem_limit>774428864</mem_limit>
         <mem_used>406118400</mem_used>
         <stack_base_ptr>ff9c7b00/ff9c7850</stack_base_ptr>
         <process>statsclient</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7452</mem_pid>
         <mem_alloc>9367552</mem_alloc>
         <mem_limit>777900006</mem_limit>
         <mem_used>404787200</mem_used>
         <stack_base_ptr>fffc8210/fffc71c0</stack_base_ptr>
         <process>ifmgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7921</mem_pid>
         <mem_alloc>15360000</mem_alloc>
         <mem_limit>790023238</mem_limit>
         <mem_used>403529728</mem_used>
         <stack_base_ptr>ff86fc50/ff86e48c</stack_base_ptr>
         <process>eltm</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7481</mem_pid>
         <mem_alloc>5160960</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>400961536</mem_used>
         <stack_base_ptr>ff8202e0/ff81f800</stack_base_ptr>
         <process>clp_mac</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7924</mem_pid>
         <mem_alloc>13787136</mem_alloc>
         <mem_limit>981622118</mem_limit>
         <mem_used>400723968</mem_used>
         <stack_base_ptr>ffc984c0/ffc9693c</stack_base_ptr>
         <process>adbm</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7246</mem_pid>
         <mem_alloc>20770816</mem_alloc>
         <mem_limit>679392243</mem_limit>
         <mem_used>400662528</mem_used>
         <stack_base_ptr>ff941fc0/ff940ca0</stack_base_ptr>
         <process>diagclient</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7237</mem_pid>
         <mem_alloc>14442496</mem_alloc>
         <mem_limit>1032787852</mem_limit>
         <mem_used>400297984</mem_used>
         <stack_base_ptr>ffcd6980/ffcd65d0</stack_base_ptr>
         <process>l3vm</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7480</mem_pid>
         <mem_alloc>7409664</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>400162816</mem_used>
         <stack_base_ptr>ff89d130/ff89c870</stack_base_ptr>
         <process>clp_l3</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8094</mem_pid>
         <mem_alloc>12918784</mem_alloc>
         <mem_limit>1170622604</mem_limit>
         <mem_used>398573568</mem_used>
         <stack_base_ptr>ffbd8e50/ffbd8580</stack_base_ptr>
         <process>m2rib</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7479</mem_pid>
         <mem_alloc>5124096</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>398258176</mem_used>
         <stack_base_ptr>ff9b7a30/ff9b6ed0</stack_base_ptr>
         <process>clp_fwd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7483</mem_pid>
         <mem_alloc>5144576</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>397557760</mem_used>
         <stack_base_ptr>ff9bc5f0/ff9bbd50</stack_base_ptr>
         <process>clp_xbar</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7280</mem_pid>
         <mem_alloc>7356416</mem_alloc>
         <mem_limit>1632385638</mem_limit>
         <mem_used>396648448</mem_used>
         <stack_base_ptr>ffb300f0/ffb2ee40</stack_base_ptr>
         <process>aclmgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>6951</mem_pid>
         <mem_alloc>12042240</mem_alloc>
         <mem_limit>781691046</mem_limit>
         <mem_used>396578816</mem_used>
         <stack_base_ptr>ff8e78d0/ff8e32dc</stack_base_ptr>
         <process>syslogd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7907</mem_pid>
         <mem_alloc>8450048</mem_alloc>
         <mem_limit>836465388</mem_limit>
         <mem_used>395792384</mem_used>
         <stack_base_ptr>ffe4f570/ffe4dd6c</stack_base_ptr>
         <process>sim</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8004</mem_pid>
         <mem_alloc>5267456</mem_alloc>
         <mem_limit>985596057</mem_limit>
         <mem_used>395567104</mem_used>
         <stack_base_ptr>ff9444e0/ff9426dc</stack_base_ptr>
         <process>copp</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7953</mem_pid>
         <mem_alloc>7303168</mem_alloc>
         <mem_limit>780382592</mem_limit>
         <mem_used>395427840</mem_used>
         <stack_base_ptr>ffde3cc0/ffde1f3c</stack_base_ptr>
         <process>eth_port_channel</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7274</mem_pid>
         <mem_alloc>13705216</mem_alloc>
         <mem_limit>849395993</mem_limit>
         <mem_used>395317248</mem_used>
         <stack_base_ptr>ffe63f10/ffe6349c</stack_base_ptr>
         <process>device_test</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7964</mem_pid>
         <mem_alloc>8871936</mem_alloc>
         <mem_limit>780256435</mem_limit>
         <mem_used>393961472</mem_used>
         <stack_base_ptr>ffc285c0/ffc27580</stack_base_ptr>
         <process>lacp</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7196</mem_pid>
         <mem_alloc>5419008</mem_alloc>
         <mem_limit>781336441</mem_limit>
         <mem_used>393887744</mem_used>
         <stack_base_ptr>ff8a5a40/ff8a5308</stack_base_ptr>
         <process>vman</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8084</mem_pid>
         <mem_alloc>5951488</mem_alloc>
         <mem_limit>814067443</mem_limit>
         <mem_used>393633792</mem_used>
         <stack_base_ptr>ffa84770/ffa829bc</stack_base_ptr>
         <process>interface-vlan</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7910</mem_pid>
         <mem_alloc>4145152</mem_alloc>
         <mem_limit>784765203</mem_limit>
         <mem_used>392970240</mem_used>
         <stack_base_ptr>ffec13d0/ffebf81c</stack_base_ptr>
         <process>pltfm_config</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7912</mem_pid>
         <mem_alloc>6500352</mem_alloc>
         <mem_limit>1031733542</mem_limit>
         <mem_used>392921088</mem_used>
         <stack_base_ptr>ffd5b220/ffd5a200</stack_base_ptr>
         <process>plcmgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8059</mem_pid>
         <mem_alloc>6844416</mem_alloc>
         <mem_limit>1417823897</mem_limit>
         <mem_used>392826880</mem_used>
         <stack_base_ptr>ffa687f0/ffa67b70</stack_base_ptr>
         <process>spm</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7449</mem_pid>
         <mem_alloc>10465280</mem_alloc>
         <mem_limit>794972710</mem_limit>
         <mem_used>392654848</mem_used>
         <stack_base_ptr>ffd343e0/ffd3348c</stack_base_ptr>
         <process>ExceptionLog</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7221</mem_pid>
         <mem_alloc>13557760</mem_alloc>
         <mem_limit>1135574387</mem_limit>
         <mem_used>391614464</mem_used>
         <stack_base_ptr>ff8d47b0/ff8d4010</stack_base_ptr>
         <process>crdcfg_server</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7544</mem_pid>
         <mem_alloc>9256960</mem_alloc>
         <mem_limit>1084764595</mem_limit>
         <mem_used>391540736</mem_used>
         <stack_base_ptr>ffeb9ae0/ffeb7f6c</stack_base_ptr>
         <process>cfs</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7909</mem_pid>
         <mem_alloc>4907008</mem_alloc>
         <mem_limit>766188121</mem_limit>
         <mem_used>391376896</mem_used>
         <stack_base_ptr>ff880160/ff87f100</stack_base_ptr>
         <process>pltfm_debug</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7916</mem_pid>
         <mem_alloc>3571712</mem_alloc>
         <mem_limit>764926553</mem_limit>
         <mem_used>390905856</mem_used>
         <stack_base_ptr>ffbbb920/ffbba8e0</stack_base_ptr>
         <process>monitorc</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8063</mem_pid>
         <mem_alloc>3350528</mem_alloc>
         <mem_limit>767620902</mem_limit>
         <mem_used>390868992</mem_used>
         <stack_base_ptr>ffca9c60/ffca8bd0</stack_base_ptr>
         <process>mcm</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7430</mem_pid>
         <mem_alloc>7335936</mem_alloc>
         <mem_limit>792551372</mem_limit>
         <mem_used>390787072</mem_used>
         <stack_base_ptr>ffcde6a0/ffcdc310</stack_base_ptr>
         <process>module</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7228</mem_pid>
         <mem_alloc>3219456</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>390320128</mem_used>
         <stack_base_ptr>ffc35590/ffc337ec</stack_base_ptr>
         <process>cert_enroll</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7922</mem_pid>
         <mem_alloc>8499200</mem_alloc>
         <mem_limit>1030426918</mem_limit>
         <mem_used>389902336</mem_used>
         <stack_base_ptr>ff809430/ff809310</stack_base_ptr>
         <process>ecp</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7058</mem_pid>
         <mem_alloc>7053312</mem_alloc>
         <mem_limit>751084153</mem_limit>
         <mem_used>389844992</mem_used>
         <stack_base_ptr>ff841330/ff84038c</stack_base_ptr>
         <process>bloggerd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7043</mem_pid>
         <mem_alloc>8032256</mem_alloc>
         <mem_limit>1026326822</mem_limit>
         <mem_used>389283840</mem_used>
         <stack_base_ptr>fff510f0/fff50b30</stack_base_ptr>
         <process>smm</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7469</mem_pid>
         <mem_alloc>3936256</mem_alloc>
         <mem_limit>756131622</mem_limit>
         <mem_used>389009408</mem_used>
         <stack_base_ptr>ffe66d80/ffe65d40</stack_base_ptr>
         <process>ncpinframgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8065</mem_pid>
         <mem_alloc>3219456</mem_alloc>
         <mem_limit>1030332300</mem_limit>
         <mem_used>388907008</mem_used>
         <stack_base_ptr>ff95a010/ff95826c</stack_base_ptr>
         <process>l2pt</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7914</mem_pid>
         <mem_alloc>5079040</mem_alloc>
         <mem_limit>1030927040</mem_limit>
         <mem_used>388476928</mem_used>
         <stack_base_ptr>ffe47570/ffe459bc</stack_base_ptr>
         <process>pfstat</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7052</mem_pid>
         <mem_alloc>2711552</mem_alloc>
         <mem_limit>761488780</mem_limit>
         <mem_used>388321280</mem_used>
         <stack_base_ptr>ffc05810/ffc05168</stack_base_ptr>
         <process>licmgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7223</mem_pid>
         <mem_alloc>2195456</mem_alloc>
         <mem_limit>745615552</mem_limit>
         <mem_used>388001792</mem_used>
         <stack_base_ptr>ffd713b0/ffd70380</stack_base_ptr>
         <process>clk_mgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8058</mem_pid>
         <mem_alloc>3067904</mem_alloc>
         <mem_limit>768625651</mem_limit>
         <mem_used>386756608</mem_used>
         <stack_base_ptr>ffe04070/ffe03040</stack_base_ptr>
         <process>u2</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7925</mem_pid>
         <mem_alloc>3485696</mem_alloc>
         <mem_limit>1030571097</mem_limit>
         <mem_used>386428928</mem_used>
         <stack_base_ptr>ffac10c0/ffac0070</stack_base_ptr>
         <process>acllog</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7219</mem_pid>
         <mem_alloc>2494464</mem_alloc>
         <mem_limit>846823296</mem_limit>
         <mem_used>386342912</mem_used>
         <stack_base_ptr>ff9e9d60/ff9e8d60</stack_base_ptr>
         <process>epld_auto</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7055</mem_pid>
         <mem_alloc>3289088</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>386281472</mem_used>
         <stack_base_ptr>ffc62ee0/ffc61f4c</stack_base_ptr>
         <process>feature-mgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7214</mem_pid>
         <mem_alloc>5406720</mem_alloc>
         <mem_limit>665645657</mem_limit>
         <mem_used>386166784</mem_used>
         <stack_base_ptr>ffad9d60/ffad9ba0</stack_base_ptr>
         <process>fmd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8188</mem_pid>
         <mem_alloc>4378624</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>386154496</mem_used>
         <stack_base_ptr>fff5e420/fff5d800</stack_base_ptr>
         <process>port_client</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7041</mem_pid>
         <mem_alloc>2674688</mem_alloc>
         <mem_limit>967294310</mem_limit>
         <mem_used>385753088</mem_used>
         <stack_base_ptr>ffa7e820/ffa7e0fc</stack_base_ptr>
         <process>vshd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7210</mem_pid>
         <mem_alloc>2859008</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>385138688</mem_used>
         <stack_base_ptr>ffe54f40/ffe54690</stack_base_ptr>
         <process>patch-installer</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7207</mem_pid>
         <mem_alloc>3170304</mem_alloc>
         <mem_limit>756517555</mem_limit>
         <mem_used>385015808</mem_used>
         <stack_base_ptr>ffa1ddf0/ffa1d92c</stack_base_ptr>
         <process>res_mgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7215</mem_pid>
         <mem_alloc>3088384</mem_alloc>
         <mem_limit>759254003</mem_limit>
         <mem_used>385011712</mem_used>
         <stack_base_ptr>ff8176b0/ff816680</stack_base_ptr>
         <process>evms</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7218</mem_pid>
         <mem_alloc>2166784</mem_alloc>
         <mem_limit>846426803</mem_limit>
         <mem_used>384905216</mem_used>
         <stack_base_ptr>ff9d7490/ff9d6ba8</stack_base_ptr>
         <process>epld_upgrade_stdby</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7911</mem_pid>
         <mem_alloc>4530176</mem_alloc>
         <mem_limit>843228672</mem_limit>
         <mem_used>384872448</mem_used>
         <stack_base_ptr>ffffb130/ffffa100</stack_base_ptr>
         <process>plsm</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7478</mem_pid>
         <mem_alloc>5320704</mem_alloc>
         <mem_limit>748634304</mem_limit>
         <mem_used>384851968</mem_used>
         <stack_base_ptr>ffa922d0/ffa912c0</stack_base_ptr>
         <process>clp_elam</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>5800</mem_pid>
         <mem_alloc>12107776</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>384692224</mem_used>
         <stack_base_ptr>fffa1960/fffa1560</stack_base_ptr>
         <process>sysmgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7224</mem_pid>
         <mem_alloc>3543040</mem_alloc>
         <mem_limit>658459225</mem_limit>
         <mem_used>384626688</mem_used>
         <stack_base_ptr>ffa49530/ffa48710</stack_base_ptr>
         <process>cli_acl</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8190</mem_pid>
         <mem_alloc>4706304</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>384536576</mem_used>
         <stack_base_ptr>ff8db0f0/ff8da080</stack_base_ptr>
         <process>xbar_client</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7220</mem_pid>
         <mem_alloc>4456448</mem_alloc>
         <mem_limit>662491737</mem_limit>
         <mem_used>383934464</mem_used>
         <stack_base_ptr>ffd1f110/ffd1e0b0</stack_base_ptr>
         <process>diagmgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7296</mem_pid>
         <mem_alloc>2801664</mem_alloc>
         <mem_limit>1021514841</mem_limit>
         <mem_used>383930368</mem_used>
         <stack_base_ptr>ff802f90/ff801f50</stack_base_ptr>
         <process>eem_policy_dir</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7227</mem_pid>
         <mem_alloc>1941504</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>383873024</mem_used>
         <stack_base_ptr>ffb19ea0/ffb189e8</stack_base_ptr>
         <process>securityd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7206</mem_pid>
         <mem_alloc>2887680</mem_alloc>
         <mem_limit>757798694</mem_limit>
         <mem_used>383840256</mem_used>
         <stack_base_ptr>fff35980/fff33fbc</stack_base_ptr>
         <process>rtd_monitor</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7962</mem_pid>
         <mem_alloc>2519040</mem_alloc>
         <mem_limit>785439705</mem_limit>
         <mem_used>383795200</mem_used>
         <stack_base_ptr>ff92dc10/ff92d860</stack_base_ptr>
         <process>eth_dstats</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7195</mem_pid>
         <mem_alloc>3661824</mem_alloc>
         <mem_limit>758778240</mem_limit>
         <mem_used>383787008</mem_used>
         <stack_base_ptr>ff835400/ff833dc0</stack_base_ptr>
         <process>vmm</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7194</mem_pid>
         <mem_alloc>2297856</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>383467520</mem_used>
         <stack_base_ptr>ffec9bb0/ffec8e3c</stack_base_ptr>
         <process>xmlma</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7213</mem_pid>
         <mem_alloc>3207168</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>383115264</mem_used>
         <stack_base_ptr>ffeb7410/ffeb6360</stack_base_ptr>
         <process>fw_app</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7202</mem_pid>
         <mem_alloc>3629056</mem_alloc>
         <mem_limit>748539686</mem_limit>
         <mem_used>382914560</mem_used>
         <stack_base_ptr>ff95e5b0/ff95d550</stack_base_ptr>
         <process>statsprofiler</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7487</mem_pid>
         <mem_alloc>2961408</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>382877696</mem_used>
         <stack_base_ptr>ffc00290/ffbffdf0</stack_base_ptr>
         <process>sensor</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7198</mem_pid>
         <mem_alloc>1925120</mem_alloc>
         <mem_limit>825476608</mem_limit>
         <mem_used>382525440</mem_used>
         <stack_base_ptr>ffb1c670/ffb1b8e0</stack_base_ptr>
         <process>vdc_mgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>6952</mem_pid>
         <mem_alloc>3170304</mem_alloc>
         <mem_limit>675189011</mem_limit>
         <mem_used>382054400</mem_used>
         <stack_base_ptr>ff949900/ff948c40</stack_base_ptr>
         <process>sdwrapd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7484</mem_pid>
         <mem_alloc>4296704</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>381542400</mem_used>
         <stack_base_ptr>ffd17070/ffd167c0</stack_base_ptr>
         <process>lit</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7229</mem_pid>
         <mem_alloc>1802240</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>381370368</mem_used>
         <stack_base_ptr>ffa8efc0/ffa8db50</stack_base_ptr>
         <process>aaa</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7230</mem_pid>
         <mem_alloc>1642496</mem_alloc>
         <mem_limit>796666816</mem_limit>
         <mem_used>381362176</mem_used>
         <stack_base_ptr>fffcdef0/fffcd1a8</stack_base_ptr>
         <process>obfl</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7023</mem_pid>
         <mem_alloc>1966080</mem_alloc>
         <mem_limit>784668403</mem_limit>
         <mem_used>381247488</mem_used>
         <stack_base_ptr>ffabe350/ffabde90</stack_base_ptr>
         <process>cmond</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7204</mem_pid>
         <mem_alloc>1331200</mem_alloc>
         <mem_limit>766877971</mem_limit>
         <mem_used>381018112</mem_used>
         <stack_base_ptr>ffeb5e90/ffeb58d0</stack_base_ptr>
         <process>sksd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7056</mem_pid>
         <mem_alloc>1982464</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>381001728</mem_used>
         <stack_base_ptr>ffd4f2a0/ffd4f080</stack_base_ptr>
         <process>confcheck</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7044</mem_pid>
         <mem_alloc>4300800</mem_alloc>
         <mem_limit>732585990</mem_limit>
         <mem_used>380825600</mem_used>
         <stack_base_ptr>fff1cab0/fff1ba90</stack_base_ptr>
         <process>session-mgr</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7200</mem_pid>
         <mem_alloc>2187264</mem_alloc>
         <mem_limit>763162188</mem_limit>
         <mem_used>380735488</mem_used>
         <stack_base_ptr>ffb33e50/ffb337b0</stack_base_ptr>
         <process>ttyd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7450</mem_pid>
         <mem_alloc>1626112</mem_alloc>
         <mem_limit>793778726</mem_limit>
         <mem_used>380723200</mem_used>
         <stack_base_ptr>ffff4e90/ffff4780</stack_base_ptr>
         <process>bootvar</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7217</mem_pid>
         <mem_alloc>2240512</mem_alloc>
         <mem_limit>923590131</mem_limit>
         <mem_used>379666432</mem_used>
         <stack_base_ptr>ffa4e4a0/ffa4d480</stack_base_ptr>
         <process>evmc</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7203</mem_pid>
         <mem_alloc>1855488</mem_alloc>
         <mem_limit>744917184</mem_limit>
         <mem_used>379441152</mem_used>
         <stack_base_ptr>ffb30060/ffb2f000</stack_base_ptr>
         <process>snmpmib_proc</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7222</mem_pid>
         <mem_alloc>1335296</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>379432960</mem_used>
         <stack_base_ptr>fffdbce0/fffdb6a0</stack_base_ptr>
         <process>core-dmon</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7057</mem_pid>
         <mem_alloc>2658304</mem_alloc>
         <mem_limit>746850086</mem_limit>
         <mem_used>379191296</mem_used>
         <stack_base_ptr>fff2dda0/fff2d1b0</stack_base_ptr>
         <process>capability</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7053</mem_pid>
         <mem_alloc>1368064</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>378785792</mem_used>
         <stack_base_ptr>fff99f60/fff996f0</stack_base_ptr>
         <process>fs-daemon</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7045</mem_pid>
         <mem_alloc>2404352</mem_alloc>
         <mem_limit>1035634828</mem_limit>
         <mem_used>378720256</mem_used>
         <stack_base_ptr>ffd32e00/ffd329d0</stack_base_ptr>
         <process>psshelper</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7059</mem_pid>
         <mem_alloc>2260992</mem_alloc>
         <mem_limit>1035477132</mem_limit>
         <mem_used>378621952</mem_used>
         <stack_base_ptr>ffeb19b0/ffeb1580</stack_base_ptr>
         <process>psshelper_gsvc</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7211</mem_pid>
         <mem_alloc>1765376</mem_alloc>
         <mem_limit>818026809</mem_limit>
         <mem_used>378179584</mem_used>
         <stack_base_ptr>fff058e0/fff046a0</stack_base_ptr>
         <process>mvsh</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7193</mem_pid>
         <mem_alloc>1839104</mem_alloc>
         <mem_limit>922355596</mem_limit>
         <mem_used>378155008</mem_used>
         <stack_base_ptr>ff95e1b0/ff95d170</stack_base_ptr>
         <process>xmpp</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7451</mem_pid>
         <mem_alloc>1220608</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>377483264</mem_used>
         <stack_base_ptr>ffef7380/ffef70e0</stack_base_ptr>
         <process>cardclient</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>6953</mem_pid>
         <mem_alloc>946176</mem_alloc>
         <mem_limit>745502912</mem_limit>
         <mem_used>377434112</mem_used>
         <stack_base_ptr>ffe5bc90/ffe5ac18</stack_base_ptr>
         <process>pfm_dummy</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7557</mem_pid>
         <mem_alloc>2609152</mem_alloc>
         <mem_limit>472988876</mem_limit>
         <mem_used>375205888</mem_used>
         <stack_base_ptr>ff9589e0/ff954c0c</stack_base_ptr>
         <process>dcos-xinetd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7594</mem_pid>
         <mem_alloc>1581056</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>374321152</mem_used>
         <stack_base_ptr>fff418a0/fff3dacc</stack_base_ptr>
         <process>ntpd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7208</mem_pid>
         <mem_alloc>3923968</mem_alloc>
         <mem_limit>2022446694</mem_limit>
         <mem_used>371843072</mem_used>
         <stack_base_ptr>fffc44e0/fffc34ac</stack_base_ptr>
         <process>plugin</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7209</mem_pid>
         <mem_alloc>491520</mem_alloc>
         <mem_limit>774602892</mem_limit>
         <mem_used>352190464</mem_used>
         <stack_base_ptr>ffa71a00/ffa71230</stack_base_ptr>
         <process>plog_sup</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7225</mem_pid>
         <mem_alloc>618496</mem_alloc>
         <mem_limit>497188876</mem_limit>
         <mem_used>288452608</mem_used>
         <stack_base_ptr>ffc77bf0/ffc76ff8</stack_base_ptr>
         <process>bios_daemon</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7201</mem_pid>
         <mem_alloc>12718080</mem_alloc>
         <mem_limit>747826252</mem_limit>
         <mem_used>287657984</mem_used>
         <stack_base_ptr>ffec1640/ffec14ac</stack_base_ptr>
         <process>sysinfo</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7199</mem_pid>
         <mem_alloc>9895936</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>285274112</mem_used>
         <stack_base_ptr>ffa70360/ffa6e03c</stack_base_ptr>
         <process>usbhsd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7212</mem_pid>
         <mem_alloc>454656</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>276865024</mem_used>
         <stack_base_ptr>ffccce40/ffccca10</stack_base_ptr>
         <process>mping_server</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7545</mem_pid>
         <mem_alloc>450560</mem_alloc>
         <mem_limit>657001241</mem_limit>
         <mem_used>275283968</mem_used>
         <stack_base_ptr>fff1cd00/fff1c8e8</stack_base_ptr>
         <process>ip_dummy</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7546</mem_pid>
         <mem_alloc>450560</mem_alloc>
         <mem_limit>657001241</mem_limit>
         <mem_used>275283968</mem_used>
         <stack_base_ptr>ffe94160/ffe93d48</stack_base_ptr>
         <process>ipv6_dummy</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7550</mem_pid>
         <mem_alloc>450560</mem_alloc>
         <mem_limit>657001241</mem_limit>
         <mem_used>275283968</mem_used>
         <stack_base_ptr>ffe11b40/ffe11728</stack_base_ptr>
         <process>tcpudp_dummy</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7068</mem_pid>
         <mem_alloc>18800640</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>22335488</mem_used>
         <stack_base_ptr>ff910970/ff910744</stack_base_ptr>
         <process>cisco</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8581</mem_pid>
         <mem_alloc>14098432</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>19865600</mem_used>
         <stack_base_ptr>ffb93470/ffb92e90</stack_base_ptr>
         <process>libvirtd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8576</mem_pid>
         <mem_alloc>806912</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>10641408</mem_used>
         <stack_base_ptr>ff9566f0/ff9544e0</stack_base_ptr>
         <process>login</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>6949</mem_pid>
         <mem_alloc>1069056</mem_alloc>
         <mem_limit>613788876</mem_limit>
         <mem_used>7942144</mem_used>
         <stack_base_ptr>fff1a1b0/fff19fe0</stack_base_ptr>
         <process>xinetd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7189</mem_pid>
         <mem_alloc>614400</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>7217152</mem_used>
         <stack_base_ptr>ffc71700/ffc71370</stack_base_ptr>
         <process>dhcpd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>6950</mem_pid>
         <mem_alloc>708608</mem_alloc>
         <mem_limit>354188876</mem_limit>
         <mem_used>7168000</mem_used>
         <stack_base_ptr>ff9264c0/ff925ee0</stack_base_ptr>
         <process>tftpd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7906</mem_pid>
         <mem_alloc>708608</mem_alloc>
         <mem_limit>354188876</mem_limit>
         <mem_used>7168000</mem_used>
         <stack_base_ptr>ffc67f80/ffc679a0</stack_base_ptr>
         <process>tftp_aa</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>7051</mem_pid>
         <mem_alloc>425984</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>4272128</mem_used>
         <stack_base_ptr>ff88ead0/ff88d0d0</stack_base_ptr>
         <process>lmgrd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>8577</mem_pid>
         <mem_alloc>102400</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>3264512</mem_used>
         <stack_base_ptr>ffc61af0/ffc612d8</stack_base_ptr>
         <process>sh</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>5787</mem_pid>
         <mem_alloc>253952</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>2711552</mem_used>
         <stack_base_ptr>fff26650/fff26340</stack_base_ptr>
         <process>rpc.mountd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>2851</mem_pid>
         <mem_alloc>196608</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>2461696</mem_used>
         <stack_base_ptr>ffb6a310/ffb6a1a0</stack_base_ptr>
         <process>mcelog</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>5767</mem_pid>
         <mem_alloc>184320</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>2142208</mem_used>
         <stack_base_ptr>ffbd9400/ffbd9190</stack_base_ptr>
         <process>rpc.statd</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>5764</mem_pid>
         <mem_alloc>167936</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>1974272</mem_used>
         <stack_base_ptr>ffa56720/ffa565a8</stack_base_ptr>
         <process>portmap</process>
        </ROW_process_memory>
        <ROW_process_memory>
         <mem_pid>1</mem_pid>
         <mem_alloc>167936</mem_alloc>
         <mem_limit>0</mem_limit>
         <mem_used>1953792</mem_used>
         <stack_base_ptr>ff9486d0/ff948030</stack_base_ptr>
         <process>init</process>
        </ROW_process_memory>
       </TABLE_process_memory>
       <sum_mem_malloced>2391699456</sum_mem_malloced>
      </__readonly__>
     </sort>
    </memory>
   </processes>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show processes memory sort **

PID    MemAlloc  MemLimit    MemUsed     StackBase/Ptr      Process
-----  --------  ----------  ----------  -----------------  ----------------
 8061  125378560  1276765145  777396224   ffd11730/ffd11610  mrib
 7497  77430784  1299995315  755855360   fffdaee0/fffda930  netstack
 7919  151097344  1417398720  736837632   ffec5800/ffec52d0  igmp
 7952  208961536  885737344   719724544   ffcbb4f0/ffcb996c  monitor
 7375  83218432  1253813747  719196160   ff965960/ff9655c0  arp
 8079  65646592  1120519936  698863616   ffffbad0/ffffb9e0  mcastfwd
 8064  65372160  1099564531  636751872   ffc31e10/ffc31cf0  m6rib
 7376  18001920  1057774681  595214336   ffeb1fe0/ffeb1a6c  icmpv6
 7908  16080896  1055396134  589991936   ffc05c60/ffc05b40  rpm
 7966  15687680  864989900   584257536   ffa34fb0/ffa333cc  ethpm
 7290  34295808  1134731020  583098368   ffa4ac70/ffa4a8d0  adjmgr
 8066   7815168  1144994086  582615040   ffbd6cd0/ffbd206c  hsrp_engine
 8057   8949760  1194218316  574808064   ff8f16f0/ff8efd8c  vpc
 7547   3346432  1040356441  559476736   ffe75b70/ffe7178c  ntp
 7548   4050944  1039333670  558772224   ffe8c2f0/ffe8a77c  otm
 7291  27435008  1057851276  556855296   ffc49790/ffc49650  u6rib
 7549  25989120  915360819   552292352   ffd60530/ffd5b2dc  snmpd
 7081  63733760  1701749350  551370752   ffed9dd0/ffed825c  port-profile
 7471  27865088  1136921280  540000256   ffa05eb0/ffa05da0  pktmgr
 7486  27815936  1034706534  532971520   ff8a78e0/ff8a6e10  sac_usd
 7238  17166336  1628092416  528625664   ffa860b0/ffa85e70  urib
 8060   3043328  1038180236  524177408   ffb45810/ffb43c9c  sal
 7542   3522560  876446796   512749568   ffaa8760/ffaa759c  cdp
 7541   3506176  902919520   511770624   ff938540/ff93328c  radius
 7488  127524864  0           508030976   ffe735b0/ffe72cf0  sm15_usd
 7078  19128320  1412394368  504541184   ff875400/ff8747ec  clis
 7968   5267456  774175731   500441088   ffb5bf70/ffb5a3ec  mhbfd_tracker
 9170  12414976  0           496939008   ff9c36b0/ff9c32fc  vsh
 7226   2916352  0           495820800   fffae400/fffad7f8  ascii-cfg
 7048  29364224  0           494329856   ffe5c660/ffe5c530  pdsd
 7042   5017600  1033477209  490401792   ffc5d6a0/ffc5c470  vpc_config_sync
 7049   4595712  1303061478  486293504   fff20e40/fff1e29c  mmode
 7970   9138176  1077199411  484216832   ff8a66a0/ff8a5b3c  stp
 7917  77000704  997711475   461725696   ffbc8a60/ffbc6e5c  lim
 8075  25661440  1037234880  453365760   ff99f020/ff99d3ac  ufdm
 7954  51900416  823596787   446259200   ff8564e0/ff85510c  vlan_mgr
 7918  47632384  1074409881  433668096   ff8dc220/ff8db790  l2rib
 7963  34107392  1653169971  430669824   ffc95d50/ffc94750  ipqosmgr
 7965  33157120  846688972   427773952   ff83ca50/ff83bc60  diag_port_lb
 7967  20111360  1047368608  425996288   ff8aab80/ff8a8ddc  l2fm
 7969  33533952  778357747   425009152   fff8efe0/fff8d44c  aclqos
 8131  39665664  866625408   424820736   ffe05040/ffe036fc  vntag_mgr
 7368   8511488  1056559398  419692544   fffcf6a0/fffcf120  npacl
 7913  28327936  870378572   418869248   ffab48c0/ffab3c90  pixmc
 7046  30625792  977183539   417177600   ff9bc0b0/ff9bb470  pixm_vl
 7409  19988480  0           416063488   ff939250/ff931670  xbar
 6954  24633344  0           415715328   ffe7dbd0/ffe7b810  platform
 7047  20439040  988731392   413450240   ff85f7d0/ff85eb90  pixm_gl
 8132  22032384  787878080   412332032   fffab7c0/fffaa8f0  fex
 7920  10510336  787747417   411803648   ffce3080/ffce14fc  giscm
 7600  24272896  884710886   410439680   ffd70040/ffd6fb0c  callhome
 8062  10600448  1147257408  406286336   fff96640/fff94a3c  mfdm
 8189  15745024  774428864   406118400   ff9c7b00/ff9c7850  statsclient
 7452   9367552  777900006   404787200   fffc8210/fffc71c0  ifmgr
 7921  15360000  790023238   403529728   ff86fc50/ff86e48c  eltm
 7481   5160960  0           400961536   ff8202e0/ff81f800  clp_mac
 7924  13787136  981622118   400723968   ffc984c0/ffc9693c  adbm
 7246  20770816  679392243   400662528   ff941fc0/ff940ca0  diagclient
 7237  14442496  1032787852  400297984   ffcd6980/ffcd65d0  l3vm
 7480   7409664  0           400162816   ff89d130/ff89c870  clp_l3
 8094  12918784  1170622604  398573568   ffbd8e50/ffbd8580  m2rib
 7479   5124096  0           398258176   ff9b7a30/ff9b6ed0  clp_fwd
 7483   4763648  0           397176832   ff9bc5f0/ff9bbd50  clp_xbar
 7280   7356416  1632385638  396648448   ffb300f0/ffb2ee40  aclmgr
 6951  12042240  781691046   396578816   ff8e78d0/ff8e32dc  syslogd
 7907   8450048  836465388   395792384   ffe4f570/ffe4dd6c  sim
 8004   5267456  985596057   395567104   ff9444e0/ff9426dc  copp
 7953   7303168  780382592   395427840   ffde3cc0/ffde1f3c  eth_port_channel
 7274  13705216  849395993   395317248   ffe63f10/ffe6349c  device_test
 7964   8871936  780256435   393961472   ffc285c0/ffc27580  lacp
 7196   5419008  781336441   393887744   ff8a5a40/ff8a5308  vman
 8084   5951488  814067443   393633792   ffa84770/ffa829bc  interface-vlan
 7910   4145152  784765203   392970240   ffec13d0/ffebf81c  pltfm_config
 7912   6500352  1031733542  392921088   ffd5b220/ffd5a200  plcmgr
 8059   6844416  1417823897  392826880   ffa687f0/ffa67b70  spm
 7449  10465280  794972710   392654848   ffd343e0/ffd3348c  ExceptionLog
 7221  13557760  1135574387  391614464   ff8d47b0/ff8d4010  crdcfg_server
 7544   9256960  1084764595  391540736   ffeb9ae0/ffeb7f6c  cfs
 7909   4907008  766188121   391376896   ff880160/ff87f100  pltfm_debug
 7916   3571712  764926553   390905856   ffbbb920/ffbba8e0  monitorc
 8063   3350528  767620902   390868992   ffca9c60/ffca8bd0  mcm
 7430   7335936  792551372   390787072   ffcde6a0/ffcdc310  module
 7228   3219456  0           390320128   ffc35590/ffc337ec  cert_enroll
 7922   8499200  1030426918  389902336   ff809430/ff809310  ecp
 7058   7053312  751084153   389844992   ff841330/ff84038c  bloggerd
 7043   8032256  1026326822  389283840   fff510f0/fff50b30  smm
 7469   3936256  756131622   389009408   ffe66d80/ffe65d40  ncpinframgr
 8065   3219456  1030332300  388907008   ff95a010/ff95826c  l2pt
 7914   5079040  1030927040  388476928   ffe47570/ffe459bc  pfstat
 7052   2711552  761488780   388321280   ffc05810/ffc05168  licmgr
 7223   2195456  745615552   388001792   ffd713b0/ffd70380  clk_mgr
 8058   3067904  768625651   386756608   ffe04070/ffe03040  u2
 7925   3485696  1030571097  386428928   ffac10c0/ffac0070  acllog
 7219   2494464  846823296   386342912   ff9e9d60/ff9e8d60  epld_auto
 7055   3289088  0           386281472   ffc62ee0/ffc61f4c  feature-mgr
 7214   5406720  665645657   386166784   ffad9d60/ffad9ba0  fmd
 8188   4378624  0           386154496   fff5e420/fff5d800  port_client
 7041   2674688  967294310   385753088   ffa7e820/ffa7e0fc  vshd
 7210   2859008  0           385138688   ffe54f40/ffe54690  patch-installer
 7207   3170304  756517555   385015808   ffa1ddf0/ffa1d92c  res_mgr
 7215   3088384  759254003   385011712   ff8176b0/ff816680  evms
 7218   2166784  846426803   384905216   ff9d7490/ff9d6ba8  epld_upgrade_stdby
 7911   4530176  843228672   384872448   ffffb130/ffffa100  plsm
 7478   5320704  748634304   384851968   ffa922d0/ffa912c0  clp_elam
 5800  12107776  0           384692224   fffa1960/fffa1560  sysmgr
 7224   3543040  658459225   384626688   ffa49530/ffa48710  cli_acl
 8190   4706304  0           384536576   ff8db0f0/ff8da080  xbar_client
 7220   4456448  662491737   383934464   ffd1f110/ffd1e0b0  diagmgr
 7296   2801664  1021514841  383930368   ff802f90/ff801f50  eem_policy_dir
 7227   1941504  0           383873024   ffb19ea0/ffb189e8  securityd
 7206   2887680  757798694   383840256   fff35980/fff33fbc  rtd_monitor
 7962   2519040  785439705   383795200   ff92dc10/ff92d860  eth_dstats
 7195   3661824  758778240   383787008   ff835400/ff833dc0  vmm
 7194   2297856  0           383467520   ffec9bb0/ffec8e3c  xmlma
 7213   3207168  0           383115264   ffeb7410/ffeb6360  fw_app
 7202   3629056  748539686   382914560   ff95e5b0/ff95d550  statsprofiler
 7487   2961408  0           382877696   ffc00290/ffbffdf0  sensor
 7198   1925120  825476608   382525440   ffb1c670/ffb1b8e0  vdc_mgr
 6952   3170304  675189011   382054400   ff949900/ff948c40  sdwrapd
 7484   4296704  0           381542400   ffd17070/ffd167c0  lit
 7229   1802240  0           381370368   ffa8efc0/ffa8db50  aaa
 7230   1642496  796666816   381362176   fffcdef0/fffcd1a8  obfl
 7023   1966080  784668403   381247488   ffabe350/ffabde90  cmond
 7204   1331200  766877971   381018112   ffeb5e90/ffeb58d0  sksd
 7056   1982464  0           381001728   ffd4f2a0/ffd4f080  confcheck
 7044   4300800  732585990   380825600   fff1cab0/fff1ba90  session-mgr
 7200   2187264  763162188   380735488   ffb33e50/ffb337b0  ttyd
 7450   1626112  793778726   380723200   ffff4e90/ffff4780  bootvar
 7217   2240512  923590131   379666432   ffa4e4a0/ffa4d480  evmc
 7203   1855488  744917184   379441152   ffb30060/ffb2f000  snmpmib_proc
 7222   1335296  0           379432960   fffdbce0/fffdb6a0  core-dmon
 7057   2658304  746850086   379191296   fff2dda0/fff2d1b0  capability
 7053   1368064  0           378785792   fff99f60/fff996f0  fs-daemon
 7045   2404352  1035634828  378720256   ffd32e00/ffd329d0  psshelper
 7059   2260992  1035477132  378621952   ffeb19b0/ffeb1580  psshelper_gsvc
 7211   1765376  818026809   378179584   fff058e0/fff046a0  mvsh
 7193   1839104  922355596   378155008   ff95e1b0/ff95d170  xmpp
 7451   1220608  0           377483264   ffef7380/ffef70e0  cardclient
 6953    946176  745502912   377434112   ffe5bc90/ffe5ac18  pfm_dummy
 7557   2609152  472988876   375205888   ff9589e0/ff954c0c  dcos-xinetd
 7594   1581056  0           374321152   fff418a0/fff3dacc  ntpd
 7208   3923968  2022446694  371843072   fffc44e0/fffc34ac  plugin
 7209    491520  774602892   352190464   ffa71a00/ffa71230  plog_sup
 7225    618496  497188876   288452608   ffc77bf0/ffc76ff8  bios_daemon
 7201  12718080  747826252   287657984   ffec1640/ffec14ac  sysinfo
 7199   9895936  0           285274112   ffa70360/ffa6e03c  usbhsd
 7212    454656  0           276865024   ffccce40/ffccca10  mping_server
 7545    450560  657001241   275283968   fff1cd00/fff1c8e8  ip_dummy
 7546    450560  657001241   275283968   ffe94160/ffe93d48  ipv6_dummy
 7550    450560  657001241   275283968   ffe11b40/ffe11728  tcpudp_dummy
 7068  18800640  0           22335488    ff910970/ff910744  cisco
 8581  14098432  0           19865600    ffb93470/ffb92e90  libvirtd
 8576    806912  0           10641408    ff9566f0/ff9544e0  login
 6949   1069056  613788876   7942144     fff1a1b0/fff19fe0  xinetd
 7189    614400  0           7217152     ffc71700/ffc71370  dhcpd
 6950    708608  354188876   7168000     ff9264c0/ff925ee0  tftpd
 7906    708608  354188876   7168000     ffc67f80/ffc679a0  tftp_aa
 7051    425984  0           4272128     ff88ead0/ff88d0d0  lmgrd
 8577    102400  0           3264512     ffc61af0/ffc612d8  sh
 5787    253952  0           2711552     fff26650/fff26340  rpc.mountd
 2851    196608  0           2461696     ffb6a310/ffb6a1a0  mcelog
 5767    184320  0           2142208     ffbd9400/ffbd9190  rpc.statd
 5764    167936  0           1974272     ffa56720/ffa565a8  portmap
    1    167936  0           1953792     ff9486d0/ff948030  init

All processes: MemAlloc = 2391318528

show processes vdc access

show processes vdc access1
 
import requests
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 processes vdc access1”,
  "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)
{
  "TABLE_processes": {
    "ROW_processes": [
      {
        "pid": 5800, 
        "state": "S", 
        "pc": "f7202f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "sysmgr"
      }, 
      {
        "pid": 6954, 
        "state": "S", 
        "pc": "f6bb5f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "platform"
      }, 
      {
        "pid": 7047, 
        "state": "S", 
        "pc": "f70f3f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "pixm_gl"
      }, 
      {
        "pid": 7048, 
        "state": "S", 
        "pc": "f74f11a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "pdsd"
      }, 
      {
        "pid": 7052, 
        "state": "S", 
        "pc": "48cc9634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "licmgr"
      }, 
      {
        "pid": 7053, 
        "state": "S", 
        "pc": "f744af38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "fs-daemon"
      }, 
      {
        "pid": 7058, 
        "state": "S", 
        "pc": "f6431b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "bloggerd"
      }, 
      {
        "pid": 7198, 
        "state": "S", 
        "pc": "f6945f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "vdc_mgr"
      }, 
      {
        "pid": 7201, 
        "state": "S", 
        "pc": "f75e7f67", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "sysinfo"
      }, 
      {
        "pid": 7207, 
        "state": "S", 
        "pc": "f741f3b3", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "res_mgr"
      }, 
      {
        "pid": 7208, 
        "state": "S", 
        "pc": "f737df67", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "plugin"
      }, 
      {
        "pid": 7220, 
        "state": "S", 
        "pc": "f7488f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "diagmgr"
      }, 
      {
        "pid": 7223, 
        "state": "S", 
        "pc": "f7491f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "clk_mgr"
      }, 
      {
        "pid": 7246, 
        "state": "S", 
        "pc": "f7217f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "diagclient"
      }, 
      {
        "pid": 7409, 
        "state": "S", 
        "pc": "f6e7cf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "xbar"
      }, 
      {
        "pid": 7430, 
        "state": "S", 
        "pc": "f728af38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "module"
      }, 
      {
        "pid": 7452, 
        "state": "S", 
        "pc": "f6efcf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "ifmgr"
      }, 
      {
        "pid": 7907, 
        "state": "S", 
        "pc": "f6646b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "sim"
      }, 
      {
        "pid": 7909, 
        "state": "S", 
        "pc": "f7328f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "pltfm_debug"
      }, 
      {
        "pid": 7910, 
        "state": "S", 
        "pc": "f6456b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "pltfm_config"
      }, 
      {
        "pid": 7913, 
        "state": "S", 
        "pc": "f71eff38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "pixmc"
      }, 
      {
        "pid": 7916, 
        "state": "S", 
        "pc": "f724ef38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "monitorc"
      }, 
      {
        "pid": 7920, 
        "state": "S", 
        "pc": "f6533b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "giscm"
      }, 
      {
        "pid": 7965, 
        "state": "S", 
        "pc": "f70f5f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VG", 
        "process": "diag_port_lb"
      }, 
      {
        "pid": 10332, 
        "state": "S", 
        "pc": "f639eb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "syslogd"
      }, 
      {
        "pid": 10336, 
        "state": "S", 
        "pc": "f739bf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "confcheck"
      }, 
      {
        "pid": 10337, 
        "state": "S", 
        "pc": "f6584b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "feature-mgr"
      }, 
      {
        "pid": 10338, 
        "state": "S", 
        "pc": "f62b9b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "mmode"
      }, 
      {
        "pid": 10339, 
        "state": "S", 
        "pc": "f70bef38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "pixm_vl"
      }, 
      {
        "pid": 10340, 
        "state": "S", 
        "pc": "f6abff38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "psshelper"
      }, 
      {
        "pid": 10341, 
        "state": "S", 
        "pc": "f7518f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "session-mgr"
      }, 
      {
        "pid": 10342, 
        "state": "S", 
        "pc": "f68f11a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "smm"
      }, 
      {
        "pid": 10343, 
        "state": "S", 
        "pc": "f7245f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "vpc_config_sync"
      }, 
      {
        "pid": 10344, 
        "state": "S", 
        "pc": "f644cb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "vshd"
      }, 
      {
        "pid": 10349, 
        "state": "S", 
        "pc": "f62a3b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "clis"
      }, 
      {
        "pid": 10351, 
        "state": "S", 
        "pc": "f60c4b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "port-profile"
      }, 
      {
        "pid": 10359, 
        "state": "S", 
        "pc": "f693df38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "aaa"
      }, 
      {
        "pid": 10360, 
        "state": "S", 
        "pc": "f60afb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "cert_enroll"
      }, 
      {
        "pid": 10361, 
        "state": "S", 
        "pc": "f640f634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "securityd"
      }, 
      {
        "pid": 10362, 
        "state": "S", 
        "pc": "f5e56634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ascii-cfg"
      }, 
      {
        "pid": 10363, 
        "state": "S", 
        "pc": "f74fdf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "cli_acl"
      }, 
      {
        "pid": 10364, 
        "state": "S", 
        "pc": "f73d3f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "evmc"
      }, 
      {
        "pid": 10366, 
        "state": "S", 
        "pc": "f72caf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "evms"
      }, 
      {
        "pid": 10367, 
        "state": "S", 
        "pc": "f73178ad", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "fmd"
      }, 
      {
        "pid": 10368, 
        "state": "S", 
        "pc": "f73dff38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "mping_server"
      }, 
      {
        "pid": 10369, 
        "state": "S", 
        "pc": "f7345f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "mvsh"
      }, 
      {
        "pid": 10371, 
        "state": "S", 
        "pc": "f68c6f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "sksd"
      }, 
      {
        "pid": 10372, 
        "state": "S", 
        "pc": "f6b42f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "snmpmib_proc"
      }, 
      {
        "pid": 10373, 
        "state": "S", 
        "pc": "f7429f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "statsprofiler"
      }, 
      {
        "pid": 10374, 
        "state": "S", 
        "pc": "f6080634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "vman"
      }, 
      {
        "pid": 10375, 
        "state": "S", 
        "pc": "f72f0f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "vmm"
      }, 
      {
        "pid": 10376, 
        "state": "S", 
        "pc": "f651ab22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "xmlma"
      }, 
      {
        "pid": 10378, 
        "state": "S", 
        "pc": "f7472f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "xmpp"
      }, 
      {
        "pid": 10379, 
        "state": "S", 
        "pc": "f66d41a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "l3vm"
      }, 
      {
        "pid": 10380, 
        "state": "S", 
        "pc": "f65e11a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "urib"
      }, 
      {
        "pid": 10382, 
        "state": "S", 
        "pc": "f6a37f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "aclmgr"
      }, 
      {
        "pid": 10387, 
        "state": "S", 
        "pc": "f71f2f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "eem_policy_dir"
      }, 
      {
        "pid": 10394, 
        "state": "S", 
        "pc": "f667c1a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "adjmgr"
      }, 
      {
        "pid": 10395, 
        "state": "S", 
        "pc": "f70cff38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ncpinframgr"
      }, 
      {
        "pid": 10396, 
        "state": "S", 
        "pc": "f672c1a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "u6rib"
      }, 
      {
        "pid": 10425, 
        "state": "S", 
        "pc": "f6ff11a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "npacl"
      }, 
      {
        "pid": 10436, 
        "state": "S", 
        "pc": "f63a91a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "arp"
      }, 
      {
        "pid": 10437, 
        "state": "S", 
        "pc": "f649c808", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "icmpv6"
      }, 
      {
        "pid": 10439, 
        "state": "S", 
        "pc": "f65c21a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "pktmgr"
      }, 
      {
        "pid": 10464, 
        "state": "S", 
        "pc": "f639d1a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "netstack"
      }, 
      {
        "pid": 10479, 
        "state": "S", 
        "pc": "f6127b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "radius"
      }, 
      {
        "pid": 10481, 
        "state": "S", 
        "pc": "f62e4b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "cdp"
      }, 
      {
        "pid": 10482, 
        "state": "S", 
        "pc": "f6508b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "cfs"
      }, 
      {
        "pid": 10483, 
        "state": "S", 
        "pc": "f75ec634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ip_dummy"
      }, 
      {
        "pid": 10484, 
        "state": "S", 
        "pc": "f7601634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ipv6_dummy"
      }, 
      {
        "pid": 10485, 
        "state": "S", 
        "pc": "f6537b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ntp"
      }, 
      {
        "pid": 10486, 
        "state": "S", 
        "pc": "f62e2b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "otm"
      }, 
      {
        "pid": 10487, 
        "state": "S", 
        "pc": "f66ebb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "snmpd"
      }, 
      {
        "pid": 10488, 
        "state": "S", 
        "pc": "f76ab634", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "tcpudp_dummy"
      }, 
      {
        "pid": 10494, 
        "state": "S", 
        "pc": "48cccb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "dcos-xinetd"
      }, 
      {
        "pid": 10529, 
        "state": "S", 
        "pc": "f1bdcb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "O", 
        "process": "ntpd"
      }, 
      {
        "pid": 10535, 
        "state": "S", 
        "pc": "f6a93b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "callhome"
      }, 
      {
        "pid": 10580, 
        "state": "S", 
        "pc": "f65e31a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "rpm"
      }, 
      {
        "pid": 10581, 
        "state": "S", 
        "pc": "f70eef38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "plsm"
      }, 
      {
        "pid": 10582, 
        "state": "S", 
        "pc": "f6fe4f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "plcmgr"
      }, 
      {
        "pid": 10583, 
        "state": "S", 
        "pc": "f6658b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "pfstat"
      }, 
      {
        "pid": 10585, 
        "state": "S", 
        "pc": "f6170b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "lim"
      }, 
      {
        "pid": 10586, 
        "state": "S", 
        "pc": "f65b8e4c", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "l2rib"
      }, 
      {
        "pid": 10587, 
        "state": "S", 
        "pc": "f648f1a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "igmp"
      }, 
      {
        "pid": 10588, 
        "state": "S", 
        "pc": "f612bb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "eltm"
      }, 
      {
        "pid": 10589, 
        "state": "S", 
        "pc": "f68341a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ecp"
      }, 
      {
        "pid": 10591, 
        "state": "S", 
        "pc": "f5e0bb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "adbm"
      }, 
      {
        "pid": 10592, 
        "state": "S", 
        "pc": "f6b4bf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "acllog"
      }, 
      {
        "pid": 10593, 
        "state": "S", 
        "pc": "f61e5b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "monitor"
      }, 
      {
        "pid": 10620, 
        "state": "S", 
        "pc": "f6694b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "eth_port_channel"
      }, 
      {
        "pid": 10621, 
        "state": "S", 
        "pc": "f6310b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "vlan_mgr"
      }, 
      {
        "pid": 10622, 
        "state": "S", 
        "pc": "f7413f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "eth_dstats"
      }, 
      {
        "pid": 10623, 
        "state": "S", 
        "pc": "f6435f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ipqosmgr"
      }, 
      {
        "pid": 10624, 
        "state": "S", 
        "pc": "f636ab22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ethpm"
      }, 
      {
        "pid": 10625, 
        "state": "S", 
        "pc": "f6055b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "l2fm"
      }, 
      {
        "pid": 10626, 
        "state": "S", 
        "pc": "f66bbb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "mhbfd_tracker"
      }, 
      {
        "pid": 10627, 
        "state": "S", 
        "pc": "f6234f67", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "stp"
      }, 
      {
        "pid": 10628, 
        "state": "S", 
        "pc": "f5f72b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "aclqos"
      }, 
      {
        "pid": 10631, 
        "state": "S", 
        "pc": "f716ff38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "u2"
      }, 
      {
        "pid": 10632, 
        "state": "S", 
        "pc": "f7396f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "spm"
      }, 
      {
        "pid": 10633, 
        "state": "S", 
        "pc": "f66deb22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "sal"
      }, 
      {
        "pid": 10634, 
        "state": "S", 
        "pc": "f63a11a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "mrib"
      }, 
      {
        "pid": 10635, 
        "state": "S", 
        "pc": "f6350b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "mfdm"
      }, 
      {
        "pid": 10636, 
        "state": "S", 
        "pc": "f7205f38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "mcm"
      }, 
      {
        "pid": 10637, 
        "state": "S", 
        "pc": "f657d1a1", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "m6rib"
      }, 
      {
        "pid": 10638, 
        "state": "S", 
        "pc": "f6505b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "l2pt"
      }, 
      {
        "pid": 10645, 
        "state": "S", 
        "pc": "f6324b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "ufdm"
      }, 
      {
        "pid": 10647, 
        "state": "S", 
        "pc": "f64b5b22", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "interface-vlan"
      }, 
      {
        "pid": 10663, 
        "state": "S", 
        "pc": "f68ecf38", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "m2rib"
      }, 
      {
        "pid": 10665, 
        "state": "S", 
        "pc": "f6772390", 
        "start_cnt": 1, 
        "tty": "-", 
        "p_type": "VL", 
        "process": "mcastfwd"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ldap"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "tacacs"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "bulkstat"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "dcm_cli_dp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "dcm_core"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "dcm_snmp_dp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "evmed"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "fabric-access"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "onep"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "pnp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "scheduler"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis_fabricpath"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis_otv"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "rip"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "rip"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "rip"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "rip"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eigrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "isis"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospf"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ospfv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "amt"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "bfd"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "bfd_app"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "bgp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "catena"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "cmm"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "cts"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "dhcp_snoop"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "dot1x"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "dpt"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "drap"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "elo"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "eth_port_sec"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "evb"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "evc"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "fabric_mcast"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "fex"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "fpoam"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "glbp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "hmm"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "hsrp_engine"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "icam"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "imp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ipp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "iscm"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "l2vpn"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "lacp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ldp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "lisp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "lldp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "mka"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "mpls"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "mpls_oam"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "mpls_te"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "msdp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "msrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "mvrp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "nfm"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ngoam"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "nve"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "nxapi"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "oim"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "orib"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "otv"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "pim"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "pim6"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "plbm"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "pong"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "private-vlan"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ptp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "rsvp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "sc_engine"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "sla_responder"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "sla_sender"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "sla_twamp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "smartc"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "telemetry"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "tunnel"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "u2rib"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "udld"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "ulib"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "vmtracker"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "vnsegment_mgr"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "vntag_mgr"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "vpc"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "vrrp-cfg"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "vrrp-eng"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "vrrpv3"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "vtp"
      }, 
      {
        "pid": "-", 
        "state": "NR", 
        "pc": "-", 
        "start_cnt": 0, 
        "tty": "-", 
        "p_type": "X", 
        "process": "wccp"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:process" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <processes>
    <vdc>
     <__XML__PARAM__e-vdc2>
      <__XML__value>access1</__XML__value>
      <__readonly__>
       <TABLE_processes>
        <ROW_processes>
         <pid>5800</pid>
         <state>S</state>
         <pc>f7202f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>sysmgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>6954</pid>
         <state>S</state>
         <pc>f6bb5f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>platform</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7047</pid>
         <state>S</state>
         <pc>f70f3f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>pixm_gl</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7048</pid>
         <state>S</state>
         <pc>f74f11a1</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>pdsd</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7052</pid>
         <state>S</state>
         <pc>48cc9634</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>licmgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7053</pid>
         <state>S</state>
         <pc>f744af38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>fs-daemon</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7058</pid>
         <state>S</state>
         <pc>f6431b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>bloggerd</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7198</pid>
         <state>S</state>
         <pc>f6945f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>vdc_mgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7201</pid>
         <state>S</state>
         <pc>f75e7f67</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>sysinfo</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7207</pid>
         <state>S</state>
         <pc>f741f3b3</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>res_mgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7208</pid>
         <state>S</state>
         <pc>f737df67</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>plugin</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7220</pid>
         <state>S</state>
         <pc>f7488f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>diagmgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7223</pid>
         <state>S</state>
         <pc>f7491f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>clk_mgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7246</pid>
         <state>S</state>
         <pc>f7217f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>diagclient</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7409</pid>
         <state>S</state>
         <pc>f6e7cf38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>xbar</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7430</pid>
         <state>S</state>
         <pc>f728af38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>module</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7452</pid>
         <state>S</state>
         <pc>f6efcf38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>ifmgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7907</pid>
         <state>S</state>
         <pc>f6646b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>sim</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7909</pid>
         <state>S</state>
         <pc>f7328f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>pltfm_debug</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7910</pid>
         <state>S</state>
         <pc>f6456b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>pltfm_config</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7913</pid>
         <state>S</state>
         <pc>f71eff38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>pixmc</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7916</pid>
         <state>S</state>
         <pc>f724ef38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>monitorc</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7920</pid>
         <state>S</state>
         <pc>f6533b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>giscm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>7965</pid>
         <state>S</state>
         <pc>f70f5f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VG</p_type>
         <process>diag_port_lb</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10332</pid>
         <state>S</state>
         <pc>f639eb22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>syslogd</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10336</pid>
         <state>S</state>
         <pc>f739bf38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>confcheck</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10337</pid>
         <state>S</state>
         <pc>f6584b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>feature-mgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10338</pid>
         <state>S</state>
         <pc>f62b9b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>mmode</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10339</pid>
         <state>S</state>
         <pc>f70bef38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>pixm_vl</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10340</pid>
         <state>S</state>
         <pc>f6abff38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>psshelper</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10341</pid>
         <state>S</state>
         <pc>f7518f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>session-mgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10342</pid>
         <state>S</state>
         <pc>f68f11a1</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>smm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10343</pid>
         <state>S</state>
         <pc>f7245f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>vpc_config_sync</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10344</pid>
         <state>S</state>
         <pc>f644cb22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>vshd</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10349</pid>
         <state>S</state>
         <pc>f62a3b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>clis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10351</pid>
         <state>S</state>
         <pc>f60c4b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>port-profile</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10359</pid>
         <state>S</state>
         <pc>f693df38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>aaa</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10360</pid>
         <state>S</state>
         <pc>f60afb22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>cert_enroll</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10361</pid>
         <state>S</state>
         <pc>f640f634</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>securityd</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10362</pid>
         <state>S</state>
         <pc>f5e56634</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>ascii-cfg</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10363</pid>
         <state>S</state>
         <pc>f74fdf38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>cli_acl</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10364</pid>
         <state>S</state>
         <pc>f73d3f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>evmc</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10366</pid>
         <state>S</state>
         <pc>f72caf38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>evms</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10367</pid>
         <state>S</state>
         <pc>f73178ad</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>fmd</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10368</pid>
         <state>S</state>
         <pc>f73dff38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>mping_server</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10369</pid>
         <state>S</state>
         <pc>f7345f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>mvsh</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10371</pid>
         <state>S</state>
         <pc>f68c6f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>sksd</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10372</pid>
         <state>S</state>
         <pc>f6b42f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>snmpmib_proc</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10373</pid>
         <state>S</state>
         <pc>f7429f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>statsprofiler</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10374</pid>
         <state>S</state>
         <pc>f6080634</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>vman</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10375</pid>
         <state>S</state>
         <pc>f72f0f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>vmm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10376</pid>
         <state>S</state>
         <pc>f651ab22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>xmlma</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10378</pid>
         <state>S</state>
         <pc>f7472f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>xmpp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10379</pid>
         <state>S</state>
         <pc>f66d41a1</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>l3vm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10380</pid>
         <state>S</state>
         <pc>f65e11a1</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>urib</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10382</pid>
         <state>S</state>
         <pc>f6a37f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>aclmgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10387</pid>
         <state>S</state>
         <pc>f71f2f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>eem_policy_dir</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10394</pid>
         <state>S</state>
         <pc>f667c1a1</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>adjmgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10395</pid>
         <state>S</state>
         <pc>f70cff38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>ncpinframgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10396</pid>
         <state>S</state>
         <pc>f672c1a1</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>u6rib</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10425</pid>
         <state>S</state>
         <pc>f6ff11a1</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>npacl</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10436</pid>
         <state>S</state>
         <pc>f63a91a1</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>arp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10437</pid>
         <state>S</state>
         <pc>f649c808</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>icmpv6</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10439</pid>
         <state>S</state>
         <pc>f65c21a1</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>pktmgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10464</pid>
         <state>S</state>
         <pc>f639d1a1</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>netstack</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10479</pid>
         <state>S</state>
         <pc>f6127b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>radius</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10481</pid>
         <state>S</state>
         <pc>f62e4b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>cdp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10482</pid>
         <state>S</state>
         <pc>f6508b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>cfs</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10483</pid>
         <state>S</state>
         <pc>f75ec634</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>ip_dummy</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10484</pid>
         <state>S</state>
         <pc>f7601634</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>ipv6_dummy</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10485</pid>
         <state>S</state>
         <pc>f6537b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>ntp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10486</pid>
         <state>S</state>
         <pc>f62e2b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>otm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10487</pid>
         <state>S</state>
         <pc>f66ebb22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>snmpd</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10488</pid>
         <state>S</state>
         <pc>f76ab634</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>tcpudp_dummy</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10494</pid>
         <state>S</state>
         <pc>48cccb22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>dcos-xinetd</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10529</pid>
         <state>S</state>
         <pc>f1bdcb22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>O</p_type>
         <process>ntpd</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10535</pid>
         <state>S</state>
         <pc>f6a93b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>callhome</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10580</pid>
         <state>S</state>
         <pc>f65e31a1</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>rpm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10581</pid>
         <state>S</state>
         <pc>f70eef38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>plsm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10582</pid>
         <state>S</state>
         <pc>f6fe4f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>plcmgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10583</pid>
         <state>S</state>
         <pc>f6658b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>pfstat</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10585</pid>
         <state>S</state>
         <pc>f6170b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>lim</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10586</pid>
         <state>S</state>
         <pc>f65b8e4c</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>l2rib</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10587</pid>
         <state>S</state>
         <pc>f648f1a1</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>igmp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10588</pid>
         <state>S</state>
         <pc>f612bb22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>eltm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10589</pid>
         <state>S</state>
         <pc>f68341a1</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>ecp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10591</pid>
         <state>S</state>
         <pc>f5e0bb22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>adbm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10592</pid>
         <state>S</state>
         <pc>f6b4bf38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>acllog</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10593</pid>
         <state>S</state>
         <pc>f61e5b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>monitor</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10620</pid>
         <state>S</state>
         <pc>f6694b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>eth_port_channel</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10621</pid>
         <state>S</state>
         <pc>f6310b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>vlan_mgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10622</pid>
         <state>S</state>
         <pc>f7413f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>eth_dstats</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10623</pid>
         <state>S</state>
         <pc>f6435f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>ipqosmgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10624</pid>
         <state>S</state>
         <pc>f636ab22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>ethpm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10625</pid>
         <state>S</state>
         <pc>f6055b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>l2fm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10626</pid>
         <state>S</state>
         <pc>f66bbb22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>mhbfd_tracker</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10627</pid>
         <state>S</state>
         <pc>f6234f67</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>stp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10628</pid>
         <state>S</state>
         <pc>f5f72b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>aclqos</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10631</pid>
         <state>S</state>
         <pc>f716ff38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>u2</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10632</pid>
         <state>S</state>
         <pc>f7396f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>spm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10633</pid>
         <state>S</state>
         <pc>f66deb22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>sal</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10634</pid>
         <state>S</state>
         <pc>f63a11a1</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>mrib</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10635</pid>
         <state>S</state>
         <pc>f6350b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>mfdm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10636</pid>
         <state>S</state>
         <pc>f7205f38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>mcm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10637</pid>
         <state>S</state>
         <pc>f657d1a1</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>m6rib</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10638</pid>
         <state>S</state>
         <pc>f6505b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>l2pt</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10645</pid>
         <state>S</state>
         <pc>f6324b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>ufdm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10647</pid>
         <state>S</state>
         <pc>f64b5b22</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>interface-vlan</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10663</pid>
         <state>S</state>
         <pc>f68ecf38</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>m2rib</process>
        </ROW_processes>
        <ROW_processes>
         <pid>10665</pid>
         <state>S</state>
         <pc>f6772390</pc>
         <start_cnt>1</start_cnt>
         <tty>-</tty>
         <p_type>VL</p_type>
         <process>mcastfwd</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ldap</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>tacacs</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>bulkstat</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>dcm_cli_dp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>dcm_core</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>dcm_snmp_dp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>evmed</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>fabric-access</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>onep</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>pnp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>scheduler</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eigrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis_fabricpath</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis_otv</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospf</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospfv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>rip</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eigrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospf</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospfv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>rip</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eigrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospf</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospfv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>rip</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eigrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospf</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospfv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>rip</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eigrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospf</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospfv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eigrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospf</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospfv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eigrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospf</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospfv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eigrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospf</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospfv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eigrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospf</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospfv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eigrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospf</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospfv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eigrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospf</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospfv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eigrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospf</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospfv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eigrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospf</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospfv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eigrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospf</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospfv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eigrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospf</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospfv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eigrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>isis</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospf</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ospfv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>amt</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>bfd</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>bfd_app</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>bgp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>catena</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>cmm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>cts</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>dhcp_snoop</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>dot1x</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>dpt</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>drap</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>elo</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>eth_port_sec</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>evb</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>evc</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>fabric_mcast</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>fex</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>fpoam</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>glbp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>hmm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>hsrp_engine</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>icam</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>imp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ipp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>iscm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>l2vpn</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>lacp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ldp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>lisp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>lldp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>mka</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>mpls</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>mpls_oam</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>mpls_te</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>msdp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>msrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>mvrp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>nfm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ngoam</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>nve</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>nxapi</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>oim</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>orib</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>otv</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>pim</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>pim6</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>plbm</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>pong</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>private-vlan</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ptp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>rsvp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>sc_engine</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>sla_responder</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>sla_sender</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>sla_twamp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>smartc</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>telemetry</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>tunnel</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>u2rib</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>udld</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>ulib</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>vmtracker</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>vnsegment_mgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>vntag_mgr</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>vpc</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>vrrp-cfg</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>vrrp-eng</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>vrrpv3</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>vtp</process>
        </ROW_processes>
        <ROW_processes>
         <pid>-</pid>
         <state>NR</state>
         <pc>-</pc>
         <start_cnt>0</start_cnt>
         <tty>-</tty>
         <p_type>X</p_type>
         <process>wccp</process>
        </ROW_processes>
       </TABLE_processes>
      </__readonly__>
     </__XML__PARAM__e-vdc2>
    </vdc>
   </processes>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show processes vdc access1**

PID    State  PC        Start_cnt    TTY   Type  Process
-----  -----  --------  -----------  ----  ----  -------------
 5800      S  f7202f38            1     -    VG  sysmgr
 6954      S  f6bb5f38            1     -    VG  platform
 7047      S  f70f3f38            1     -    VG  pixm_gl
 7048      S  f74f11a1            1     -    VG  pdsd
 7052      S  48cc9634            1     -    VG  licmgr
 7053      S  f744af38            1     -    VG  fs-daemon
 7058      S  f6431b22            1     -    VG  bloggerd
 7198      S  f6945f38            1     -    VG  vdc_mgr
 7201      S  f75e7f67            1     -    VG  sysinfo
 7207      S  f741f3b3            1     -    VG  res_mgr
 7208      S  f737df67            1     -    VG  plugin
 7220      S  f7488f38            1     -    VG  diagmgr
 7223      S  f7491f38            1     -    VG  clk_mgr
 7246      S  f7217f38            1     -    VG  diagclient
 7409      S  f6e7cf38            1     -    VG  xbar
 7430      S  f728af38            1     -    VG  module
 7452      S  f6efcf38            1     -    VG  ifmgr
 7907      S  f6646b22            1     -    VG  sim
 7909      S  f7328f38            1     -    VG  pltfm_debug
 7910      S  f6456b22            1     -    VG  pltfm_config
 7913      S  f71eff38            1     -    VG  pixmc
 7916      S  f724ef38            1     -    VG  monitorc
 7920      S  f6533b22            1     -    VG  giscm
 7965      S  f70f5f38            1     -    VG  diag_port_lb
10332      S  f639eb22            1     -    VL  syslogd
10336      S  f739bf38            1     -    VL  confcheck
10337      S  f6584b22            1     -    VL  feature-mgr
10338      S  f62b9b22            1     -    VL  mmode
10339      S  f70bef38            1     -    VL  pixm_vl
10340      S  f6abff38            1     -    VL  psshelper
10341      S  f7518f38            1     -    VL  session-mgr
10342      S  f68f11a1            1     -    VL  smm
10343      S  f7245f38            1     -    VL  vpc_config_sync
10344      S  f644cb22            1     -    VL  vshd
10349      S  f62a3b22            1     -    VL  clis
10351      S  f60c4b22            1     -    VL  port-profile
10359      S  f693df38            1     -    VL  aaa
10360      S  f60afb22            1     -    VL  cert_enroll
10361      S  f640f634            1     -    VL  securityd
10362      S  f5e56634            1     -    VL  ascii-cfg
10363      S  f74fdf38            1     -    VL  cli_acl
10364      S  f73d3f38            1     -    VL  evmc
10366      S  f72caf38            1     -    VL  evms
10367      S  f73178ad            1     -    VL  fmd
10368      S  f73dff38            1     -    VL  mping_server
10369      S  f7345f38            1     -    VL  mvsh
10371      S  f68c6f38            1     -    VL  sksd
10372      S  f6b42f38            1     -    VL  snmpmib_proc
10373      S  f7429f38            1     -    VL  statsprofiler
10374      S  f6080634            1     -    VL  vman
10375      S  f72f0f38            1     -    VL  vmm
10376      S  f651ab22            1     -    VL  xmlma
10378      S  f7472f38            1     -    VL  xmpp
10379      S  f66d41a1            1     -    VL  l3vm
10380      S  f65e11a1            1     -    VL  urib
10382      S  f6a37f38            1     -    VL  aclmgr
10387      S  f71f2f38            1     -    VL  eem_policy_dir
10394      S  f667c1a1            1     -    VL  adjmgr
10395      S  f70cff38            1     -    VL  ncpinframgr
10396      S  f672c1a1            1     -    VL  u6rib
10425      S  f6ff11a1            1     -    VL  npacl
10436      S  f63a91a1            1     -    VL  arp
10437      S  f649c808            1     -    VL  icmpv6
10439      S  f65c21a1            1     -    VL  pktmgr
10464      S  f639d1a1            1     -    VL  netstack
10479      S  f6127b22            1     -    VL  radius
10481      S  f62e4b22            1     -    VL  cdp
10482      S  f6508b22            1     -    VL  cfs
10483      S  f75ec634            1     -    VL  ip_dummy
10484      S  f7601634            1     -    VL  ipv6_dummy
10485      S  f6537b22            1     -    VL  ntp
10486      S  f62e2b22            1     -    VL  otm
10487      S  f66ebb22            1     -    VL  snmpd
10488      S  f76ab634            1     -    VL  tcpudp_dummy
10494      S  48cccb22            1     -    VL  dcos-xinetd
10529      S  f1bdcb22            1     -     O  ntpd
10535      S  f6a93b22            1     -    VL  callhome
10580      S  f65e31a1            1     -    VL  rpm
10581      S  f70eef38            1     -    VL  plsm
10582      S  f6fe4f38            1     -    VL  plcmgr
10583      S  f6658b22            1     -    VL  pfstat
10585      S  f6170b22            1     -    VL  lim
10586      S  f65b8e4c            1     -    VL  l2rib
10587      S  f648f1a1            1     -    VL  igmp
10588      S  f612bb22            1     -    VL  eltm
10589      S  f68341a1            1     -    VL  ecp
10591      S  f5e0bb22            1     -    VL  adbm
10592      S  f6b4bf38            1     -    VL  acllog
10593      S  f61e5b22            1     -    VL  monitor
10620      S  f6694b22            1     -    VL  eth_port_channel
10621      S  f6310b22            1     -    VL  vlan_mgr
10622      S  f7413f38            1     -    VL  eth_dstats
10623      S  f6435f38            1     -    VL  ipqosmgr
10624      S  f636ab22            1     -    VL  ethpm
10625      S  f6055b22            1     -    VL  l2fm
10626      S  f66bbb22            1     -    VL  mhbfd_tracker
10627      S  f6234f67            1     -    VL  stp
10628      S  f5f72b22            1     -    VL  aclqos
10631      S  f716ff38            1     -    VL  u2
10632      S  f7396f38            1     -    VL  spm
10633      S  f66deb22            1     -    VL  sal
10634      S  f63a11a1            1     -    VL  mrib
10635      S  f6350b22            1     -    VL  mfdm
10636      S  f7205f38            1     -    VL  mcm
10637      S  f657d1a1            1     -    VL  m6rib
10638      S  f6505b22            1     -    VL  l2pt
10645      S  f6324b22            1     -    VL  ufdm
10647      S  f64b5b22            1     -    VL  interface-vlan
10663      S  f68ecf38            1     -    VL  m2rib
10665      S  f6772390            1     -    VL  mcastfwd
    -     NR         -            0     -     X  ldap
    -     NR         -            0     -     X  tacacs
    -     NR         -            0     -     X  bulkstat
    -     NR         -            0     -     X  dcm_cli_dp
    -     NR         -            0     -     X  dcm_core
    -     NR         -            0     -     X  dcm_snmp_dp
    -     NR         -            0     -     X  evmed
    -     NR         -            0     -     X  fabric-access
    -     NR         -            0     -     X  onep
    -     NR         -            0     -     X  pnp
    -     NR         -            0     -     X  scheduler
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  isis_fabricpath
    -     NR         -            0     -     X  isis_otv
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  rip
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  rip
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  rip
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  rip
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  eigrp
    -     NR         -            0     -     X  isis
    -     NR         -            0     -     X  ospf
    -     NR         -            0     -     X  ospfv3
    -     NR         -            0     -     X  amt
    -     NR         -            0     -     X  bfd
    -     NR         -            0     -     X  bfd_app
    -     NR         -            0     -     X  bgp
    -     NR         -            0     -     X  catena
    -     NR         -            0     -     X  cmm
    -     NR         -            0     -     X  cts
    -     NR         -            0     -     X  dhcp_snoop
    -     NR         -            0     -     X  dot1x
    -     NR         -            0     -     X  dpt
    -     NR         -            0     -     X  drap
    -     NR         -            0     -     X  elo
    -     NR         -            0     -     X  eth_port_sec
    -     NR         -            0     -     X  evb
    -     NR         -            0     -     X  evc
    -     NR         -            0     -     X  fabric_mcast
    -     NR         -            0     -     X  fex
    -     NR         -            0     -     X  fpoam
    -     NR         -            0     -     X  glbp
    -     NR         -            0     -     X  hmm
    -     NR         -            0     -     X  hsrp_engine
    -     NR         -            0     -     X  icam
    -     NR         -            0     -     X  imp
    -     NR         -            0     -     X  ipp
    -     NR         -            0     -     X  iscm
    -     NR         -            0     -     X  l2vpn
    -     NR         -            0     -     X  lacp
    -     NR         -            0     -     X  ldp
    -     NR         -            0     -     X  lisp
    -     NR         -            0     -     X  lldp
    -     NR         -            0     -     X  mka
    -     NR         -            0     -     X  mpls
    -     NR         -            0     -     X  mpls_oam
    -     NR         -            0     -     X  mpls_te
    -     NR         -            0     -     X  msdp
    -     NR         -            0     -     X  msrp
    -     NR         -            0     -     X  mvrp
    -     NR         -            0     -     X  nfm
    -     NR         -            0     -     X  ngoam
    -     NR         -            0     -     X  nve
    -     NR         -            0     -     X  nxapi
    -     NR         -            0     -     X  oim
    -     NR         -            0     -     X  orib
    -     NR         -            0     -     X  otv
    -     NR         -            0     -     X  pim
    -     NR         -            0     -     X  pim6
    -     NR         -            0     -     X  plbm
    -     NR         -            0     -     X  pong
    -     NR         -            0     -     X  private-vlan
    -     NR         -            0     -     X  ptp
    -     NR         -            0     -     X  rsvp
    -     NR         -            0     -     X  sc_engine
    -     NR         -            0     -     X  sla_responder
    -     NR         -            0     -     X  sla_sender
    -     NR         -            0     -     X  sla_twamp
    -     NR         -            0     -     X  smartc
    -     NR         -            0     -     X  telemetry
    -     NR         -            0     -     X  tunnel
    -     NR         -            0     -     X  u2rib
    -     NR         -            0     -     X  udld
    -     NR         -            0     -     X  ulib
    -     NR         -            0     -     X  vmtracker
    -     NR         -            0     -     X  vnsegment_mgr
    -     NR         -            0     -     X  vntag_mgr
    -     NR         -            0     -     X  vpc
    -     NR         -            0     -     X  vrrp-cfg
    -     NR         -            0     -     X  vrrp-eng
    -     NR         -            0     -     X  vrrpv3
    -     NR         -            0     -     X  vtp
    -     NR         -            0     -     X  wccp

State: R(runnable), S(sleeping), Z(defunct)

Type: U(unknown), O(non sysmgr) VL(vdc-local), VG(vdc-global), VU(vdc-unaware) NR(not running), ER(terminated etc)

show processes vdc access cpu sort

show processes vdc access1 cpu sort 5sec 
 
import requests
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 processes vdc access1 cpu sort 5sec ”,
  "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)
{
  "fivesec_percent": 1, 
  "fivesec_intr_percent": 0, 
  "onemin_percent": 1, 
  "fivemin_percent": 1, 
  "TABLE_process_cpu": {
    "ROW_process_cpu": [
      {
        "pid": 6954, 
        "runtime": 1287670, 
        "invoked": 26878, 
        "usecs": 47, 
        "fivesec": 0.5, 
        "onemin": 0.54, 
        "fivemin": 0.62, 
        "tty": "-", 
        "process": "platform"
      }, 
      {
        "pid": 7201, 
        "runtime": 110, 
        "invoked": 1389, 
        "usecs": 0, 
        "fivesec": 0.05, 
        "onemin": 0.08, 
        "fivemin": 0.07, 
        "tty": "-", 
        "process": "sysinfo"
      }, 
      {
        "pid": 10589, 
        "runtime": 490, 
        "invoked": 49, 
        "usecs": 10, 
        "fivesec": 0.01, 
        "onemin": 0.01, 
        "fivemin": 0.01, 
        "tty": "-", 
        "process": "ecp"
      }, 
      {
        "pid": 10626, 
        "runtime": 480, 
        "invoked": 2488, 
        "usecs": 0, 
        "fivesec": 0.01, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mhbfd_tracker"
      }, 
      {
        "pid": 5800, 
        "runtime": 5650, 
        "invoked": 49875, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "sysmgr"
      }, 
      {
        "pid": 7047, 
        "runtime": 1000, 
        "invoked": 2995, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pixm_gl"
      }, 
      {
        "pid": 7048, 
        "runtime": 480, 
        "invoked": 12, 
        "usecs": 40, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pdsd"
      }, 
      {
        "pid": 7052, 
        "runtime": 750, 
        "invoked": 2638, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "licmgr"
      }, 
      {
        "pid": 7053, 
        "runtime": 1050, 
        "invoked": 1309, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "fs-daemon"
      }, 
      {
        "pid": 7058, 
        "runtime": 680, 
        "invoked": 3911, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "bloggerd"
      }, 
      {
        "pid": 7198, 
        "runtime": 2260, 
        "invoked": 2778, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "vdc_mgr"
      }, 
      {
        "pid": 7207, 
        "runtime": 1730, 
        "invoked": 4813, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "res_mgr"
      }, 
      {
        "pid": 7208, 
        "runtime": 940, 
        "invoked": 12751, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "plugin"
      }, 
      {
        "pid": 7220, 
        "runtime": 15510, 
        "invoked": 17040, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "diagmgr"
      }, 
      {
        "pid": 7223, 
        "runtime": 2390, 
        "invoked": 12020, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "clk_mgr"
      }, 
      {
        "pid": 7246, 
        "runtime": 8990, 
        "invoked": 7939, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "diagclient"
      }, 
      {
        "pid": 7409, 
        "runtime": 1520, 
        "invoked": 5151, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "xbar"
      }, 
      {
        "pid": 7430, 
        "runtime": 7810, 
        "invoked": 60274, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "module"
      }, 
      {
        "pid": 7452, 
        "runtime": 1780, 
        "invoked": 1923, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ifmgr"
      }, 
      {
        "pid": 7907, 
        "runtime": 810, 
        "invoked": 2647, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "sim"
      }, 
      {
        "pid": 7909, 
        "runtime": 820, 
        "invoked": 2637, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pltfm_debug"
      }, 
      {
        "pid": 7910, 
        "runtime": 2700, 
        "invoked": 9290, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pltfm_config"
      }, 
      {
        "pid": 7913, 
        "runtime": 840, 
        "invoked": 2743, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pixmc"
      }, 
      {
        "pid": 7916, 
        "runtime": 770, 
        "invoked": 2656, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "monitorc"
      }, 
      {
        "pid": 7920, 
        "runtime": 700, 
        "invoked": 2607, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "giscm"
      }, 
      {
        "pid": 7965, 
        "runtime": 60260, 
        "invoked": 120575, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.01, 
        "tty": "-", 
        "process": "diag_port_lb"
      }, 
      {
        "pid": 10332, 
        "runtime": 1060, 
        "invoked": 12536, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "syslogd"
      }, 
      {
        "pid": 10336, 
        "runtime": 500, 
        "invoked": 43, 
        "usecs": 11, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "confcheck"
      }, 
      {
        "pid": 10337, 
        "runtime": 500, 
        "invoked": 1288, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "feature-mgr"
      }, 
      {
        "pid": 10338, 
        "runtime": 410, 
        "invoked": 222, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mmode"
      }, 
      {
        "pid": 10339, 
        "runtime": 700, 
        "invoked": 2537, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pixm_vl"
      }, 
      {
        "pid": 10340, 
        "runtime": 900, 
        "invoked": 12329, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "psshelper"
      }, 
      {
        "pid": 10341, 
        "runtime": 510, 
        "invoked": 2462, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "session-mgr"
      }, 
      {
        "pid": 10342, 
        "runtime": 510, 
        "invoked": 28, 
        "usecs": 18, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "smm"
      }, 
      {
        "pid": 10343, 
        "runtime": 610, 
        "invoked": 2685, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "vpc_config_sync"
      }, 
      {
        "pid": 10344, 
        "runtime": 640, 
        "invoked": 1683, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "vshd"
      }, 
      {
        "pid": 10349, 
        "runtime": 17200, 
        "invoked": 1065, 
        "usecs": 16, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "clis"
      }, 
      {
        "pid": 10351, 
        "runtime": 400, 
        "invoked": 496, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "port-profile"
      }, 
      {
        "pid": 10359, 
        "runtime": 980, 
        "invoked": 12444, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "aaa"
      }, 
      {
        "pid": 10360, 
        "runtime": 930, 
        "invoked": 12954, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "cert_enroll"
      }, 
      {
        "pid": 10361, 
        "runtime": 970, 
        "invoked": 12350, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "securityd"
      }, 
      {
        "pid": 10362, 
        "runtime": 680, 
        "invoked": 1755, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ascii-cfg"
      }, 
      {
        "pid": 10363, 
        "runtime": 680, 
        "invoked": 2485, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "cli_acl"
      }, 
      {
        "pid": 10364, 
        "runtime": 610, 
        "invoked": 841, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "evmc"
      }, 
      {
        "pid": 10366, 
        "runtime": 600, 
        "invoked": 867, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "evms"
      }, 
      {
        "pid": 10367, 
        "runtime": 580, 
        "invoked": 1367, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "fmd"
      }, 
      {
        "pid": 10368, 
        "runtime": 30, 
        "invoked": 22, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mping_server"
      }, 
      {
        "pid": 10369, 
        "runtime": 600, 
        "invoked": 844, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mvsh"
      }, 
      {
        "pid": 10371, 
        "runtime": 960, 
        "invoked": 12284, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "sksd"
      }, 
      {
        "pid": 10372, 
        "runtime": 630, 
        "invoked": 1332, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "snmpmib_proc"
      }, 
      {
        "pid": 10373, 
        "runtime": 680, 
        "invoked": 2620, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "statsprofiler"
      }, 
      {
        "pid": 10374, 
        "runtime": 720, 
        "invoked": 1586, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "vman"
      }, 
      {
        "pid": 10375, 
        "runtime": 740, 
        "invoked": 2620, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "vmm"
      }, 
      {
        "pid": 10376, 
        "runtime": 670, 
        "invoked": 4143, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "xmlma"
      }, 
      {
        "pid": 10378, 
        "runtime": 670, 
        "invoked": 2483, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "xmpp"
      }, 
      {
        "pid": 10379, 
        "runtime": 600, 
        "invoked": 42, 
        "usecs": 14, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "l3vm"
      }, 
      {
        "pid": 10380, 
        "runtime": 540, 
        "invoked": 93, 
        "usecs": 5, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "urib"
      }, 
      {
        "pid": 10382, 
        "runtime": 590, 
        "invoked": 784, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "aclmgr"
      }, 
      {
        "pid": 10387, 
        "runtime": 460, 
        "invoked": 2460, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "eem_policy_dir"
      }, 
      {
        "pid": 10394, 
        "runtime": 400, 
        "invoked": 39, 
        "usecs": 10, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "adjmgr"
      }, 
      {
        "pid": 10395, 
        "runtime": 540, 
        "invoked": 2647, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ncpinframgr"
      }, 
      {
        "pid": 10396, 
        "runtime": 370, 
        "invoked": 50, 
        "usecs": 7, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "u6rib"
      }, 
      {
        "pid": 10425, 
        "runtime": 390, 
        "invoked": 19, 
        "usecs": 20, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "npacl"
      }, 
      {
        "pid": 10436, 
        "runtime": 410, 
        "invoked": 15, 
        "usecs": 27, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "arp"
      }, 
      {
        "pid": 10437, 
        "runtime": 350, 
        "invoked": 14, 
        "usecs": 25, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "icmpv6"
      }, 
      {
        "pid": 10439, 
        "runtime": 400, 
        "invoked": 22, 
        "usecs": 18, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pktmgr"
      }, 
      {
        "pid": 10464, 
        "runtime": 500, 
        "invoked": 17, 
        "usecs": 29, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "netstack"
      }, 
      {
        "pid": 10479, 
        "runtime": 1050, 
        "invoked": 12287, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "radius"
      }, 
      {
        "pid": 10481, 
        "runtime": 560, 
        "invoked": 3062, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "cdp"
      }, 
      {
        "pid": 10482, 
        "runtime": 590, 
        "invoked": 3011, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "cfs"
      }, 
      {
        "pid": 10483, 
        "runtime": 40, 
        "invoked": 24, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ip_dummy"
      }, 
      {
        "pid": 10484, 
        "runtime": 40, 
        "invoked": 13, 
        "usecs": 3, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ipv6_dummy"
      }, 
      {
        "pid": 10485, 
        "runtime": 460, 
        "invoked": 941, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ntp"
      }, 
      {
        "pid": 10486, 
        "runtime": 520, 
        "invoked": 2602, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "otm"
      }, 
      {
        "pid": 10487, 
        "runtime": 1820, 
        "invoked": 6248, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "snmpd"
      }, 
      {
        "pid": 10488, 
        "runtime": 30, 
        "invoked": 6, 
        "usecs": 5, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "tcpudp_dummy"
      }, 
      {
        "pid": 10494, 
        "runtime": 350, 
        "invoked": 25, 
        "usecs": 14, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "dcos-xinetd"
      }, 
      {
        "pid": 10529, 
        "runtime": 1010, 
        "invoked": 12284, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ntpd"
      }, 
      {
        "pid": 10535, 
        "runtime": 780, 
        "invoked": 12264, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "callhome"
      }, 
      {
        "pid": 10580, 
        "runtime": 570, 
        "invoked": 56, 
        "usecs": 10, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "rpm"
      }, 
      {
        "pid": 10581, 
        "runtime": 560, 
        "invoked": 2521, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "plsm"
      }, 
      {
        "pid": 10582, 
        "runtime": 610, 
        "invoked": 2893, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "plcmgr"
      }, 
      {
        "pid": 10583, 
        "runtime": 740, 
        "invoked": 2062, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "pfstat"
      }, 
      {
        "pid": 10585, 
        "runtime": 660, 
        "invoked": 2502, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "lim"
      }, 
      {
        "pid": 10586, 
        "runtime": 1310, 
        "invoked": 12002, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "l2rib"
      }, 
      {
        "pid": 10587, 
        "runtime": 600, 
        "invoked": 44, 
        "usecs": 13, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "igmp"
      }, 
      {
        "pid": 10588, 
        "runtime": 610, 
        "invoked": 1069, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "eltm"
      }, 
      {
        "pid": 10591, 
        "runtime": 540, 
        "invoked": 433, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "adbm"
      }, 
      {
        "pid": 10592, 
        "runtime": 570, 
        "invoked": 624, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "acllog"
      }, 
      {
        "pid": 10593, 
        "runtime": 790, 
        "invoked": 2614, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "monitor"
      }, 
      {
        "pid": 10620, 
        "runtime": 440, 
        "invoked": 1267, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "eth_port_channel"
      }, 
      {
        "pid": 10621, 
        "runtime": 1470, 
        "invoked": 1352, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "vlan_mgr"
      }, 
      {
        "pid": 10622, 
        "runtime": 350, 
        "invoked": 217, 
        "usecs": 1, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "eth_dstats"
      }, 
      {
        "pid": 10623, 
        "runtime": 2140, 
        "invoked": 5112, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ipqosmgr"
      }, 
      {
        "pid": 10624, 
        "runtime": 570, 
        "invoked": 1379, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ethpm"
      }, 
      {
        "pid": 10625, 
        "runtime": 480, 
        "invoked": 1391, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "l2fm"
      }, 
      {
        "pid": 10627, 
        "runtime": 2870, 
        "invoked": 51381, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "stp"
      }, 
      {
        "pid": 10628, 
        "runtime": 410, 
        "invoked": 528, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "aclqos"
      }, 
      {
        "pid": 10631, 
        "runtime": 390, 
        "invoked": 1230, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "u2"
      }, 
      {
        "pid": 10632, 
        "runtime": 450, 
        "invoked": 656, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "spm"
      }, 
      {
        "pid": 10633, 
        "runtime": 470, 
        "invoked": 2471, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "sal"
      }, 
      {
        "pid": 10634, 
        "runtime": 520, 
        "invoked": 63, 
        "usecs": 8, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mrib"
      }, 
      {
        "pid": 10635, 
        "runtime": 720, 
        "invoked": 2164, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mfdm"
      }, 
      {
        "pid": 10636, 
        "runtime": 530, 
        "invoked": 2487, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mcm"
      }, 
      {
        "pid": 10637, 
        "runtime": 420, 
        "invoked": 52, 
        "usecs": 8, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "m6rib"
      }, 
      {
        "pid": 10638, 
        "runtime": 3810, 
        "invoked": 13281, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "l2pt"
      }, 
      {
        "pid": 10645, 
        "runtime": 640, 
        "invoked": 3090, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "ufdm"
      }, 
      {
        "pid": 10647, 
        "runtime": 470, 
        "invoked": 664, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "interface-vlan"
      }, 
      {
        "pid": 10663, 
        "runtime": 390, 
        "invoked": 650, 
        "usecs": 0, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "m2rib"
      }, 
      {
        "pid": 10665, 
        "runtime": 400, 
        "invoked": 12, 
        "usecs": 33, 
        "fivesec": 0.0, 
        "onemin": 0.0, 
        "fivemin": 0.0, 
        "tty": "-", 
        "process": "mcastfwd"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:process" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <processes>
    <vdc>
     <__XML__PARAM__e-vdc2>
      <__XML__value>access1</__XML__value>
      <cpu>
       <sort>
        <__XML__PARAM__sort-time>
         <__XML__value>5sec</__XML__value>
         <__readonly__>
          <fivesec_percent>1</fivesec_percent>
          <fivesec_intr_percent>0</fivesec_intr_percent>
          <onemin_percent>1</onemin_percent>
          <fivemin_percent>1</fivemin_percent>
          <TABLE_process_cpu>
           <ROW_process_cpu>
            <pid>6954</pid>
            <runtime>1286890</runtime>
            <invoked>26841</invoked>
            <usecs>47</usecs>
            <fivesec>0.38</fivesec>
            <onemin>0.60</onemin>
            <fivemin>0.63</fivemin>
            <tty>-</tty>
            <process>platform</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7201</pid>
            <runtime>110</runtime>
            <invoked>1386</invoked>
            <usecs>0</usecs>
            <fivesec>0.19</fivesec>
            <onemin>0.07</onemin>
            <fivemin>0.07</fivemin>
            <tty>-</tty>
            <process>sysinfo</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>5800</pid>
            <runtime>5610</runtime>
            <invoked>49167</invoked>
            <usecs>0</usecs>
            <fivesec>0.03</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>sysmgr</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7965</pid>
            <runtime>60250</runtime>
            <invoked>120510</invoked>
            <usecs>0</usecs>
            <fivesec>0.01</fivesec>
            <onemin>0.01</onemin>
            <fivemin>0.01</fivemin>
            <tty>-</tty>
            <process>diag_port_lb</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7047</pid>
            <runtime>1000</runtime>
            <invoked>2992</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>pixm_gl</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7048</pid>
            <runtime>480</runtime>
            <invoked>12</invoked>
            <usecs>40</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>pdsd</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7052</pid>
            <runtime>750</runtime>
            <invoked>2635</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>licmgr</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7053</pid>
            <runtime>1050</runtime>
            <invoked>1304</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>fs-daemon</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7058</pid>
            <runtime>680</runtime>
            <invoked>3909</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>bloggerd</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7198</pid>
            <runtime>2260</runtime>
            <invoked>2775</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>vdc_mgr</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7207</pid>
            <runtime>1730</runtime>
            <invoked>4810</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>res_mgr</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7208</pid>
            <runtime>940</runtime>
            <invoked>12736</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>plugin</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7220</pid>
            <runtime>15490</runtime>
            <invoked>17021</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>diagmgr</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7223</pid>
            <runtime>2390</runtime>
            <invoked>12007</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>clk_mgr</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7246</pid>
            <runtime>8970</runtime>
            <invoked>7931</invoked>
            <usecs>1</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>diagclient</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7409</pid>
            <runtime>1520</runtime>
            <invoked>5150</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>xbar</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7430</pid>
            <runtime>7810</runtime>
            <invoked>60199</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>module</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7452</pid>
            <runtime>1780</runtime>
            <invoked>1922</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>ifmgr</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7907</pid>
            <runtime>810</runtime>
            <invoked>2644</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>sim</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7909</pid>
            <runtime>820</runtime>
            <invoked>2634</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>pltfm_debug</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7910</pid>
            <runtime>2700</runtime>
            <invoked>9287</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>pltfm_config</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7913</pid>
            <runtime>840</runtime>
            <invoked>2740</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>pixmc</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7916</pid>
            <runtime>770</runtime>
            <invoked>2653</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>monitorc</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>7920</pid>
            <runtime>700</runtime>
            <invoked>2604</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>giscm</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10332</pid>
            <runtime>1060</runtime>
            <invoked>12520</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>syslogd</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10336</pid>
            <runtime>500</runtime>
            <invoked>43</invoked>
            <usecs>11</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>confcheck</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10337</pid>
            <runtime>500</runtime>
            <invoked>1287</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>feature-mgr</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10338</pid>
            <runtime>410</runtime>
            <invoked>222</invoked>
            <usecs>1</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>mmode</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10339</pid>
            <runtime>700</runtime>
            <invoked>2534</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>pixm_vl</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10340</pid>
            <runtime>900</runtime>
            <invoked>12314</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>psshelper</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10341</pid>
            <runtime>510</runtime>
            <invoked>2459</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>session-mgr</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10342</pid>
            <runtime>510</runtime>
            <invoked>28</invoked>
            <usecs>18</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>smm</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10343</pid>
            <runtime>610</runtime>
            <invoked>2682</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>vpc_config_sync</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10344</pid>
            <runtime>640</runtime>
            <invoked>1681</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>vshd</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10349</pid>
            <runtime>17200</runtime>
            <invoked>1064</invoked>
            <usecs>16</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>clis</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10351</pid>
            <runtime>400</runtime>
            <invoked>496</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>port-profile</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10359</pid>
            <runtime>980</runtime>
            <invoked>12429</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>aaa</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10360</pid>
            <runtime>930</runtime>
            <invoked>12938</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>cert_enroll</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10361</pid>
            <runtime>970</runtime>
            <invoked>12334</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>securityd</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10362</pid>
            <runtime>680</runtime>
            <invoked>1753</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>ascii-cfg</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10363</pid>
            <runtime>680</runtime>
            <invoked>2482</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>cli_acl</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10364</pid>
            <runtime>610</runtime>
            <invoked>840</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>evmc</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10366</pid>
            <runtime>600</runtime>
            <invoked>866</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>evms</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10367</pid>
            <runtime>580</runtime>
            <invoked>1365</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>fmd</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10368</pid>
            <runtime>30</runtime>
            <invoked>22</invoked>
            <usecs>1</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>mping_server</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10369</pid>
            <runtime>600</runtime>
            <invoked>843</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>mvsh</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10371</pid>
            <runtime>950</runtime>
            <invoked>12268</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>sksd</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10372</pid>
            <runtime>630</runtime>
            <invoked>1330</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>snmpmib_proc</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10373</pid>
            <runtime>680</runtime>
            <invoked>2617</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>statsprofiler</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10374</pid>
            <runtime>710</runtime>
            <invoked>1584</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>vman</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10375</pid>
            <runtime>740</runtime>
            <invoked>2617</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>vmm</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10376</pid>
            <runtime>670</runtime>
            <invoked>4138</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>xmlma</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10378</pid>
            <runtime>670</runtime>
            <invoked>2480</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>xmpp</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10379</pid>
            <runtime>600</runtime>
            <invoked>42</invoked>
            <usecs>14</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>l3vm</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10380</pid>
            <runtime>540</runtime>
            <invoked>93</invoked>
            <usecs>5</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>urib</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10382</pid>
            <runtime>590</runtime>
            <invoked>782</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>aclmgr</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10387</pid>
            <runtime>460</runtime>
            <invoked>2457</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>eem_policy_dir</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10394</pid>
            <runtime>400</runtime>
            <invoked>39</invoked>
            <usecs>10</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>adjmgr</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10395</pid>
            <runtime>540</runtime>
            <invoked>2644</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>ncpinframgr</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10396</pid>
            <runtime>370</runtime>
            <invoked>50</invoked>
            <usecs>7</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>u6rib</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10425</pid>
            <runtime>390</runtime>
            <invoked>19</invoked>
            <usecs>20</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>npacl</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10436</pid>
            <runtime>410</runtime>
            <invoked>15</invoked>
            <usecs>27</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>arp</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10437</pid>
            <runtime>350</runtime>
            <invoked>14</invoked>
            <usecs>25</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>icmpv6</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10439</pid>
            <runtime>400</runtime>
            <invoked>22</invoked>
            <usecs>18</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>pktmgr</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10464</pid>
            <runtime>500</runtime>
            <invoked>17</invoked>
            <usecs>29</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>netstack</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10479</pid>
            <runtime>1050</runtime>
            <invoked>12272</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>radius</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10481</pid>
            <runtime>560</runtime>
            <invoked>3057</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>cdp</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10482</pid>
            <runtime>590</runtime>
            <invoked>3007</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>cfs</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10483</pid>
            <runtime>40</runtime>
            <invoked>24</invoked>
            <usecs>1</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>ip_dummy</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10484</pid>
            <runtime>40</runtime>
            <invoked>13</invoked>
            <usecs>3</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>ipv6_dummy</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10485</pid>
            <runtime>460</runtime>
            <invoked>940</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>ntp</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10486</pid>
            <runtime>520</runtime>
            <invoked>2599</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>otm</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10487</pid>
            <runtime>1820</runtime>
            <invoked>6242</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>snmpd</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10488</pid>
            <runtime>30</runtime>
            <invoked>6</invoked>
            <usecs>5</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>tcpudp_dummy</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10494</pid>
            <runtime>350</runtime>
            <invoked>25</invoked>
            <usecs>14</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>dcos-xinetd</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10529</pid>
            <runtime>1010</runtime>
            <invoked>12269</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>ntpd</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10535</pid>
            <runtime>770</runtime>
            <invoked>12249</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>callhome</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10580</pid>
            <runtime>570</runtime>
            <invoked>56</invoked>
            <usecs>10</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>rpm</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10581</pid>
            <runtime>560</runtime>
            <invoked>2518</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>plsm</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10582</pid>
            <runtime>610</runtime>
            <invoked>2890</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>plcmgr</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10583</pid>
            <runtime>740</runtime>
            <invoked>2058</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>pfstat</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10585</pid>
            <runtime>660</runtime>
            <invoked>2499</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>lim</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10586</pid>
            <runtime>1310</runtime>
            <invoked>11987</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>l2rib</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10587</pid>
            <runtime>600</runtime>
            <invoked>44</invoked>
            <usecs>13</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>igmp</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10588</pid>
            <runtime>610</runtime>
            <invoked>1068</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>eltm</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10589</pid>
            <runtime>490</runtime>
            <invoked>49</invoked>
            <usecs>10</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.01</onemin>
            <fivemin>0.01</fivemin>
            <tty>-</tty>
            <process>ecp</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10591</pid>
            <runtime>540</runtime>
            <invoked>432</invoked>
            <usecs>1</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>adbm</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10592</pid>
            <runtime>570</runtime>
            <invoked>623</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>acllog</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10593</pid>
            <runtime>790</runtime>
            <invoked>2611</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>monitor</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10620</pid>
            <runtime>440</runtime>
            <invoked>1266</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>eth_port_channel</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10621</pid>
            <runtime>1470</runtime>
            <invoked>1350</invoked>
            <usecs>1</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>vlan_mgr</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10622</pid>
            <runtime>350</runtime>
            <invoked>217</invoked>
            <usecs>1</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>eth_dstats</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10623</pid>
            <runtime>2140</runtime>
            <invoked>5107</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>ipqosmgr</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10624</pid>
            <runtime>570</runtime>
            <invoked>1378</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>ethpm</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10625</pid>
            <runtime>480</runtime>
            <invoked>1390</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>l2fm</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10626</pid>
            <runtime>460</runtime>
            <invoked>2485</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>mhbfd_tracker</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10627</pid>
            <runtime>2870</runtime>
            <invoked>51317</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>stp</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10628</pid>
            <runtime>410</runtime>
            <invoked>527</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>aclqos</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10631</pid>
            <runtime>390</runtime>
            <invoked>1229</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>u2</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10632</pid>
            <runtime>450</runtime>
            <invoked>656</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>spm</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10633</pid>
            <runtime>470</runtime>
            <invoked>2468</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>sal</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10634</pid>
            <runtime>520</runtime>
            <invoked>63</invoked>
            <usecs>8</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>mrib</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10635</pid>
            <runtime>720</runtime>
            <invoked>2163</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>mfdm</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10636</pid>
            <runtime>530</runtime>
            <invoked>2484</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>mcm</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10637</pid>
            <runtime>420</runtime>
            <invoked>52</invoked>
            <usecs>8</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>m6rib</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10638</pid>
            <runtime>3810</runtime>
            <invoked>13266</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>l2pt</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10645</pid>
            <runtime>640</runtime>
            <invoked>3086</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>ufdm</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10647</pid>
            <runtime>470</runtime>
            <invoked>664</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>interface-vlan</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10663</pid>
            <runtime>390</runtime>
            <invoked>650</invoked>
            <usecs>0</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>m2rib</process>
           </ROW_process_cpu>
           <ROW_process_cpu>
            <pid>10665</pid>
            <runtime>400</runtime>
            <invoked>12</invoked>
            <usecs>33</usecs>
            <fivesec>0.00</fivesec>
            <onemin>0.00</onemin>
            <fivemin>0.00</fivemin>
            <tty>-</tty>
            <process>mcastfwd</process>
           </ROW_process_cpu>
          </TABLE_process_cpu>
         </__readonly__>
        </__XML__PARAM__sort-time>
       </sort>
      </cpu>
     </__XML__PARAM__e-vdc2>
    </vdc>
   </processes>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show processes vdc access1 cpu sort 5sec **

CPU utilization for five seconds: 1%/0%; one minute: 1%; five minutes: 1%
PID    Runtime(ms)  Invoked   uSecs  5Sec    1Min    5Min    TTY  Process
-----  -----------  --------  -----  ------  ------  ------  ---  -----------
 6954      1286570     26828     47   0.80%   0.62%  0.64%   -    platform
 7201          110      1385      0   0.05%   0.06%  0.06%   -    sysinfo
 7965        60230    120444      0   0.05%   0.01%  0.01%   -    diag_port_lb
10589          490        49     10   0.01%   0.01%  0.01%   -    ecp
 5800         5570     48487      0   0.00%   0.00%  0.00%   -    sysmgr
 7047         1000      2991      0   0.00%   0.00%  0.00%   -    pixm_gl
 7048          480        12     40   0.00%   0.00%  0.00%   -    pdsd
 7052          750      2634      0   0.00%   0.00%  0.00%   -    licmgr
 7053         1050      1304      0   0.00%   0.00%  0.00%   -    fs-daemon
 7058          680      3909      0   0.00%   0.00%  0.00%   -    bloggerd
 7198         2260      2774      0   0.00%   0.00%  0.00%   -    vdc_mgr
 7207         1730      4807      0   0.00%   0.00%  0.00%   -    res_mgr
 7208          940     12730      0   0.00%   0.00%  0.00%   -    plugin
 7220        15480     17007      0   0.00%   0.00%  0.00%   -    diagmgr
 7223         2390     12006      0   0.00%   0.00%  0.00%   -    clk_mgr
 7246         8970      7927      1   0.00%   0.00%  0.00%   -    diagclient
 7409         1520      5149      0   0.00%   0.00%  0.00%   -    xbar
 7430         7800     60170      0   0.00%   0.00%  0.00%   -    module
 7452         1780      1921      0   0.00%   0.00%  0.00%   -    ifmgr
 7907          810      2643      0   0.00%   0.00%  0.00%   -    sim
 7909          820      2633      0   0.00%   0.00%  0.00%   -    pltfm_debug
 7910         2690      9271      0   0.00%   0.00%  0.00%   -    pltfm_config
 7913          840      2739      0   0.00%   0.00%  0.00%   -    pixmc
 7916          770      2652      0   0.00%   0.00%  0.00%   -    monitorc
 7920          700      2603      0   0.00%   0.00%  0.00%   -    giscm
10332         1060     12515      0   0.00%   0.00%  0.00%   -    syslogd
10336          500        43     11   0.00%   0.00%  0.00%   -    confcheck
10337          500      1286      0   0.00%   0.00%  0.00%   -    feature-mgr
10338          410       222      1   0.00%   0.00%  0.00%   -    mmode
10339          700      2533      0   0.00%   0.00%  0.00%   -    pixm_vl
10340          900     12308      0   0.00%   0.00%  0.00%   -    psshelper
10341          510      2458      0   0.00%   0.00%  0.00%   -    session-mgr
10342          510        28     18   0.00%   0.00%  0.00%   -    smm
10343          610      2681      0   0.00%   0.00%  0.00%   -    vpc_config_sync
10344          640      1680      0   0.00%   0.00%  0.00%   -    vshd
10349        17190      1063     16   0.00%   0.00%  0.00%   -    clis
10351          400       496      0   0.00%   0.00%  0.00%   -    port-profile
10359          980     12424      0   0.00%   0.00%  0.00%   -    aaa
10360          930     12933      0   0.00%   0.00%  0.00%   -    cert_enroll
10361          970     12329      0   0.00%   0.00%  0.00%   -    securityd
10362          680      1753      0   0.00%   0.00%  0.00%   -    ascii-cfg
10363          680      2481      0   0.00%   0.00%  0.00%   -    cli_acl
10364          610       840      0   0.00%   0.00%  0.00%   -    evmc
10366          600       866      0   0.00%   0.00%  0.00%   -    evms
10367          580      1365      0   0.00%   0.00%  0.00%   -    fmd
10368           30        22      1   0.00%   0.00%  0.00%   -    mping_server
10369          600       843      0   0.00%   0.00%  0.00%   -    mvsh
10371          950     12263      0   0.00%   0.00%  0.00%   -    sksd
10372          630      1330      0   0.00%   0.00%  0.00%   -    snmpmib_proc
10373          680      2616      0   0.00%   0.00%  0.00%   -    statsprofiler
10374          710      1583      0   0.00%   0.00%  0.00%   -    vman
10375          740      2616      0   0.00%   0.00%  0.00%   -    vmm
10376          670      4136      0   0.00%   0.00%  0.00%   -    xmlma
10378          670      2479      0   0.00%   0.00%  0.00%   -    xmpp
10379          600        42     14   0.00%   0.00%  0.00%   -    l3vm
10380          540        93      5   0.00%   0.00%  0.00%   -    urib
10382          590       781      0   0.00%   0.00%  0.00%   -    aclmgr
10387          460      2456      0   0.00%   0.00%  0.00%   -    eem_policy_dir
10394          400        39     10   0.00%   0.00%  0.00%   -    adjmgr
10395          540      2643      0   0.00%   0.00%  0.00%   -    ncpinframgr
10396          370        50      7   0.00%   0.00%  0.00%   -    u6rib
10425          390        19     20   0.00%   0.00%  0.00%   -    npacl
10436          410        15     27   0.00%   0.00%  0.00%   -    arp
10437          350        14     25   0.00%   0.00%  0.00%   -    icmpv6
10439          400        22     18   0.00%   0.00%  0.00%   -    pktmgr
10464          500        17     29   0.00%   0.00%  0.00%   -    netstack
10479         1050     12266      0   0.00%   0.00%  0.00%   -    radius
10481          560      3056      0   0.00%   0.00%  0.00%   -    cdp
10482          590      3006      0   0.00%   0.00%  0.00%   -    cfs
10483           40        24      1   0.00%   0.00%  0.00%   -    ip_dummy
10484           40        13      3   0.00%   0.00%  0.00%   -    ipv6_dummy
10485          460       940      0   0.00%   0.00%  0.00%   -    ntp
10486          520      2598      0   0.00%   0.00%  0.00%   -    otm
10487         1820      6238      0   0.00%   0.00%  0.00%   -    snmpd
10488           30         6      5   0.00%   0.00%  0.00%   -    tcpudp_dummy
10494          350        25     14   0.00%   0.00%  0.00%   -    dcos-xinetd
10529         1010     12264      0   0.00%   0.00%  0.00%   -    ntpd
10535          770     12244      0   0.00%   0.00%  0.00%   -    callhome
10580          570        56     10   0.00%   0.00%  0.00%   -    rpm
10581          560      2517      0   0.00%   0.00%  0.00%   -    plsm
10582          610      2888      0   0.00%   0.00%  0.00%   -    plcmgr
10583          740      2058      0   0.00%   0.00%  0.00%   -    pfstat
10585          660      2498      0   0.00%   0.00%  0.00%   -    lim
10586         1310     11982      0   0.00%   0.00%  0.00%   -    l2rib
10587          600        44     13   0.00%   0.00%  0.00%   -    igmp
10588          610      1068      0   0.00%   0.00%  0.00%   -    eltm
10591          540       432      1   0.00%   0.00%  0.00%   -    adbm
10592          570       623      0   0.00%   0.00%  0.00%   -    acllog
10593          790      2610      0   0.00%   0.00%  0.00%   -    monitor
10620          440      1265      0   0.00%   0.00%  0.00%   -    eth_port_channel
10621         1470      1350      1   0.00%   0.00%  0.00%   -    vlan_mgr
10622          350       217      1   0.00%   0.00%  0.00%   -    eth_dstats
10623         2130      5102      0   0.00%   0.00%  0.00%   -    ipqosmgr
10624          570      1377      0   0.00%   0.00%  0.00%   -    ethpm
10625          480      1389      0   0.00%   0.00%  0.00%   -    l2fm
10626          460      2484      0   0.00%   0.00%  0.00%   -    mhbfd_tracker
10627         2870     51295      0   0.00%   0.00%  0.00%   -    stp
10628          410       527      0   0.00%   0.00%  0.00%   -    aclqos
10631          390      1228      0   0.00%   0.00%  0.00%   -    u2
10632          450       655      0   0.00%   0.00%  0.00%   -    spm
10633          470      2467      0   0.00%   0.00%  0.00%   -    sal
10634          520        63      8   0.00%   0.00%  0.00%   -    mrib
10635          720      2163      0   0.00%   0.00%  0.00%   -    mfdm
10636          530      2482      0   0.00%   0.00%  0.00%   -    mcm
10637          420        52      8   0.00%   0.00%  0.00%   -    m6rib
10638         3810     13260      0   0.00%   0.00%  0.00%   -    l2pt
10645          640      3085      0   0.00%   0.00%  0.00%   -    ufdm
10647          470       663      0   0.00%   0.00%  0.00%   -    interface-vlan
10663          390       649      0   0.00%   0.00%  0.00%   -    m2rib
10665          400        12     33   0.00%   0.00%  0.00%   -    mcastfwd

show processes vdc access log

show processes vdc access1 log
 
import requests
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 processes vdc access1 log”,
  "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)
{
  "TABLE_processes_log_vdc": {
    "ROW_processes_log_vdc": {
      "vdc": 2, 
      "process": "monitor", 
      "pid": 9374, 
      "normal_exit": "N", 
      "stack": "N", 
      "core": "N", 
      "create_time": "Tue Mar 20 15:44:48 2018"
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:process" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <processes>
    <vdc>
     <__XML__PARAM__e-vdc2>
      <__XML__value>access1</__XML__value>
      <log>
       <__readonly__>
        <TABLE_processes_log_vdc>
         <ROW_processes_log_vdc>
          <vdc>2</vdc>
          <process>monitor</process>
          <pid>9374</pid>
          <normal_exit>N</normal_exit>
          <stack>N</stack>
          <core>N</core>
          <create_time>Tue Mar 20 15:44:48 2018
</create_time>
         </ROW_processes_log_vdc>
        </TABLE_processes_log_vdc>
       </__readonly__>
      </log>
     </__XML__PARAM__e-vdc2>
    </vdc>
   </processes>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show processes vdc access1 log**

VDC Process          PID     Normal-exit  Stack  Core   Log-create-time
--- ---------------  ------  -----------  -----  -----  ---------------
  2 monitor          9374              N      N      N Tue Mar 20 15:44:48 2018

show processes vdc access log details

show processes vdc access1 log details 
 
import requests
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 processes vdc access1 log details ”,
  "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)
{
  "TABLE_line_in_log_detail": {
    "ROW_line_in_log_detail": [
      {
        "line_in_file": "Service: monitor"
      }, 
      {
        "line_in_file": "Description: monitor"
      }, 
      {
        "line_in_file": null
      }, 
      {
        "line_in_file": "System image name: n7700-s2-dk9.8.2.2.23.bin"
      }, 
      {
        "line_in_file": "System image version: 8.2(2.23) S0"
      }, 
      {
        "line_in_file": null
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:process" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <processes>
    <vdc>
     <__XML__PARAM__e-vdc2>
      <__XML__value>access1</__XML__value>
      <log>
       <details>
        <__readonly__>
         <TABLE_line_in_log_detail>
          <ROW_line_in_log_detail>
           <line_in_file>Service: monitor
</line_in_file>
          </ROW_line_in_log_detail>
          <ROW_line_in_log_detail>
           <line_in_file>Description: monitor
</line_in_file>
          </ROW_line_in_log_detail>
          <ROW_line_in_log_detail>
           <line_in_file>
</line_in_file>
          </ROW_line_in_log_detail>
          <ROW_line_in_log_detail>
           <line_in_file>System image name: n7700-s2-dk9.8.2.2.23.bin
</line_in_file>
          </ROW_line_in_log_detail>
          <ROW_line_in_log_detail>
           <line_in_file>System image version: 8.2(2.23) S0
</line_in_file>
          </ROW_line_in_log_detail>
          <ROW_line_in_log_detail>
           <line_in_file>
</line_in_file>
          </ROW_line_in_log_detail>
         </TABLE_line_in_log_detail>
        </__readonly__>
       </details>
      </log>
     </__XML__PARAM__e-vdc2>
    </vdc>
   </processes>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show processes vdc access1 log details**

Service: monitor
Description: monitor

System image name: n7700-s2-dk9.8.2.2.23.bin System image version: 8.2(2.23) S0

show processes vdc access memory

show processes vdc access1 memory
 
import requests
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 processes vdc access1 memory”,
  "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)
{
  "TABLE_process_memory": {
    "ROW_process_memory": [
      {
        "mem_pid": 5800, 
        "mem_alloc": 12107776, 
        "mem_limit": 0, 
        "mem_used": 384692224, 
        "stack_base_ptr": "fffa1960/fffa1560", 
        "process": "sysmgr"
      }, 
      {
        "mem_pid": 6954, 
        "mem_alloc": 24633344, 
        "mem_limit": 0, 
        "mem_used": 415715328, 
        "stack_base_ptr": "ffe7dbd0/ffe7b810", 
        "process": "platform"
      }, 
      {
        "mem_pid": 7047, 
        "mem_alloc": 20439040, 
        "mem_limit": 0, 
        "mem_used": 413450240, 
        "stack_base_ptr": "ff85f7d0/ff85eb90", 
        "process": "pixm_gl"
      }, 
      {
        "mem_pid": 7048, 
        "mem_alloc": 29364224, 
        "mem_limit": 0, 
        "mem_used": 494329856, 
        "stack_base_ptr": "ffe5c660/ffe5c530", 
        "process": "pdsd"
      }, 
      {
        "mem_pid": 7052, 
        "mem_alloc": 2711552, 
        "mem_limit": 0, 
        "mem_used": 388321280, 
        "stack_base_ptr": "ffc05810/ffc05168", 
        "process": "licmgr"
      }, 
      {
        "mem_pid": 7053, 
        "mem_alloc": 1368064, 
        "mem_limit": 0, 
        "mem_used": 378785792, 
        "stack_base_ptr": "fff99f60/fff996f0", 
        "process": "fs-daemon"
      }, 
      {
        "mem_pid": 7058, 
        "mem_alloc": 7053312, 
        "mem_limit": 0, 
        "mem_used": 389844992, 
        "stack_base_ptr": "ff841330/ff84038c", 
        "process": "bloggerd"
      }, 
      {
        "mem_pid": 7198, 
        "mem_alloc": 1925120, 
        "mem_limit": 0, 
        "mem_used": 382525440, 
        "stack_base_ptr": "ffb1c670/ffb1b8e0", 
        "process": "vdc_mgr"
      }, 
      {
        "mem_pid": 7201, 
        "mem_alloc": 12718080, 
        "mem_limit": 0, 
        "mem_used": 287657984, 
        "stack_base_ptr": "ffec1640/ffec14ac", 
        "process": "sysinfo"
      }, 
      {
        "mem_pid": 7207, 
        "mem_alloc": 3170304, 
        "mem_limit": 0, 
        "mem_used": 385015808, 
        "stack_base_ptr": "ffa1ddf0/ffa1d92c", 
        "process": "res_mgr"
      }, 
      {
        "mem_pid": 7208, 
        "mem_alloc": 3923968, 
        "mem_limit": 0, 
        "mem_used": 371843072, 
        "stack_base_ptr": "fffc44e0/fffc34ac", 
        "process": "plugin"
      }, 
      {
        "mem_pid": 7220, 
        "mem_alloc": 4456448, 
        "mem_limit": 0, 
        "mem_used": 383934464, 
        "stack_base_ptr": "ffd1f110/ffd1e0b0", 
        "process": "diagmgr"
      }, 
      {
        "mem_pid": 7223, 
        "mem_alloc": 2195456, 
        "mem_limit": 0, 
        "mem_used": 388001792, 
        "stack_base_ptr": "ffd713b0/ffd70380", 
        "process": "clk_mgr"
      }, 
      {
        "mem_pid": 7246, 
        "mem_alloc": 20770816, 
        "mem_limit": 0, 
        "mem_used": 400662528, 
        "stack_base_ptr": "ff941fc0/ff940ca0", 
        "process": "diagclient"
      }, 
      {
        "mem_pid": 7409, 
        "mem_alloc": 19988480, 
        "mem_limit": 0, 
        "mem_used": 416063488, 
        "stack_base_ptr": "ff939250/ff931670", 
        "process": "xbar"
      }, 
      {
        "mem_pid": 7430, 
        "mem_alloc": 7335936, 
        "mem_limit": 0, 
        "mem_used": 390787072, 
        "stack_base_ptr": "ffcde6a0/ffcdc310", 
        "process": "module"
      }, 
      {
        "mem_pid": 7452, 
        "mem_alloc": 9367552, 
        "mem_limit": 0, 
        "mem_used": 404787200, 
        "stack_base_ptr": "fffc8210/fffc71c0", 
        "process": "ifmgr"
      }, 
      {
        "mem_pid": 7907, 
        "mem_alloc": 8450048, 
        "mem_limit": 0, 
        "mem_used": 395792384, 
        "stack_base_ptr": "ffe4f570/ffe4dd6c", 
        "process": "sim"
      }, 
      {
        "mem_pid": 7909, 
        "mem_alloc": 4907008, 
        "mem_limit": 0, 
        "mem_used": 391376896, 
        "stack_base_ptr": "ff880160/ff87f100", 
        "process": "pltfm_debug"
      }, 
      {
        "mem_pid": 7910, 
        "mem_alloc": 4145152, 
        "mem_limit": 0, 
        "mem_used": 392970240, 
        "stack_base_ptr": "ffec13d0/ffebf81c", 
        "process": "pltfm_config"
      }, 
      {
        "mem_pid": 7913, 
        "mem_alloc": 28327936, 
        "mem_limit": 0, 
        "mem_used": 418869248, 
        "stack_base_ptr": "ffab48c0/ffab3c90", 
        "process": "pixmc"
      }, 
      {
        "mem_pid": 7916, 
        "mem_alloc": 3571712, 
        "mem_limit": 0, 
        "mem_used": 390905856, 
        "stack_base_ptr": "ffbbb920/ffbba8e0", 
        "process": "monitorc"
      }, 
      {
        "mem_pid": 7920, 
        "mem_alloc": 10510336, 
        "mem_limit": 0, 
        "mem_used": 411803648, 
        "stack_base_ptr": "ffce3080/ffce14fc", 
        "process": "giscm"
      }, 
      {
        "mem_pid": 7965, 
        "mem_alloc": 33157120, 
        "mem_limit": 0, 
        "mem_used": 427773952, 
        "stack_base_ptr": "ff83ca50/ff83bc60", 
        "process": "diag_port_lb"
      }, 
      {
        "mem_pid": 10332, 
        "mem_alloc": 12046336, 
        "mem_limit": 789647936, 
        "mem_used": 396582912, 
        "stack_base_ptr": "ffe6c6e0/ffe680ec", 
        "process": "syslogd"
      }, 
      {
        "mem_pid": 10336, 
        "mem_alloc": 1982464, 
        "mem_limit": 0, 
        "mem_used": 381001728, 
        "stack_base_ptr": "fffaca60/fffac840", 
        "process": "confcheck"
      }, 
      {
        "mem_pid": 10337, 
        "mem_alloc": 3289088, 
        "mem_limit": 0, 
        "mem_used": 387141632, 
        "stack_base_ptr": "ffe9e490/ffe9d4fc", 
        "process": "feature-mgr"
      }, 
      {
        "mem_pid": 10338, 
        "mem_alloc": 4620288, 
        "mem_limit": 1311063424, 
        "mem_used": 486318080, 
        "stack_base_ptr": "ff9b74b0/ff9b490c", 
        "process": "mmode"
      }, 
      {
        "mem_pid": 10339, 
        "mem_alloc": 30920704, 
        "mem_limit": 995913318, 
        "mem_used": 416292864, 
        "stack_base_ptr": "ffd18500/ffd178c0", 
        "process": "pixm_vl"
      }, 
      {
        "mem_pid": 10340, 
        "mem_alloc": 3342336, 
        "mem_limit": 1049678784, 
        "mem_used": 382189568, 
        "stack_base_ptr": "fff432f0/fff42ec0", 
        "process": "psshelper"
      }, 
      {
        "mem_pid": 10341, 
        "mem_alloc": 4907008, 
        "mem_limit": 836624800, 
        "mem_used": 383823872, 
        "stack_base_ptr": "ff878790/ff877770", 
        "process": "session-mgr"
      }, 
      {
        "mem_pid": 10342, 
        "mem_alloc": 8142848, 
        "mem_limit": 1035013619, 
        "mem_used": 390254592, 
        "stack_base_ptr": "ffb7ce50/ffb7c890", 
        "process": "smm"
      }, 
      {
        "mem_pid": 10343, 
        "mem_alloc": 5025792, 
        "mem_limit": 1041375526, 
        "mem_used": 490704896, 
        "stack_base_ptr": "ffffbda0/ffffab70", 
        "process": "vpc_config_sync"
      }, 
      {
        "mem_pid": 10344, 
        "mem_alloc": 2752512, 
        "mem_limit": 975643187, 
        "mem_used": 386691072, 
        "stack_base_ptr": "ffd1b520/ffd1adfc", 
        "process": "vshd"
      }, 
      {
        "mem_pid": 10349, 
        "mem_alloc": 19210240, 
        "mem_limit": 1420319718, 
        "mem_used": 504619008, 
        "stack_base_ptr": "ff9cad00/ff9ca0ec", 
        "process": "clis"
      }, 
      {
        "mem_pid": 10351, 
        "mem_alloc": 63811584, 
        "mem_limit": 1709656678, 
        "mem_used": 551743488, 
        "stack_base_ptr": "ff83e440/ff83c8cc", 
        "process": "port-profile"
      }, 
      {
        "mem_pid": 10359, 
        "mem_alloc": 2809856, 
        "mem_limit": 0, 
        "mem_used": 384499712, 
        "stack_base_ptr": "ffec0910/ffebf4a0", 
        "process": "aaa"
      }, 
      {
        "mem_pid": 10360, 
        "mem_alloc": 3239936, 
        "mem_limit": 0, 
        "mem_used": 390340608, 
        "stack_base_ptr": "ffbd5df0/ffbd404c", 
        "process": "cert_enroll"
      }, 
      {
        "mem_pid": 10361, 
        "mem_alloc": 3108864, 
        "mem_limit": 0, 
        "mem_used": 387514368, 
        "stack_base_ptr": "ffa1feb0/ffa1e9f8", 
        "process": "securityd"
      }, 
      {
        "mem_pid": 10362, 
        "mem_alloc": 2949120, 
        "mem_limit": 0, 
        "mem_used": 496148480, 
        "stack_base_ptr": "ffd69410/ffd68808", 
        "process": "ascii-cfg"
      }, 
      {
        "mem_pid": 10363, 
        "mem_alloc": 3538944, 
        "mem_limit": 763318054, 
        "mem_used": 384622592, 
        "stack_base_ptr": "ff98be80/ff98b060", 
        "process": "cli_acl"
      }, 
      {
        "mem_pid": 10364, 
        "mem_alloc": 2510848, 
        "mem_limit": 1027750592, 
        "mem_used": 382328832, 
        "stack_base_ptr": "ffdeb6e0/ffdea6c0", 
        "process": "evmc"
      }, 
      {
        "mem_pid": 10366, 
        "mem_alloc": 3051520, 
        "mem_limit": 766557580, 
        "mem_used": 384974848, 
        "stack_base_ptr": "fff4a7f0/fff497c0", 
        "process": "evms"
      }, 
      {
        "mem_pid": 10367, 
        "mem_alloc": 6000640, 
        "mem_limit": 766990118, 
        "mem_used": 389152768, 
        "stack_base_ptr": "ffacf370/ffacf1b0", 
        "process": "fmd"
      }, 
      {
        "mem_pid": 10368, 
        "mem_alloc": 405504, 
        "mem_limit": 0, 
        "mem_used": 277676032, 
        "stack_base_ptr": "ff9043e0/ff903fb0", 
        "process": "mping_server"
      }, 
      {
        "mem_pid": 10369, 
        "mem_alloc": 2445312, 
        "mem_limit": 923016300, 
        "mem_used": 382111744, 
        "stack_base_ptr": "ffddb200/ffdd9fc0", 
        "process": "mvsh"
      }, 
      {
        "mem_pid": 10371, 
        "mem_alloc": 2408448, 
        "mem_limit": 780917420, 
        "mem_used": 384487424, 
        "stack_base_ptr": "ff809d70/ff8097b0", 
        "process": "sksd"
      }, 
      {
        "mem_pid": 10372, 
        "mem_alloc": 2883584, 
        "mem_limit": 764106534, 
        "mem_used": 382943232, 
        "stack_base_ptr": "ffe299c0/ffe28960", 
        "process": "snmpmib_proc"
      }, 
      {
        "mem_pid": 10373, 
        "mem_alloc": 4636672, 
        "mem_limit": 767494745, 
        "mem_used": 386150400, 
        "stack_base_ptr": "ffb77190/ffb76130", 
        "process": "statsprofiler"
      }, 
      {
        "mem_pid": 10374, 
        "mem_alloc": 5492736, 
        "mem_limit": 788671558, 
        "mem_used": 393961472, 
        "stack_base_ptr": "ff90a7b0/ff90a078", 
        "process": "vman"
      }, 
      {
        "mem_pid": 10375, 
        "mem_alloc": 3522560, 
        "mem_limit": 775782374, 
        "mem_used": 386121728, 
        "stack_base_ptr": "ffde9ad0/ffde8490", 
        "process": "vmm"
      }, 
      {
        "mem_pid": 10376, 
        "mem_alloc": 2433024, 
        "mem_limit": 0, 
        "mem_used": 383602688, 
        "stack_base_ptr": "ffdb3720/ffdb29ac", 
        "process": "xmlma"
      }, 
      {
        "mem_pid": 10378, 
        "mem_alloc": 2392064, 
        "mem_limit": 1027349593, 
        "mem_used": 381960192, 
        "stack_base_ptr": "ff86f2d0/ff86e290", 
        "process": "xmpp"
      }, 
      {
        "mem_pid": 10379, 
        "mem_alloc": 13971456, 
        "mem_limit": 1040451878, 
        "mem_used": 400121856, 
        "stack_base_ptr": "ffb22ed0/ffb22b20", 
        "process": "l3vm"
      }, 
      {
        "mem_pid": 10380, 
        "mem_alloc": 17358848, 
        "mem_limit": 1611315200, 
        "mem_used": 439074816, 
        "stack_base_ptr": "fffd02b0/fffd0070", 
        "process": "urib"
      }, 
      {
        "mem_pid": 10382, 
        "mem_alloc": 7434240, 
        "mem_limit": 1646118707, 
        "mem_used": 396791808, 
        "stack_base_ptr": "ff9cdb10/ff9cc860", 
        "process": "aclmgr"
      }, 
      {
        "mem_pid": 10387, 
        "mem_alloc": 2883584, 
        "mem_limit": 1029606899, 
        "mem_used": 384012288, 
        "stack_base_ptr": "ffbf92e0/ffbf82a0", 
        "process": "eem_policy_dir"
      }, 
      {
        "mem_pid": 10394, 
        "mem_alloc": 34377728, 
        "mem_limit": 1126306368, 
        "mem_used": 467931136, 
        "stack_base_ptr": "ff88c2e0/ff88bf40", 
        "process": "adjmgr"
      }, 
      {
        "mem_pid": 10395, 
        "mem_alloc": 3944448, 
        "mem_limit": 766012403, 
        "mem_used": 389312512, 
        "stack_base_ptr": "ffb5d510/ffb5c4d0", 
        "process": "ncpinframgr"
      }, 
      {
        "mem_pid": 10396, 
        "mem_alloc": 27586560, 
        "mem_limit": 1045272870, 
        "mem_used": 444194816, 
        "stack_base_ptr": "ff94a9c0/ff94a880", 
        "process": "u6rib"
      }, 
      {
        "mem_pid": 10425, 
        "mem_alloc": 8597504, 
        "mem_limit": 1063844953, 
        "mem_used": 419778560, 
        "stack_base_ptr": "ffaa97b0/ffaa9230", 
        "process": "npacl"
      }, 
      {
        "mem_pid": 10436, 
        "mem_alloc": 83185664, 
        "mem_limit": 1245393600, 
        "mem_used": 625324032, 
        "stack_base_ptr": "ffb80470/ffb800d0", 
        "process": "arp"
      }, 
      {
        "mem_pid": 10437, 
        "mem_alloc": 18182144, 
        "mem_limit": 1045191769, 
        "mem_used": 477200384, 
        "stack_base_ptr": "fff0fb50/fff0f5dc", 
        "process": "icmpv6"
      }, 
      {
        "mem_pid": 10439, 
        "mem_alloc": 26820608, 
        "mem_limit": 1145166528, 
        "mem_used": 539250688, 
        "stack_base_ptr": "ffa56c10/ffa56b00", 
        "process": "pktmgr"
      }, 
      {
        "mem_pid": 10464, 
        "mem_alloc": 76550144, 
        "mem_limit": 1287412403, 
        "mem_used": 636780544, 
        "stack_base_ptr": "ffb8d500/ffb8cf50", 
        "process": "netstack"
      }, 
      {
        "mem_pid": 10479, 
        "mem_alloc": 3502080, 
        "mem_limit": 894458822, 
        "mem_used": 419786752, 
        "stack_base_ptr": "ffc39930/ffc3467c", 
        "process": "radius"
      }, 
      {
        "mem_pid": 10481, 
        "mem_alloc": 3014656, 
        "mem_limit": 868058188, 
        "mem_used": 420261888, 
        "stack_base_ptr": "ffa20aa0/ffa1f8dc", 
        "process": "cdp"
      }, 
      {
        "mem_pid": 10482, 
        "mem_alloc": 9334784, 
        "mem_limit": 1092315980, 
        "mem_used": 393453568, 
        "stack_base_ptr": "ffba6690/ffba4b1c", 
        "process": "cfs"
      }, 
      {
        "mem_pid": 10483, 
        "mem_alloc": 319488, 
        "mem_limit": 656857062, 
        "mem_used": 275152896, 
        "stack_base_ptr": "ffa7dd10/ffa7d8f8", 
        "process": "ip_dummy"
      }, 
      {
        "mem_pid": 10484, 
        "mem_alloc": 319488, 
        "mem_limit": 656857062, 
        "mem_used": 275152896, 
        "stack_base_ptr": "ffe11160/ffe10d48", 
        "process": "ipv6_dummy"
      }, 
      {
        "mem_pid": 10485, 
        "mem_alloc": 3358720, 
        "mem_limit": 1031967833, 
        "mem_used": 444145664, 
        "stack_base_ptr": "ffa31840/ffa2d45c", 
        "process": "ntp"
      }, 
      {
        "mem_pid": 10486, 
        "mem_alloc": 4055040, 
        "mem_limit": 1030945062, 
        "mem_used": 443727872, 
        "stack_base_ptr": "fff59690/fff57b1c", 
        "process": "otm"
      }, 
      {
        "mem_pid": 10487, 
        "mem_alloc": 25726976, 
        "mem_limit": 906967705, 
        "mem_used": 461746176, 
        "stack_base_ptr": "ffd00450/ffcfb1fc", 
        "process": "snmpd"
      }, 
      {
        "mem_pid": 10488, 
        "mem_alloc": 319488, 
        "mem_limit": 656857062, 
        "mem_used": 275152896, 
        "stack_base_ptr": "fffe71c0/fffe6da8", 
        "process": "tcpudp_dummy"
      }, 
      {
        "mem_pid": 10494, 
        "mem_alloc": 3448832, 
        "mem_limit": 472988876, 
        "mem_used": 384905216, 
        "stack_base_ptr": "ffc97ca0/ffc93ecc", 
        "process": "dcos-xinetd"
      }, 
      {
        "mem_pid": 10529, 
        "mem_alloc": 2318336, 
        "mem_limit": 0, 
        "mem_used": 383918080, 
        "stack_base_ptr": "ffceca80/ffce8cac", 
        "process": "ntpd"
      }, 
      {
        "mem_pid": 10535, 
        "mem_alloc": 25530368, 
        "mem_limit": 892609203, 
        "mem_used": 411697152, 
        "stack_base_ptr": "fff97010/fff96adc", 
        "process": "callhome"
      }, 
      {
        "mem_pid": 10580, 
        "mem_alloc": 16080896, 
        "mem_limit": 1046975987, 
        "mem_used": 474648576, 
        "stack_base_ptr": "fff1b900/fff1b7e0", 
        "process": "rpm"
      }, 
      {
        "mem_pid": 10581, 
        "mem_alloc": 4530176, 
        "mem_limit": 843228672, 
        "mem_used": 384872448, 
        "stack_base_ptr": "ffc8aab0/ffc89a80", 
        "process": "plsm"
      }, 
      {
        "mem_pid": 10582, 
        "mem_alloc": 6352896, 
        "mem_limit": 1031733542, 
        "mem_used": 390672384, 
        "stack_base_ptr": "ff873820/ff872800", 
        "process": "plcmgr"
      }, 
      {
        "mem_pid": 10583, 
        "mem_alloc": 4288512, 
        "mem_limit": 1031255948, 
        "mem_used": 387686400, 
        "stack_base_ptr": "fff33f40/fff3238c", 
        "process": "pfstat"
      }, 
      {
        "mem_pid": 10585, 
        "mem_alloc": 71749632, 
        "mem_limit": 997711475, 
        "mem_used": 456474624, 
        "stack_base_ptr": "ffd764e0/ffd748dc", 
        "process": "lim"
      }, 
      {
        "mem_pid": 10586, 
        "mem_alloc": 47607808, 
        "mem_limit": 1074382848, 
        "mem_used": 433643520, 
        "stack_base_ptr": "ff8a5030/ff8a45a0", 
        "process": "l2rib"
      }, 
      {
        "mem_pid": 10587, 
        "mem_alloc": 151097344, 
        "mem_limit": 1404815808, 
        "mem_used": 590594048, 
        "stack_base_ptr": "ffad3480/ffad2f50", 
        "process": "igmp"
      }, 
      {
        "mem_pid": 10588, 
        "mem_alloc": 14483456, 
        "mem_limit": 790023238, 
        "mem_used": 402653184, 
        "stack_base_ptr": "ffca0ef0/ffc9f72c", 
        "process": "eltm"
      }, 
      {
        "mem_pid": 10589, 
        "mem_alloc": 8499200, 
        "mem_limit": 1030426918, 
        "mem_used": 389902336, 
        "stack_base_ptr": "fff73ec0/fff73da0", 
        "process": "ecp"
      }, 
      {
        "mem_pid": 10591, 
        "mem_alloc": 13787136, 
        "mem_limit": 981622118, 
        "mem_used": 400723968, 
        "stack_base_ptr": "ffcc03b0/ffcbe82c", 
        "process": "adbm"
      }, 
      {
        "mem_pid": 10592, 
        "mem_alloc": 3485696, 
        "mem_limit": 1030571097, 
        "mem_used": 386428928, 
        "stack_base_ptr": "ff945380/ff944330", 
        "process": "acllog"
      }, 
      {
        "mem_pid": 10593, 
        "mem_alloc": 208961536, 
        "mem_limit": 877348736, 
        "mem_used": 627449856, 
        "stack_base_ptr": "ffbae1b0/ffbac62c", 
        "process": "monitor"
      }, 
      {
        "mem_pid": 10620, 
        "mem_alloc": 4485120, 
        "mem_limit": 780382592, 
        "mem_used": 392609792, 
        "stack_base_ptr": "ff80dba0/ff80be1c", 
        "process": "eth_port_channel"
      }, 
      {
        "mem_pid": 10621, 
        "mem_alloc": 50618368, 
        "mem_limit": 823596787, 
        "mem_used": 444977152, 
        "stack_base_ptr": "fffac4c0/fffab0ec", 
        "process": "vlan_mgr"
      }, 
      {
        "mem_pid": 10622, 
        "mem_alloc": 2514944, 
        "mem_limit": 785403660, 
        "mem_used": 382251008, 
        "stack_base_ptr": "ff856580/ff8561d0", 
        "process": "eth_dstats"
      }, 
      {
        "mem_pid": 10623, 
        "mem_alloc": 12914688, 
        "mem_limit": 1653160960, 
        "mem_used": 409477120, 
        "stack_base_ptr": "fffbe070/fffbca70", 
        "process": "ipqosmgr"
      }, 
      {
        "mem_pid": 10624, 
        "mem_alloc": 10358784, 
        "mem_limit": 856601292, 
        "mem_used": 466116608, 
        "stack_base_ptr": "ffad0fb0/ffacf3cc", 
        "process": "ethpm"
      }, 
      {
        "mem_pid": 10625, 
        "mem_alloc": 20062208, 
        "mem_limit": 1047368608, 
        "mem_used": 425947136, 
        "stack_base_ptr": "ff94cf50/ff94b1ac", 
        "process": "l2fm"
      }, 
      {
        "mem_pid": 10626, 
        "mem_alloc": 5267456, 
        "mem_limit": 765787123, 
        "mem_used": 408166400, 
        "stack_base_ptr": "fff5f070/fff5d4ec", 
        "process": "mhbfd_tracker"
      }, 
      {
        "mem_pid": 10627, 
        "mem_alloc": 9134080, 
        "mem_limit": 1077055232, 
        "mem_used": 486494208, 
        "stack_base_ptr": "ffd4f270/ffd4e70c", 
        "process": "stp"
      }, 
      {
        "mem_pid": 10628, 
        "mem_alloc": 33615872, 
        "mem_limit": 778357747, 
        "mem_used": 425091072, 
        "stack_base_ptr": "ffc19dc0/ffc1822c", 
        "process": "aclqos"
      }, 
      {
        "mem_pid": 10631, 
        "mem_alloc": 3067904, 
        "mem_limit": 768625651, 
        "mem_used": 386756608, 
        "stack_base_ptr": "ffe50f30/ffe4ff00", 
        "process": "u2"
      }, 
      {
        "mem_pid": 10632, 
        "mem_alloc": 6553600, 
        "mem_limit": 1417981593, 
        "mem_used": 392540160, 
        "stack_base_ptr": "ffaebbc0/ffaeaf40", 
        "process": "spm"
      }, 
      {
        "mem_pid": 10633, 
        "mem_alloc": 3039232, 
        "mem_limit": 1029791628, 
        "mem_used": 408829952, 
        "stack_base_ptr": "ffecd720/ffecbbac", 
        "process": "sal"
      }, 
      {
        "mem_pid": 10634, 
        "mem_alloc": 125378560, 
        "mem_limit": 1264177728, 
        "mem_used": 627449856, 
        "stack_base_ptr": "ffe6fb20/ffe6fa00", 
        "process": "mrib"
      }, 
      {
        "mem_pid": 10635, 
        "mem_alloc": 10465280, 
        "mem_limit": 1147257408, 
        "mem_used": 401956864, 
        "stack_base_ptr": "ffb8dea0/ffb8c29c", 
        "process": "mfdm"
      }, 
      {
        "mem_pid": 10636, 
        "mem_alloc": 3338240, 
        "mem_limit": 767620902, 
        "mem_used": 390856704, 
        "stack_base_ptr": "ffd61ed0/ffd60e40", 
        "process": "mcm"
      }, 
      {
        "mem_pid": 10637, 
        "mem_alloc": 65372160, 
        "mem_limit": 1090022489, 
        "mem_used": 514068480, 
        "stack_base_ptr": "ffea39d0/ffea38b0", 
        "process": "m6rib"
      }, 
      {
        "mem_pid": 10638, 
        "mem_alloc": 3215360, 
        "mem_limit": 1030332300, 
        "mem_used": 388902912, 
        "stack_base_ptr": "ffab33e0/ffab163c", 
        "process": "l2pt"
      }, 
      {
        "mem_pid": 10645, 
        "mem_alloc": 25665536, 
        "mem_limit": 1037234880, 
        "mem_used": 453369856, 
        "stack_base_ptr": "ff8fa230/ff8f85bc", 
        "process": "ufdm"
      }, 
      {
        "mem_pid": 10647, 
        "mem_alloc": 5951488, 
        "mem_limit": 814067443, 
        "mem_used": 393633792, 
        "stack_base_ptr": "ffad5150/ffad339c", 
        "process": "interface-vlan"
      }, 
      {
        "mem_pid": 10663, 
        "mem_alloc": 12918784, 
        "mem_limit": 1170622604, 
        "mem_used": 398573568, 
        "stack_base_ptr": "ff9e9240/ff9e8970", 
        "process": "m2rib"
      }, 
      {
        "mem_pid": 10665, 
        "mem_alloc": 65646592, 
        "mem_limit": 1112131328, 
        "mem_used": 554160128, 
        "stack_base_ptr": "ffde7560/ffde7470", 
        "process": "mcastfwd"
      }
    ]
  }, 
  "sum_mem_malloced": "1923129344"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:process" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <processes>
    <vdc>
     <__XML__PARAM__e-vdc2>
      <__XML__value>access1</__XML__value>
      <memory>
       <__readonly__>
        <TABLE_process_memory>
         <ROW_process_memory>
          <mem_pid>5800</mem_pid>
          <mem_alloc>12107776</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>384692224</mem_used>
          <stack_base_ptr>fffa1960/fffa1560</stack_base_ptr>
          <process>sysmgr</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>6954</mem_pid>
          <mem_alloc>24633344</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>415715328</mem_used>
          <stack_base_ptr>ffe7dbd0/ffe7b810</stack_base_ptr>
          <process>platform</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7047</mem_pid>
          <mem_alloc>20439040</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>413450240</mem_used>
          <stack_base_ptr>ff85f7d0/ff85eb90</stack_base_ptr>
          <process>pixm_gl</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7048</mem_pid>
          <mem_alloc>29364224</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>494329856</mem_used>
          <stack_base_ptr>ffe5c660/ffe5c530</stack_base_ptr>
          <process>pdsd</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7052</mem_pid>
          <mem_alloc>2711552</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>388321280</mem_used>
          <stack_base_ptr>ffc05810/ffc05168</stack_base_ptr>
          <process>licmgr</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7053</mem_pid>
          <mem_alloc>1368064</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>378785792</mem_used>
          <stack_base_ptr>fff99f60/fff996f0</stack_base_ptr>
          <process>fs-daemon</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7058</mem_pid>
          <mem_alloc>7053312</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>389844992</mem_used>
          <stack_base_ptr>ff841330/ff84038c</stack_base_ptr>
          <process>bloggerd</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7198</mem_pid>
          <mem_alloc>1925120</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>382525440</mem_used>
          <stack_base_ptr>ffb1c670/ffb1b8e0</stack_base_ptr>
          <process>vdc_mgr</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7201</mem_pid>
          <mem_alloc>12718080</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>287657984</mem_used>
          <stack_base_ptr>ffec1640/ffec14ac</stack_base_ptr>
          <process>sysinfo</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7207</mem_pid>
          <mem_alloc>3170304</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>385015808</mem_used>
          <stack_base_ptr>ffa1ddf0/ffa1d92c</stack_base_ptr>
          <process>res_mgr</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7208</mem_pid>
          <mem_alloc>3923968</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>371843072</mem_used>
          <stack_base_ptr>fffc44e0/fffc34ac</stack_base_ptr>
          <process>plugin</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7220</mem_pid>
          <mem_alloc>4456448</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>383934464</mem_used>
          <stack_base_ptr>ffd1f110/ffd1e0b0</stack_base_ptr>
          <process>diagmgr</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7223</mem_pid>
          <mem_alloc>2195456</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>388001792</mem_used>
          <stack_base_ptr>ffd713b0/ffd70380</stack_base_ptr>
          <process>clk_mgr</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7246</mem_pid>
          <mem_alloc>20770816</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>400662528</mem_used>
          <stack_base_ptr>ff941fc0/ff940ca0</stack_base_ptr>
          <process>diagclient</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7409</mem_pid>
          <mem_alloc>19988480</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>416063488</mem_used>
          <stack_base_ptr>ff939250/ff931670</stack_base_ptr>
          <process>xbar</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7430</mem_pid>
          <mem_alloc>7335936</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>390787072</mem_used>
          <stack_base_ptr>ffcde6a0/ffcdc310</stack_base_ptr>
          <process>module</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7452</mem_pid>
          <mem_alloc>9367552</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>404787200</mem_used>
          <stack_base_ptr>fffc8210/fffc71c0</stack_base_ptr>
          <process>ifmgr</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7907</mem_pid>
          <mem_alloc>8450048</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>395792384</mem_used>
          <stack_base_ptr>ffe4f570/ffe4dd6c</stack_base_ptr>
          <process>sim</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7909</mem_pid>
          <mem_alloc>4907008</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>391376896</mem_used>
          <stack_base_ptr>ff880160/ff87f100</stack_base_ptr>
          <process>pltfm_debug</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7910</mem_pid>
          <mem_alloc>4145152</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>392970240</mem_used>
          <stack_base_ptr>ffec13d0/ffebf81c</stack_base_ptr>
          <process>pltfm_config</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7913</mem_pid>
          <mem_alloc>28327936</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>418869248</mem_used>
          <stack_base_ptr>ffab48c0/ffab3c90</stack_base_ptr>
          <process>pixmc</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7916</mem_pid>
          <mem_alloc>3571712</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>390905856</mem_used>
          <stack_base_ptr>ffbbb920/ffbba8e0</stack_base_ptr>
          <process>monitorc</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7920</mem_pid>
          <mem_alloc>10510336</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>411803648</mem_used>
          <stack_base_ptr>ffce3080/ffce14fc</stack_base_ptr>
          <process>giscm</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>7965</mem_pid>
          <mem_alloc>33157120</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>427773952</mem_used>
          <stack_base_ptr>ff83ca50/ff83bc60</stack_base_ptr>
          <process>diag_port_lb</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10332</mem_pid>
          <mem_alloc>12046336</mem_alloc>
          <mem_limit>789647936</mem_limit>
          <mem_used>396582912</mem_used>
          <stack_base_ptr>ffe6c6e0/ffe680ec</stack_base_ptr>
          <process>syslogd</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10336</mem_pid>
          <mem_alloc>1982464</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>381001728</mem_used>
          <stack_base_ptr>fffaca60/fffac840</stack_base_ptr>
          <process>confcheck</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10337</mem_pid>
          <mem_alloc>3289088</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>387141632</mem_used>
          <stack_base_ptr>ffe9e490/ffe9d4fc</stack_base_ptr>
          <process>feature-mgr</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10338</mem_pid>
          <mem_alloc>4620288</mem_alloc>
          <mem_limit>1311063424</mem_limit>
          <mem_used>486318080</mem_used>
          <stack_base_ptr>ff9b74b0/ff9b490c</stack_base_ptr>
          <process>mmode</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10339</mem_pid>
          <mem_alloc>30920704</mem_alloc>
          <mem_limit>995913318</mem_limit>
          <mem_used>416292864</mem_used>
          <stack_base_ptr>ffd18500/ffd178c0</stack_base_ptr>
          <process>pixm_vl</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10340</mem_pid>
          <mem_alloc>3342336</mem_alloc>
          <mem_limit>1049678784</mem_limit>
          <mem_used>382189568</mem_used>
          <stack_base_ptr>fff432f0/fff42ec0</stack_base_ptr>
          <process>psshelper</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10341</mem_pid>
          <mem_alloc>4907008</mem_alloc>
          <mem_limit>836624800</mem_limit>
          <mem_used>383823872</mem_used>
          <stack_base_ptr>ff878790/ff877770</stack_base_ptr>
          <process>session-mgr</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10342</mem_pid>
          <mem_alloc>8142848</mem_alloc>
          <mem_limit>1035013619</mem_limit>
          <mem_used>390254592</mem_used>
          <stack_base_ptr>ffb7ce50/ffb7c890</stack_base_ptr>
          <process>smm</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10343</mem_pid>
          <mem_alloc>5025792</mem_alloc>
          <mem_limit>1041375526</mem_limit>
          <mem_used>490704896</mem_used>
          <stack_base_ptr>ffffbda0/ffffab70</stack_base_ptr>
          <process>vpc_config_sync</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10344</mem_pid>
          <mem_alloc>2752512</mem_alloc>
          <mem_limit>975643187</mem_limit>
          <mem_used>386691072</mem_used>
          <stack_base_ptr>ffd1b520/ffd1adfc</stack_base_ptr>
          <process>vshd</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10349</mem_pid>
          <mem_alloc>19210240</mem_alloc>
          <mem_limit>1420319718</mem_limit>
          <mem_used>504619008</mem_used>
          <stack_base_ptr>ff9cad00/ff9ca0ec</stack_base_ptr>
          <process>clis</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10351</mem_pid>
          <mem_alloc>63811584</mem_alloc>
          <mem_limit>1709656678</mem_limit>
          <mem_used>551743488</mem_used>
          <stack_base_ptr>ff83e440/ff83c8cc</stack_base_ptr>
          <process>port-profile</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10359</mem_pid>
          <mem_alloc>2809856</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>384499712</mem_used>
          <stack_base_ptr>ffec0910/ffebf4a0</stack_base_ptr>
          <process>aaa</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10360</mem_pid>
          <mem_alloc>3239936</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>390340608</mem_used>
          <stack_base_ptr>ffbd5df0/ffbd404c</stack_base_ptr>
          <process>cert_enroll</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10361</mem_pid>
          <mem_alloc>3108864</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>387514368</mem_used>
          <stack_base_ptr>ffa1feb0/ffa1e9f8</stack_base_ptr>
          <process>securityd</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10362</mem_pid>
          <mem_alloc>2949120</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>496148480</mem_used>
          <stack_base_ptr>ffd69410/ffd68808</stack_base_ptr>
          <process>ascii-cfg</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10363</mem_pid>
          <mem_alloc>3538944</mem_alloc>
          <mem_limit>763318054</mem_limit>
          <mem_used>384622592</mem_used>
          <stack_base_ptr>ff98be80/ff98b060</stack_base_ptr>
          <process>cli_acl</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10364</mem_pid>
          <mem_alloc>2510848</mem_alloc>
          <mem_limit>1027750592</mem_limit>
          <mem_used>382328832</mem_used>
          <stack_base_ptr>ffdeb6e0/ffdea6c0</stack_base_ptr>
          <process>evmc</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10366</mem_pid>
          <mem_alloc>3051520</mem_alloc>
          <mem_limit>766557580</mem_limit>
          <mem_used>384974848</mem_used>
          <stack_base_ptr>fff4a7f0/fff497c0</stack_base_ptr>
          <process>evms</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10367</mem_pid>
          <mem_alloc>6000640</mem_alloc>
          <mem_limit>766990118</mem_limit>
          <mem_used>389152768</mem_used>
          <stack_base_ptr>ffacf370/ffacf1b0</stack_base_ptr>
          <process>fmd</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10368</mem_pid>
          <mem_alloc>405504</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>277676032</mem_used>
          <stack_base_ptr>ff9043e0/ff903fb0</stack_base_ptr>
          <process>mping_server</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10369</mem_pid>
          <mem_alloc>2445312</mem_alloc>
          <mem_limit>923016300</mem_limit>
          <mem_used>382111744</mem_used>
          <stack_base_ptr>ffddb200/ffdd9fc0</stack_base_ptr>
          <process>mvsh</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10371</mem_pid>
          <mem_alloc>2408448</mem_alloc>
          <mem_limit>780917420</mem_limit>
          <mem_used>384487424</mem_used>
          <stack_base_ptr>ff809d70/ff8097b0</stack_base_ptr>
          <process>sksd</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10372</mem_pid>
          <mem_alloc>2883584</mem_alloc>
          <mem_limit>764106534</mem_limit>
          <mem_used>382943232</mem_used>
          <stack_base_ptr>ffe299c0/ffe28960</stack_base_ptr>
          <process>snmpmib_proc</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10373</mem_pid>
          <mem_alloc>4636672</mem_alloc>
          <mem_limit>767494745</mem_limit>
          <mem_used>386150400</mem_used>
          <stack_base_ptr>ffb77190/ffb76130</stack_base_ptr>
          <process>statsprofiler</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10374</mem_pid>
          <mem_alloc>5492736</mem_alloc>
          <mem_limit>788671558</mem_limit>
          <mem_used>393961472</mem_used>
          <stack_base_ptr>ff90a7b0/ff90a078</stack_base_ptr>
          <process>vman</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10375</mem_pid>
          <mem_alloc>3522560</mem_alloc>
          <mem_limit>775782374</mem_limit>
          <mem_used>386121728</mem_used>
          <stack_base_ptr>ffde9ad0/ffde8490</stack_base_ptr>
          <process>vmm</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10376</mem_pid>
          <mem_alloc>2433024</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>383602688</mem_used>
          <stack_base_ptr>ffdb3720/ffdb29ac</stack_base_ptr>
          <process>xmlma</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10378</mem_pid>
          <mem_alloc>2392064</mem_alloc>
          <mem_limit>1027349593</mem_limit>
          <mem_used>381960192</mem_used>
          <stack_base_ptr>ff86f2d0/ff86e290</stack_base_ptr>
          <process>xmpp</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10379</mem_pid>
          <mem_alloc>13971456</mem_alloc>
          <mem_limit>1040451878</mem_limit>
          <mem_used>400121856</mem_used>
          <stack_base_ptr>ffb22ed0/ffb22b20</stack_base_ptr>
          <process>l3vm</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10380</mem_pid>
          <mem_alloc>17358848</mem_alloc>
          <mem_limit>1611315200</mem_limit>
          <mem_used>439074816</mem_used>
          <stack_base_ptr>fffd02b0/fffd0070</stack_base_ptr>
          <process>urib</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10382</mem_pid>
          <mem_alloc>7434240</mem_alloc>
          <mem_limit>1646118707</mem_limit>
          <mem_used>396791808</mem_used>
          <stack_base_ptr>ff9cdb10/ff9cc860</stack_base_ptr>
          <process>aclmgr</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10387</mem_pid>
          <mem_alloc>2883584</mem_alloc>
          <mem_limit>1029606899</mem_limit>
          <mem_used>384012288</mem_used>
          <stack_base_ptr>ffbf92e0/ffbf82a0</stack_base_ptr>
          <process>eem_policy_dir</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10394</mem_pid>
          <mem_alloc>34377728</mem_alloc>
          <mem_limit>1126306368</mem_limit>
          <mem_used>467931136</mem_used>
          <stack_base_ptr>ff88c2e0/ff88bf40</stack_base_ptr>
          <process>adjmgr</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10395</mem_pid>
          <mem_alloc>3944448</mem_alloc>
          <mem_limit>766012403</mem_limit>
          <mem_used>389312512</mem_used>
          <stack_base_ptr>ffb5d510/ffb5c4d0</stack_base_ptr>
          <process>ncpinframgr</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10396</mem_pid>
          <mem_alloc>27586560</mem_alloc>
          <mem_limit>1045272870</mem_limit>
          <mem_used>444194816</mem_used>
          <stack_base_ptr>ff94a9c0/ff94a880</stack_base_ptr>
          <process>u6rib</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10425</mem_pid>
          <mem_alloc>8597504</mem_alloc>
          <mem_limit>1063844953</mem_limit>
          <mem_used>419778560</mem_used>
          <stack_base_ptr>ffaa97b0/ffaa9230</stack_base_ptr>
          <process>npacl</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10436</mem_pid>
          <mem_alloc>83185664</mem_alloc>
          <mem_limit>1245393600</mem_limit>
          <mem_used>625324032</mem_used>
          <stack_base_ptr>ffb80470/ffb800d0</stack_base_ptr>
          <process>arp</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10437</mem_pid>
          <mem_alloc>18182144</mem_alloc>
          <mem_limit>1045191769</mem_limit>
          <mem_used>477200384</mem_used>
          <stack_base_ptr>fff0fb50/fff0f5dc</stack_base_ptr>
          <process>icmpv6</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10439</mem_pid>
          <mem_alloc>26820608</mem_alloc>
          <mem_limit>1145166528</mem_limit>
          <mem_used>539250688</mem_used>
          <stack_base_ptr>ffa56c10/ffa56b00</stack_base_ptr>
          <process>pktmgr</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10464</mem_pid>
          <mem_alloc>76550144</mem_alloc>
          <mem_limit>1287412403</mem_limit>
          <mem_used>636780544</mem_used>
          <stack_base_ptr>ffb8d500/ffb8cf50</stack_base_ptr>
          <process>netstack</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10479</mem_pid>
          <mem_alloc>3502080</mem_alloc>
          <mem_limit>894458822</mem_limit>
          <mem_used>419786752</mem_used>
          <stack_base_ptr>ffc39930/ffc3467c</stack_base_ptr>
          <process>radius</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10481</mem_pid>
          <mem_alloc>3014656</mem_alloc>
          <mem_limit>868058188</mem_limit>
          <mem_used>420261888</mem_used>
          <stack_base_ptr>ffa20aa0/ffa1f8dc</stack_base_ptr>
          <process>cdp</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10482</mem_pid>
          <mem_alloc>9334784</mem_alloc>
          <mem_limit>1092315980</mem_limit>
          <mem_used>393453568</mem_used>
          <stack_base_ptr>ffba6690/ffba4b1c</stack_base_ptr>
          <process>cfs</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10483</mem_pid>
          <mem_alloc>319488</mem_alloc>
          <mem_limit>656857062</mem_limit>
          <mem_used>275152896</mem_used>
          <stack_base_ptr>ffa7dd10/ffa7d8f8</stack_base_ptr>
          <process>ip_dummy</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10484</mem_pid>
          <mem_alloc>319488</mem_alloc>
          <mem_limit>656857062</mem_limit>
          <mem_used>275152896</mem_used>
          <stack_base_ptr>ffe11160/ffe10d48</stack_base_ptr>
          <process>ipv6_dummy</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10485</mem_pid>
          <mem_alloc>3358720</mem_alloc>
          <mem_limit>1031967833</mem_limit>
          <mem_used>444145664</mem_used>
          <stack_base_ptr>ffa31840/ffa2d45c</stack_base_ptr>
          <process>ntp</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10486</mem_pid>
          <mem_alloc>4055040</mem_alloc>
          <mem_limit>1030945062</mem_limit>
          <mem_used>443727872</mem_used>
          <stack_base_ptr>fff59690/fff57b1c</stack_base_ptr>
          <process>otm</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10487</mem_pid>
          <mem_alloc>25726976</mem_alloc>
          <mem_limit>906967705</mem_limit>
          <mem_used>461746176</mem_used>
          <stack_base_ptr>ffd00450/ffcfb1fc</stack_base_ptr>
          <process>snmpd</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10488</mem_pid>
          <mem_alloc>319488</mem_alloc>
          <mem_limit>656857062</mem_limit>
          <mem_used>275152896</mem_used>
          <stack_base_ptr>fffe71c0/fffe6da8</stack_base_ptr>
          <process>tcpudp_dummy</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10494</mem_pid>
          <mem_alloc>3448832</mem_alloc>
          <mem_limit>472988876</mem_limit>
          <mem_used>384905216</mem_used>
          <stack_base_ptr>ffc97ca0/ffc93ecc</stack_base_ptr>
          <process>dcos-xinetd</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10529</mem_pid>
          <mem_alloc>2318336</mem_alloc>
          <mem_limit>0</mem_limit>
          <mem_used>383918080</mem_used>
          <stack_base_ptr>ffceca80/ffce8cac</stack_base_ptr>
          <process>ntpd</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10535</mem_pid>
          <mem_alloc>25530368</mem_alloc>
          <mem_limit>892609203</mem_limit>
          <mem_used>411697152</mem_used>
          <stack_base_ptr>fff97010/fff96adc</stack_base_ptr>
          <process>callhome</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10580</mem_pid>
          <mem_alloc>16080896</mem_alloc>
          <mem_limit>1046975987</mem_limit>
          <mem_used>474648576</mem_used>
          <stack_base_ptr>fff1b900/fff1b7e0</stack_base_ptr>
          <process>rpm</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10581</mem_pid>
          <mem_alloc>4530176</mem_alloc>
          <mem_limit>843228672</mem_limit>
          <mem_used>384872448</mem_used>
          <stack_base_ptr>ffc8aab0/ffc89a80</stack_base_ptr>
          <process>plsm</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10582</mem_pid>
          <mem_alloc>6352896</mem_alloc>
          <mem_limit>1031733542</mem_limit>
          <mem_used>390672384</mem_used>
          <stack_base_ptr>ff873820/ff872800</stack_base_ptr>
          <process>plcmgr</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10583</mem_pid>
          <mem_alloc>4288512</mem_alloc>
          <mem_limit>1031255948</mem_limit>
          <mem_used>387686400</mem_used>
          <stack_base_ptr>fff33f40/fff3238c</stack_base_ptr>
          <process>pfstat</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10585</mem_pid>
          <mem_alloc>71749632</mem_alloc>
          <mem_limit>997711475</mem_limit>
          <mem_used>456474624</mem_used>
          <stack_base_ptr>ffd764e0/ffd748dc</stack_base_ptr>
          <process>lim</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10586</mem_pid>
          <mem_alloc>47607808</mem_alloc>
          <mem_limit>1074382848</mem_limit>
          <mem_used>433643520</mem_used>
          <stack_base_ptr>ff8a5030/ff8a45a0</stack_base_ptr>
          <process>l2rib</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10587</mem_pid>
          <mem_alloc>151097344</mem_alloc>
          <mem_limit>1404815808</mem_limit>
          <mem_used>590594048</mem_used>
          <stack_base_ptr>ffad3480/ffad2f50</stack_base_ptr>
          <process>igmp</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10588</mem_pid>
          <mem_alloc>14483456</mem_alloc>
          <mem_limit>790023238</mem_limit>
          <mem_used>402653184</mem_used>
          <stack_base_ptr>ffca0ef0/ffc9f72c</stack_base_ptr>
          <process>eltm</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10589</mem_pid>
          <mem_alloc>8499200</mem_alloc>
          <mem_limit>1030426918</mem_limit>
          <mem_used>389902336</mem_used>
          <stack_base_ptr>fff73ec0/fff73da0</stack_base_ptr>
          <process>ecp</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10591</mem_pid>
          <mem_alloc>13787136</mem_alloc>
          <mem_limit>981622118</mem_limit>
          <mem_used>400723968</mem_used>
          <stack_base_ptr>ffcc03b0/ffcbe82c</stack_base_ptr>
          <process>adbm</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10592</mem_pid>
          <mem_alloc>3485696</mem_alloc>
          <mem_limit>1030571097</mem_limit>
          <mem_used>386428928</mem_used>
          <stack_base_ptr>ff945380/ff944330</stack_base_ptr>
          <process>acllog</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10593</mem_pid>
          <mem_alloc>208961536</mem_alloc>
          <mem_limit>877348736</mem_limit>
          <mem_used>627449856</mem_used>
          <stack_base_ptr>ffbae1b0/ffbac62c</stack_base_ptr>
          <process>monitor</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10620</mem_pid>
          <mem_alloc>4485120</mem_alloc>
          <mem_limit>780382592</mem_limit>
          <mem_used>392609792</mem_used>
          <stack_base_ptr>ff80dba0/ff80be1c</stack_base_ptr>
          <process>eth_port_channel</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10621</mem_pid>
          <mem_alloc>50618368</mem_alloc>
          <mem_limit>823596787</mem_limit>
          <mem_used>444977152</mem_used>
          <stack_base_ptr>fffac4c0/fffab0ec</stack_base_ptr>
          <process>vlan_mgr</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10622</mem_pid>
          <mem_alloc>2514944</mem_alloc>
          <mem_limit>785403660</mem_limit>
          <mem_used>382251008</mem_used>
          <stack_base_ptr>ff856580/ff8561d0</stack_base_ptr>
          <process>eth_dstats</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10623</mem_pid>
          <mem_alloc>12914688</mem_alloc>
          <mem_limit>1653160960</mem_limit>
          <mem_used>409477120</mem_used>
          <stack_base_ptr>fffbe070/fffbca70</stack_base_ptr>
          <process>ipqosmgr</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10624</mem_pid>
          <mem_alloc>10358784</mem_alloc>
          <mem_limit>856601292</mem_limit>
          <mem_used>466116608</mem_used>
          <stack_base_ptr>ffad0fb0/ffacf3cc</stack_base_ptr>
          <process>ethpm</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10625</mem_pid>
          <mem_alloc>20062208</mem_alloc>
          <mem_limit>1047368608</mem_limit>
          <mem_used>425947136</mem_used>
          <stack_base_ptr>ff94cf50/ff94b1ac</stack_base_ptr>
          <process>l2fm</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10626</mem_pid>
          <mem_alloc>5267456</mem_alloc>
          <mem_limit>765787123</mem_limit>
          <mem_used>408166400</mem_used>
          <stack_base_ptr>fff5f070/fff5d4ec</stack_base_ptr>
          <process>mhbfd_tracker</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10627</mem_pid>
          <mem_alloc>9134080</mem_alloc>
          <mem_limit>1077055232</mem_limit>
          <mem_used>486494208</mem_used>
          <stack_base_ptr>ffd4f270/ffd4e70c</stack_base_ptr>
          <process>stp</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10628</mem_pid>
          <mem_alloc>33615872</mem_alloc>
          <mem_limit>778357747</mem_limit>
          <mem_used>425091072</mem_used>
          <stack_base_ptr>ffc19dc0/ffc1822c</stack_base_ptr>
          <process>aclqos</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10631</mem_pid>
          <mem_alloc>3067904</mem_alloc>
          <mem_limit>768625651</mem_limit>
          <mem_used>386756608</mem_used>
          <stack_base_ptr>ffe50f30/ffe4ff00</stack_base_ptr>
          <process>u2</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10632</mem_pid>
          <mem_alloc>6553600</mem_alloc>
          <mem_limit>1417981593</mem_limit>
          <mem_used>392540160</mem_used>
          <stack_base_ptr>ffaebbc0/ffaeaf40</stack_base_ptr>
          <process>spm</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10633</mem_pid>
          <mem_alloc>3039232</mem_alloc>
          <mem_limit>1029791628</mem_limit>
          <mem_used>408829952</mem_used>
          <stack_base_ptr>ffecd720/ffecbbac</stack_base_ptr>
          <process>sal</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10634</mem_pid>
          <mem_alloc>125378560</mem_alloc>
          <mem_limit>1264177728</mem_limit>
          <mem_used>627449856</mem_used>
          <stack_base_ptr>ffe6fb20/ffe6fa00</stack_base_ptr>
          <process>mrib</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10635</mem_pid>
          <mem_alloc>10465280</mem_alloc>
          <mem_limit>1147257408</mem_limit>
          <mem_used>401956864</mem_used>
          <stack_base_ptr>ffb8dea0/ffb8c29c</stack_base_ptr>
          <process>mfdm</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10636</mem_pid>
          <mem_alloc>3338240</mem_alloc>
          <mem_limit>767620902</mem_limit>
          <mem_used>390856704</mem_used>
          <stack_base_ptr>ffd61ed0/ffd60e40</stack_base_ptr>
          <process>mcm</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10637</mem_pid>
          <mem_alloc>65372160</mem_alloc>
          <mem_limit>1090022489</mem_limit>
          <mem_used>514068480</mem_used>
          <stack_base_ptr>ffea39d0/ffea38b0</stack_base_ptr>
          <process>m6rib</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10638</mem_pid>
          <mem_alloc>3215360</mem_alloc>
          <mem_limit>1030332300</mem_limit>
          <mem_used>388902912</mem_used>
          <stack_base_ptr>ffab33e0/ffab163c</stack_base_ptr>
          <process>l2pt</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10645</mem_pid>
          <mem_alloc>25665536</mem_alloc>
          <mem_limit>1037234880</mem_limit>
          <mem_used>453369856</mem_used>
          <stack_base_ptr>ff8fa230/ff8f85bc</stack_base_ptr>
          <process>ufdm</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10647</mem_pid>
          <mem_alloc>5951488</mem_alloc>
          <mem_limit>814067443</mem_limit>
          <mem_used>393633792</mem_used>
          <stack_base_ptr>ffad5150/ffad339c</stack_base_ptr>
          <process>interface-vlan</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10663</mem_pid>
          <mem_alloc>12918784</mem_alloc>
          <mem_limit>1170622604</mem_limit>
          <mem_used>398573568</mem_used>
          <stack_base_ptr>ff9e9240/ff9e8970</stack_base_ptr>
          <process>m2rib</process>
         </ROW_process_memory>
         <ROW_process_memory>
          <mem_pid>10665</mem_pid>
          <mem_alloc>65646592</mem_alloc>
          <mem_limit>1112131328</mem_limit>
          <mem_used>554160128</mem_used>
          <stack_base_ptr>ffde7560/ffde7470</stack_base_ptr>
          <process>mcastfwd</process>
         </ROW_process_memory>
        </TABLE_process_memory>
        <sum_mem_malloced>1923129344</sum_mem_malloced>
       </__readonly__>
      </memory>
     </__XML__PARAM__e-vdc2>
    </vdc>
   </processes>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show processes vdc access1 memory**

PID    MemAlloc  MemLimit    MemUsed     StackBase/Ptr      Process
-----  --------  ----------  ----------  -----------------  ----------------
 5800  12107776  0           384692224   fffa1960/fffa1560  sysmgr
 6954  24633344  0           415715328   ffe7dbd0/ffe7b810  platform
 7047  20439040  0           413450240   ff85f7d0/ff85eb90  pixm_gl
 7048  29364224  0           494329856   ffe5c660/ffe5c530  pdsd
 7052   2711552  0           388321280   ffc05810/ffc05168  licmgr
 7053   1368064  0           378785792   fff99f60/fff996f0  fs-daemon
 7058   7053312  0           389844992   ff841330/ff84038c  bloggerd
 7198   1925120  0           382525440   ffb1c670/ffb1b8e0  vdc_mgr
 7201  12718080  0           287657984   ffec1640/ffec14ac  sysinfo
 7207   3170304  0           385015808   ffa1ddf0/ffa1d92c  res_mgr
 7208   3923968  0           371843072   fffc44e0/fffc34ac  plugin
 7220   4456448  0           383934464   ffd1f110/ffd1e0b0  diagmgr
 7223   2195456  0           388001792   ffd713b0/ffd70380  clk_mgr
 7246  20770816  0           400662528   ff941fc0/ff940ca0  diagclient
 7409  19988480  0           416063488   ff939250/ff931670  xbar
 7430   7335936  0           390787072   ffcde6a0/ffcdc310  module
 7452   9367552  0           404787200   fffc8210/fffc71c0  ifmgr
 7907   8450048  0           395792384   ffe4f570/ffe4dd6c  sim
 7909   4907008  0           391376896   ff880160/ff87f100  pltfm_debug
 7910   4145152  0           392970240   ffec13d0/ffebf81c  pltfm_config
 7913  28327936  0           418869248   ffab48c0/ffab3c90  pixmc
 7916   3571712  0           390905856   ffbbb920/ffbba8e0  monitorc
 7920  10510336  0           411803648   ffce3080/ffce14fc  giscm
 7965  33157120  0           427773952   ff83ca50/ff83bc60  diag_port_lb
10332  12046336  789647936   396582912   ffe6c6e0/ffe680ec  syslogd
10336   1982464  0           381001728   fffaca60/fffac840  confcheck
10337   3289088  0           387141632   ffe9e490/ffe9d4fc  feature-mgr
10338   4620288  1311063424  486318080   ff9b74b0/ff9b490c  mmode
10339  30920704  995913318   416292864   ffd18500/ffd178c0  pixm_vl
10340   3342336  1049678784  382189568   fff432f0/fff42ec0  psshelper
10341   4907008  836624800   383823872   ff878790/ff877770  session-mgr
10342   8142848  1035013619  390254592   ffb7ce50/ffb7c890  smm
10343   5025792  1041375526  490704896   ffffbda0/ffffab70  vpc_config_sync
10344   2752512  975643187   386691072   ffd1b520/ffd1adfc  vshd
10349  19210240  1420319718  504619008   ff9cad00/ff9ca0ec  clis
10351  63811584  1709656678  551743488   ff83e440/ff83c8cc  port-profile
10359   2809856  0           384499712   ffec0910/ffebf4a0  aaa
10360   3239936  0           390340608   ffbd5df0/ffbd404c  cert_enroll
10361   3108864  0           387514368   ffa1feb0/ffa1e9f8  securityd
10362   2949120  0           496148480   ffd69410/ffd68808  ascii-cfg
10363   3538944  763318054   384622592   ff98be80/ff98b060  cli_acl
10364   2510848  1027750592  382328832   ffdeb6e0/ffdea6c0  evmc
10366   3051520  766557580   384974848   fff4a7f0/fff497c0  evms
10367   6000640  766990118   389152768   ffacf370/ffacf1b0  fmd
10368    405504  0           277676032   ff9043e0/ff903fb0  mping_server
10369   2445312  923016300   382111744   ffddb200/ffdd9fc0  mvsh
10371   2408448  780917420   384487424   ff809d70/ff8097b0  sksd
10372   2883584  764106534   382943232   ffe299c0/ffe28960  snmpmib_proc
10373   4636672  767494745   386150400   ffb77190/ffb76130  statsprofiler
10374   5492736  788671558   393961472   ff90a7b0/ff90a078  vman
10375   3522560  775782374   386121728   ffde9ad0/ffde8490  vmm
10376   2433024  0           383602688   ffdb3720/ffdb29ac  xmlma
10378   2392064  1027349593  381960192   ff86f2d0/ff86e290  xmpp
10379  13971456  1040451878  400121856   ffb22ed0/ffb22b20  l3vm
10380  17358848  1611315200  439074816   fffd02b0/fffd0070  urib
10382   7434240  1646118707  396791808   ff9cdb10/ff9cc860  aclmgr
10387   2883584  1029606899  384012288   ffbf92e0/ffbf82a0  eem_policy_dir
10394  34377728  1126306368  467931136   ff88c2e0/ff88bf40  adjmgr
10395   3944448  766012403   389312512   ffb5d510/ffb5c4d0  ncpinframgr
10396  27586560  1045272870  444194816   ff94a9c0/ff94a880  u6rib
10425   8597504  1063844953  419778560   ffaa97b0/ffaa9230  npacl
10436  83185664  1245393600  625324032   ffb80470/ffb800d0  arp
10437  18182144  1045191769  477200384   fff0fb50/fff0f5dc  icmpv6
10439  26820608  1145166528  539250688   ffa56c10/ffa56b00  pktmgr
10464  76550144  1287412403  636780544   ffb8d500/ffb8cf50  netstack
10479   3502080  894458822   419786752   ffc39930/ffc3467c  radius
10481   3014656  868058188   420261888   ffa20aa0/ffa1f8dc  cdp
10482   9334784  1092315980  393453568   ffba6690/ffba4b1c  cfs
10483    319488  656857062   275152896   ffa7dd10/ffa7d8f8  ip_dummy
10484    319488  656857062   275152896   ffe11160/ffe10d48  ipv6_dummy
10485   3358720  1031967833  444145664   ffa31840/ffa2d45c  ntp
10486   4055040  1030945062  443727872   fff59690/fff57b1c  otm
10487  25726976  906967705   461746176   ffd00450/ffcfb1fc  snmpd
10488    319488  656857062   275152896   fffe71c0/fffe6da8  tcpudp_dummy
10494   3448832  472988876   384905216   ffc97ca0/ffc93ecc  dcos-xinetd
10529   2318336  0           383918080   ffceca80/ffce8cac  ntpd
10535  25530368  892609203   411697152   fff97010/fff96adc  callhome
10580  16080896  1046975987  474648576   fff1b900/fff1b7e0  rpm
10581   4530176  843228672   384872448   ffc8aab0/ffc89a80  plsm
10582   6352896  1031733542  390672384   ff873820/ff872800  plcmgr
10583   4288512  1031255948  387686400   fff33f40/fff3238c  pfstat
10585  71749632  997711475   456474624   ffd764e0/ffd748dc  lim
10586  47607808  1074382848  433643520   ff8a5030/ff8a45a0  l2rib
10587  151097344  1404815808  590594048   ffad3480/ffad2f50  igmp
10588  14483456  790023238   402653184   ffca0ef0/ffc9f72c  eltm
10589   8499200  1030426918  389902336   fff73ec0/fff73da0  ecp
10591  13787136  981622118   400723968   ffcc03b0/ffcbe82c  adbm
10592   3485696  1030571097  386428928   ff945380/ff944330  acllog
10593  208961536  877348736   627449856   ffbae1b0/ffbac62c  monitor
10620   4485120  780382592   392609792   ff80dba0/ff80be1c  eth_port_channel
10621  50618368  823596787   444977152   fffac4c0/fffab0ec  vlan_mgr
10622   2514944  785403660   382251008   ff856580/ff8561d0  eth_dstats
10623  12914688  1653160960  409477120   fffbe070/fffbca70  ipqosmgr
10624  10358784  856601292   466116608   ffad0fb0/ffacf3cc  ethpm
10625  20062208  1047368608  425947136   ff94cf50/ff94b1ac  l2fm
10626   5267456  765787123   408166400   fff5f070/fff5d4ec  mhbfd_tracker
10627   9134080  1077055232  486494208   ffd4f270/ffd4e70c  stp
10628  33615872  778357747   425091072   ffc19dc0/ffc1822c  aclqos
10631   3067904  768625651   386756608   ffe50f30/ffe4ff00  u2
10632   6553600  1417981593  392540160   ffaebbc0/ffaeaf40  spm
10633   3039232  1029791628  408829952   ffecd720/ffecbbac  sal
10634  125378560  1264177728  627449856   ffe6fb20/ffe6fa00  mrib
10635  10465280  1147257408  401956864   ffb8dea0/ffb8c29c  mfdm
10636   3338240  767620902   390856704   ffd61ed0/ffd60e40  mcm
10637  65372160  1090022489  514068480   ffea39d0/ffea38b0  m6rib
10638   3215360  1030332300  388902912   ffab33e0/ffab163c  l2pt
10645  25665536  1037234880  453369856   ff8fa230/ff8f85bc  ufdm
10647   5951488  814067443   393633792   ffad5150/ffad339c  interface-vlan
10663  12918784  1170622604  398573568   ff9e9240/ff9e8970  m2rib
10665  65646592  1112131328  554160128   ffde7560/ffde7470  mcastfwd

All processes: MemAlloc = 1923129344

show processes vdc access memory sort

show processes vdc access1 memory sort
 
import requests
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 processes vdc access1 memory sort”,
  "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)
{
  "TABLE_process_memory": {
    "ROW_process_memory": [
      {
        "mem_pid": 10464, 
        "mem_alloc": 76550144, 
        "mem_limit": 1287412403, 
        "mem_used": 636780544, 
        "stack_base_ptr": "ffb8d500/ffb8cf50", 
        "process": "netstack"
      }, 
      {
        "mem_pid": 10593, 
        "mem_alloc": 208961536, 
        "mem_limit": 877348736, 
        "mem_used": 627449856, 
        "stack_base_ptr": "ffbae1b0/ffbac62c", 
        "process": "monitor"
      }, 
      {
        "mem_pid": 10634, 
        "mem_alloc": 125378560, 
        "mem_limit": 1264177728, 
        "mem_used": 627449856, 
        "stack_base_ptr": "ffe6fb20/ffe6fa00", 
        "process": "mrib"
      }, 
      {
        "mem_pid": 10436, 
        "mem_alloc": 83185664, 
        "mem_limit": 1245393600, 
        "mem_used": 625324032, 
        "stack_base_ptr": "ffb80470/ffb800d0", 
        "process": "arp"
      }, 
      {
        "mem_pid": 10587, 
        "mem_alloc": 151097344, 
        "mem_limit": 1404815808, 
        "mem_used": 590594048, 
        "stack_base_ptr": "ffad3480/ffad2f50", 
        "process": "igmp"
      }, 
      {
        "mem_pid": 10665, 
        "mem_alloc": 65646592, 
        "mem_limit": 1112131328, 
        "mem_used": 554160128, 
        "stack_base_ptr": "ffde7560/ffde7470", 
        "process": "mcastfwd"
      }, 
      {
        "mem_pid": 10351, 
        "mem_alloc": 63811584, 
        "mem_limit": 1709656678, 
        "mem_used": 551743488, 
        "stack_base_ptr": "ff83e440/ff83c8cc", 
        "process": "port-profile"
      }, 
      {
        "mem_pid": 10439, 
        "mem_alloc": 26820608, 
        "mem_limit": 1145166528, 
        "mem_used": 539250688, 
        "stack_base_ptr": "ffa56c10/ffa56b00", 
        "process": "pktmgr"
      }, 
      {
        "mem_pid": 10637, 
        "mem_alloc": 65372160, 
        "mem_limit": 1090022489, 
        "mem_used": 514068480, 
        "stack_base_ptr": "ffea39d0/ffea38b0", 
        "process": "m6rib"
      }, 
      {
        "mem_pid": 10349, 
        "mem_alloc": 19210240, 
        "mem_limit": 1420319718, 
        "mem_used": 504619008, 
        "stack_base_ptr": "ff9cad00/ff9ca0ec", 
        "process": "clis"
      }, 
      {
        "mem_pid": 10362, 
        "mem_alloc": 2949120, 
        "mem_limit": 0, 
        "mem_used": 496148480, 
        "stack_base_ptr": "ffd69410/ffd68808", 
        "process": "ascii-cfg"
      }, 
      {
        "mem_pid": 7048, 
        "mem_alloc": 29364224, 
        "mem_limit": 0, 
        "mem_used": 494329856, 
        "stack_base_ptr": "ffe5c660/ffe5c530", 
        "process": "pdsd"
      }, 
      {
        "mem_pid": 10343, 
        "mem_alloc": 5025792, 
        "mem_limit": 1041375526, 
        "mem_used": 490704896, 
        "stack_base_ptr": "ffffbda0/ffffab70", 
        "process": "vpc_config_sync"
      }, 
      {
        "mem_pid": 10627, 
        "mem_alloc": 9134080, 
        "mem_limit": 1077055232, 
        "mem_used": 486494208, 
        "stack_base_ptr": "ffd4f270/ffd4e70c", 
        "process": "stp"
      }, 
      {
        "mem_pid": 10338, 
        "mem_alloc": 4620288, 
        "mem_limit": 1311063424, 
        "mem_used": 486318080, 
        "stack_base_ptr": "ff9b74b0/ff9b490c", 
        "process": "mmode"
      }, 
      {
        "mem_pid": 10437, 
        "mem_alloc": 18182144, 
        "mem_limit": 1045191769, 
        "mem_used": 477200384, 
        "stack_base_ptr": "fff0fb50/fff0f5dc", 
        "process": "icmpv6"
      }, 
      {
        "mem_pid": 10580, 
        "mem_alloc": 16080896, 
        "mem_limit": 1046975987, 
        "mem_used": 474648576, 
        "stack_base_ptr": "fff1b900/fff1b7e0", 
        "process": "rpm"
      }, 
      {
        "mem_pid": 10394, 
        "mem_alloc": 34377728, 
        "mem_limit": 1126306368, 
        "mem_used": 467931136, 
        "stack_base_ptr": "ff88c2e0/ff88bf40", 
        "process": "adjmgr"
      }, 
      {
        "mem_pid": 10624, 
        "mem_alloc": 10358784, 
        "mem_limit": 856601292, 
        "mem_used": 466116608, 
        "stack_base_ptr": "ffad0fb0/ffacf3cc", 
        "process": "ethpm"
      }, 
      {
        "mem_pid": 10487, 
        "mem_alloc": 25726976, 
        "mem_limit": 906967705, 
        "mem_used": 461746176, 
        "stack_base_ptr": "ffd00450/ffcfb1fc", 
        "process": "snmpd"
      }, 
      {
        "mem_pid": 10585, 
        "mem_alloc": 71749632, 
        "mem_limit": 997711475, 
        "mem_used": 456474624, 
        "stack_base_ptr": "ffd764e0/ffd748dc", 
        "process": "lim"
      }, 
      {
        "mem_pid": 10645, 
        "mem_alloc": 25665536, 
        "mem_limit": 1037234880, 
        "mem_used": 453369856, 
        "stack_base_ptr": "ff8fa230/ff8f85bc", 
        "process": "ufdm"
      }, 
      {
        "mem_pid": 10621, 
        "mem_alloc": 50618368, 
        "mem_limit": 823596787, 
        "mem_used": 444977152, 
        "stack_base_ptr": "fffac4c0/fffab0ec", 
        "process": "vlan_mgr"
      }, 
      {
        "mem_pid": 10396, 
        "mem_alloc": 27586560, 
        "mem_limit": 1045272870, 
        "mem_used": 444194816, 
        "stack_base_ptr": "ff94a9c0/ff94a880", 
        "process": "u6rib"
      }, 
      {
        "mem_pid": 10485, 
        "mem_alloc": 3358720, 
        "mem_limit": 1031967833, 
        "mem_used": 444145664, 
        "stack_base_ptr": "ffa31840/ffa2d45c", 
        "process": "ntp"
      }, 
      {
        "mem_pid": 10486, 
        "mem_alloc": 4055040, 
        "mem_limit": 1030945062, 
        "mem_used": 443727872, 
        "stack_base_ptr": "fff59690/fff57b1c", 
        "process": "otm"
      }, 
      {
        "mem_pid": 10380, 
        "mem_alloc": 17358848, 
        "mem_limit": 1611315200, 
        "mem_used": 439074816, 
        "stack_base_ptr": "fffd02b0/fffd0070", 
        "process": "urib"
      }, 
      {
        "mem_pid": 10586, 
        "mem_alloc": 47607808, 
        "mem_limit": 1074382848, 
        "mem_used": 433643520, 
        "stack_base_ptr": "ff8a5030/ff8a45a0", 
        "process": "l2rib"
      }, 
      {
        "mem_pid": 7965, 
        "mem_alloc": 33157120, 
        "mem_limit": 0, 
        "mem_used": 427773952, 
        "stack_base_ptr": "ff83ca50/ff83bc60", 
        "process": "diag_port_lb"
      }, 
      {
        "mem_pid": 10625, 
        "mem_alloc": 20062208, 
        "mem_limit": 1047368608, 
        "mem_used": 425947136, 
        "stack_base_ptr": "ff94cf50/ff94b1ac", 
        "process": "l2fm"
      }, 
      {
        "mem_pid": 10628, 
        "mem_alloc": 33615872, 
        "mem_limit": 778357747, 
        "mem_used": 425091072, 
        "stack_base_ptr": "ffc19dc0/ffc1822c", 
        "process": "aclqos"
      }, 
      {
        "mem_pid": 10481, 
        "mem_alloc": 3014656, 
        "mem_limit": 868058188, 
        "mem_used": 420261888, 
        "stack_base_ptr": "ffa20aa0/ffa1f8dc", 
        "process": "cdp"
      }, 
      {
        "mem_pid": 10479, 
        "mem_alloc": 3502080, 
        "mem_limit": 894458822, 
        "mem_used": 419786752, 
        "stack_base_ptr": "ffc39930/ffc3467c", 
        "process": "radius"
      }, 
      {
        "mem_pid": 10425, 
        "mem_alloc": 8597504, 
        "mem_limit": 1063844953, 
        "mem_used": 419778560, 
        "stack_base_ptr": "ffaa97b0/ffaa9230", 
        "process": "npacl"
      }, 
      {
        "mem_pid": 7913, 
        "mem_alloc": 28327936, 
        "mem_limit": 0, 
        "mem_used": 418869248, 
        "stack_base_ptr": "ffab48c0/ffab3c90", 
        "process": "pixmc"
      }, 
      {
        "mem_pid": 10339, 
        "mem_alloc": 30920704, 
        "mem_limit": 995913318, 
        "mem_used": 416292864, 
        "stack_base_ptr": "ffd18500/ffd178c0", 
        "process": "pixm_vl"
      }, 
      {
        "mem_pid": 7409, 
        "mem_alloc": 19988480, 
        "mem_limit": 0, 
        "mem_used": 416063488, 
        "stack_base_ptr": "ff939250/ff931670", 
        "process": "xbar"
      }, 
      {
        "mem_pid": 6954, 
        "mem_alloc": 24633344, 
        "mem_limit": 0, 
        "mem_used": 415715328, 
        "stack_base_ptr": "ffe7dbd0/ffe7b810", 
        "process": "platform"
      }, 
      {
        "mem_pid": 7047, 
        "mem_alloc": 20439040, 
        "mem_limit": 0, 
        "mem_used": 413450240, 
        "stack_base_ptr": "ff85f7d0/ff85eb90", 
        "process": "pixm_gl"
      }, 
      {
        "mem_pid": 7920, 
        "mem_alloc": 10510336, 
        "mem_limit": 0, 
        "mem_used": 411803648, 
        "stack_base_ptr": "ffce3080/ffce14fc", 
        "process": "giscm"
      }, 
      {
        "mem_pid": 10535, 
        "mem_alloc": 25530368, 
        "mem_limit": 892609203, 
        "mem_used": 411697152, 
        "stack_base_ptr": "fff97010/fff96adc", 
        "process": "callhome"
      }, 
      {
        "mem_pid": 10623, 
        "mem_alloc": 12914688, 
        "mem_limit": 1653160960, 
        "mem_used": 409477120, 
        "stack_base_ptr": "fffbe070/fffbca70", 
        "process": "ipqosmgr"
      }, 
      {
        "mem_pid": 10633, 
        "mem_alloc": 3039232, 
        "mem_limit": 1029791628, 
        "mem_used": 408829952, 
        "stack_base_ptr": "ffecd720/ffecbbac", 
        "process": "sal"
      }, 
      {
        "mem_pid": 10626, 
        "mem_alloc": 5267456, 
        "mem_limit": 765787123, 
        "mem_used": 408166400, 
        "stack_base_ptr": "fff5f070/fff5d4ec", 
        "process": "mhbfd_tracker"
      }, 
      {
        "mem_pid": 7452, 
        "mem_alloc": 9367552, 
        "mem_limit": 0, 
        "mem_used": 404787200, 
        "stack_base_ptr": "fffc8210/fffc71c0", 
        "process": "ifmgr"
      }, 
      {
        "mem_pid": 10588, 
        "mem_alloc": 14483456, 
        "mem_limit": 790023238, 
        "mem_used": 402653184, 
        "stack_base_ptr": "ffca0ef0/ffc9f72c", 
        "process": "eltm"
      }, 
      {
        "mem_pid": 10635, 
        "mem_alloc": 10465280, 
        "mem_limit": 1147257408, 
        "mem_used": 401956864, 
        "stack_base_ptr": "ffb8dea0/ffb8c29c", 
        "process": "mfdm"
      }, 
      {
        "mem_pid": 10591, 
        "mem_alloc": 13787136, 
        "mem_limit": 981622118, 
        "mem_used": 400723968, 
        "stack_base_ptr": "ffcc03b0/ffcbe82c", 
        "process": "adbm"
      }, 
      {
        "mem_pid": 7246, 
        "mem_alloc": 20770816, 
        "mem_limit": 0, 
        "mem_used": 400662528, 
        "stack_base_ptr": "ff941fc0/ff940ca0", 
        "process": "diagclient"
      }, 
      {
        "mem_pid": 10379, 
        "mem_alloc": 13971456, 
        "mem_limit": 1040451878, 
        "mem_used": 400121856, 
        "stack_base_ptr": "ffb22ed0/ffb22b20", 
        "process": "l3vm"
      }, 
      {
        "mem_pid": 10663, 
        "mem_alloc": 12918784, 
        "mem_limit": 1170622604, 
        "mem_used": 398573568, 
        "stack_base_ptr": "ff9e9240/ff9e8970", 
        "process": "m2rib"
      }, 
      {
        "mem_pid": 10382, 
        "mem_alloc": 7434240, 
        "mem_limit": 1646118707, 
        "mem_used": 396791808, 
        "stack_base_ptr": "ff9cdb10/ff9cc860", 
        "process": "aclmgr"
      }, 
      {
        "mem_pid": 10332, 
        "mem_alloc": 12046336, 
        "mem_limit": 789647936, 
        "mem_used": 396582912, 
        "stack_base_ptr": "ffe6c6e0/ffe680ec", 
        "process": "syslogd"
      }, 
      {
        "mem_pid": 7907, 
        "mem_alloc": 8450048, 
        "mem_limit": 0, 
        "mem_used": 395792384, 
        "stack_base_ptr": "ffe4f570/ffe4dd6c", 
        "process": "sim"
      }, 
      {
        "mem_pid": 10374, 
        "mem_alloc": 5492736, 
        "mem_limit": 788671558, 
        "mem_used": 393961472, 
        "stack_base_ptr": "ff90a7b0/ff90a078", 
        "process": "vman"
      }, 
      {
        "mem_pid": 10647, 
        "mem_alloc": 5951488, 
        "mem_limit": 814067443, 
        "mem_used": 393633792, 
        "stack_base_ptr": "ffad5150/ffad339c", 
        "process": "interface-vlan"
      }, 
      {
        "mem_pid": 10482, 
        "mem_alloc": 9334784, 
        "mem_limit": 1092315980, 
        "mem_used": 393453568, 
        "stack_base_ptr": "ffba6690/ffba4b1c", 
        "process": "cfs"
      }, 
      {
        "mem_pid": 7910, 
        "mem_alloc": 4145152, 
        "mem_limit": 0, 
        "mem_used": 392970240, 
        "stack_base_ptr": "ffec13d0/ffebf81c", 
        "process": "pltfm_config"
      }, 
      {
        "mem_pid": 10620, 
        "mem_alloc": 4485120, 
        "mem_limit": 780382592, 
        "mem_used": 392609792, 
        "stack_base_ptr": "ff80dba0/ff80be1c", 
        "process": "eth_port_channel"
      }, 
      {
        "mem_pid": 10632, 
        "mem_alloc": 6553600, 
        "mem_limit": 1417981593, 
        "mem_used": 392540160, 
        "stack_base_ptr": "ffaebbc0/ffaeaf40", 
        "process": "spm"
      }, 
      {
        "mem_pid": 7909, 
        "mem_alloc": 4907008, 
        "mem_limit": 0, 
        "mem_used": 391376896, 
        "stack_base_ptr": "ff880160/ff87f100", 
        "process": "pltfm_debug"
      }, 
      {
        "mem_pid": 7916, 
        "mem_alloc": 3571712, 
        "mem_limit": 0, 
        "mem_used": 390905856, 
        "stack_base_ptr": "ffbbb920/ffbba8e0", 
        "process": "monitorc"
      }, 
      {
        "mem_pid": 10636, 
        "mem_alloc": 3338240, 
        "mem_limit": 767620902, 
        "mem_used": 390856704, 
        "stack_base_ptr": "ffd61ed0/ffd60e40", 
        "process": "mcm"
      }, 
      {
        "mem_pid": 7430, 
        "mem_alloc": 7335936, 
        "mem_limit": 0, 
        "mem_used": 390787072, 
        "stack_base_ptr": "ffcde6a0/ffcdc310", 
        "process": "module"
      }, 
      {
        "mem_pid": 10582, 
        "mem_alloc": 6352896, 
        "mem_limit": 1031733542, 
        "mem_used": 390672384, 
        "stack_base_ptr": "ff873820/ff872800", 
        "process": "plcmgr"
      }, 
      {
        "mem_pid": 10360, 
        "mem_alloc": 3239936, 
        "mem_limit": 0, 
        "mem_used": 390340608, 
        "stack_base_ptr": "ffbd5df0/ffbd404c", 
        "process": "cert_enroll"
      }, 
      {
        "mem_pid": 10342, 
        "mem_alloc": 8142848, 
        "mem_limit": 1035013619, 
        "mem_used": 390254592, 
        "stack_base_ptr": "ffb7ce50/ffb7c890", 
        "process": "smm"
      }, 
      {
        "mem_pid": 10589, 
        "mem_alloc": 8499200, 
        "mem_limit": 1030426918, 
        "mem_used": 389902336, 
        "stack_base_ptr": "fff73ec0/fff73da0", 
        "process": "ecp"
      }, 
      {
        "mem_pid": 7058, 
        "mem_alloc": 7053312, 
        "mem_limit": 0, 
        "mem_used": 389844992, 
        "stack_base_ptr": "ff841330/ff84038c", 
        "process": "bloggerd"
      }, 
      {
        "mem_pid": 10395, 
        "mem_alloc": 3944448, 
        "mem_limit": 766012403, 
        "mem_used": 389312512, 
        "stack_base_ptr": "ffb5d510/ffb5c4d0", 
        "process": "ncpinframgr"
      }, 
      {
        "mem_pid": 10367, 
        "mem_alloc": 6000640, 
        "mem_limit": 766990118, 
        "mem_used": 389152768, 
        "stack_base_ptr": "ffacf370/ffacf1b0", 
        "process": "fmd"
      }, 
      {
        "mem_pid": 10638, 
        "mem_alloc": 3215360, 
        "mem_limit": 1030332300, 
        "mem_used": 388902912, 
        "stack_base_ptr": "ffab33e0/ffab163c", 
        "process": "l2pt"
      }, 
      {
        "mem_pid": 7052, 
        "mem_alloc": 2711552, 
        "mem_limit": 0, 
        "mem_used": 388321280, 
        "stack_base_ptr": "ffc05810/ffc05168", 
        "process": "licmgr"
      }, 
      {
        "mem_pid": 7223, 
        "mem_alloc": 2195456, 
        "mem_limit": 0, 
        "mem_used": 388001792, 
        "stack_base_ptr": "ffd713b0/ffd70380", 
        "process": "clk_mgr"
      }, 
      {
        "mem_pid": 10583, 
        "mem_alloc": 4288512, 
        "mem_limit": 1031255948, 
        "mem_used": 387686400, 
        "stack_base_ptr": "fff33f40/fff3238c", 
        "process": "pfstat"
      }, 
      {
        "mem_pid": 10361, 
        "mem_alloc": 3108864, 
        "mem_limit": 0, 
        "mem_used": 387514368, 
        "stack_base_ptr": "ffa1feb0/ffa1e9f8", 
        "process": "securityd"
      }, 
      {
        "mem_pid": 10337, 
        "mem_alloc": 3289088, 
        "mem_limit": 0, 
        "mem_used": 387141632, 
        "stack_base_ptr": "ffe9e490/ffe9d4fc", 
        "process": "feature-mgr"
      }, 
      {
        "mem_pid": 10631, 
        "mem_alloc": 3067904, 
        "mem_limit": 768625651, 
        "mem_used": 386756608, 
        "stack_base_ptr": "ffe50f30/ffe4ff00", 
        "process": "u2"
      }, 
      {
        "mem_pid": 10344, 
        "mem_alloc": 2752512, 
        "mem_limit": 975643187, 
        "mem_used": 386691072, 
        "stack_base_ptr": "ffd1b520/ffd1adfc", 
        "process": "vshd"
      }, 
      {
        "mem_pid": 10592, 
        "mem_alloc": 3485696, 
        "mem_limit": 1030571097, 
        "mem_used": 386428928, 
        "stack_base_ptr": "ff945380/ff944330", 
        "process": "acllog"
      }, 
      {
        "mem_pid": 10373, 
        "mem_alloc": 4636672, 
        "mem_limit": 767494745, 
        "mem_used": 386150400, 
        "stack_base_ptr": "ffb77190/ffb76130", 
        "process": "statsprofiler"
      }, 
      {
        "mem_pid": 10375, 
        "mem_alloc": 3522560, 
        "mem_limit": 775782374, 
        "mem_used": 386121728, 
        "stack_base_ptr": "ffde9ad0/ffde8490", 
        "process": "vmm"
      }, 
      {
        "mem_pid": 7207, 
        "mem_alloc": 3170304, 
        "mem_limit": 0, 
        "mem_used": 385015808, 
        "stack_base_ptr": "ffa1ddf0/ffa1d92c", 
        "process": "res_mgr"
      }, 
      {
        "mem_pid": 10366, 
        "mem_alloc": 3051520, 
        "mem_limit": 766557580, 
        "mem_used": 384974848, 
        "stack_base_ptr": "fff4a7f0/fff497c0", 
        "process": "evms"
      }, 
      {
        "mem_pid": 10494, 
        "mem_alloc": 3448832, 
        "mem_limit": 472988876, 
        "mem_used": 384905216, 
        "stack_base_ptr": "ffc97ca0/ffc93ecc", 
        "process": "dcos-xinetd"
      }, 
      {
        "mem_pid": 10581, 
        "mem_alloc": 4530176, 
        "mem_limit": 843228672, 
        "mem_used": 384872448, 
        "stack_base_ptr": "ffc8aab0/ffc89a80", 
        "process": "plsm"
      }, 
      {
        "mem_pid": 5800, 
        "mem_alloc": 12107776, 
        "mem_limit": 0, 
        "mem_used": 384692224, 
        "stack_base_ptr": "fffa1960/fffa1560", 
        "process": "sysmgr"
      }, 
      {
        "mem_pid": 10363, 
        "mem_alloc": 3538944, 
        "mem_limit": 763318054, 
        "mem_used": 384622592, 
        "stack_base_ptr": "ff98be80/ff98b060", 
        "process": "cli_acl"
      }, 
      {
        "mem_pid": 10359, 
        "mem_alloc": 2809856, 
        "mem_limit": 0, 
        "mem_used": 384499712, 
        "stack_base_ptr": "ffec0910/ffebf4a0", 
        "process": "aaa"
      }, 
      {
        "mem_pid": 10371, 
        "mem_alloc": 2408448, 
        "mem_limit": 780917420, 
        "mem_used": 384487424, 
        "stack_base_ptr": "ff809d70/ff8097b0", 
        "process": "sksd"
      }, 
      {
        "mem_pid": 10387, 
        "mem_alloc": 2883584, 
        "mem_limit": 1029606899, 
        "mem_used": 384012288, 
        "stack_base_ptr": "ffbf92e0/ffbf82a0", 
        "process": "eem_policy_dir"
      }, 
      {
        "mem_pid": 7220, 
        "mem_alloc": 4456448, 
        "mem_limit": 0, 
        "mem_used": 383934464, 
        "stack_base_ptr": "ffd1f110/ffd1e0b0", 
        "process": "diagmgr"
      }, 
      {
        "mem_pid": 10529, 
        "mem_alloc": 2318336, 
        "mem_limit": 0, 
        "mem_used": 383918080, 
        "stack_base_ptr": "ffceca80/ffce8cac", 
        "process": "ntpd"
      }, 
      {
        "mem_pid": 10341, 
        "mem_alloc": 4907008, 
        "mem_limit": 836624800, 
        "mem_used": 383823872, 
        "stack_base_ptr": "ff878790/ff877770", 
        "process": "session-mgr"
      }, 
      {
        "mem_pid": 10376, 
        "mem_alloc": 2433024, 
        "mem_limit": 0, 
        "mem_used": 383602688, 
        "stack_base_ptr": "ffdb3720/ffdb29ac", 
        "process": "xmlma"
      }, 
      {
        "mem_pid": 10372, 
        "mem_alloc": 2883584, 
        "mem_limit": 764106534, 
        "mem_used": 382943232, 
        "stack_base_ptr": "ffe299c0/ffe28960", 
        "process": "snmpmib_proc"
      }, 
      {
        "mem_pid": 7198, 
        "mem_alloc": 1925120, 
        "mem_limit": 0, 
        "mem_used": 382525440, 
        "stack_base_ptr": "ffb1c670/ffb1b8e0", 
        "process": "vdc_mgr"
      }, 
      {
        "mem_pid": 10364, 
        "mem_alloc": 2510848, 
        "mem_limit": 1027750592, 
        "mem_used": 382328832, 
        "stack_base_ptr": "ffdeb6e0/ffdea6c0", 
        "process": "evmc"
      }, 
      {
        "mem_pid": 10622, 
        "mem_alloc": 2514944, 
        "mem_limit": 785403660, 
        "mem_used": 382251008, 
        "stack_base_ptr": "ff856580/ff8561d0", 
        "process": "eth_dstats"
      }, 
      {
        "mem_pid": 10340, 
        "mem_alloc": 3342336, 
        "mem_limit": 1049678784, 
        "mem_used": 382189568, 
        "stack_base_ptr": "fff432f0/fff42ec0", 
        "process": "psshelper"
      }, 
      {
        "mem_pid": 10369, 
        "mem_alloc": 2445312, 
        "mem_limit": 923016300, 
        "mem_used": 382111744, 
        "stack_base_ptr": "ffddb200/ffdd9fc0", 
        "process": "mvsh"
      }, 
      {
        "mem_pid": 10378, 
        "mem_alloc": 2392064, 
        "mem_limit": 1027349593, 
        "mem_used": 381960192, 
        "stack_base_ptr": "ff86f2d0/ff86e290", 
        "process": "xmpp"
      }, 
      {
        "mem_pid": 10336, 
        "mem_alloc": 1982464, 
        "mem_limit": 0, 
        "mem_used": 381001728, 
        "stack_base_ptr": "fffaca60/fffac840", 
        "process": "confcheck"
      }, 
      {
        "mem_pid": 7053, 
        "mem_alloc": 1368064, 
        "mem_limit": 0, 
        "mem_used": 378785792, 
        "stack_base_ptr": "fff99f60/fff996f0", 
        "process": "fs-daemon"
      }, 
      {
        "mem_pid": 7208, 
        "mem_alloc": 3923968, 
        "mem_limit": 0, 
        "mem_used": 371843072, 
        "stack_base_ptr": "fffc44e0/fffc34ac", 
        "process": "plugin"
      }, 
      {
        "mem_pid": 7201, 
        "mem_alloc": 12718080, 
        "mem_limit": 0, 
        "mem_used": 287657984, 
        "stack_base_ptr": "ffec1640/ffec14ac", 
        "process": "sysinfo"
      }, 
      {
        "mem_pid": 10368, 
        "mem_alloc": 405504, 
        "mem_limit": 0, 
        "mem_used": 277676032, 
        "stack_base_ptr": "ff9043e0/ff903fb0", 
        "process": "mping_server"
      }, 
      {
        "mem_pid": 10483, 
        "mem_alloc": 319488, 
        "mem_limit": 656857062, 
        "mem_used": 275152896, 
        "stack_base_ptr": "ffa7dd10/ffa7d8f8", 
        "process": "ip_dummy"
      }, 
      {
        "mem_pid": 10484, 
        "mem_alloc": 319488, 
        "mem_limit": 656857062, 
        "mem_used": 275152896, 
        "stack_base_ptr": "ffe11160/ffe10d48", 
        "process": "ipv6_dummy"
      }, 
      {
        "mem_pid": 10488, 
        "mem_alloc": 319488, 
        "mem_limit": 656857062, 
        "mem_used": 275152896, 
        "stack_base_ptr": "fffe71c0/fffe6da8", 
        "process": "tcpudp_dummy"
      }
    ]
  }, 
  "sum_mem_malloced": "1923129344"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:process" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <processes>
    <vdc>
     <__XML__PARAM__e-vdc2>
      <__XML__value>access1</__XML__value>
      <memory>
       <sort>
        <__readonly__>
         <TABLE_process_memory>
          <ROW_process_memory>
           <mem_pid>10464</mem_pid>
           <mem_alloc>76550144</mem_alloc>
           <mem_limit>1287412403</mem_limit>
           <mem_used>636780544</mem_used>
           <stack_base_ptr>ffb8d500/ffb8cf50</stack_base_ptr>
           <process>netstack</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10593</mem_pid>
           <mem_alloc>208961536</mem_alloc>
           <mem_limit>877348736</mem_limit>
           <mem_used>627449856</mem_used>
           <stack_base_ptr>ffbae1b0/ffbac62c</stack_base_ptr>
           <process>monitor</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10634</mem_pid>
           <mem_alloc>125378560</mem_alloc>
           <mem_limit>1264177728</mem_limit>
           <mem_used>627449856</mem_used>
           <stack_base_ptr>ffe6fb20/ffe6fa00</stack_base_ptr>
           <process>mrib</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10436</mem_pid>
           <mem_alloc>83185664</mem_alloc>
           <mem_limit>1245393600</mem_limit>
           <mem_used>625324032</mem_used>
           <stack_base_ptr>ffb80470/ffb800d0</stack_base_ptr>
           <process>arp</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10587</mem_pid>
           <mem_alloc>151097344</mem_alloc>
           <mem_limit>1404815808</mem_limit>
           <mem_used>590594048</mem_used>
           <stack_base_ptr>ffad3480/ffad2f50</stack_base_ptr>
           <process>igmp</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10665</mem_pid>
           <mem_alloc>65646592</mem_alloc>
           <mem_limit>1112131328</mem_limit>
           <mem_used>554160128</mem_used>
           <stack_base_ptr>ffde7560/ffde7470</stack_base_ptr>
           <process>mcastfwd</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10351</mem_pid>
           <mem_alloc>63811584</mem_alloc>
           <mem_limit>1709656678</mem_limit>
           <mem_used>551743488</mem_used>
           <stack_base_ptr>ff83e440/ff83c8cc</stack_base_ptr>
           <process>port-profile</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10439</mem_pid>
           <mem_alloc>26820608</mem_alloc>
           <mem_limit>1145166528</mem_limit>
           <mem_used>539250688</mem_used>
           <stack_base_ptr>ffa56c10/ffa56b00</stack_base_ptr>
           <process>pktmgr</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10637</mem_pid>
           <mem_alloc>65372160</mem_alloc>
           <mem_limit>1090022489</mem_limit>
           <mem_used>514068480</mem_used>
           <stack_base_ptr>ffea39d0/ffea38b0</stack_base_ptr>
           <process>m6rib</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10349</mem_pid>
           <mem_alloc>19210240</mem_alloc>
           <mem_limit>1420319718</mem_limit>
           <mem_used>504619008</mem_used>
           <stack_base_ptr>ff9cad00/ff9ca0ec</stack_base_ptr>
           <process>clis</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10362</mem_pid>
           <mem_alloc>2949120</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>496148480</mem_used>
           <stack_base_ptr>ffd69410/ffd68808</stack_base_ptr>
           <process>ascii-cfg</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7048</mem_pid>
           <mem_alloc>29364224</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>494329856</mem_used>
           <stack_base_ptr>ffe5c660/ffe5c530</stack_base_ptr>
           <process>pdsd</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10343</mem_pid>
           <mem_alloc>5025792</mem_alloc>
           <mem_limit>1041375526</mem_limit>
           <mem_used>490704896</mem_used>
           <stack_base_ptr>ffffbda0/ffffab70</stack_base_ptr>
           <process>vpc_config_sync</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10627</mem_pid>
           <mem_alloc>9134080</mem_alloc>
           <mem_limit>1077055232</mem_limit>
           <mem_used>486494208</mem_used>
           <stack_base_ptr>ffd4f270/ffd4e70c</stack_base_ptr>
           <process>stp</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10338</mem_pid>
           <mem_alloc>4620288</mem_alloc>
           <mem_limit>1311063424</mem_limit>
           <mem_used>486318080</mem_used>
           <stack_base_ptr>ff9b74b0/ff9b490c</stack_base_ptr>
           <process>mmode</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10437</mem_pid>
           <mem_alloc>18182144</mem_alloc>
           <mem_limit>1045191769</mem_limit>
           <mem_used>477200384</mem_used>
           <stack_base_ptr>fff0fb50/fff0f5dc</stack_base_ptr>
           <process>icmpv6</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10580</mem_pid>
           <mem_alloc>16080896</mem_alloc>
           <mem_limit>1046975987</mem_limit>
           <mem_used>474648576</mem_used>
           <stack_base_ptr>fff1b900/fff1b7e0</stack_base_ptr>
           <process>rpm</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10394</mem_pid>
           <mem_alloc>34377728</mem_alloc>
           <mem_limit>1126306368</mem_limit>
           <mem_used>467931136</mem_used>
           <stack_base_ptr>ff88c2e0/ff88bf40</stack_base_ptr>
           <process>adjmgr</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10624</mem_pid>
           <mem_alloc>10358784</mem_alloc>
           <mem_limit>856601292</mem_limit>
           <mem_used>466116608</mem_used>
           <stack_base_ptr>ffad0fb0/ffacf3cc</stack_base_ptr>
           <process>ethpm</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10487</mem_pid>
           <mem_alloc>25726976</mem_alloc>
           <mem_limit>906967705</mem_limit>
           <mem_used>461746176</mem_used>
           <stack_base_ptr>ffd00450/ffcfb1fc</stack_base_ptr>
           <process>snmpd</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10585</mem_pid>
           <mem_alloc>71749632</mem_alloc>
           <mem_limit>997711475</mem_limit>
           <mem_used>456474624</mem_used>
           <stack_base_ptr>ffd764e0/ffd748dc</stack_base_ptr>
           <process>lim</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10645</mem_pid>
           <mem_alloc>25665536</mem_alloc>
           <mem_limit>1037234880</mem_limit>
           <mem_used>453369856</mem_used>
           <stack_base_ptr>ff8fa230/ff8f85bc</stack_base_ptr>
           <process>ufdm</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10621</mem_pid>
           <mem_alloc>50618368</mem_alloc>
           <mem_limit>823596787</mem_limit>
           <mem_used>444977152</mem_used>
           <stack_base_ptr>fffac4c0/fffab0ec</stack_base_ptr>
           <process>vlan_mgr</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10396</mem_pid>
           <mem_alloc>27586560</mem_alloc>
           <mem_limit>1045272870</mem_limit>
           <mem_used>444194816</mem_used>
           <stack_base_ptr>ff94a9c0/ff94a880</stack_base_ptr>
           <process>u6rib</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10485</mem_pid>
           <mem_alloc>3358720</mem_alloc>
           <mem_limit>1031967833</mem_limit>
           <mem_used>444145664</mem_used>
           <stack_base_ptr>ffa31840/ffa2d45c</stack_base_ptr>
           <process>ntp</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10486</mem_pid>
           <mem_alloc>4055040</mem_alloc>
           <mem_limit>1030945062</mem_limit>
           <mem_used>443727872</mem_used>
           <stack_base_ptr>fff59690/fff57b1c</stack_base_ptr>
           <process>otm</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10380</mem_pid>
           <mem_alloc>17358848</mem_alloc>
           <mem_limit>1611315200</mem_limit>
           <mem_used>439074816</mem_used>
           <stack_base_ptr>fffd02b0/fffd0070</stack_base_ptr>
           <process>urib</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10586</mem_pid>
           <mem_alloc>47607808</mem_alloc>
           <mem_limit>1074382848</mem_limit>
           <mem_used>433643520</mem_used>
           <stack_base_ptr>ff8a5030/ff8a45a0</stack_base_ptr>
           <process>l2rib</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7965</mem_pid>
           <mem_alloc>33157120</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>427773952</mem_used>
           <stack_base_ptr>ff83ca50/ff83bc60</stack_base_ptr>
           <process>diag_port_lb</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10625</mem_pid>
           <mem_alloc>20062208</mem_alloc>
           <mem_limit>1047368608</mem_limit>
           <mem_used>425947136</mem_used>
           <stack_base_ptr>ff94cf50/ff94b1ac</stack_base_ptr>
           <process>l2fm</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10628</mem_pid>
           <mem_alloc>33615872</mem_alloc>
           <mem_limit>778357747</mem_limit>
           <mem_used>425091072</mem_used>
           <stack_base_ptr>ffc19dc0/ffc1822c</stack_base_ptr>
           <process>aclqos</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10481</mem_pid>
           <mem_alloc>3014656</mem_alloc>
           <mem_limit>868058188</mem_limit>
           <mem_used>420261888</mem_used>
           <stack_base_ptr>ffa20aa0/ffa1f8dc</stack_base_ptr>
           <process>cdp</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10479</mem_pid>
           <mem_alloc>3502080</mem_alloc>
           <mem_limit>894458822</mem_limit>
           <mem_used>419786752</mem_used>
           <stack_base_ptr>ffc39930/ffc3467c</stack_base_ptr>
           <process>radius</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10425</mem_pid>
           <mem_alloc>8597504</mem_alloc>
           <mem_limit>1063844953</mem_limit>
           <mem_used>419778560</mem_used>
           <stack_base_ptr>ffaa97b0/ffaa9230</stack_base_ptr>
           <process>npacl</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7913</mem_pid>
           <mem_alloc>28327936</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>418869248</mem_used>
           <stack_base_ptr>ffab48c0/ffab3c90</stack_base_ptr>
           <process>pixmc</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10339</mem_pid>
           <mem_alloc>30920704</mem_alloc>
           <mem_limit>995913318</mem_limit>
           <mem_used>416292864</mem_used>
           <stack_base_ptr>ffd18500/ffd178c0</stack_base_ptr>
           <process>pixm_vl</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7409</mem_pid>
           <mem_alloc>19988480</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>416063488</mem_used>
           <stack_base_ptr>ff939250/ff931670</stack_base_ptr>
           <process>xbar</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>6954</mem_pid>
           <mem_alloc>24633344</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>415715328</mem_used>
           <stack_base_ptr>ffe7dbd0/ffe7b810</stack_base_ptr>
           <process>platform</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7047</mem_pid>
           <mem_alloc>20439040</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>413450240</mem_used>
           <stack_base_ptr>ff85f7d0/ff85eb90</stack_base_ptr>
           <process>pixm_gl</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7920</mem_pid>
           <mem_alloc>10510336</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>411803648</mem_used>
           <stack_base_ptr>ffce3080/ffce14fc</stack_base_ptr>
           <process>giscm</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10535</mem_pid>
           <mem_alloc>25530368</mem_alloc>
           <mem_limit>892609203</mem_limit>
           <mem_used>411697152</mem_used>
           <stack_base_ptr>fff97010/fff96adc</stack_base_ptr>
           <process>callhome</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10623</mem_pid>
           <mem_alloc>12914688</mem_alloc>
           <mem_limit>1653160960</mem_limit>
           <mem_used>409477120</mem_used>
           <stack_base_ptr>fffbe070/fffbca70</stack_base_ptr>
           <process>ipqosmgr</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10633</mem_pid>
           <mem_alloc>3039232</mem_alloc>
           <mem_limit>1029791628</mem_limit>
           <mem_used>408829952</mem_used>
           <stack_base_ptr>ffecd720/ffecbbac</stack_base_ptr>
           <process>sal</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10626</mem_pid>
           <mem_alloc>5267456</mem_alloc>
           <mem_limit>765787123</mem_limit>
           <mem_used>408166400</mem_used>
           <stack_base_ptr>fff5f070/fff5d4ec</stack_base_ptr>
           <process>mhbfd_tracker</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7452</mem_pid>
           <mem_alloc>9367552</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>404787200</mem_used>
           <stack_base_ptr>fffc8210/fffc71c0</stack_base_ptr>
           <process>ifmgr</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10588</mem_pid>
           <mem_alloc>14483456</mem_alloc>
           <mem_limit>790023238</mem_limit>
           <mem_used>402653184</mem_used>
           <stack_base_ptr>ffca0ef0/ffc9f72c</stack_base_ptr>
           <process>eltm</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10635</mem_pid>
           <mem_alloc>10465280</mem_alloc>
           <mem_limit>1147257408</mem_limit>
           <mem_used>401956864</mem_used>
           <stack_base_ptr>ffb8dea0/ffb8c29c</stack_base_ptr>
           <process>mfdm</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10591</mem_pid>
           <mem_alloc>13787136</mem_alloc>
           <mem_limit>981622118</mem_limit>
           <mem_used>400723968</mem_used>
           <stack_base_ptr>ffcc03b0/ffcbe82c</stack_base_ptr>
           <process>adbm</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7246</mem_pid>
           <mem_alloc>20770816</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>400662528</mem_used>
           <stack_base_ptr>ff941fc0/ff940ca0</stack_base_ptr>
           <process>diagclient</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10379</mem_pid>
           <mem_alloc>13971456</mem_alloc>
           <mem_limit>1040451878</mem_limit>
           <mem_used>400121856</mem_used>
           <stack_base_ptr>ffb22ed0/ffb22b20</stack_base_ptr>
           <process>l3vm</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10663</mem_pid>
           <mem_alloc>12918784</mem_alloc>
           <mem_limit>1170622604</mem_limit>
           <mem_used>398573568</mem_used>
           <stack_base_ptr>ff9e9240/ff9e8970</stack_base_ptr>
           <process>m2rib</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10382</mem_pid>
           <mem_alloc>7434240</mem_alloc>
           <mem_limit>1646118707</mem_limit>
           <mem_used>396791808</mem_used>
           <stack_base_ptr>ff9cdb10/ff9cc860</stack_base_ptr>
           <process>aclmgr</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10332</mem_pid>
           <mem_alloc>12046336</mem_alloc>
           <mem_limit>789647936</mem_limit>
           <mem_used>396582912</mem_used>
           <stack_base_ptr>ffe6c6e0/ffe680ec</stack_base_ptr>
           <process>syslogd</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7907</mem_pid>
           <mem_alloc>8450048</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>395792384</mem_used>
           <stack_base_ptr>ffe4f570/ffe4dd6c</stack_base_ptr>
           <process>sim</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10374</mem_pid>
           <mem_alloc>5492736</mem_alloc>
           <mem_limit>788671558</mem_limit>
           <mem_used>393961472</mem_used>
           <stack_base_ptr>ff90a7b0/ff90a078</stack_base_ptr>
           <process>vman</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10647</mem_pid>
           <mem_alloc>5951488</mem_alloc>
           <mem_limit>814067443</mem_limit>
           <mem_used>393633792</mem_used>
           <stack_base_ptr>ffad5150/ffad339c</stack_base_ptr>
           <process>interface-vlan</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10482</mem_pid>
           <mem_alloc>9334784</mem_alloc>
           <mem_limit>1092315980</mem_limit>
           <mem_used>393453568</mem_used>
           <stack_base_ptr>ffba6690/ffba4b1c</stack_base_ptr>
           <process>cfs</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7910</mem_pid>
           <mem_alloc>4145152</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>392970240</mem_used>
           <stack_base_ptr>ffec13d0/ffebf81c</stack_base_ptr>
           <process>pltfm_config</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10620</mem_pid>
           <mem_alloc>4485120</mem_alloc>
           <mem_limit>780382592</mem_limit>
           <mem_used>392609792</mem_used>
           <stack_base_ptr>ff80dba0/ff80be1c</stack_base_ptr>
           <process>eth_port_channel</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10632</mem_pid>
           <mem_alloc>6553600</mem_alloc>
           <mem_limit>1417981593</mem_limit>
           <mem_used>392540160</mem_used>
           <stack_base_ptr>ffaebbc0/ffaeaf40</stack_base_ptr>
           <process>spm</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7909</mem_pid>
           <mem_alloc>4907008</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>391376896</mem_used>
           <stack_base_ptr>ff880160/ff87f100</stack_base_ptr>
           <process>pltfm_debug</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7916</mem_pid>
           <mem_alloc>3571712</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>390905856</mem_used>
           <stack_base_ptr>ffbbb920/ffbba8e0</stack_base_ptr>
           <process>monitorc</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10636</mem_pid>
           <mem_alloc>3338240</mem_alloc>
           <mem_limit>767620902</mem_limit>
           <mem_used>390856704</mem_used>
           <stack_base_ptr>ffd61ed0/ffd60e40</stack_base_ptr>
           <process>mcm</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7430</mem_pid>
           <mem_alloc>7335936</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>390787072</mem_used>
           <stack_base_ptr>ffcde6a0/ffcdc310</stack_base_ptr>
           <process>module</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10582</mem_pid>
           <mem_alloc>6352896</mem_alloc>
           <mem_limit>1031733542</mem_limit>
           <mem_used>390672384</mem_used>
           <stack_base_ptr>ff873820/ff872800</stack_base_ptr>
           <process>plcmgr</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10360</mem_pid>
           <mem_alloc>3239936</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>390340608</mem_used>
           <stack_base_ptr>ffbd5df0/ffbd404c</stack_base_ptr>
           <process>cert_enroll</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10342</mem_pid>
           <mem_alloc>8142848</mem_alloc>
           <mem_limit>1035013619</mem_limit>
           <mem_used>390254592</mem_used>
           <stack_base_ptr>ffb7ce50/ffb7c890</stack_base_ptr>
           <process>smm</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10589</mem_pid>
           <mem_alloc>8499200</mem_alloc>
           <mem_limit>1030426918</mem_limit>
           <mem_used>389902336</mem_used>
           <stack_base_ptr>fff73ec0/fff73da0</stack_base_ptr>
           <process>ecp</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7058</mem_pid>
           <mem_alloc>7053312</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>389844992</mem_used>
           <stack_base_ptr>ff841330/ff84038c</stack_base_ptr>
           <process>bloggerd</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10395</mem_pid>
           <mem_alloc>3944448</mem_alloc>
           <mem_limit>766012403</mem_limit>
           <mem_used>389312512</mem_used>
           <stack_base_ptr>ffb5d510/ffb5c4d0</stack_base_ptr>
           <process>ncpinframgr</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10367</mem_pid>
           <mem_alloc>6000640</mem_alloc>
           <mem_limit>766990118</mem_limit>
           <mem_used>389152768</mem_used>
           <stack_base_ptr>ffacf370/ffacf1b0</stack_base_ptr>
           <process>fmd</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10638</mem_pid>
           <mem_alloc>3215360</mem_alloc>
           <mem_limit>1030332300</mem_limit>
           <mem_used>388902912</mem_used>
           <stack_base_ptr>ffab33e0/ffab163c</stack_base_ptr>
           <process>l2pt</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7052</mem_pid>
           <mem_alloc>2711552</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>388321280</mem_used>
           <stack_base_ptr>ffc05810/ffc05168</stack_base_ptr>
           <process>licmgr</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7223</mem_pid>
           <mem_alloc>2195456</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>388001792</mem_used>
           <stack_base_ptr>ffd713b0/ffd70380</stack_base_ptr>
           <process>clk_mgr</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10583</mem_pid>
           <mem_alloc>4288512</mem_alloc>
           <mem_limit>1031255948</mem_limit>
           <mem_used>387686400</mem_used>
           <stack_base_ptr>fff33f40/fff3238c</stack_base_ptr>
           <process>pfstat</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10361</mem_pid>
           <mem_alloc>3108864</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>387514368</mem_used>
           <stack_base_ptr>ffa1feb0/ffa1e9f8</stack_base_ptr>
           <process>securityd</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10337</mem_pid>
           <mem_alloc>3289088</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>387141632</mem_used>
           <stack_base_ptr>ffe9e490/ffe9d4fc</stack_base_ptr>
           <process>feature-mgr</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10631</mem_pid>
           <mem_alloc>3067904</mem_alloc>
           <mem_limit>768625651</mem_limit>
           <mem_used>386756608</mem_used>
           <stack_base_ptr>ffe50f30/ffe4ff00</stack_base_ptr>
           <process>u2</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10344</mem_pid>
           <mem_alloc>2752512</mem_alloc>
           <mem_limit>975643187</mem_limit>
           <mem_used>386691072</mem_used>
           <stack_base_ptr>ffd1b520/ffd1adfc</stack_base_ptr>
           <process>vshd</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10592</mem_pid>
           <mem_alloc>3485696</mem_alloc>
           <mem_limit>1030571097</mem_limit>
           <mem_used>386428928</mem_used>
           <stack_base_ptr>ff945380/ff944330</stack_base_ptr>
           <process>acllog</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10373</mem_pid>
           <mem_alloc>4636672</mem_alloc>
           <mem_limit>767494745</mem_limit>
           <mem_used>386150400</mem_used>
           <stack_base_ptr>ffb77190/ffb76130</stack_base_ptr>
           <process>statsprofiler</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10375</mem_pid>
           <mem_alloc>3522560</mem_alloc>
           <mem_limit>775782374</mem_limit>
           <mem_used>386121728</mem_used>
           <stack_base_ptr>ffde9ad0/ffde8490</stack_base_ptr>
           <process>vmm</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7207</mem_pid>
           <mem_alloc>3170304</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>385015808</mem_used>
           <stack_base_ptr>ffa1ddf0/ffa1d92c</stack_base_ptr>
           <process>res_mgr</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10366</mem_pid>
           <mem_alloc>3051520</mem_alloc>
           <mem_limit>766557580</mem_limit>
           <mem_used>384974848</mem_used>
           <stack_base_ptr>fff4a7f0/fff497c0</stack_base_ptr>
           <process>evms</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10494</mem_pid>
           <mem_alloc>3448832</mem_alloc>
           <mem_limit>472988876</mem_limit>
           <mem_used>384905216</mem_used>
           <stack_base_ptr>ffc97ca0/ffc93ecc</stack_base_ptr>
           <process>dcos-xinetd</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10581</mem_pid>
           <mem_alloc>4530176</mem_alloc>
           <mem_limit>843228672</mem_limit>
           <mem_used>384872448</mem_used>
           <stack_base_ptr>ffc8aab0/ffc89a80</stack_base_ptr>
           <process>plsm</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>5800</mem_pid>
           <mem_alloc>12107776</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>384692224</mem_used>
           <stack_base_ptr>fffa1960/fffa1560</stack_base_ptr>
           <process>sysmgr</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10363</mem_pid>
           <mem_alloc>3538944</mem_alloc>
           <mem_limit>763318054</mem_limit>
           <mem_used>384622592</mem_used>
           <stack_base_ptr>ff98be80/ff98b060</stack_base_ptr>
           <process>cli_acl</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10359</mem_pid>
           <mem_alloc>2809856</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>384499712</mem_used>
           <stack_base_ptr>ffec0910/ffebf4a0</stack_base_ptr>
           <process>aaa</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10371</mem_pid>
           <mem_alloc>2408448</mem_alloc>
           <mem_limit>780917420</mem_limit>
           <mem_used>384487424</mem_used>
           <stack_base_ptr>ff809d70/ff8097b0</stack_base_ptr>
           <process>sksd</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10387</mem_pid>
           <mem_alloc>2883584</mem_alloc>
           <mem_limit>1029606899</mem_limit>
           <mem_used>384012288</mem_used>
           <stack_base_ptr>ffbf92e0/ffbf82a0</stack_base_ptr>
           <process>eem_policy_dir</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7220</mem_pid>
           <mem_alloc>4456448</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>383934464</mem_used>
           <stack_base_ptr>ffd1f110/ffd1e0b0</stack_base_ptr>
           <process>diagmgr</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10529</mem_pid>
           <mem_alloc>2318336</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>383918080</mem_used>
           <stack_base_ptr>ffceca80/ffce8cac</stack_base_ptr>
           <process>ntpd</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10341</mem_pid>
           <mem_alloc>4907008</mem_alloc>
           <mem_limit>836624800</mem_limit>
           <mem_used>383823872</mem_used>
           <stack_base_ptr>ff878790/ff877770</stack_base_ptr>
           <process>session-mgr</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10376</mem_pid>
           <mem_alloc>2433024</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>383602688</mem_used>
           <stack_base_ptr>ffdb3720/ffdb29ac</stack_base_ptr>
           <process>xmlma</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10372</mem_pid>
           <mem_alloc>2883584</mem_alloc>
           <mem_limit>764106534</mem_limit>
           <mem_used>382943232</mem_used>
           <stack_base_ptr>ffe299c0/ffe28960</stack_base_ptr>
           <process>snmpmib_proc</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7198</mem_pid>
           <mem_alloc>1925120</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>382525440</mem_used>
           <stack_base_ptr>ffb1c670/ffb1b8e0</stack_base_ptr>
           <process>vdc_mgr</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10364</mem_pid>
           <mem_alloc>2510848</mem_alloc>
           <mem_limit>1027750592</mem_limit>
           <mem_used>382328832</mem_used>
           <stack_base_ptr>ffdeb6e0/ffdea6c0</stack_base_ptr>
           <process>evmc</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10622</mem_pid>
           <mem_alloc>2514944</mem_alloc>
           <mem_limit>785403660</mem_limit>
           <mem_used>382251008</mem_used>
           <stack_base_ptr>ff856580/ff8561d0</stack_base_ptr>
           <process>eth_dstats</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10340</mem_pid>
           <mem_alloc>3342336</mem_alloc>
           <mem_limit>1049678784</mem_limit>
           <mem_used>382189568</mem_used>
           <stack_base_ptr>fff432f0/fff42ec0</stack_base_ptr>
           <process>psshelper</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10369</mem_pid>
           <mem_alloc>2445312</mem_alloc>
           <mem_limit>923016300</mem_limit>
           <mem_used>382111744</mem_used>
           <stack_base_ptr>ffddb200/ffdd9fc0</stack_base_ptr>
           <process>mvsh</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10378</mem_pid>
           <mem_alloc>2392064</mem_alloc>
           <mem_limit>1027349593</mem_limit>
           <mem_used>381960192</mem_used>
           <stack_base_ptr>ff86f2d0/ff86e290</stack_base_ptr>
           <process>xmpp</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10336</mem_pid>
           <mem_alloc>1982464</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>381001728</mem_used>
           <stack_base_ptr>fffaca60/fffac840</stack_base_ptr>
           <process>confcheck</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7053</mem_pid>
           <mem_alloc>1368064</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>378785792</mem_used>
           <stack_base_ptr>fff99f60/fff996f0</stack_base_ptr>
           <process>fs-daemon</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7208</mem_pid>
           <mem_alloc>3923968</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>371843072</mem_used>
           <stack_base_ptr>fffc44e0/fffc34ac</stack_base_ptr>
           <process>plugin</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>7201</mem_pid>
           <mem_alloc>12718080</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>287657984</mem_used>
           <stack_base_ptr>ffec1640/ffec14ac</stack_base_ptr>
           <process>sysinfo</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10368</mem_pid>
           <mem_alloc>405504</mem_alloc>
           <mem_limit>0</mem_limit>
           <mem_used>277676032</mem_used>
           <stack_base_ptr>ff9043e0/ff903fb0</stack_base_ptr>
           <process>mping_server</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10483</mem_pid>
           <mem_alloc>319488</mem_alloc>
           <mem_limit>656857062</mem_limit>
           <mem_used>275152896</mem_used>
           <stack_base_ptr>ffa7dd10/ffa7d8f8</stack_base_ptr>
           <process>ip_dummy</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10484</mem_pid>
           <mem_alloc>319488</mem_alloc>
           <mem_limit>656857062</mem_limit>
           <mem_used>275152896</mem_used>
           <stack_base_ptr>ffe11160/ffe10d48</stack_base_ptr>
           <process>ipv6_dummy</process>
          </ROW_process_memory>
          <ROW_process_memory>
           <mem_pid>10488</mem_pid>
           <mem_alloc>319488</mem_alloc>
           <mem_limit>656857062</mem_limit>
           <mem_used>275152896</mem_used>
           <stack_base_ptr>fffe71c0/fffe6da8</stack_base_ptr>
           <process>tcpudp_dummy</process>
          </ROW_process_memory>
         </TABLE_process_memory>
         <sum_mem_malloced>1923129344</sum_mem_malloced>
        </__readonly__>
       </sort>
      </memory>
     </__XML__PARAM__e-vdc2>
    </vdc>
   </processes>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show processes vdc access1 memory sort**

PID    MemAlloc  MemLimit    MemUsed     StackBase/Ptr      Process
-----  --------  ----------  ----------  -----------------  ----------------
10464  76550144  1287412403  636780544   ffb8d500/ffb8cf50  netstack
10593  208961536  877348736   627449856   ffbae1b0/ffbac62c  monitor
10634  125378560  1264177728  627449856   ffe6fb20/ffe6fa00  mrib
10436  83185664  1245393600  625324032   ffb80470/ffb800d0  arp
10587  151097344  1404815808  590594048   ffad3480/ffad2f50  igmp
10665  65646592  1112131328  554160128   ffde7560/ffde7470  mcastfwd
10351  63811584  1709656678  551743488   ff83e440/ff83c8cc  port-profile
10439  26820608  1145166528  539250688   ffa56c10/ffa56b00  pktmgr
10637  65372160  1090022489  514068480   ffea39d0/ffea38b0  m6rib
10349  19210240  1420319718  504619008   ff9cad00/ff9ca0ec  clis
10362   2949120  0           496148480   ffd69410/ffd68808  ascii-cfg
 7048  29364224  0           494329856   ffe5c660/ffe5c530  pdsd
10343   5025792  1041375526  490704896   ffffbda0/ffffab70  vpc_config_sync
10627   9134080  1077055232  486494208   ffd4f270/ffd4e70c  stp
10338   4620288  1311063424  486318080   ff9b74b0/ff9b490c  mmode
10437  18182144  1045191769  477200384   fff0fb50/fff0f5dc  icmpv6
10580  16080896  1046975987  474648576   fff1b900/fff1b7e0  rpm
10394  34377728  1126306368  467931136   ff88c2e0/ff88bf40  adjmgr
10624  10358784  856601292   466116608   ffad0fb0/ffacf3cc  ethpm
10487  25726976  906967705   461746176   ffd00450/ffcfb1fc  snmpd
10585  71749632  997711475   456474624   ffd764e0/ffd748dc  lim
10645  25665536  1037234880  453369856   ff8fa230/ff8f85bc  ufdm
10621  50618368  823596787   444977152   fffac4c0/fffab0ec  vlan_mgr
10396  27586560  1045272870  444194816   ff94a9c0/ff94a880  u6rib
10485   3358720  1031967833  444145664   ffa31840/ffa2d45c  ntp
10486   4055040  1030945062  443727872   fff59690/fff57b1c  otm
10380  17358848  1611315200  439074816   fffd02b0/fffd0070  urib
10586  47607808  1074382848  433643520   ff8a5030/ff8a45a0  l2rib
 7965  33157120  0           427773952   ff83ca50/ff83bc60  diag_port_lb
10625  20062208  1047368608  425947136   ff94cf50/ff94b1ac  l2fm
10628  33615872  778357747   425091072   ffc19dc0/ffc1822c  aclqos
10481   3014656  868058188   420261888   ffa20aa0/ffa1f8dc  cdp
10479   3502080  894458822   419786752   ffc39930/ffc3467c  radius
10425   8597504  1063844953  419778560   ffaa97b0/ffaa9230  npacl
 7913  28327936  0           418869248   ffab48c0/ffab3c90  pixmc
10339  30920704  995913318   416292864   ffd18500/ffd178c0  pixm_vl
 7409  19988480  0           416063488   ff939250/ff931670  xbar
 6954  24633344  0           415715328   ffe7dbd0/ffe7b810  platform
 7047  20439040  0           413450240   ff85f7d0/ff85eb90  pixm_gl
 7920  10510336  0           411803648   ffce3080/ffce14fc  giscm
10535  25530368  892609203   411697152   fff97010/fff96adc  callhome
10623  12914688  1653160960  409477120   fffbe070/fffbca70  ipqosmgr
10633   3039232  1029791628  408829952   ffecd720/ffecbbac  sal
10626   5267456  765787123   408166400   fff5f070/fff5d4ec  mhbfd_tracker
 7452   9367552  0           404787200   fffc8210/fffc71c0  ifmgr
10588  14483456  790023238   402653184   ffca0ef0/ffc9f72c  eltm
10635  10465280  1147257408  401956864   ffb8dea0/ffb8c29c  mfdm
10591  13787136  981622118   400723968   ffcc03b0/ffcbe82c  adbm
 7246  20770816  0           400662528   ff941fc0/ff940ca0  diagclient
10379  13971456  1040451878  400121856   ffb22ed0/ffb22b20  l3vm
10663  12918784  1170622604  398573568   ff9e9240/ff9e8970  m2rib
10382   7434240  1646118707  396791808   ff9cdb10/ff9cc860  aclmgr
10332  12046336  789647936   396582912   ffe6c6e0/ffe680ec  syslogd
 7907   8450048  0           395792384   ffe4f570/ffe4dd6c  sim
10374   5492736  788671558   393961472   ff90a7b0/ff90a078  vman
10647   5951488  814067443   393633792   ffad5150/ffad339c  interface-vlan
10482   9334784  1092315980  393453568   ffba6690/ffba4b1c  cfs
 7910   4145152  0           392970240   ffec13d0/ffebf81c  pltfm_config
10620   4485120  780382592   392609792   ff80dba0/ff80be1c  eth_port_channel
10632   6553600  1417981593  392540160   ffaebbc0/ffaeaf40  spm
 7909   4907008  0           391376896   ff880160/ff87f100  pltfm_debug
 7916   3571712  0           390905856   ffbbb920/ffbba8e0  monitorc
10636   3338240  767620902   390856704   ffd61ed0/ffd60e40  mcm
 7430   7335936  0           390787072   ffcde6a0/ffcdc310  module
10582   6352896  1031733542  390672384   ff873820/ff872800  plcmgr
10360   3239936  0           390340608   ffbd5df0/ffbd404c  cert_enroll
10342   8142848  1035013619  390254592   ffb7ce50/ffb7c890  smm
10589   8499200  1030426918  389902336   fff73ec0/fff73da0  ecp
 7058   7053312  0           389844992   ff841330/ff84038c  bloggerd
10395   3944448  766012403   389312512   ffb5d510/ffb5c4d0  ncpinframgr
10367   6000640  766990118   389152768   ffacf370/ffacf1b0  fmd
10638   3215360  1030332300  388902912   ffab33e0/ffab163c  l2pt
 7052   2711552  0           388321280   ffc05810/ffc05168  licmgr
 7223   2195456  0           388001792   ffd713b0/ffd70380  clk_mgr
10583   4288512  1031255948  387686400   fff33f40/fff3238c  pfstat
10361   3108864  0           387514368   ffa1feb0/ffa1e9f8  securityd
10337   3289088  0           387141632   ffe9e490/ffe9d4fc  feature-mgr
10631   3067904  768625651   386756608   ffe50f30/ffe4ff00  u2
10344   2752512  975643187   386691072   ffd1b520/ffd1adfc  vshd
10592   3485696  1030571097  386428928   ff945380/ff944330  acllog
10373   4636672  767494745   386150400   ffb77190/ffb76130  statsprofiler
10375   3522560  775782374   386121728   ffde9ad0/ffde8490  vmm
 7207   3170304  0           385015808   ffa1ddf0/ffa1d92c  res_mgr
10366   3051520  766557580   384974848   fff4a7f0/fff497c0  evms
10494   3448832  472988876   384905216   ffc97ca0/ffc93ecc  dcos-xinetd
10581   4530176  843228672   384872448   ffc8aab0/ffc89a80  plsm
 5800  12107776  0           384692224   fffa1960/fffa1560  sysmgr
10363   3538944  763318054   384622592   ff98be80/ff98b060  cli_acl
10359   2809856  0           384499712   ffec0910/ffebf4a0  aaa
10371   2408448  780917420   384487424   ff809d70/ff8097b0  sksd
10387   2883584  1029606899  384012288   ffbf92e0/ffbf82a0  eem_policy_dir
 7220   4456448  0           383934464   ffd1f110/ffd1e0b0  diagmgr
10529   2318336  0           383918080   ffceca80/ffce8cac  ntpd
10341   4907008  836624800   383823872   ff878790/ff877770  session-mgr
10376   2433024  0           383602688   ffdb3720/ffdb29ac  xmlma
10372   2883584  764106534   382943232   ffe299c0/ffe28960  snmpmib_proc
 7198   1925120  0           382525440   ffb1c670/ffb1b8e0  vdc_mgr
10364   2510848  1027750592  382328832   ffdeb6e0/ffdea6c0  evmc
10622   2514944  785403660   382251008   ff856580/ff8561d0  eth_dstats
10340   3342336  1049678784  382189568   fff432f0/fff42ec0  psshelper
10369   2445312  923016300   382111744   ffddb200/ffdd9fc0  mvsh
10378   2392064  1027349593  381960192   ff86f2d0/ff86e290  xmpp
10336   1982464  0           381001728   fffaca60/fffac840  confcheck
 7053   1368064  0           378785792   fff99f60/fff996f0  fs-daemon
 7208   3923968  0           371843072   fffc44e0/fffc34ac  plugin
 7201  12718080  0           287657984   ffec1640/ffec14ac  sysinfo
10368    405504  0           277676032   ff9043e0/ff903fb0  mping_server
10483    319488  656857062   275152896   ffa7dd10/ffa7d8f8  ip_dummy
10484    319488  656857062   275152896   ffe11160/ffe10d48  ipv6_dummy
10488    319488  656857062   275152896   fffe71c0/fffe6da8  tcpudp_dummy

All processes: MemAlloc = 1923129344

show system resources

show system resources
 
import requests
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 system resources”,
  "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)
{
  "load_avg_1min": 1.04, 
  "load_avg_5min": 1.27, 
  "load_avg_15min": 1.34, 
  "processes_total": 1128, 
  "processes_running": 1, 
  "cpu_state_user": 5.57, 
  "cpu_state_kernel": 2.31, 
  "cpu_state_idle": 92.1, 
  "TABLE_cpu_usage": {
    "ROW_cpu_usage": [
      {
        "cpuid": 0, 
        "user": 1.0, 
        "kernel": 5.0, 
        "idle": 94.0
      }, 
      {
        "cpuid": 1, 
        "user": 0.0, 
        "kernel": 1.0, 
        "idle": 99.0
      }, 
      {
        "cpuid": 2, 
        "user": 0.0, 
        "kernel": 0.0, 
        "idle": 100.0
      }, 
      {
        "cpuid": 3, 
        "user": 0.0, 
        "kernel": 1.0, 
        "idle": 99.0
      }, 
      {
        "cpuid": 4, 
        "user": 0.0, 
        "kernel": 1.0, 
        "idle": 99.0
      }, 
      {
        "cpuid": 5, 
        "user": 0.0, 
        "kernel": 0.0, 
        "idle": 100.0
      }, 
      {
        "cpuid": 6, 
        "user": 37.0, 
        "kernel": 2.0, 
        "idle": 61.0
      }, 
      {
        "cpuid": 7, 
        "user": 48.51, 
        "kernel": 4.95, 
        "idle": 46.53
      }, 
      {
        "cpuid": 8, 
        "user": 0.0, 
        "kernel": 0.0, 
        "idle": 100.0
      }, 
      {
        "cpuid": 9, 
        "user": 0.0, 
        "kernel": 0.0, 
        "idle": 100.0
      }, 
      {
        "cpuid": 10, 
        "user": 0.0, 
        "kernel": 0.0, 
        "idle": 100.0
      }, 
      {
        "cpuid": 11, 
        "user": 1.98, 
        "kernel": 7.92, 
        "idle": 90.09
      }, 
      {
        "cpuid": 12, 
        "user": 0.0, 
        "kernel": 0.0, 
        "idle": 100.0
      }, 
      {
        "cpuid": 13, 
        "user": 0.0, 
        "kernel": 0.0, 
        "idle": 100.0
      }, 
      {
        "cpuid": 14, 
        "user": 0.0, 
        "kernel": 14.0, 
        "idle": 86.0
      }, 
      {
        "cpuid": 15, 
        "user": 0.0, 
        "kernel": 0.0, 
        "idle": 100.0
      }
    ]
  }, 
  "memory_usage_total": 32939156, 
  "memory_usage_used": 8482224, 
  "memory_usage_free": 24456932, 
  "current_memory_status": "OK"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:process" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <system>
    <resources>
     <__readonly__>
      <load_avg_1min>1.05</load_avg_1min>
      <load_avg_5min>1.28</load_avg_5min>
      <load_avg_15min>1.34</load_avg_15min>
      <processes_total>1127</processes_total>
      <processes_running>1</processes_running>
      <cpu_state_user>0.87</cpu_state_user>
      <cpu_state_kernel>1.31</cpu_state_kernel>
      <cpu_state_idle>97.80</cpu_state_idle>
      <TABLE_cpu_usage>
       <ROW_cpu_usage>
        <cpuid>0</cpuid>
        <user>2.02</user>
        <kernel>3.03</kernel>
        <idle>94.94</idle>
       </ROW_cpu_usage>
       <ROW_cpu_usage>
        <cpuid>1</cpuid>
        <user>0.00</user>
        <kernel>0.00</kernel>
        <idle>100.00</idle>
       </ROW_cpu_usage>
       <ROW_cpu_usage>
        <cpuid>2</cpuid>
        <user>5.00</user>
        <kernel>1.00</kernel>
        <idle>94.00</idle>
       </ROW_cpu_usage>
       <ROW_cpu_usage>
        <cpuid>3</cpuid>
        <user>0.00</user>
        <kernel>1.00</kernel>
        <idle>99.00</idle>
       </ROW_cpu_usage>
       <ROW_cpu_usage>
        <cpuid>4</cpuid>
        <user>2.02</user>
        <kernel>0.00</kernel>
        <idle>97.97</idle>
       </ROW_cpu_usage>
       <ROW_cpu_usage>
        <cpuid>5</cpuid>
        <user>0.00</user>
        <kernel>0.00</kernel>
        <idle>100.00</idle>
       </ROW_cpu_usage>
       <ROW_cpu_usage>
        <cpuid>6</cpuid>
        <user>2.02</user>
        <kernel>0.00</kernel>
        <idle>97.97</idle>
       </ROW_cpu_usage>
       <ROW_cpu_usage>
        <cpuid>7</cpuid>
        <user>2.97</user>
        <kernel>2.97</kernel>
        <idle>94.05</idle>
       </ROW_cpu_usage>
       <ROW_cpu_usage>
        <cpuid>8</cpuid>
        <user>0.00</user>
        <kernel>0.00</kernel>
        <idle>100.00</idle>
       </ROW_cpu_usage>
       <ROW_cpu_usage>
        <cpuid>9</cpuid>
        <user>0.00</user>
        <kernel>0.00</kernel>
        <idle>100.00</idle>
       </ROW_cpu_usage>
       <ROW_cpu_usage>
        <cpuid>10</cpuid>
        <user>0.00</user>
        <kernel>0.00</kernel>
        <idle>100.00</idle>
       </ROW_cpu_usage>
       <ROW_cpu_usage>
        <cpuid>11</cpuid>
        <user>0.00</user>
        <kernel>0.00</kernel>
        <idle>100.00</idle>
       </ROW_cpu_usage>
       <ROW_cpu_usage>
        <cpuid>12</cpuid>
        <user>0.00</user>
        <kernel>0.00</kernel>
        <idle>100.00</idle>
       </ROW_cpu_usage>
       <ROW_cpu_usage>
        <cpuid>13</cpuid>
        <user>0.00</user>
        <kernel>0.00</kernel>
        <idle>100.00</idle>
       </ROW_cpu_usage>
       <ROW_cpu_usage>
        <cpuid>14</cpuid>
        <user>0.00</user>
        <kernel>13.00</kernel>
        <idle>87.00</idle>
       </ROW_cpu_usage>
       <ROW_cpu_usage>
        <cpuid>15</cpuid>
        <user>0.00</user>
        <kernel>0.00</kernel>
        <idle>100.00</idle>
       </ROW_cpu_usage>
      </TABLE_cpu_usage>
      <memory_usage_total>32939156</memory_usage_total>
      <memory_usage_used>8477384</memory_usage_used>
      <memory_usage_free>24461772</memory_usage_free>
      <current_memory_status>OK</current_memory_status>
     </__readonly__>
    </resources>
   </system>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show system resources**

Load average:   1 minute: 1.07   5 minutes: 1.29   15 minutes: 1.35
Processes   :   1126 total, 1 running
CPU states  :   0.12% user,   1.06% kernel,   98.81% idle
        CPU0 states  :   0.00% user,   2.02% kernel,   97.97% idle
        CPU1 states  :   0.00% user,   0.00% kernel,   100.00% idle
        CPU2 states  :   0.00% user,   1.00% kernel,   99.00% idle
        CPU3 states  :   0.00% user,   1.98% kernel,   98.01% idle
        CPU4 states  :   0.00% user,   0.00% kernel,   100.00% idle
        CPU5 states  :   1.00% user,   0.00% kernel,   99.00% idle
        CPU6 states  :   0.00% user,   0.00% kernel,   100.00% idle
        CPU7 states  :   0.00% user,   0.00% kernel,   100.00% idle
        CPU8 states  :   1.00% user,   0.00% kernel,   99.00% idle
        CPU9 states  :   0.00% user,   0.00% kernel,   100.00% idle
        CPU10 states  :   0.00% user,   0.00% kernel,   100.00% idle
        CPU11 states  :   0.00% user,   0.00% kernel,   100.00% idle
        CPU12 states  :   0.00% user,   0.00% kernel,   100.00% idle
        CPU13 states  :   0.00% user,   0.00% kernel,   100.00% idle
        CPU14 states  :   0.00% user,   12.00% kernel,   88.00% idle
        CPU15 states  :   0.00% user,   0.00% kernel,   100.00% idle
Memory usage:   32939156K total,   8473648K used,   24465508K free
Current memory status: OK

show resource m4route-mem hidden-too

show resource m4route-mem hidden-too
 
import requests
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 resource m4route-mem hidden-too”,
  "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)
{
  "TABLE_vdc_resource_local": {
    "ROW_vdc_resource_local": {
      "res_name": "m4route-mem", 
      "min": 58, 
      "max": 58, 
      "used": 1, 
      "unused": 57, 
      "free": 57
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:res_mgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <resource>
    <__XML__PARAM__res-mgr-res-known-name>
     <__XML__value>m4route-mem</__XML__value>
     <hidden-too>
      <__readonly__>
       <TABLE_vdc_resource_local>
        <ROW_vdc_resource_local>
         <res_name>m4route-mem</res_name>
         <min>58</min>
         <max>58</max>
         <used>1</used>
         <unused>57</unused>
         <free>57</free>
        </ROW_vdc_resource_local>
       </TABLE_vdc_resource_local>
      </__readonly__>
     </hidden-too>
    </__XML__PARAM__res-mgr-res-known-name>
   </resource>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show resource m4route-mem hidden-too**

     Resource                   Min       Max       Used      Unused    Avail    
     --------                   ---       ---       ----      ------    -----    
     m4route-mem                58        58        1         57        57       

show resource m4route-mem with-flags

show resource m4route-mem with-flags
 
import requests
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 resource m4route-mem with-flags”,
  "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)
{
  "TABLE_vdc_resource_local": {
    "ROW_vdc_resource_local": {
      "res_name": "m4route-mem", 
      "min": 58, 
      "max": 58, 
      "used": 1, 
      "unused": 57, 
      "free": 57
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:res_mgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <resource>
    <__XML__PARAM__res-mgr-res-known-name>
     <__XML__value>m4route-mem</__XML__value>
     <with-flags>
      <__readonly__>
       <TABLE_vdc_resource_local>
        <ROW_vdc_resource_local>
         <res_name>m4route-mem</res_name>
         <min>58</min>
         <max>58</max>
         <used>1</used>
         <unused>57</unused>
         <free>57</free>
        </ROW_vdc_resource_local>
       </TABLE_vdc_resource_local>
      </__readonly__>
     </with-flags>
    </__XML__PARAM__res-mgr-res-known-name>
   </resource>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show resource m4route-mem with-flags**

     Resource                   Min       Max       Used      Unused    Avail    
     --------                   ---       ---       ----      ------    -----    
     m4route-mem                58        58        1         57        57       

show system vlan reserved

show system vlan reserved 
 
import requests
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 system vlan reserved”,
  "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)
{
  "current_reserved_vlan_start": 3968, 
  "current_reserved_vlan_end": 4095
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:res_mgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <system>
    <vlan>
     <reserved>
      <__readonly__>
       <current_reserved_vlan_start>3968</current_reserved_vlan_start>
       <current_reserved_vlan_end>4095</current_reserved_vlan_end>
      </__readonly__>
     </reserved>
    </vlan>
   </system>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show system vlan reserved **

system current running vlan reservation: 3968-4095

show vdc access1 resource m4route-mem

show vdc access1 resource m4route-mem
 
import requests
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 vdc access1 resource m4route-mem”,
  "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)
{
  "TABLE_vdc_resource_single_vdc": {
    "ROW_vdc_resource_single_vdc": {
      "res_name": "m4route-mem", 
      "min": 8, 
      "max": 8, 
      "used": 1, 
      "unused": 7, 
      "free": 7
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:res_mgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <vdc>
    <__XML__PARAM__id>
     <__XML__value>access1</__XML__value>
     <resource>
      <__XML__PARAM__res-mgr-res-known-name>
       <__XML__value>m4route-mem</__XML__value>
       <__readonly__>
        <TABLE_vdc_resource_single_vdc>
         <ROW_vdc_resource_single_vdc>
          <res_name>m4route-mem</res_name>
          <min>8</min>
          <max>8</max>
          <used>1</used>
          <unused>7</unused>
          <free>7</free>
         </ROW_vdc_resource_single_vdc>
        </TABLE_vdc_resource_single_vdc>
       </__readonly__>
      </__XML__PARAM__res-mgr-res-known-name>
     </resource>
    </__XML__PARAM__id>
   </vdc>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show vdc access1 resource m4route-mem**

     Resource                   Min       Max       Used      Unused    Avail    
     --------                   ---       ---       ----      ------    -----    
     m4route-mem                8         8         1         7         7        

show vdc resource m4route-mem detail hidden-too

show vdc resource m4route-mem detail hidden-too
 
import requests
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 vdc resource m4route-mem detail hidden-too”,
  "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)
{
  "TABLE_resource": {
    "ROW_resource": {
      "resource_name": "m4route-mem", 
      "total_used": 3, 
      "total_unused": 71, 
      "total_free": 397, 
      "total_avail": 326, 
      "total": 400, 
      "TABLE_vdc_resource_across_vdcs": {
        "ROW_vdc_resource_across_vdcs": [
          {
            "vdc_name": "n7k2", 
            "min": 58, 
            "max": 58, 
            "used": 1, 
            "unused": 57, 
            "free": 57
          }, 
          {
            "vdc_name": "access1", 
            "min": 8, 
            "max": 8, 
            "used": 1, 
            "unused": 7, 
            "free": 7
          }, 
          {
            "vdc_name": "access2", 
            "min": 8, 
            "max": 8, 
            "used": 1, 
            "unused": 7, 
            "free": 7
          }
        ]
      }
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:res_mgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <vdc>
    <resource>
     <__XML__PARAM__res-mgr-res-known-name>
      <__XML__value>m4route-mem</__XML__value>
      <detail>
       <hidden-too>
        <__readonly__>
         <TABLE_resource>
          <ROW_resource>
           <resource_name>m4route-mem</resource_name>
           <total_used>3</total_used>
           <total_unused>71</total_unused>
           <total_free>397</total_free>
           <total_avail>326</total_avail>
           <total>400</total>
           <TABLE_vdc_resource_across_vdcs>
            <ROW_vdc_resource_across_vdcs>
             <vdc_name>n7k2</vdc_name>
             <min>58</min>
             <max>58</max>
             <used>1</used>
             <unused>57</unused>
             <free>57</free>
            </ROW_vdc_resource_across_vdcs>
            <ROW_vdc_resource_across_vdcs>
             <vdc_name>access1</vdc_name>
             <min>8</min>
             <max>8</max>
             <used>1</used>
             <unused>7</unused>
             <free>7</free>
            </ROW_vdc_resource_across_vdcs>
            <ROW_vdc_resource_across_vdcs>
             <vdc_name>access2</vdc_name>
             <min>8</min>
             <max>8</max>
             <used>1</used>
             <unused>7</unused>
             <free>7</free>
            </ROW_vdc_resource_across_vdcs>
           </TABLE_vdc_resource_across_vdcs>
          </ROW_resource>
         </TABLE_resource>
        </__readonly__>
       </hidden-too>
      </detail>
     </__XML__PARAM__res-mgr-res-known-name>
    </resource>
   </vdc>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show vdc resource m4route-mem detail hidden-too

  m4route-mem          3 used    71 unused    397 free    326 avail    400 total

      Vdc                              Min       Max       Used      Unused    Avail    
      ---                              ---       ---       ----      ------    -----    
      n7k2                             58        58        1         57        57       
      access1                          8         8         1         7         7        
      access2                          8         8         1         7         7        

show vdc resource m4route-mem detail with-flags

show vdc resource m4route-mem detail with-flags
 
import requests
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 vdc resource m4route-mem detail with-flags”,
  "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)
{
  "TABLE_resource": {
    "ROW_resource": {
      "resource_name": "m4route-mem", 
      "total_used": 3, 
      "total_unused": 71, 
      "total_free": 397, 
      "total_avail": 326, 
      "total": 400, 
      "TABLE_vdc_resource_across_vdcs": {
        "ROW_vdc_resource_across_vdcs": [
          {
            "vdc_name": "n7k2", 
            "min": 58, 
            "max": 58, 
            "used": 1, 
            "unused": 57, 
            "free": 57
          }, 
          {
            "vdc_name": "access1", 
            "min": 8, 
            "max": 8, 
            "used": 1, 
            "unused": 7, 
            "free": 7
          }, 
          {
            "vdc_name": "access2", 
            "min": 8, 
            "max": 8, 
            "used": 1, 
            "unused": 7, 
            "free": 7
          }
        ]
      }
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:res_mgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <vdc>
    <resource>
     <__XML__PARAM__res-mgr-res-known-name>
      <__XML__value>m4route-mem</__XML__value>
      <detail>
       <with-flags>
        <__readonly__>
         <TABLE_resource>
          <ROW_resource>
           <resource_name>m4route-mem</resource_name>
           <total_used>3</total_used>
           <total_unused>71</total_unused>
           <total_free>397</total_free>
           <total_avail>326</total_avail>
           <total>400</total>
           <TABLE_vdc_resource_across_vdcs>
            <ROW_vdc_resource_across_vdcs>
             <vdc_name>n7k2</vdc_name>
             <min>58</min>
             <max>58</max>
             <used>1</used>
             <unused>57</unused>
             <free>57</free>
            </ROW_vdc_resource_across_vdcs>
            <ROW_vdc_resource_across_vdcs>
             <vdc_name>access1</vdc_name>
             <min>8</min>
             <max>8</max>
             <used>1</used>
             <unused>7</unused>
             <free>7</free>
            </ROW_vdc_resource_across_vdcs>
            <ROW_vdc_resource_across_vdcs>
             <vdc_name>access2</vdc_name>
             <min>8</min>
             <max>8</max>
             <used>1</used>
             <unused>7</unused>
             <free>7</free>
            </ROW_vdc_resource_across_vdcs>
           </TABLE_vdc_resource_across_vdcs>
          </ROW_resource>
         </TABLE_resource>
        </__readonly__>
       </with-flags>
      </detail>
     </__XML__PARAM__res-mgr-res-known-name>
    </resource>
   </vdc>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show vdc resource m4route-mem detail with-flags

   m4route-mem          3 used    71 unused    397 free    326 avail    400 total

      Vdc                              Min       Max       Used      Unused    Avail    
      ---                              ---       ---       ----      ------    -----    
      n7k2                             58        58        1         57        57       
      access1                          8         8         1         7         7        
      access2                          8         8         1         7         7        

show vdc internal snmp ciscoVdcglobalResUsageTable ciscoVdcGlobalResID 2

show vdc internal snmp ciscoVdcglobalResUsageTable ciscoVdcGlobalResID 2

 
import requests
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 vdc internal snmp ciscoVdcglobalResUsageTable ciscoVdcGlobalResID 2”,
  "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)
{
  "TABLE_ciscoVdcGlobalResUsageTable": {
    "ROW_ciscoVdcGlobalResUsageTable": {
      "res_id_out": 2, 
      "res_name": "vlan", 
      "total_used": 43, 
      "total_unused": 14, 
      "total_free": 16340, 
      "total_avail": 16326, 
      "total": 16383
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:res_mgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <vdc>
    <internal>
     <snmp>
      <ciscoVdcGlobalResUsageTable>
       <ciscoVdcGlobalResID>
        <__XML__PARAM__res_id_in>
         <__XML__value>2</__XML__value>
         <__readonly__>
          <TABLE_ciscoVdcGlobalResUsageTable>
           <ROW_ciscoVdcGlobalResUsageTable>
            <res_id_out>2</res_id_out>
            <res_name>vlan</res_name>
            <total_used>43</total_used>
            <total_unused>14</total_unused>
            <total_free>16340</total_free>
            <total_avail>16326</total_avail>
            <total>16383</total>
           </ROW_ciscoVdcGlobalResUsageTable>
          </TABLE_ciscoVdcGlobalResUsageTable>
         </__readonly__>
        </__XML__PARAM__res_id_in>
       </ciscoVdcGlobalResID>
      </ciscoVdcGlobalResUsageTable>
     </snmp>
    </internal>
   </vdc>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show vdc internal snmp ciscoVdcglobalResUsageTable ciscoVdcGlobalResID 2**

ciscoVdcGlobalResID = 2
ciscoVdcGlobalResName = vlan
ciscoVdcGlobalResUsed = 43
ciscoVdcGlobalResUnused = 14
ciscoVdcGlobalResFree = 16340
ciscoVdcGlobalResAvail = 16326
ciscoVdcGlobalResTotal = 16383

show vdc internal snmp ciscoVdcResUsageTable ciscoVdcId 1 ciscovdcGlobalResID 2

show vdc internal snmp ciscoVdcResUsageTable ciscoVdcId  1 ciscovdcGlobalResID 2
 
import requests
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 vdc internal snmp ciscoVdcResUsageTable ciscoVdcId  1 ciscovdcGlobalResID 2”,
  "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)
{
  "TABLE_ciscoVdcResUsageTable": {
    "ROW_ciscoVdcResUsageTable": {
      "vdc_id_out": 1, 
      "res_id_out": 2, 
      "min": 16, 
      "max": 4094, 
      "used": 25, 
      "unused": 0, 
      "free": 4069
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:res_mgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <vdc>
    <internal>
     <snmp>
      <ciscoVdcResUsageTable>
       <ciscoVdcId>
        <__XML__PARAM__new_id>
         <__XML__value>1</__XML__value>
         <ciscoVdcGlobalResID>
          <__XML__PARAM__res_id_in>
           <__XML__value>2</__XML__value>
           <__readonly__>
            <TABLE_ciscoVdcResUsageTable>
             <ROW_ciscoVdcResUsageTable>
              <vdc_id_out>1</vdc_id_out>
              <res_id_out>2</res_id_out>
              <min>16</min>
              <max>4094</max>
              <used>25</used>
              <unused>0</unused>
              <free>4069</free>
             </ROW_ciscoVdcResUsageTable>
            </TABLE_ciscoVdcResUsageTable>
           </__readonly__>
          </__XML__PARAM__res_id_in>
         </ciscoVdcGlobalResID>
        </__XML__PARAM__new_id>
       </ciscoVdcId>
      </ciscoVdcResUsageTable>
     </snmp>
    </internal>
   </vdc>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show vdc internal snmp ciscoVdcResUsageTable ciscoVdcId 1 ciscovdcGlobalResID 2**

ciscoVdcResUsageTable ciscoVdcId = 1
ciscoVdcResUsageTable ciscoVdcGlobalResID = 2
ciscoVdcResMin = 16
ciscoVdcResMax = 4094
ciscoVdcResUsed = 25
ciscoVdcResUnused = 0
ciscoVdcResAvail = 4069

show security system state

show security system state 
 
import requests
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 security system state”,
  "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)
{
  "oscver": "1.0.1", 
  "safecver": "3.0.1a"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:rtd_monitor" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <security>
    <system>
     <state>
      <__readonly__>
       <oscver>1.0.1</oscver>
       <safecver>3.0.1a</safecver>
      </__readonly__>
     </state>
    </system>
   </security>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show security system state **

XSPACE:
        Non-Executable stack:   Yes
        Non-Executable heap:    Yes
        Non-Writable text:      Yes
  ASLR:
        ASLR enabled:           Yes
        CVE-offset2lib Patch:   Present
        Randomization entropy:  Good
  OSC:
        Version:                1.0.1
  SafeC:
        Version:                3.0.1a

show environment fex all temperature

show environment fex all temperature
 
import requests
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 environment fex all temperature”,
  "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)
{
  "TABLE_environment": {
    "ROW_environment": [
      {
        "fexid": 104, 
        "TABLE_tempdetails": {
          "ROW_tempdetails": {
            "tempfex": 104, 
            "TABLE_tempinfo": {
              "ROW_tempinfo": [
                {
                  "tempmod": "1", 
                  "sensor": "Inlet-1", 
                  "majthres": "70", 
                  "minthres": "65", 
                  "curtemp": "36", 
                  "alarmstatus": "ok"
                }, 
                {
                  "tempmod": "1", 
                  "sensor": "Die-1", 
                  "majthres": "115", 
                  "minthres": "105", 
                  "curtemp": "53", 
                  "alarmstatus": "ok"
                }
              ]
            }
          }
        }
      }, 
      {
        "fexid": 105, 
        "TABLE_tempdetails": {
          "ROW_tempdetails": {
            "tempfex": 105, 
            "TABLE_tempinfo": {
              "ROW_tempinfo": [
                {
                  "tempmod": "1", 
                  "sensor": "Inlet-1", 
                  "majthres": "70", 
                  "minthres": "65", 
                  "curtemp": "36", 
                  "alarmstatus": "ok"
                }, 
                {
                  "tempmod": "1", 
                  "sensor": "Die-1", 
                  "majthres": "115", 
                  "minthres": "105", 
                  "curtemp": "51", 
                  "alarmstatus": "ok"
                }
              ]
            }
          }
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <environment>
    <fex>
     <all>
      <temperature>
       <__readonly__>
        <TABLE_environment>
         <ROW_environment>
          <fexid>104</fexid>
          <TABLE_tempdetails>
           <ROW_tempdetails>
            <tempfex>104</tempfex>
            <TABLE_tempinfo>
             <ROW_tempinfo>
              <tempmod>1            </tempmod>
              <sensor>Inlet-1</sensor>
              <majthres>70           </majthres>
              <minthres>65        </minthres>
              <curtemp>36        </curtemp>
              <alarmstatus>ok        </alarmstatus>
             </ROW_tempinfo>
             <ROW_tempinfo>
              <tempmod>1            </tempmod>
              <sensor>Die-1</sensor>
              <majthres>115          </majthres>
              <minthres>105       </minthres>
              <curtemp>53        </curtemp>
              <alarmstatus>ok        </alarmstatus>
             </ROW_tempinfo>
            </TABLE_tempinfo>
           </ROW_tempdetails>
          </TABLE_tempdetails>
         </ROW_environment>
         <ROW_environment>
          <fexid>105</fexid>
          <TABLE_tempdetails>
           <ROW_tempdetails>
            <tempfex>105</tempfex>
            <TABLE_tempinfo>
             <ROW_tempinfo>
              <tempmod>1            </tempmod>
              <sensor>Inlet-1</sensor>
              <majthres>70           </majthres>
              <minthres>65        </minthres>
              <curtemp>36        </curtemp>
              <alarmstatus>ok        </alarmstatus>
             </ROW_tempinfo>
             <ROW_tempinfo>
              <tempmod>1            </tempmod>
              <sensor>Die-1</sensor>
              <majthres>115          </majthres>
              <minthres>105       </minthres>
              <curtemp>51        </curtemp>
              <alarmstatus>ok        </alarmstatus>
             </ROW_tempinfo>
            </TABLE_tempinfo>
           </ROW_tempdetails>
          </TABLE_tempdetails>
         </ROW_environment>
        </TABLE_environment>
       </__readonly__>
      </temperature>
     </all>
    </fex>
   </environment>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show environment fex all temperature

Temperature Fex 104:

Module Sensor MajorThresh MinorThres CurTemp Status (Celsius) (Celsius) (Celsius)

1 Inlet-1 70 65 36 ok
1 Die-1 115 105 53 ok

Temperature Fex 105:

Module Sensor MajorThresh MinorThres CurTemp Status (Celsius) (Celsius) (Celsius)

1 Inlet-1 70 65 36 ok
1 Die-1 115 105 51 ok

show environment fex all power

show  environment fex all power
 
import requests
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 environment fex all power”,
  "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)
{
  "TABLE_environment": {
    "ROW_environment": [
      {
        "fexid": 104, 
        "TABLE_psdetails": {
          "ROW_psdetails": {
            "psfex": 104, 
            "voltage_level": 12, 
            "TABLE_psinfo": {
              "ROW_psinfo": [
                {
                  "psnum": 1, 
                  "psmodel": "N2200-PAC-400W", 
                  "watts": "396.00", 
                  "amps": "33.00", 
                  "ps_status": "ok"
                }, 
                {
                  "psnum": 2, 
                  "psmodel": "N2200-PAC-400W", 
                  "watts": "--", 
                  "amps": "--", 
                  "ps_status": "no power source"
                }
              ]
            }, 
            "TABLE_mod_pow_info": {
              "ROW_mod_pow_info": {
                "modnum": "1", 
                "mod_model": "N2K-C2348TQ-10G-E", 
                "watts_requested": "85.20", 
                "amps_requested": "7.10", 
                "watts_alloced": "85.20", 
                "amps_alloced": "7.10", 
                "modstatus": "powered-up"
              }
            }, 
            "power_summary": {
              "ps_redun_mode": "redundant", 
              "tot_pow_capacity": "396.00 W", 
              "reserve_sup": "85.20 W", 
              "pow_used_by_mods": "0.00 W", 
              "available_pow": "310.80 W"
            }
          }
        }
      }, 
      {
        "fexid": 105, 
        "TABLE_psdetails": {
          "ROW_psdetails": {
            "psfex": 105, 
            "voltage_level": 12, 
            "TABLE_psinfo": {
              "ROW_psinfo": [
                {
                  "psnum": 1, 
                  "psmodel": "N2200-PAC-400W", 
                  "watts": "396.00", 
                  "amps": "33.00", 
                  "ps_status": "ok"
                }, 
                {
                  "psnum": 2, 
                  "psmodel": "N2200-PAC-400W", 
                  "watts": "--", 
                  "amps": "--", 
                  "ps_status": "no power source"
                }
              ]
            }, 
            "TABLE_mod_pow_info": {
              "ROW_mod_pow_info": {
                "modnum": "1", 
                "mod_model": "N2K-C2348TQ-10G-E", 
                "watts_requested": "86.40", 
                "amps_requested": "7.20", 
                "watts_alloced": "86.40", 
                "amps_alloced": "7.20", 
                "modstatus": "powered-up"
              }
            }, 
            "power_summary": {
              "ps_redun_mode": "redundant", 
              "tot_pow_capacity": "396.00 W", 
              "reserve_sup": "86.40 W", 
              "pow_used_by_mods": "0.00 W", 
              "available_pow": "309.60 W"
            }
          }
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <environment>
    <fex>
     <all>
      <power>
       <__readonly__>
        <TABLE_environment>
         <ROW_environment>
          <fexid>104</fexid>
          <TABLE_psdetails>
           <ROW_psdetails>
            <psfex>104</psfex>
            <voltage_level>12</voltage_level>
            <TABLE_psinfo>
             <ROW_psinfo>
              <psnum>1</psnum>
              <psmodel>N2200-PAC-400W</psmodel>
              <watts> 396.00</watts>
              <amps>  33.00</amps>
              <ps_status>ok</ps_status>
             </ROW_psinfo>
             <ROW_psinfo>
              <psnum>2</psnum>
              <psmodel>N2200-PAC-400W</psmodel>
              <watts>     --</watts>
              <amps>     --</amps>
              <ps_status>no power source</ps_status>
             </ROW_psinfo>
            </TABLE_psinfo>
            <TABLE_mod_pow_info>
             <ROW_mod_pow_info>
              <modnum>1    </modnum>
              <mod_model>N2K-C2348TQ-10G-E   </mod_model>
              <watts_requested>85.20     </watts_requested>
              <amps_requested>7.10       </amps_requested>
              <watts_alloced>85.20     </watts_alloced>
              <amps_alloced>7.10       </amps_alloced>
              <modstatus>powered-up  </modstatus>
             </ROW_mod_pow_info>
            </TABLE_mod_pow_info>
            <power_summary>
             <ps_redun_mode>redundant</ps_redun_mode>
             <tot_pow_capacity>  396.00 W</tot_pow_capacity>
             <reserve_sup>   85.20 W</reserve_sup>
             <pow_used_by_mods>    0.00 W</pow_used_by_mods>
             <available_pow>  310.80 W</available_pow>
            </power_summary>
           </ROW_psdetails>
          </TABLE_psdetails>
         </ROW_environment>
         <ROW_environment>
          <fexid>105</fexid>
          <TABLE_psdetails>
           <ROW_psdetails>
            <psfex>105</psfex>
            <voltage_level>12</voltage_level>
            <TABLE_psinfo>
             <ROW_psinfo>
              <psnum>1</psnum>
              <psmodel>N2200-PAC-400W</psmodel>
              <watts> 396.00</watts>
              <amps>  33.00</amps>
              <ps_status>ok</ps_status>
             </ROW_psinfo>
             <ROW_psinfo>
              <psnum>2</psnum>
              <psmodel>N2200-PAC-400W</psmodel>
              <watts>     --</watts>
              <amps>     --</amps>
              <ps_status>no power source</ps_status>
             </ROW_psinfo>
            </TABLE_psinfo>
            <TABLE_mod_pow_info>
             <ROW_mod_pow_info>
              <modnum>1    </modnum>
              <mod_model>N2K-C2348TQ-10G-E   </mod_model>
              <watts_requested>86.40     </watts_requested>
              <amps_requested>7.20       </amps_requested>
              <watts_alloced>86.40     </watts_alloced>
              <amps_alloced>7.20       </amps_alloced>
              <modstatus>powered-up  </modstatus>
             </ROW_mod_pow_info>
            </TABLE_mod_pow_info>
            <power_summary>
             <ps_redun_mode>redundant</ps_redun_mode>
             <tot_pow_capacity>  396.00 W</tot_pow_capacity>
             <reserve_sup>   86.40 W</reserve_sup>
             <pow_used_by_mods>    0.00 W</pow_used_by_mods>
             <available_pow>  309.60 W</available_pow>
            </power_summary>
           </ROW_psdetails>
          </TABLE_psdetails>
         </ROW_environment>
        </TABLE_environment>
       </__readonly__>
      </power>
     </all>
    </fex>
   </environment>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show environment fex all power

Power Supply Fex 104:

Voltage: 12 Volts

PS Model Power Power Status (Watts) (Amp)

1 N2200-PAC-400W 396.00 33.00 ok
2 N2200-PAC-400W -- -- no power source

Mod Model Power Power Power Power Status Requested Requested Allocated Allocated
(Watts) (Amp) (Watts) (Amp)


1 N2K-C2348TQ-10G-E 85.20 7.10 85.20 7.10 powered-up

Power Usage Summary:

Power Supply redundancy mode: redundant

Total Power Capacity 396.00 W

Power reserved for Supervisor(s) 85.20 W Power currently used by Modules 0.00 W

                                            -------------

Total Power Available 310.80 W -------------

Power Supply Fex 105:

Voltage: 12 Volts

PS Model Power Power Status (Watts) (Amp)

1 N2200-PAC-400W 396.00 33.00 ok
2 N2200-PAC-400W -- -- no power source

Mod Model Power Power Power Power Status Requested Requested Allocated Allocated
(Watts) (Amp) (Watts) (Amp)


1 N2K-C2348TQ-10G-E 86.40 7.20 86.40 7.20 powered-up

Power Usage Summary:

Power Supply redundancy mode: redundant

Total Power Capacity 396.00 W

Power reserved for Supervisor(s) 86.40 W Power currently used by Modules 0.00 W

                                            -------------

Total Power Available 309.60 W -------------

show environment fex all fan

show environment fex all fan
 
import requests
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 environment fex all fan”,
  "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)
{
  "TABLE_environment": {
    "ROW_environment": [
      {
        "fexid": 104, 
        "TABLE_fandetails": {
          "ROW_fandetails": {
            "fanfex": 104, 
            "TABLE_faninfo": {
              "ROW_faninfo": [
                {
                  "fanname": "Chassis", 
                  "fanmodel": "N2K-2348TQ-E-FAN", 
                  "fanhwver": "--", 
                  "fanstatus": "ok"
                }, 
                {
                  "fanname": "Chassis", 
                  "fanmodel": "N2K-2348TQ-E-FAN", 
                  "fanhwver": "--", 
                  "fanstatus": "ok"
                }, 
                {
                  "fanname": "Chassis", 
                  "fanmodel": "N2K-2348TQ-E-FAN", 
                  "fanhwver": "--", 
                  "fanstatus": "ok"
                }, 
                {
                  "fanname": "PS-1", 
                  "fanmodel": "N2200-PAC-400W", 
                  "fanhwver": "--", 
                  "fanstatus": "ok"
                }, 
                {
                  "fanname": "PS-2", 
                  "fanmodel": "N2200-PAC-400W", 
                  "fanhwver": "--", 
                  "fanstatus": "no power source"
                }
              ]
            }
          }
        }
      }, 
      {
        "fexid": 105, 
        "TABLE_fandetails": {
          "ROW_fandetails": {
            "fanfex": 105, 
            "TABLE_faninfo": {
              "ROW_faninfo": [
                {
                  "fanname": "Chassis", 
                  "fanmodel": "N2K-2348TQ-E-FAN", 
                  "fanhwver": "--", 
                  "fanstatus": "ok"
                }, 
                {
                  "fanname": "Chassis", 
                  "fanmodel": "N2K-2348TQ-E-FAN", 
                  "fanhwver": "--", 
                  "fanstatus": "ok"
                }, 
                {
                  "fanname": "Chassis", 
                  "fanmodel": "N2K-2348TQ-E-FAN", 
                  "fanhwver": "--", 
                  "fanstatus": "ok"
                }, 
                {
                  "fanname": "PS-1", 
                  "fanmodel": "N2200-PAC-400W", 
                  "fanhwver": "--", 
                  "fanstatus": "ok"
                }, 
                {
                  "fanname": "PS-2", 
                  "fanmodel": "N2200-PAC-400W", 
                  "fanhwver": "--", 
                  "fanstatus": "no power source"
                }
              ]
            }
          }
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <environment>
    <fex>
     <all>
      <fan>
       <__readonly__>
        <TABLE_environment>
         <ROW_environment>
          <fexid>104</fexid>
          <TABLE_fandetails>
           <ROW_fandetails>
            <fanfex>104</fanfex>
            <TABLE_faninfo>
             <ROW_faninfo>
              <fanname>Chassis</fanname>
              <fanmodel>N2K-2348TQ-E-FAN</fanmodel>
              <fanhwver>--</fanhwver>
              <fanstatus>ok</fanstatus>
             </ROW_faninfo>
             <ROW_faninfo>
              <fanname>Chassis</fanname>
              <fanmodel>N2K-2348TQ-E-FAN</fanmodel>
              <fanhwver>--</fanhwver>
              <fanstatus>ok</fanstatus>
             </ROW_faninfo>
             <ROW_faninfo>
              <fanname>Chassis</fanname>
              <fanmodel>N2K-2348TQ-E-FAN</fanmodel>
              <fanhwver>--</fanhwver>
              <fanstatus>ok</fanstatus>
             </ROW_faninfo>
             <ROW_faninfo>
              <fanname>PS-1</fanname>
              <fanmodel>N2200-PAC-400W</fanmodel>
              <fanhwver>--</fanhwver>
              <fanstatus>ok</fanstatus>
             </ROW_faninfo>
             <ROW_faninfo>
              <fanname>PS-2</fanname>
              <fanmodel>N2200-PAC-400W</fanmodel>
              <fanhwver>--</fanhwver>
              <fanstatus>no power source</fanstatus>
             </ROW_faninfo>
            </TABLE_faninfo>
           </ROW_fandetails>
          </TABLE_fandetails>
         </ROW_environment>
         <ROW_environment>
          <fexid>105</fexid>
          <TABLE_fandetails>
           <ROW_fandetails>
            <fanfex>105</fanfex>
            <TABLE_faninfo>
             <ROW_faninfo>
              <fanname>Chassis</fanname>
              <fanmodel>N2K-2348TQ-E-FAN</fanmodel>
              <fanhwver>--</fanhwver>
              <fanstatus>ok</fanstatus>
             </ROW_faninfo>
             <ROW_faninfo>
              <fanname>Chassis</fanname>
              <fanmodel>N2K-2348TQ-E-FAN</fanmodel>
              <fanhwver>--</fanhwver>
              <fanstatus>ok</fanstatus>
             </ROW_faninfo>
             <ROW_faninfo>
              <fanname>Chassis</fanname>
              <fanmodel>N2K-2348TQ-E-FAN</fanmodel>
              <fanhwver>--</fanhwver>
              <fanstatus>ok</fanstatus>
             </ROW_faninfo>
             <ROW_faninfo>
              <fanname>PS-1</fanname>
              <fanmodel>N2200-PAC-400W</fanmodel>
              <fanhwver>--</fanhwver>
              <fanstatus>ok</fanstatus>
             </ROW_faninfo>
             <ROW_faninfo>
              <fanname>PS-2</fanname>
              <fanmodel>N2200-PAC-400W</fanmodel>
              <fanhwver>--</fanhwver>
              <fanstatus>no power source</fanstatus>
             </ROW_faninfo>
            </TABLE_faninfo>
           </ROW_fandetails>
          </TABLE_fandetails>
         </ROW_environment>
        </TABLE_environment>
       </__readonly__>
      </fan>
     </all>
    </fex>
   </environment>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show environment fex all fan

Fan Fex : 104:

Fan Model Hw Status

Chassis N2K-2348TQ-E-FAN -- ok Chassis N2K-2348TQ-E-FAN -- ok Chassis N2K-2348TQ-E-FAN -- ok PS-1 N2200-PAC-400W -- ok PS-2 N2200-PAC-400W -- no power source

Fan Fex : 105:

Fan Model Hw Status

Chassis N2K-2348TQ-E-FAN -- ok Chassis N2K-2348TQ-E-FAN -- ok Chassis N2K-2348TQ-E-FAN -- ok PS-1 N2200-PAC-400W -- ok PS-2 N2200-PAC-400W -- no power source

show fix

show fix
 
import requests
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 fix”,
  "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)
{
  "TABLE_fex": {
    "ROW_fex": [
      {
        "fex_number": "104", 
        "chas_vendor": "Cisco Systems", 
        "fex_model": "N2K-C2348TQ-10G-E", 
        "chas_ser": "FOC2003R15W", 
        "mod_model": "N2K-C2348TQ-10G-E", 
        "fex_ser": "FOC20028DYQ", 
        "module_no": 0, 
        "mod_partno": "73-17624-03", 
        "fex_descr": "FEX0104", 
        "fex_state": "Online"
      }, 
      {
        "fex_number": "105", 
        "chas_vendor": "Cisco Systems", 
        "fex_model": "N2K-C2348TQ-10G-E", 
        "chas_ser": "FOC2003R0EJ", 
        "mod_model": "N2K-C2348TQ-10G-E", 
        "fex_ser": "FOC20025JLX", 
        "module_no": 0, 
        "mod_partno": "73-17624-03", 
        "fex_descr": "FEX0105", 
        "fex_state": "Online"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <fex>
    <__readonly__>
     <TABLE_fex>
      <ROW_fex>
       <fex_number>104</fex_number>
       <chas_vendor>Cisco Systems</chas_vendor>
       <fex_model>N2K-C2348TQ-10G-E</fex_model>
       <chas_ser>FOC2003R15W</chas_ser>
       <mod_model>N2K-C2348TQ-10G-E</mod_model>
       <fex_ser>FOC20028DYQ</fex_ser>
       <module_no>0</module_no>
       <mod_partno>73-17624-03</mod_partno>
       <fex_descr>FEX0104</fex_descr>
       <fex_state>Online</fex_state>
      </ROW_fex>
      <ROW_fex>
       <fex_number>105</fex_number>
       <chas_vendor>Cisco Systems</chas_vendor>
       <fex_model>N2K-C2348TQ-10G-E</fex_model>
       <chas_ser>FOC2003R0EJ</chas_ser>
       <mod_model>N2K-C2348TQ-10G-E</mod_model>
       <fex_ser>FOC20025JLX</fex_ser>
       <module_no>0</module_no>
       <mod_partno>73-17624-03</mod_partno>
       <fex_descr>FEX0105</fex_descr>
       <fex_state>Online</fex_state>
      </ROW_fex>
     </TABLE_fex>
    </__readonly__>
   </fex>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show fex

  FEX             FEX                 FEX                            FEX
Number Description State Model Serial

104 FEX0104 Online N2K-C2348TQ-10G-E FOC2003R15W 105 FEX0105 Online N2K-C2348TQ-10G-E FOC2003R0EJ

show fex detail

show fex 104 detail 
 
import requests
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 fex 104 detail”,
  "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)
{
  "TABLE_fex_info": {
    "ROW_fex_info": {
      "chas_id": 104, 
      "descr": "FEX0104", 
      "fex_state": "Online", 
      "fex_ver": "8.3(1)", 
      "sw_ver": "8.3(1)", 
      "fex_interim_ver": "(0.52)FXC_0_7", 
      "sw_interim_ver": "8.3(1)", 
      "model": "N2K-C2348TQ-10G-E", 
      "serial": "FOC2003R15W", 
      "part_no": "73-17624-03", 
      "card_id": 373, 
      "mac": "dc:eb:94:65:5b:a2", 
      "num_macs": 64, 
      "fex_sw_gen": 21, 
      "sw_sw_gen": 21, 
      "pin_mode": "static", 
      "max_link": 1, 
      "fbr_port_control": "Eth2/7", 
      "fcoe_admin": "false", 
      "fcoe_oper": "false", 
      "fex_aa_configured": "false"
    }
  }, 
  "TABLE_fbr_state": {
    "ROW_fbr_state": [
      {
        "fbr_index": "Po104", 
        "fbr_oper_state": "Up", 
        "fsm_state": "Active"
      }, 
      {
        "fbr_index": "Eth2/7", 
        "fbr_oper_state": "Up", 
        "fsm_state": "Active"
      }
    ]
  }, 
  "TABLE_fex_port": {
    "ROW_fex_port": [
      {
        "fex_port": "Eth104/1/1", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/2", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/3", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/4", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/5", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/6", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/7", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/8", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/9", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/10", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/11", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/12", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/13", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/14", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/15", 
        "fex_port_oper_state": "Up", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/16", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/17", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/18", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/19", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/20", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/21", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/22", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/23", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/24", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/25", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/26", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/27", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/28", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/29", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/30", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/31", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/32", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/33", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/34", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/35", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/36", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/37", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/38", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/39", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/40", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/41", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/42", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/43", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/44", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/45", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/46", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/47", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }, 
      {
        "fex_port": "Eth104/1/48", 
        "fex_port_oper_state": "Down", 
        "fbr_port": "Po104"
      }
    ]
  }, 
  "TABLE_logs": {
    "ROW_logs": [
      {
        "log": "07/18/2018 16:09:19.844536: Module register received"
      }, 
      {
        "log": "07/18/2018 16:09:19.846604: Image Version Mismatch"
      }, 
      {
        "log": "07/18/2018 16:09:19.938600: Registration response sent"
      }, 
      {
        "log": "07/18/2018 16:09:21.938823: Registration response sent"
      }, 
      {
        "log": "07/18/2018 16:09:21.939915: Requesting satellite to download image"
      }, 
      {
        "log": "07/18/2018 16:11:57.288144: Image preload successful."
      }, 
      {
        "log": "07/18/2018 16:11:58.658119: Deleting route to FEX"
      }, 
      {
        "log": "07/18/2018 16:11:58.700628: Module disconnected"
      }, 
      {
        "log": "07/18/2018 16:11:58.701647: Module Offline"
      }, 
      {
        "log": "07/18/2018 16:11:58.769772: Deleting route to FEX"
      }, 
      {
        "log": "07/18/2018 16:11:58.811591: Module disconnected"
      }, 
      {
        "log": "07/18/2018 16:11:58.813187: Offlining Module"
      }, 
      {
        "log": "07/18/2018 16:14:01.374912: Deleting route to FEX"
      }, 
      {
        "log": "07/18/2018 16:14:01.417249: Module disconnected"
      }, 
      {
        "log": "07/18/2018 16:14:01.418867: Offlining Module"
      }, 
      {
        "log": "07/18/2018 16:15:19.252795: Module register received"
      }, 
      {
        "log": "07/18/2018 16:15:19.398882: Registration response sent"
      }, 
      {
        "log": "07/18/2018 16:15:21.405186: Registration response sent"
      }, 
      {
        "log": "07/18/2018 16:15:21.672311: Module Online Sequence"
      }, 
      {
        "log": "07/18/2018 16:15:34.743788: Module Online"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <fex>
    <__XML__PARAM__chas_no>
     <__XML__value>104</__XML__value>
     <detail>
      <__readonly__>
       <TABLE_fex_info>
        <ROW_fex_info>
         <chas_id>104</chas_id>
         <descr>FEX0104</descr>
         <fex_state>Online</fex_state>
         <fex_ver>8.3(1)</fex_ver>
         <sw_ver>8.3(1)</sw_ver>
         <fex_interim_ver>(0.52)FXC_0_7</fex_interim_ver>
         <sw_interim_ver>8.3(1)</sw_interim_ver>
         <model>N2K-C2348TQ-10G-E</model>
         <serial>FOC2003R15W</serial>
         <part_no>73-17624-03</part_no>
         <card_id>373</card_id>
         <mac>dc:eb:94:65:5b:a2</mac>
         <num_macs>64</num_macs>
         <fex_sw_gen>21</fex_sw_gen>
         <sw_sw_gen>21</sw_sw_gen>
         <pin_mode>static</pin_mode>
         <max_link>1</max_link>
         <fbr_port_control>Eth2/7</fbr_port_control>
         <fcoe_admin>false</fcoe_admin>
         <fcoe_oper>false</fcoe_oper>
         <fex_aa_configured>false</fex_aa_configured>
        </ROW_fex_info>
       </TABLE_fex_info>
       <TABLE_fbr_state>
        <ROW_fbr_state>
         <fbr_index>Po104</fbr_index>
         <fbr_oper_state>Up</fbr_oper_state>
         <fsm_state>Active</fsm_state>
        </ROW_fbr_state>
        <ROW_fbr_state>
         <fbr_index>Eth2/7</fbr_index>
         <fbr_oper_state>Up</fbr_oper_state>
         <fsm_state>Active</fsm_state>
        </ROW_fbr_state>
       </TABLE_fbr_state>
       <TABLE_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/1</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/2</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/3</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/4</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/5</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/6</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/7</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/8</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/9</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/10</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/11</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/12</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/13</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/14</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/15</fex_port>
         <fex_port_oper_state>Up</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/16</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/17</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/18</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/19</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/20</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/21</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/22</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/23</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/24</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/25</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/26</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/27</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/28</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/29</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/30</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/31</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/32</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/33</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/34</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/35</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/36</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/37</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/38</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/39</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/40</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/41</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/42</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/43</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/44</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/45</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/46</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/47</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
        <ROW_fex_port>
         <fex_port>Eth104/1/48</fex_port>
         <fex_port_oper_state>Down</fex_port_oper_state>
         <fbr_port>Po104</fbr_port>
        </ROW_fex_port>
       </TABLE_fex_port>
       <TABLE_logs>
        <ROW_logs>
         <log>07/18/2018 16:09:19.844536: Module register received
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:09:19.846604: Image Version Mismatch
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:09:19.938600: Registration response sent
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:09:21.938823: Registration response sent
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:09:21.939915: Requesting satellite to download image
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:11:57.288144: Image preload successful.
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:11:58.658119: Deleting route to FEX
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:11:58.700628: Module disconnected
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:11:58.701647: Module Offline
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:11:58.769772: Deleting route to FEX
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:11:58.811591: Module disconnected
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:11:58.813187: Offlining Module
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:14:01.374912: Deleting route to FEX
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:14:01.417249: Module disconnected
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:14:01.418867: Offlining Module
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:15:19.252795: Module register received
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:15:19.398882: Registration response sent
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:15:21.405186: Registration response sent
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:15:21.672311: Module Online Sequence
</log>
        </ROW_logs>
        <ROW_logs>
         <log>07/18/2018 16:15:34.743788: Module Online
</log>
        </ROW_logs>
       </TABLE_logs>
      </__readonly__>
     </detail>
    </__XML__PARAM__chas_no>
   </fex>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show fex 104 detail **

FEX: 104 Description: FEX0104   state: Online
  FEX version: 8.3(1) [Switch version: 8.3(1)]
  FEX Interim version: (0.52)FXC_0_7
  Switch Interim version: 8.3(1)
  Extender Model: N2K-C2348TQ-10G-E,  Extender Serial: FOC2003R15W
  Part No: 73-17624-03
  Card Id: 373, Mac Addr: dc:eb:94:65:5b:a2, Num Macs: 64
  Module Sw Gen: 21  [Switch Sw Gen: 21]
  Pinning-mode: static    Max-links: 1
  Fabric port for control traffic: Eth2/7
  FCoE Admin: false
  FCoE Oper: false
  FCoE FEX AA Configured: false
  Fabric interface state:
    Po104 - Interface Up. State: Active
    Eth2/7 - Interface Up. State: Active
  Fex Port        State  Fabric Port
       Eth104/1/1  Down       Po104
       Eth104/1/2  Down       Po104
       Eth104/1/3  Down       Po104
       Eth104/1/4  Down       Po104
       Eth104/1/5  Down       Po104
       Eth104/1/6  Down       Po104
       Eth104/1/7  Down       Po104
       Eth104/1/8  Down       Po104
       Eth104/1/9  Down       Po104
      Eth104/1/10  Down       Po104
      Eth104/1/11  Down       Po104
      Eth104/1/12  Down       Po104
      Eth104/1/13  Down       Po104
      Eth104/1/14  Down       Po104
      Eth104/1/15    Up       Po104
      Eth104/1/16  Down       Po104
      Eth104/1/17  Down       Po104
      Eth104/1/18  Down       Po104
      Eth104/1/19  Down       Po104
      Eth104/1/20  Down       Po104
      Eth104/1/21  Down       Po104
      Eth104/1/22  Down       Po104
      Eth104/1/23  Down       Po104
      Eth104/1/24  Down       Po104
      Eth104/1/25  Down       Po104
      Eth104/1/26  Down       Po104
      Eth104/1/27  Down       Po104
      Eth104/1/28  Down       Po104
      Eth104/1/29  Down       Po104
      Eth104/1/30  Down       Po104
      Eth104/1/31  Down       Po104
      Eth104/1/32  Down       Po104
      Eth104/1/33  Down       Po104
      Eth104/1/34  Down       Po104
      Eth104/1/35  Down       Po104
      Eth104/1/36  Down       Po104
      Eth104/1/37  Down       Po104
      Eth104/1/38  Down       Po104
      Eth104/1/39  Down       Po104
      Eth104/1/40  Down       Po104
      Eth104/1/41  Down       Po104
      Eth104/1/42  Down       Po104
      Eth104/1/43  Down       Po104
      Eth104/1/44  Down       Po104
      Eth104/1/45  Down       Po104
      Eth104/1/46  Down       Po104
      Eth104/1/47  Down       Po104
      Eth104/1/48  Down       Po104

Logs: 07/18/2018 16:09:19.844536: Module register received 07/18/2018 16:09:19.846604: Image Version Mismatch 07/18/2018 16:09:19.938600: Registration response sent 07/18/2018 16:09:21.938823: Registration response sent 07/18/2018 16:09:21.939915: Requesting satellite to download image 07/18/2018 16:11:57.288144: Image preload successful. 07/18/2018 16:11:58.658119: Deleting route to FEX 07/18/2018 16:11:58.700628: Module disconnected 07/18/2018 16:11:58.701647: Module Offline 07/18/2018 16:11:58.769772: Deleting route to FEX 07/18/2018 16:11:58.811591: Module disconnected 07/18/2018 16:11:58.813187: Offlining Module 07/18/2018 16:14:01.374912: Deleting route to FEX 07/18/2018 16:14:01.417249: Module disconnected 07/18/2018 16:14:01.418867: Offlining Module 07/18/2018 16:15:19.252795: Module register received 07/18/2018 16:15:19.398882: Registration response sent 07/18/2018 16:15:21.405186: Registration response sent 07/18/2018 16:15:21.672311: Module Online Sequence 07/18/2018 16:15:34.743788: Module Online

show fex ports

show fex 104 ports
 
import requests
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 fex 104 ports”,
  "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)
{
  "TABLE_fex_info": {
    "ROW_fex_info": {
      "chas_id": 104, 
      "descr": "FEX0104", 
      "fex_state": "Online", 
      "fex_ver": "8.3(1)", 
      "sw_ver": "8.3(1)", 
      "model": "N2K-C2348TQ-10G-E", 
      "serial": "FOC2003R15W", 
      "part_no": "73-17624-03", 
      "pin_mode": "static", 
      "max_link": 1, 
      "fbr_port_control": "Eth2/7", 
      "fcoe_admin": "false", 
      "fcoe_oper": "false", 
      "fex_aa_configured": "false"
    }
  }, 
  "TABLE_fbr_state": {
    "ROW_fbr_state": [
      {
        "fbr_index": "Po104", 
        "fbr_oper_state": "Up", 
        "fsm_state": "Active"
      }, 
      {
        "fbr_index": "Eth2/7", 
        "fbr_oper_state": "Up", 
        "fsm_state": "Active"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <fex>
    <__XML__PARAM__chas_no>
     <__XML__value>104</__XML__value>
     <ports>
      <__readonly__>
       <TABLE_fex_info>
        <ROW_fex_info>
         <chas_id>104</chas_id>
         <descr>FEX0104</descr>
         <fex_state>Online</fex_state>
         <fex_ver>8.3(1)</fex_ver>
         <sw_ver>8.3(1)</sw_ver>
         <model>N2K-C2348TQ-10G-E</model>
         <serial>FOC2003R15W</serial>
         <part_no>73-17624-03</part_no>
         <pin_mode>static</pin_mode>
         <max_link>1</max_link>
         <fbr_port_control>Eth2/7</fbr_port_control>
         <fcoe_admin>false</fcoe_admin>
         <fcoe_oper>false</fcoe_oper>
         <fex_aa_configured>false</fex_aa_configured>
        </ROW_fex_info>
       </TABLE_fex_info>
       <TABLE_fbr_state>
        <ROW_fbr_state>
         <fbr_index>Po104</fbr_index>
         <fbr_oper_state>Up</fbr_oper_state>
         <fsm_state>Active</fsm_state>
        </ROW_fbr_state>
        <ROW_fbr_state>
         <fbr_index>Eth2/7</fbr_index>
         <fbr_oper_state>Up</fbr_oper_state>
         <fsm_state>Active</fsm_state>
        </ROW_fbr_state>
       </TABLE_fbr_state>
      </__readonly__>
     </ports>
    </__XML__PARAM__chas_no>
   </fex>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show fex 104 ports**

FEX: 104 Description: FEX0104   state: Online
  FEX version: 8.3(1) [Switch version: 8.3(1)]
  Extender Model: N2K-C2348TQ-10G-E,  Extender Serial: FOC2003R15W
  Part No: 73-17624-03
  Pinning-mode: static    Max-links: 1
  Fabric port for control traffic: Eth2/7
  FCoE Admin: false
  FCoE Oper: false
  FCoE FEX AA Configured: false
  Fabric interface state:
    Po104 - Interface Up. State: Active
    Eth2/7 - Interface Up. State: Active

show fex transceiver calibration

show fex 104 transceiver calibration 
 
import requests
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 fex 104 transceiver calibration”,
  "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)
{
  "TABLE_uplink": {
    "ROW_uplink": [
      {
        "fex_uplink": 1, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--", 
            "sfp": "present", 
            "type": "QSFP-H40G-AOC3M", 
            "name": "CISCO", 
            "partnum": "FCBN410QE2C03-C1", 
            "rev": "D", 
            "serialnum": "FIS1841011H-A", 
            "nom_bitrate": 10300, 
            "len_cu": 3, 
            "ciscoid": "--", 
            "ciscoid_1": 16
          }
        }
      }, 
      {
        "fex_uplink": 2, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--", 
            "sfp": "present", 
            "type": "QSFP-H40G-AOC3M", 
            "name": "CISCO", 
            "partnum": "FCBN410QE2C03-C1", 
            "rev": "D", 
            "serialnum": "FIS1841011H-A", 
            "nom_bitrate": 10300, 
            "len_cu": 3, 
            "ciscoid": "--", 
            "ciscoid_1": 16
          }
        }
      }, 
      {
        "fex_uplink": 3, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--", 
            "sfp": "present", 
            "type": "QSFP-H40G-AOC3M", 
            "name": "CISCO", 
            "partnum": "FCBN410QE2C03-C1", 
            "rev": "D", 
            "serialnum": "FIS1841011H-A", 
            "nom_bitrate": 10300, 
            "len_cu": 3, 
            "ciscoid": "--", 
            "ciscoid_1": 16
          }
        }
      }, 
      {
        "fex_uplink": 4, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--", 
            "sfp": "present", 
            "type": "QSFP-H40G-AOC3M", 
            "name": "CISCO", 
            "partnum": "FCBN410QE2C03-C1", 
            "rev": "D", 
            "serialnum": "FIS1841011H-A", 
            "nom_bitrate": 10300, 
            "len_cu": 3, 
            "ciscoid": "--", 
            "ciscoid_1": 16
          }
        }
      }, 
      {
        "fex_uplink": 5, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--", 
            "sfp": "present", 
            "type": "QSFP-40G-SR4", 
            "name": "CISCO-AVAGO", 
            "partnum": "AFBR-79EQPZ-CS2", 
            "rev": "02", 
            "serialnum": "AVP2116S0G1", 
            "nom_bitrate": 10300, 
            "len_50": 30, 
            "len_50_OM3": 100, 
            "ciscoid": "--", 
            "ciscoid_1": 16
          }
        }
      }, 
      {
        "fex_uplink": 6, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--", 
            "sfp": "present", 
            "type": "QSFP-40G-SR4", 
            "name": "CISCO-AVAGO", 
            "partnum": "AFBR-79EQPZ-CS2", 
            "rev": "02", 
            "serialnum": "AVP2116S0G1", 
            "nom_bitrate": 10300, 
            "len_50": 30, 
            "len_50_OM3": 100, 
            "ciscoid": "--", 
            "ciscoid_1": 16
          }
        }
      }, 
      {
        "fex_uplink": 7, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "Ethernet2/7", 
            "sfp": "present", 
            "type": "QSFP-40G-SR4", 
            "name": "CISCO-AVAGO", 
            "partnum": "AFBR-79EQPZ-CS2", 
            "rev": "02", 
            "serialnum": "AVP2116S0G1", 
            "nom_bitrate": 10300, 
            "len_50": 30, 
            "len_50_OM3": 100, 
            "ciscoid": "--", 
            "ciscoid_1": 16
          }
        }
      }, 
      {
        "fex_uplink": 8, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--", 
            "sfp": "present", 
            "type": "QSFP-40G-SR4", 
            "name": "CISCO-AVAGO", 
            "partnum": "AFBR-79EQPZ-CS2", 
            "rev": "02", 
            "serialnum": "AVP2116S0G1", 
            "nom_bitrate": 10300, 
            "len_50": 30, 
            "len_50_OM3": 100, 
            "ciscoid": "--", 
            "ciscoid_1": 16
          }
        }
      }, 
      {
        "fex_uplink": 9, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--", 
            "sfp": "present", 
            "type": "QSFP-40G-SR4", 
            "name": "CISCO-AVAGO", 
            "partnum": "AFBR-79E4Z-CS1", 
            "rev": "02", 
            "serialnum": "AVP1533S362", 
            "nom_bitrate": 10300, 
            "len_50": 30, 
            "len_50_OM3": 100, 
            "ciscoid": "--", 
            "ciscoid_1": 16
          }
        }
      }, 
      {
        "fex_uplink": 10, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--", 
            "sfp": "present", 
            "type": "QSFP-40G-SR4", 
            "name": "CISCO-AVAGO", 
            "partnum": "AFBR-79E4Z-CS1", 
            "rev": "02", 
            "serialnum": "AVP1533S362", 
            "nom_bitrate": 10300, 
            "len_50": 30, 
            "len_50_OM3": 100, 
            "ciscoid": "--", 
            "ciscoid_1": 16
          }
        }
      }, 
      {
        "fex_uplink": 11, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--", 
            "sfp": "present", 
            "type": "QSFP-40G-SR4", 
            "name": "CISCO-AVAGO", 
            "partnum": "AFBR-79E4Z-CS1", 
            "rev": "02", 
            "serialnum": "AVP1533S362", 
            "nom_bitrate": 10300, 
            "len_50": 30, 
            "len_50_OM3": 100, 
            "ciscoid": "--", 
            "ciscoid_1": 16
          }
        }
      }, 
      {
        "fex_uplink": 12, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--", 
            "sfp": "present", 
            "type": "QSFP-40G-SR4", 
            "name": "CISCO-AVAGO", 
            "partnum": "AFBR-79E4Z-CS1", 
            "rev": "02", 
            "serialnum": "AVP1533S362", 
            "nom_bitrate": 10300, 
            "len_50": 30, 
            "len_50_OM3": 100, 
            "ciscoid": "--", 
            "ciscoid_1": 16
          }
        }
      }, 
      {
        "fex_uplink": 13, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--", 
            "sfp": "present", 
            "type": "QSFP-4X10G-AOC2M", 
            "name": "CISCO", 
            "partnum": "AFBR-7IER02Z-CS1", 
            "rev": "01", 
            "serialnum": "AVE1920200U", 
            "nom_bitrate": 10300, 
            "len_cu": 2, 
            "ciscoid": "--", 
            "ciscoid_1": 16
          }
        }
      }, 
      {
        "fex_uplink": 14, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--", 
            "sfp": "present", 
            "type": "QSFP-4X10G-AOC2M", 
            "name": "CISCO", 
            "partnum": "AFBR-7IER02Z-CS1", 
            "rev": "01", 
            "serialnum": "AVE1920200U", 
            "nom_bitrate": 10300, 
            "len_cu": 2, 
            "ciscoid": "--", 
            "ciscoid_1": 16
          }
        }
      }, 
      {
        "fex_uplink": 15, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--", 
            "sfp": "present", 
            "type": "QSFP-4X10G-AOC2M", 
            "name": "CISCO", 
            "partnum": "AFBR-7IER02Z-CS1", 
            "rev": "01", 
            "serialnum": "AVE1920200U", 
            "nom_bitrate": 10300, 
            "len_cu": 2, 
            "ciscoid": "--", 
            "ciscoid_1": 16
          }
        }
      }, 
      {
        "fex_uplink": 16, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--", 
            "sfp": "present", 
            "type": "QSFP-4X10G-AOC2M", 
            "name": "CISCO", 
            "partnum": "AFBR-7IER02Z-CS1", 
            "rev": "01", 
            "serialnum": "AVE1920200U", 
            "nom_bitrate": 10300, 
            "len_cu": 2, 
            "ciscoid": "--", 
            "ciscoid_1": 16
          }
        }
      }, 
      {
        "fex_uplink": 17, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--"
          }
        }
      }, 
      {
        "fex_uplink": 18, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--"
          }
        }
      }, 
      {
        "fex_uplink": 19, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--"
          }
        }
      }, 
      {
        "fex_uplink": 20, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--"
          }
        }
      }, 
      {
        "fex_uplink": 21, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--"
          }
        }
      }, 
      {
        "fex_uplink": 22, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--"
          }
        }
      }, 
      {
        "fex_uplink": 23, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--"
          }
        }
      }, 
      {
        "fex_uplink": 24, 
        "TABLE_interface": {
          "ROW_interface": {
            "interface": "--"
          }
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <fex>
    <__XML__PARAM__chas_no>
     <__XML__value>104</__XML__value>
     <transceiver>
      <calibration>
       <__readonly__>
        <TABLE_uplink>
         <ROW_uplink>
          <fex_uplink>1</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
            <sfp>present</sfp>
            <type>QSFP-H40G-AOC3M</type>
            <name>CISCO           </name>
            <partnum>FCBN410QE2C03-C1</partnum>
            <rev>D </rev>
            <serialnum>FIS1841011H-A   </serialnum>
            <nom_bitrate>10300</nom_bitrate>
            <len_cu>3</len_cu>
            <ciscoid>--</ciscoid>
            <ciscoid_1>16</ciscoid_1>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>2</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
            <sfp>present</sfp>
            <type>QSFP-H40G-AOC3M</type>
            <name>CISCO           </name>
            <partnum>FCBN410QE2C03-C1</partnum>
            <rev>D </rev>
            <serialnum>FIS1841011H-A   </serialnum>
            <nom_bitrate>10300</nom_bitrate>
            <len_cu>3</len_cu>
            <ciscoid>--</ciscoid>
            <ciscoid_1>16</ciscoid_1>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>3</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
            <sfp>present</sfp>
            <type>QSFP-H40G-AOC3M</type>
            <name>CISCO           </name>
            <partnum>FCBN410QE2C03-C1</partnum>
            <rev>D </rev>
            <serialnum>FIS1841011H-A   </serialnum>
            <nom_bitrate>10300</nom_bitrate>
            <len_cu>3</len_cu>
            <ciscoid>--</ciscoid>
            <ciscoid_1>16</ciscoid_1>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>4</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
            <sfp>present</sfp>
            <type>QSFP-H40G-AOC3M</type>
            <name>CISCO           </name>
            <partnum>FCBN410QE2C03-C1</partnum>
            <rev>D </rev>
            <serialnum>FIS1841011H-A   </serialnum>
            <nom_bitrate>10300</nom_bitrate>
            <len_cu>3</len_cu>
            <ciscoid>--</ciscoid>
            <ciscoid_1>16</ciscoid_1>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>5</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
            <sfp>present</sfp>
            <type>QSFP-40G-SR4</type>
            <name>CISCO-AVAGO     </name>
            <partnum>AFBR-79EQPZ-CS2 </partnum>
            <rev>02</rev>
            <serialnum>AVP2116S0G1     </serialnum>
            <nom_bitrate>10300</nom_bitrate>
            <len_50>30</len_50>
            <len_50_OM3>100</len_50_OM3>
            <ciscoid>--</ciscoid>
            <ciscoid_1>16</ciscoid_1>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>6</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
            <sfp>present</sfp>
            <type>QSFP-40G-SR4</type>
            <name>CISCO-AVAGO     </name>
            <partnum>AFBR-79EQPZ-CS2 </partnum>
            <rev>02</rev>
            <serialnum>AVP2116S0G1     </serialnum>
            <nom_bitrate>10300</nom_bitrate>
            <len_50>30</len_50>
            <len_50_OM3>100</len_50_OM3>
            <ciscoid>--</ciscoid>
            <ciscoid_1>16</ciscoid_1>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>7</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>Ethernet2/7</interface>
            <sfp>present</sfp>
            <type>QSFP-40G-SR4</type>
            <name>CISCO-AVAGO     </name>
            <partnum>AFBR-79EQPZ-CS2 </partnum>
            <rev>02</rev>
            <serialnum>AVP2116S0G1     </serialnum>
            <nom_bitrate>10300</nom_bitrate>
            <len_50>30</len_50>
            <len_50_OM3>100</len_50_OM3>
            <ciscoid>--</ciscoid>
            <ciscoid_1>16</ciscoid_1>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>8</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
            <sfp>present</sfp>
            <type>QSFP-40G-SR4</type>
            <name>CISCO-AVAGO     </name>
            <partnum>AFBR-79EQPZ-CS2 </partnum>
            <rev>02</rev>
            <serialnum>AVP2116S0G1     </serialnum>
            <nom_bitrate>10300</nom_bitrate>
            <len_50>30</len_50>
            <len_50_OM3>100</len_50_OM3>
            <ciscoid>--</ciscoid>
            <ciscoid_1>16</ciscoid_1>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>9</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
            <sfp>present</sfp>
            <type>QSFP-40G-SR4</type>
            <name>CISCO-AVAGO     </name>
            <partnum>AFBR-79E4Z-CS1  </partnum>
            <rev>02</rev>
            <serialnum>AVP1533S362     </serialnum>
            <nom_bitrate>10300</nom_bitrate>
            <len_50>30</len_50>
            <len_50_OM3>100</len_50_OM3>
            <ciscoid>--</ciscoid>
            <ciscoid_1>16</ciscoid_1>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>10</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
            <sfp>present</sfp>
            <type>QSFP-40G-SR4</type>
            <name>CISCO-AVAGO     </name>
            <partnum>AFBR-79E4Z-CS1  </partnum>
            <rev>02</rev>
            <serialnum>AVP1533S362     </serialnum>
            <nom_bitrate>10300</nom_bitrate>
            <len_50>30</len_50>
            <len_50_OM3>100</len_50_OM3>
            <ciscoid>--</ciscoid>
            <ciscoid_1>16</ciscoid_1>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>11</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
            <sfp>present</sfp>
            <type>QSFP-40G-SR4</type>
            <name>CISCO-AVAGO     </name>
            <partnum>AFBR-79E4Z-CS1  </partnum>
            <rev>02</rev>
            <serialnum>AVP1533S362     </serialnum>
            <nom_bitrate>10300</nom_bitrate>
            <len_50>30</len_50>
            <len_50_OM3>100</len_50_OM3>
            <ciscoid>--</ciscoid>
            <ciscoid_1>16</ciscoid_1>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>12</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
            <sfp>present</sfp>
            <type>QSFP-40G-SR4</type>
            <name>CISCO-AVAGO     </name>
            <partnum>AFBR-79E4Z-CS1  </partnum>
            <rev>02</rev>
            <serialnum>AVP1533S362     </serialnum>
            <nom_bitrate>10300</nom_bitrate>
            <len_50>30</len_50>
            <len_50_OM3>100</len_50_OM3>
            <ciscoid>--</ciscoid>
            <ciscoid_1>16</ciscoid_1>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>13</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
            <sfp>present</sfp>
            <type>QSFP-4X10G-AOC2M</type>
            <name>CISCO           </name>
            <partnum>AFBR-7IER02Z-CS1</partnum>
            <rev>01</rev>
            <serialnum>AVE1920200U     </serialnum>
            <nom_bitrate>10300</nom_bitrate>
            <len_cu>2</len_cu>
            <ciscoid>--</ciscoid>
            <ciscoid_1>16</ciscoid_1>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>14</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
            <sfp>present</sfp>
            <type>QSFP-4X10G-AOC2M</type>
            <name>CISCO           </name>
            <partnum>AFBR-7IER02Z-CS1</partnum>
            <rev>01</rev>
            <serialnum>AVE1920200U     </serialnum>
            <nom_bitrate>10300</nom_bitrate>
            <len_cu>2</len_cu>
            <ciscoid>--</ciscoid>
            <ciscoid_1>16</ciscoid_1>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>15</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
            <sfp>present</sfp>
            <type>QSFP-4X10G-AOC2M</type>
            <name>CISCO           </name>
            <partnum>AFBR-7IER02Z-CS1</partnum>
            <rev>01</rev>
            <serialnum>AVE1920200U     </serialnum>
            <nom_bitrate>10300</nom_bitrate>
            <len_cu>2</len_cu>
            <ciscoid>--</ciscoid>
            <ciscoid_1>16</ciscoid_1>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>16</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
            <sfp>present</sfp>
            <type>QSFP-4X10G-AOC2M</type>
            <name>CISCO           </name>
            <partnum>AFBR-7IER02Z-CS1</partnum>
            <rev>01</rev>
            <serialnum>AVE1920200U     </serialnum>
            <nom_bitrate>10300</nom_bitrate>
            <len_cu>2</len_cu>
            <ciscoid>--</ciscoid>
            <ciscoid_1>16</ciscoid_1>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>17</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>18</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>19</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>20</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>21</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>22</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>23</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
         <ROW_uplink>
          <fex_uplink>24</fex_uplink>
          <TABLE_interface>
           <ROW_interface>
            <interface>--</interface>
           </ROW_interface>
          </TABLE_interface>
         </ROW_uplink>
        </TABLE_uplink>
       </__readonly__>
      </calibration>
     </transceiver>
    </__XML__PARAM__chas_no>
   </fex>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

transceiver is present
type is QSFP-H40G-AOC3M
name is CISCO           
part number is FCBN410QE2C03-C1
revision is D 
serial number is FIS1841011H-A   
nominal bitrate is 10300 MBit/sec per channel
Link length supported for copper is 3 m
cisco id is --
cisco extended id number is 16

TEST new change SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

transceiver is present
type is QSFP-H40G-AOC3M
name is CISCO           
part number is FCBN410QE2C03-C1
revision is D 
serial number is FIS1841011H-A   
nominal bitrate is 10300 MBit/sec per channel
Link length supported for copper is 3 m
cisco id is --
cisco extended id number is 16

TEST new change SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

transceiver is present
type is QSFP-H40G-AOC3M
name is CISCO           
part number is FCBN410QE2C03-C1
revision is D 
serial number is FIS1841011H-A   
nominal bitrate is 10300 MBit/sec per channel
Link length supported for copper is 3 m
cisco id is --
cisco extended id number is 16

TEST new change SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

transceiver is present
type is QSFP-H40G-AOC3M
name is CISCO           
part number is FCBN410QE2C03-C1
revision is D 
serial number is FIS1841011H-A   
nominal bitrate is 10300 MBit/sec per channel
Link length supported for copper is 3 m
cisco id is --
cisco extended id number is 16

TEST new change SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

transceiver is present
type is QSFP-40G-SR4
name is CISCO-AVAGO     
part number is AFBR-79EQPZ-CS2 
revision is 02
serial number is AVP2116S0G1     
nominal bitrate is 10300 MBit/sec per channel
Link length supported for 50/125um OM2 fiber is 30 m
Link length supported for 50/125um OM3 fiber is 100 m
cisco id is --
cisco extended id number is 16

TEST new change SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

transceiver is present
type is QSFP-40G-SR4
name is CISCO-AVAGO     
part number is AFBR-79EQPZ-CS2 
revision is 02
serial number is AVP2116S0G1     
nominal bitrate is 10300 MBit/sec per channel
Link length supported for 50/125um OM2 fiber is 30 m
Link length supported for 50/125um OM3 fiber is 100 m
cisco id is --
cisco extended id number is 16

TEST new change SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

Fex Uplink: 7 Fabric Port: Ethernet2/7 Ethernet2/7 transceiver is present type is QSFP-40G-SR4 name is CISCO-AVAGO
part number is AFBR-79EQPZ-CS2 revision is 02 serial number is AVP2116S0G1
nominal bitrate is 10300 MBit/sec per channel Link length supported for 50/125um OM2 fiber is 30 m Link length supported for 50/125um OM3 fiber is 100 m cisco id is -- cisco extended id number is 16 TEST new change SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

transceiver is present
type is QSFP-40G-SR4
name is CISCO-AVAGO     
part number is AFBR-79EQPZ-CS2 
revision is 02
serial number is AVP2116S0G1     
nominal bitrate is 10300 MBit/sec per channel
Link length supported for 50/125um OM2 fiber is 30 m
Link length supported for 50/125um OM3 fiber is 100 m
cisco id is --
cisco extended id number is 16

TEST new change SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

transceiver is present
type is QSFP-40G-SR4
name is CISCO-AVAGO     
part number is AFBR-79E4Z-CS1  
revision is 02
serial number is AVP1533S362     
nominal bitrate is 10300 MBit/sec per channel
Link length supported for 50/125um OM2 fiber is 30 m
Link length supported for 50/125um OM3 fiber is 100 m
cisco id is --
cisco extended id number is 16

TEST new change SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

transceiver is present
type is QSFP-40G-SR4
name is CISCO-AVAGO     
part number is AFBR-79E4Z-CS1  
revision is 02
serial number is AVP1533S362     
nominal bitrate is 10300 MBit/sec per channel
Link length supported for 50/125um OM2 fiber is 30 m
Link length supported for 50/125um OM3 fiber is 100 m
cisco id is --
cisco extended id number is 16

TEST new change SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

transceiver is present
type is QSFP-40G-SR4
name is CISCO-AVAGO     
part number is AFBR-79E4Z-CS1  
revision is 02
serial number is AVP1533S362     
nominal bitrate is 10300 MBit/sec per channel
Link length supported for 50/125um OM2 fiber is 30 m
Link length supported for 50/125um OM3 fiber is 100 m
cisco id is --
cisco extended id number is 16

TEST new change SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

transceiver is present
type is QSFP-40G-SR4
name is CISCO-AVAGO     
part number is AFBR-79E4Z-CS1  
revision is 02
serial number is AVP1533S362     
nominal bitrate is 10300 MBit/sec per channel
Link length supported for 50/125um OM2 fiber is 30 m
Link length supported for 50/125um OM3 fiber is 100 m
cisco id is --
cisco extended id number is 16

TEST new change SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

transceiver is present
type is QSFP-4X10G-AOC2M
name is CISCO           
part number is AFBR-7IER02Z-CS1
revision is 01
serial number is AVE1920200U     
nominal bitrate is 10300 MBit/sec per channel
Link length supported for copper is 2 m
cisco id is --
cisco extended id number is 16

TEST new change SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

transceiver is present
type is QSFP-4X10G-AOC2M
name is CISCO           
part number is AFBR-7IER02Z-CS1
revision is 01
serial number is AVE1920200U     
nominal bitrate is 10300 MBit/sec per channel
Link length supported for copper is 2 m
cisco id is --
cisco extended id number is 16

TEST new change SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

transceiver is present
type is QSFP-4X10G-AOC2M
name is CISCO           
part number is AFBR-7IER02Z-CS1
revision is 01
serial number is AVE1920200U     
nominal bitrate is 10300 MBit/sec per channel
Link length supported for copper is 2 m
cisco id is --
cisco extended id number is 16

TEST new change SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

transceiver is present
type is QSFP-4X10G-AOC2M
name is CISCO           
part number is AFBR-7IER02Z-CS1
revision is 01
serial number is AVE1920200U     
nominal bitrate is 10300 MBit/sec per channel
Link length supported for copper is 2 m
cisco id is --
cisco extended id number is 16

TEST new change SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

SFP calibration is invalid

sfp information is not available
sfp information is not available
sfp information is not available
sfp information is not available
sfp information is not available
sfp information is not available
sfp information is not available
sfp information is not available

show fex 105 version

show fex 105 version 
 
import requests
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 fex 105 version”,
  "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)
{
  "boot_ver": "1.19", 
  "sys_boot_mode": "primary", 
  "sys_img_ver": "8.3(1) [build (0.52)FXC_0_7]", 
  "module": "Fabric Extender 48x10GE Base T + 6x40GE Module", 
  "cpu": "Motorola, e500v2, core 0", 
  "serial_num": "FOC20025JLX", 
  "boot_flash": "unlocked", 
  "psoc_version": "v4.0", 
  "kernel_up_time": "0 day(s), 4 hour(s), 32 minutes(s), 9 second(s)", 
  "last_reset": "Wed Jul 18 16:11:54 2018", 
  "reason": "Kernel Reboot", 
  "service": "Reload new image"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <fex>
    <__XML__PARAM__i>
     <__XML__value>105</__XML__value>
     <version>
      <__readonly__>
       <boot_ver>1.19</boot_ver>
       <sys_boot_mode>primary</sys_boot_mode>
       <sys_img_ver>8.3(1) [build (0.52)FXC_0_7]</sys_img_ver>
       <module>Fabric Extender 48x10GE Base T + 6x40GE Module</module>
       <cpu>Motorola, e500v2, core 0</cpu>
       <serial_num>FOC20025JLX</serial_num>
       <boot_flash>unlocked</boot_flash>
       <psoc_version>v4.0           </psoc_version>
       <kernel_up_time>0 day(s), 4 hour(s), 32 minutes(s), 3 second(s)</kernel_up_time>
       <last_reset>Wed Jul 18 16:11:54 2018</last_reset>
       <reason>Kernel Reboot</reason>
       <service>Reload new image</service>
      </__readonly__>
     </version>
    </__XML__PARAM__i>
   </fex>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show fex 105 version **

Software
  Bootloader version:           1.19
  System boot mode:             primary
  System image version:         8.3(1) [build (0.52)FXC_0_7]

Hardware Module: Fabric Extender 48x10GE Base T + 6x40GE Module CPU: Motorola, e500v2, core 0 Serial number: FOC20025JLX Bootflash: unlocked PSOC Version: v4.0

Kernel uptime is 0 day(s), 4 hour(s), 31 minutes(s), 55 second(s)

Last reset at Wed Jul 18 16:11:54 2018 Reason: Kernel Reboot Service: Service : Reload new image

show fex detail

show fex detail
 
import requests
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 fex detail”,
  "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)
{
  "TABLE_fex_info": {
    "ROW_fex_info": [
      {
        "chas_id": 104, 
        "descr": "FEX0104", 
        "fex_state": "Online", 
        "fex_ver": "8.3(1)", 
        "sw_ver": "8.3(1)", 
        "fex_interim_ver": "(0.52)FXC_0_7", 
        "sw_interim_ver": "8.3(1)", 
        "chas_serial": "FOC2003R15W", 
        "model": "N2K-C2348TQ-10G-E", 
        "part_no": "73-17624-03", 
        "card_id": 373, 
        "mac": "dc:eb:94:65:5b:a2", 
        "num_macs": 64, 
        "fex_sw_gen": 21, 
        "sw_sw_gen": 21, 
        "pin_mode": "static", 
        "max_link": 1, 
        "fbr_port_control": "Eth2/7", 
        "fcoe_admin": "false", 
        "fcoe_oper": "true", 
        "fex_aa_configured": "false", 
        "TABLE_fbr_state": {
          "ROW_fbr_state": [
            {
              "fbr_index": "Po104", 
              "fbr_oper_state": "Up", 
              "fsm_state": "Active"
            }, 
            {
              "fbr_index": "Eth2/7", 
              "fbr_oper_state": "Up", 
              "fsm_state": "Active"
            }
          ]
        }, 
        "TABLE_fex_port": {
          "ROW_fex_port": [
            {
              "fex_port": "Eth104/1/1", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/2", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/3", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/4", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/5", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/6", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/7", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/8", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/9", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/10", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/11", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/12", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/13", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/14", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/15", 
              "fex_port_oper_state": "Up", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/16", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/17", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/18", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/19", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/20", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/21", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/22", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/23", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/24", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/25", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/26", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/27", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/28", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/29", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/30", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/31", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/32", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/33", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/34", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/35", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/36", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/37", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/38", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/39", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/40", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/41", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/42", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/43", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/44", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/45", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/46", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/47", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }, 
            {
              "fex_port": "Eth104/1/48", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po104"
            }
          ]
        }, 
        "TABLE_logs": {
          "ROW_logs": [
            {
              "log": "07/18/2018 16:09:19.844536: Module register received"
            }, 
            {
              "log": "07/18/2018 16:09:19.846604: Image Version Mismatch"
            }, 
            {
              "log": "07/18/2018 16:09:19.938600: Registration response sent"
            }, 
            {
              "log": "07/18/2018 16:09:21.938823: Registration response sent"
            }, 
            {
              "log": "07/18/2018 16:09:21.939915: Requesting satellite to download image"
            }, 
            {
              "log": "07/18/2018 16:11:57.288144: Image preload successful."
            }, 
            {
              "log": "07/18/2018 16:11:58.658119: Deleting route to FEX"
            }, 
            {
              "log": "07/18/2018 16:11:58.700628: Module disconnected"
            }, 
            {
              "log": "07/18/2018 16:11:58.701647: Module Offline"
            }, 
            {
              "log": "07/18/2018 16:11:58.769772: Deleting route to FEX"
            }, 
            {
              "log": "07/18/2018 16:11:58.811591: Module disconnected"
            }, 
            {
              "log": "07/18/2018 16:11:58.813187: Offlining Module"
            }, 
            {
              "log": "07/18/2018 16:14:01.374912: Deleting route to FEX"
            }, 
            {
              "log": "07/18/2018 16:14:01.417249: Module disconnected"
            }, 
            {
              "log": "07/18/2018 16:14:01.418867: Offlining Module"
            }, 
            {
              "log": "07/18/2018 16:15:19.252795: Module register received"
            }, 
            {
              "log": "07/18/2018 16:15:19.398882: Registration response sent"
            }, 
            {
              "log": "07/18/2018 16:15:21.405186: Registration response sent"
            }, 
            {
              "log": "07/18/2018 16:15:21.672311: Module Online Sequence"
            }, 
            {
              "log": "07/18/2018 16:15:34.743788: Module Online"
            }
          ]
        }
      }, 
      {
        "chas_id": 105, 
        "descr": "FEX0105", 
        "fex_state": "Online", 
        "fex_ver": "8.3(1)", 
        "sw_ver": "8.3(1)", 
        "fex_interim_ver": "(0.52)FXC_0_7", 
        "sw_interim_ver": "8.3(1)", 
        "chas_serial": "FOC2003R0EJ", 
        "model": "N2K-C2348TQ-10G-E", 
        "part_no": "73-17624-03", 
        "card_id": 373, 
        "mac": "dc:eb:94:56:3d:e2", 
        "num_macs": 64, 
        "fex_sw_gen": 21, 
        "sw_sw_gen": 21, 
        "pin_mode": "static", 
        "max_link": 1, 
        "fbr_port_control": "Eth2/8", 
        "fcoe_admin": "false", 
        "fcoe_oper": "true", 
        "fex_aa_configured": "false", 
        "TABLE_fbr_state": {
          "ROW_fbr_state": [
            {
              "fbr_index": "Po105", 
              "fbr_oper_state": "Up", 
              "fsm_state": "Active"
            }, 
            {
              "fbr_index": "Eth2/8", 
              "fbr_oper_state": "Up", 
              "fsm_state": "Active"
            }
          ]
        }, 
        "TABLE_fex_port": {
          "ROW_fex_port": [
            {
              "fex_port": "Eth105/1/1", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/2", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/3", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/4", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/5", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/6", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/7", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/8", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/9", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/10", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/11", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/12", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/13", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/14", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/15", 
              "fex_port_oper_state": "Up", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/16", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/17", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/18", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/19", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/20", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/21", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/22", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/23", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/24", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/25", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/26", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/27", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/28", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/29", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/30", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/31", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/32", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/33", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/34", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/35", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/36", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/37", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/38", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/39", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/40", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/41", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/42", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/43", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/44", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/45", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/46", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/47", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }, 
            {
              "fex_port": "Eth105/1/48", 
              "fex_port_oper_state": "Down", 
              "fbr_port": "Po105"
            }
          ]
        }, 
        "TABLE_logs": {
          "ROW_logs": [
            {
              "log": "07/18/2018 16:09:16.663007: Module register received"
            }, 
            {
              "log": "07/18/2018 16:09:16.665297: Image Version Mismatch"
            }, 
            {
              "log": "07/18/2018 16:09:16.763401: Registration response sent"
            }, 
            {
              "log": "07/18/2018 16:09:18.763599: Registration response sent"
            }, 
            {
              "log": "07/18/2018 16:09:18.764612: Requesting satellite to download image"
            }, 
            {
              "log": "07/18/2018 16:11:55.92752: Image preload successful."
            }, 
            {
              "log": "07/18/2018 16:11:56.468265: Deleting route to FEX"
            }, 
            {
              "log": "07/18/2018 16:11:56.510718: Module disconnected"
            }, 
            {
              "log": "07/18/2018 16:11:56.511743: Module Offline"
            }, 
            {
              "log": "07/18/2018 16:11:56.515081: Deleting route to FEX"
            }, 
            {
              "log": "07/18/2018 16:11:56.557008: Module disconnected"
            }, 
            {
              "log": "07/18/2018 16:11:56.558451: Offlining Module"
            }, 
            {
              "log": "07/18/2018 16:13:59.505574: Deleting route to FEX"
            }, 
            {
              "log": "07/18/2018 16:13:59.547550: Module disconnected"
            }, 
            {
              "log": "07/18/2018 16:13:59.548969: Offlining Module"
            }, 
            {
              "log": "07/18/2018 16:15:17.90301: Module register received"
            }, 
            {
              "log": "07/18/2018 16:15:17.185470: Registration response sent"
            }, 
            {
              "log": "07/18/2018 16:15:19.186040: Registration response sent"
            }, 
            {
              "log": "07/18/2018 16:15:21.618772: Module Online Sequence"
            }, 
            {
              "log": "07/18/2018 16:15:33.928792: Module Online"
            }
          ]
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <fex>
    <detail>
     <__readonly__>
      <TABLE_fex_info>
       <ROW_fex_info>
        <chas_id>104</chas_id>
        <descr>FEX0104</descr>
        <fex_state>Online</fex_state>
        <fex_ver>8.3(1)</fex_ver>
        <sw_ver>8.3(1)</sw_ver>
        <fex_interim_ver>(0.52)FXC_0_7</fex_interim_ver>
        <sw_interim_ver>8.3(1)</sw_interim_ver>
        <chas_serial>FOC2003R15W</chas_serial>
        <model>N2K-C2348TQ-10G-E</model>
        <part_no>73-17624-03</part_no>
        <card_id>373</card_id>
        <mac>dc:eb:94:65:5b:a2</mac>
        <num_macs>64</num_macs>
        <fex_sw_gen>21</fex_sw_gen>
        <sw_sw_gen>21</sw_sw_gen>
        <pin_mode>static</pin_mode>
        <max_link>1</max_link>
        <fbr_port_control>Eth2/7</fbr_port_control>
        <fcoe_admin>false</fcoe_admin>
        <fcoe_oper>true</fcoe_oper>
        <fex_aa_configured>false</fex_aa_configured>
        <TABLE_fbr_state>
         <ROW_fbr_state>
          <fbr_index>Po104</fbr_index>
          <fbr_oper_state>Up</fbr_oper_state>
          <fsm_state>Active</fsm_state>
         </ROW_fbr_state>
         <ROW_fbr_state>
          <fbr_index>Eth2/7</fbr_index>
          <fbr_oper_state>Up</fbr_oper_state>
          <fsm_state>Active</fsm_state>
         </ROW_fbr_state>
        </TABLE_fbr_state>
        <TABLE_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/1</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/2</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/3</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/4</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/5</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/6</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/7</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/8</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/9</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/10</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/11</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/12</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/13</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/14</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/15</fex_port>
          <fex_port_oper_state>Up</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/16</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/17</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/18</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/19</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/20</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/21</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/22</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/23</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/24</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/25</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/26</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/27</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/28</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/29</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/30</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/31</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/32</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/33</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/34</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/35</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/36</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/37</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/38</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/39</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/40</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/41</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/42</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/43</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/44</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/45</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/46</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/47</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth104/1/48</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po104</fbr_port>
         </ROW_fex_port>
        </TABLE_fex_port>
        <TABLE_logs>
         <ROW_logs>
          <log>07/18/2018 16:09:19.844536: Module register received
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:09:19.846604: Image Version Mismatch
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:09:19.938600: Registration response sent
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:09:21.938823: Registration response sent
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:09:21.939915: Requesting satellite to download image
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:11:57.288144: Image preload successful.
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:11:58.658119: Deleting route to FEX
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:11:58.700628: Module disconnected
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:11:58.701647: Module Offline
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:11:58.769772: Deleting route to FEX
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:11:58.811591: Module disconnected
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:11:58.813187: Offlining Module
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:14:01.374912: Deleting route to FEX
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:14:01.417249: Module disconnected
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:14:01.418867: Offlining Module
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:15:19.252795: Module register received
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:15:19.398882: Registration response sent
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:15:21.405186: Registration response sent
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:15:21.672311: Module Online Sequence
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:15:34.743788: Module Online
</log>
         </ROW_logs>
        </TABLE_logs>
       </ROW_fex_info>
       <ROW_fex_info>
        <chas_id>105</chas_id>
        <descr>FEX0105</descr>
        <fex_state>Online</fex_state>
        <fex_ver>8.3(1)</fex_ver>
        <sw_ver>8.3(1)</sw_ver>
        <fex_interim_ver>(0.52)FXC_0_7</fex_interim_ver>
        <sw_interim_ver>8.3(1)</sw_interim_ver>
        <chas_serial>FOC2003R0EJ</chas_serial>
        <model>N2K-C2348TQ-10G-E</model>
        <part_no>73-17624-03</part_no>
        <card_id>373</card_id>
        <mac>dc:eb:94:56:3d:e2</mac>
        <num_macs>64</num_macs>
        <fex_sw_gen>21</fex_sw_gen>
        <sw_sw_gen>21</sw_sw_gen>
        <pin_mode>static</pin_mode>
        <max_link>1</max_link>
        <fbr_port_control>Eth2/8</fbr_port_control>
        <fcoe_admin>false</fcoe_admin>
        <fcoe_oper>true</fcoe_oper>
        <fex_aa_configured>false</fex_aa_configured>
        <TABLE_fbr_state>
         <ROW_fbr_state>
          <fbr_index>Po105</fbr_index>
          <fbr_oper_state>Up</fbr_oper_state>
          <fsm_state>Active</fsm_state>
         </ROW_fbr_state>
         <ROW_fbr_state>
          <fbr_index>Eth2/8</fbr_index>
          <fbr_oper_state>Up</fbr_oper_state>
          <fsm_state>Active</fsm_state>
         </ROW_fbr_state>
        </TABLE_fbr_state>
        <TABLE_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/1</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/2</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/3</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/4</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/5</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/6</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/7</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/8</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/9</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/10</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/11</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/12</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/13</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/14</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/15</fex_port>
          <fex_port_oper_state>Up</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/16</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/17</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/18</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/19</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/20</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/21</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/22</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/23</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/24</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/25</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/26</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/27</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/28</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/29</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/30</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/31</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/32</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/33</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/34</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/35</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/36</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/37</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/38</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/39</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/40</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/41</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/42</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/43</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/44</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/45</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/46</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/47</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
         <ROW_fex_port>
          <fex_port>Eth105/1/48</fex_port>
          <fex_port_oper_state>Down</fex_port_oper_state>
          <fbr_port>Po105</fbr_port>
         </ROW_fex_port>
        </TABLE_fex_port>
        <TABLE_logs>
         <ROW_logs>
          <log>07/18/2018 16:09:16.663007: Module register received
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:09:16.665297: Image Version Mismatch
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:09:16.763401: Registration response sent
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:09:18.763599: Registration response sent
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:09:18.764612: Requesting satellite to download image
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:11:55.92752: Image preload successful.
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:11:56.468265: Deleting route to FEX
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:11:56.510718: Module disconnected
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:11:56.511743: Module Offline
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:11:56.515081: Deleting route to FEX
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:11:56.557008: Module disconnected
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:11:56.558451: Offlining Module
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:13:59.505574: Deleting route to FEX
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:13:59.547550: Module disconnected
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:13:59.548969: Offlining Module
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:15:17.90301: Module register received
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:15:17.185470: Registration response sent
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:15:19.186040: Registration response sent
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:15:21.618772: Module Online Sequence
</log>
         </ROW_logs>
         <ROW_logs>
          <log>07/18/2018 16:15:33.928792: Module Online
</log>
         </ROW_logs>
        </TABLE_logs>
       </ROW_fex_info>
      </TABLE_fex_info>
     </__readonly__>
    </detail>
   </fex>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show fex detail**

FEX: 104 Description: FEX0104   state: Online
  FEX version: 8.3(1) [Switch version: 8.3(1)]
  FEX Interim version: (0.52)FXC_0_7
  Switch Interim version: 8.3(1)
  Extender Serial: FOC2003R15W
  Extender Model: N2K-C2348TQ-10G-E,  Part No: 73-17624-03
  Card Id: 373, Mac Addr: dc:eb:94:65:5b:a2, Num Macs: 64
  Module Sw Gen: 21  [Switch Sw Gen: 21]
  Pinning-mode: static    Max-links: 1
  Fabric port for control traffic: Eth2/7
  FCoE Admin: false
  FCoE Oper: true
  FCoE FEX AA Configured: false
  Fabric interface state:
    Po104 - Interface Up. State: Active
    Eth2/7 - Interface Up. State: Active
  Fex Port        State  Fabric Port
       Eth104/1/1  Down       Po104
       Eth104/1/2  Down       Po104
       Eth104/1/3  Down       Po104
       Eth104/1/4  Down       Po104
       Eth104/1/5  Down       Po104
       Eth104/1/6  Down       Po104
       Eth104/1/7  Down       Po104
       Eth104/1/8  Down       Po104
       Eth104/1/9  Down       Po104
      Eth104/1/10  Down       Po104
      Eth104/1/11  Down       Po104
      Eth104/1/12  Down       Po104
      Eth104/1/13  Down       Po104
      Eth104/1/14  Down       Po104
      Eth104/1/15    Up       Po104
      Eth104/1/16  Down       Po104
      Eth104/1/17  Down       Po104
      Eth104/1/18  Down       Po104
      Eth104/1/19  Down       Po104
      Eth104/1/20  Down       Po104
      Eth104/1/21  Down       Po104
      Eth104/1/22  Down       Po104
      Eth104/1/23  Down       Po104
      Eth104/1/24  Down       Po104
      Eth104/1/25  Down       Po104
      Eth104/1/26  Down       Po104
      Eth104/1/27  Down       Po104
      Eth104/1/28  Down       Po104
      Eth104/1/29  Down       Po104
      Eth104/1/30  Down       Po104
      Eth104/1/31  Down       Po104
      Eth104/1/32  Down       Po104
      Eth104/1/33  Down       Po104
      Eth104/1/34  Down       Po104
      Eth104/1/35  Down       Po104
      Eth104/1/36  Down       Po104
      Eth104/1/37  Down       Po104
      Eth104/1/38  Down       Po104
      Eth104/1/39  Down       Po104
      Eth104/1/40  Down       Po104
      Eth104/1/41  Down       Po104
      Eth104/1/42  Down       Po104
      Eth104/1/43  Down       Po104
      Eth104/1/44  Down       Po104
      Eth104/1/45  Down       Po104
      Eth104/1/46  Down       Po104
      Eth104/1/47  Down       Po104
      Eth104/1/48  Down       Po104
Logs:
07/18/2018 16:09:19.844536: Module register received
07/18/2018 16:09:19.846604: Image Version Mismatch
07/18/2018 16:09:19.938600: Registration response sent
07/18/2018 16:09:21.938823: Registration response sent
07/18/2018 16:09:21.939915: Requesting satellite to download image
07/18/2018 16:11:57.288144: Image preload successful.
07/18/2018 16:11:58.658119: Deleting route to FEX
07/18/2018 16:11:58.700628: Module disconnected
07/18/2018 16:11:58.701647: Module Offline
07/18/2018 16:11:58.769772: Deleting route to FEX
07/18/2018 16:11:58.811591: Module disconnected
07/18/2018 16:11:58.813187: Offlining Module
07/18/2018 16:14:01.374912: Deleting route to FEX
07/18/2018 16:14:01.417249: Module disconnected
07/18/2018 16:14:01.418867: Offlining Module
07/18/2018 16:15:19.252795: Module register received
07/18/2018 16:15:19.398882: Registration response sent
07/18/2018 16:15:21.405186: Registration response sent
07/18/2018 16:15:21.672311: Module Online Sequence
07/18/2018 16:15:34.743788: Module Online

FEX: 105 Description: FEX0105 state: Online FEX version: 8.3(1) [Switch version: 8.3(1)] FEX Interim version: (0.52)FXC_0_7 Switch Interim version: 8.3(1) Extender Serial: FOC2003R0EJ Extender Model: N2K-C2348TQ-10G-E, Part No: 73-17624-03 Card Id: 373, Mac Addr: dc:eb:94:56:3d:e2, Num Macs: 64 Module Sw Gen: 21 [Switch Sw Gen: 21] Pinning-mode: static Max-links: 1 Fabric port for control traffic: Eth2/8 FCoE Admin: false FCoE Oper: true FCoE FEX AA Configured: false Fabric interface state: Po105 - Interface Up. State: Active Eth2/8 - Interface Up. State: Active Fex Port State Fabric Port Eth105/1/1 Down Po105 Eth105/1/2 Down Po105 Eth105/1/3 Down Po105 Eth105/1/4 Down Po105 Eth105/1/5 Down Po105 Eth105/1/6 Down Po105 Eth105/1/7 Down Po105 Eth105/1/8 Down Po105 Eth105/1/9 Down Po105 Eth105/1/10 Down Po105 Eth105/1/11 Down Po105 Eth105/1/12 Down Po105 Eth105/1/13 Down Po105 Eth105/1/14 Down Po105 Eth105/1/15 Up Po105 Eth105/1/16 Down Po105 Eth105/1/17 Down Po105 Eth105/1/18 Down Po105 Eth105/1/19 Down Po105 Eth105/1/20 Down Po105 Eth105/1/21 Down Po105 Eth105/1/22 Down Po105 Eth105/1/23 Down Po105 Eth105/1/24 Down Po105 Eth105/1/25 Down Po105 Eth105/1/26 Down Po105 Eth105/1/27 Down Po105 Eth105/1/28 Down Po105 Eth105/1/29 Down Po105 Eth105/1/30 Down Po105 Eth105/1/31 Down Po105 Eth105/1/32 Down Po105 Eth105/1/33 Down Po105 Eth105/1/34 Down Po105 Eth105/1/35 Down Po105 Eth105/1/36 Down Po105 Eth105/1/37 Down Po105 Eth105/1/38 Down Po105 Eth105/1/39 Down Po105 Eth105/1/40 Down Po105 Eth105/1/41 Down Po105 Eth105/1/42 Down Po105 Eth105/1/43 Down Po105 Eth105/1/44 Down Po105 Eth105/1/45 Down Po105 Eth105/1/46 Down Po105 Eth105/1/47 Down Po105 Eth105/1/48 Down Po105 Logs: 07/18/2018 16:09:16.663007: Module register received 07/18/2018 16:09:16.665297: Image Version Mismatch 07/18/2018 16:09:16.763401: Registration response sent 07/18/2018 16:09:18.763599: Registration response sent 07/18/2018 16:09:18.764612: Requesting satellite to download image 07/18/2018 16:11:55.92752: Image preload successful. 07/18/2018 16:11:56.468265: Deleting route to FEX 07/18/2018 16:11:56.510718: Module disconnected 07/18/2018 16:11:56.511743: Module Offline 07/18/2018 16:11:56.515081: Deleting route to FEX 07/18/2018 16:11:56.557008: Module disconnected 07/18/2018 16:11:56.558451: Offlining Module 07/18/2018 16:13:59.505574: Deleting route to FEX 07/18/2018 16:13:59.547550: Module disconnected 07/18/2018 16:13:59.548969: Offlining Module 07/18/2018 16:15:17.90301: Module register received 07/18/2018 16:15:17.185470: Registration response sent 07/18/2018 16:15:19.186040: Registration response sent 07/18/2018 16:15:21.618772: Module Online Sequence 07/18/2018 16:15:33.928792: Module Online

show interface Eth2/7 fex-intf

show interface Eth2/7 fex-intf
 
import requests
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 interface Eth2/7 fex-intf”,
  "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)
{
  "TABLE_fabric_if": {
    "ROW_fabric_if": {
      "fbr_if": "Ethernet2/7"
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <interface>
    <__XML__PARAM__if_id>
     <__XML__value>Ethernet2/7</__XML__value>
     <fex-intf>
      <__readonly__>
       <TABLE_fabric_if>
        <ROW_fabric_if>
         <fbr_if>Ethernet2/7</fbr_if>
        </ROW_fabric_if>
       </TABLE_fabric_if>
      </__readonly__>
     </fex-intf>
    </__XML__PARAM__if_id>
   </interface>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show interface Eth2/7 fex-intf

Fabric           FEX
Interface        Interfaces

Eth2/7

show interface counters snmp fex 104

show interface counters snmp fex 104
 
import requests
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 interface counters snmp fex 104”,
  "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)
{
  "TABLE_rx_counters": {
    "ROW_rx_counters": [
      {
        "interface_rx": "Ethernet104/1/1", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/2", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/3", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/4", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/5", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/6", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/7", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/8", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/9", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/10", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/11", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/12", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/13", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/14", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/15", 
        "eth_inbytes": 716609, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/16", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/17", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/18", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/19", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/20", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/21", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/22", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/23", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/24", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/25", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/26", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/27", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/28", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/29", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/30", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/31", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/32", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/33", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/34", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/35", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/36", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/37", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/38", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/39", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/40", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/41", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/42", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/43", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/44", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/45", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/46", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/47", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/48", 
        "eth_inbytes": 0, 
        "eth_inucast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/1", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/2", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/3", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/4", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/5", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/6", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/7", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/8", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/9", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/10", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/11", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/12", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/13", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/14", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/15", 
        "eth_inmcast": 10324, 
        "eth_inbcast": 2
      }, 
      {
        "interface_rx": "Ethernet104/1/16", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/17", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/18", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/19", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/20", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/21", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/22", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/23", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/24", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/25", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/26", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/27", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/28", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/29", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/30", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/31", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/32", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/33", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/34", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/35", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/36", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/37", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/38", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/39", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/40", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/41", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/42", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/43", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/44", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/45", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/46", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/47", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }, 
      {
        "interface_rx": "Ethernet104/1/48", 
        "eth_inmcast": 0, 
        "eth_inbcast": 0
      }
    ]
  }, 
  "TABLE_tx_counters": {
    "ROW_tx_counters": [
      {
        "interface_tx": "Ethernet104/1/1", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/2", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/3", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/4", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/5", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/6", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/7", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/8", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/9", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/10", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/11", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/12", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/13", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/14", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/15", 
        "eth_outbytes": 78580, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/16", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/17", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/18", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/19", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/20", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/21", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/22", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/23", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/24", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/25", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/26", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/27", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/28", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/29", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/30", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/31", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/32", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/33", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/34", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/35", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/36", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/37", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/38", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/39", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/40", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/41", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/42", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/43", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/44", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/45", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/46", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/47", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/48", 
        "eth_outbytes": 0, 
        "eth_outucast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/1", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/2", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/3", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/4", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/5", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/6", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/7", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/8", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/9", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/10", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/11", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/12", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/13", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/14", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/15", 
        "eth_outmcast": 332, 
        "eth_outbcast": 4
      }, 
      {
        "interface_tx": "Ethernet104/1/16", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/17", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/18", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/19", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/20", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/21", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/22", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/23", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/24", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/25", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/26", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/27", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/28", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/29", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/30", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/31", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/32", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/33", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/34", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/35", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/36", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/37", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/38", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/39", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/40", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/41", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/42", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/43", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/44", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/45", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/46", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/47", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }, 
      {
        "interface_tx": "Ethernet104/1/48", 
        "eth_outmcast": 0, 
        "eth_outbcast": 0
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <interface>
    <counters>
     <snmp>
      <fex>
       <__XML__PARAM__fex_num>
        <__XML__value>104</__XML__value>
        <__readonly__>
         <TABLE_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/1</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/2</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/3</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/4</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/5</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/6</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/7</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/8</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/9</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/10</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/11</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/12</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/13</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/14</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/15</interface_rx>
           <eth_inbytes>715457</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/16</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/17</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/18</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/19</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/20</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/21</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/22</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/23</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/24</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/25</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/26</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/27</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/28</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/29</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/30</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/31</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/32</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/33</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/34</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/35</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/36</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/37</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/38</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/39</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/40</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/41</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/42</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/43</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/44</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/45</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/46</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/47</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/48</interface_rx>
           <eth_inbytes>0</eth_inbytes>
           <eth_inucast>0</eth_inucast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/1</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/2</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/3</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/4</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/5</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/6</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/7</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/8</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/9</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/10</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/11</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/12</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/13</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/14</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/15</interface_rx>
           <eth_inmcast>10309</eth_inmcast>
           <eth_inbcast>2</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/16</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/17</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/18</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/19</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/20</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/21</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/22</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/23</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/24</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/25</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/26</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/27</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/28</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/29</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/30</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/31</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/32</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/33</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/34</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/35</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/36</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/37</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/38</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/39</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/40</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/41</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/42</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/43</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/44</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/45</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/46</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/47</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
          <ROW_rx_counters>
           <interface_rx>Ethernet104/1/48</interface_rx>
           <eth_inmcast>0</eth_inmcast>
           <eth_inbcast>0</eth_inbcast>
          </ROW_rx_counters>
         </TABLE_rx_counters>
         <TABLE_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/1</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/2</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/3</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/4</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/5</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/6</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/7</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/8</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/9</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/10</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/11</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/12</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/13</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/14</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/15</interface_tx>
           <eth_outbytes>78580</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/16</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/17</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/18</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/19</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/20</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/21</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/22</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/23</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/24</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/25</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/26</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/27</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/28</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/29</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/30</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/31</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/32</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/33</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/34</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/35</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/36</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/37</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/38</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/39</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/40</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/41</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/42</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/43</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/44</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/45</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/46</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/47</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/48</interface_tx>
           <eth_outbytes>0</eth_outbytes>
           <eth_outucast>0</eth_outucast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/1</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/2</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/3</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/4</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/5</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/6</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/7</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/8</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/9</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/10</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/11</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/12</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/13</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/14</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/15</interface_tx>
           <eth_outmcast>332</eth_outmcast>
           <eth_outbcast>4</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/16</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/17</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/18</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/19</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/20</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/21</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/22</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/23</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/24</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/25</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/26</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/27</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/28</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/29</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/30</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/31</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/32</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/33</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/34</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/35</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/36</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/37</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/38</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/39</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/40</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/41</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/42</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/43</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/44</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/45</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/46</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/47</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
          <ROW_tx_counters>
           <interface_tx>Ethernet104/1/48</interface_tx>
           <eth_outmcast>0</eth_outmcast>
           <eth_outbcast>0</eth_outbcast>
          </ROW_tx_counters>
         </TABLE_tx_counters>
        </__readonly__>
       </__XML__PARAM__fex_num>
      </fex>
     </snmp>
    </counters>
   </interface>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show interface counters snmp fex 104**

Port                                 InOctets                      InUcastPkts

Eth104/1/1                                  0                                0 Eth104/1/2                                  0                                0 Eth104/1/3                                  0                                0 Eth104/1/4                                  0                                0 Eth104/1/5                                  0                                0 Eth104/1/6                                  0                                0 Eth104/1/7                                  0                                0 Eth104/1/8                                  0                                0 Eth104/1/9                                  0                                0 Eth104/1/10                                 0                                0 Eth104/1/11                                 0                                0 Eth104/1/12                                 0                                0 Eth104/1/13                                 0                                0 Eth104/1/14                                 0                                0 Eth104/1/15                            714266                                0 Eth104/1/16                                 0                                0 Eth104/1/17                                 0                                0 Eth104/1/18                                 0                                0 Eth104/1/19                                 0                                0 Eth104/1/20                                 0                                0 Eth104/1/21                                 0                                0 Eth104/1/22                                 0                                0 Eth104/1/23                                 0                                0 Eth104/1/24                                 0                                0 Eth104/1/25                                 0                                0 Eth104/1/26                                 0                                0 Eth104/1/27                                 0                                0 Eth104/1/28                                 0                                0 Eth104/1/29                                 0                                0 Eth104/1/30                                 0                                0 Eth104/1/31                                 0                                0 Eth104/1/32                                 0                                0 Eth104/1/33                                 0                                0 Eth104/1/34                                 0                                0 Eth104/1/35                                 0                                0 Eth104/1/36                                 0                                0 Eth104/1/37                                 0                                0 Eth104/1/38                                 0                                0 Eth104/1/39                                 0                                0 Eth104/1/40                                 0                                0 Eth104/1/41                                 0                                0 Eth104/1/42                                 0                                0 Eth104/1/43                                 0                                0 Eth104/1/44                                 0                                0 Eth104/1/45                                 0                                0 Eth104/1/46                                 0                                0 Eth104/1/47                                 0                                0 Eth104/1/48                                 0                                0  

Port                              InMcastPkts                      InBcastPkts

Eth104/1/1                                  0                                0 Eth104/1/2                                  0                                0 Eth104/1/3                                  0                                0 Eth104/1/4                                  0                                0 Eth104/1/5                                  0                                0 Eth104/1/6                                  0                                0 Eth104/1/7                                  0                                0 Eth104/1/8                                  0                                0 Eth104/1/9                                  0                                0 Eth104/1/10                                 0                                0 Eth104/1/11                                 0                                0 Eth104/1/12                                 0                                0 Eth104/1/13                                 0                                0 Eth104/1/14                                 0                                0 Eth104/1/15                             10290                                2 Eth104/1/16                                 0                                0 Eth104/1/17                                 0                                0 Eth104/1/18                                 0                                0 Eth104/1/19                                 0                                0 Eth104/1/20                                 0                                0 Eth104/1/21                                 0                                0 Eth104/1/22                                 0                                0 Eth104/1/23                                 0                                0 Eth104/1/24                                 0                                0 Eth104/1/25                                 0                                0 Eth104/1/26                                 0                                0 Eth104/1/27                                 0                                0 Eth104/1/28                                 0                                0 Eth104/1/29                                 0                                0 Eth104/1/30                                 0                                0 Eth104/1/31                                 0                                0 Eth104/1/32                                 0                                0 Eth104/1/33                                 0                                0 Eth104/1/34                                 0                                0 Eth104/1/35                                 0                                0 Eth104/1/36                                 0                                0 Eth104/1/37                                 0                                0 Eth104/1/38                                 0                                0 Eth104/1/39                                 0                                0 Eth104/1/40                                 0                                0 Eth104/1/41                                 0                                0 Eth104/1/42                                 0                                0 Eth104/1/43                                 0                                0 Eth104/1/44                                 0                                0 Eth104/1/45                                 0                                0 Eth104/1/46                                 0                                0 Eth104/1/47                                 0                                0 Eth104/1/48                                 0                                0  

Port                                OutOctets                     OutUcastPkts

Eth104/1/1                                  0                                0 Eth104/1/2                                  0                                0 Eth104/1/3                                  0                                0 Eth104/1/4                                  0                                0 Eth104/1/5                                  0                                0 Eth104/1/6                                  0                                0 Eth104/1/7                                  0                                0 Eth104/1/8                                  0                                0 Eth104/1/9                                  0                                0 Eth104/1/10                                 0                                0 Eth104/1/11                                 0                                0 Eth104/1/12                                 0                                0 Eth104/1/13                                 0                                0 Eth104/1/14                                 0                                0 Eth104/1/15                             78344                                0 Eth104/1/16                                 0                                0 Eth104/1/17                                 0                                0 Eth104/1/18                                 0                                0 Eth104/1/19                                 0                                0 Eth104/1/20                                 0                                0 Eth104/1/21                                 0                                0 Eth104/1/22                                 0                                0 Eth104/1/23                                 0                                0 Eth104/1/24                                 0                                0 Eth104/1/25                                 0                                0 Eth104/1/26                                 0                                0 Eth104/1/27                                 0                                0 Eth104/1/28                                 0                                0 Eth104/1/29                                 0                                0 Eth104/1/30                                 0                                0 Eth104/1/31                                 0                                0 Eth104/1/32                                 0                                0 Eth104/1/33                                 0                                0 Eth104/1/34                                 0                                0 Eth104/1/35                                 0                                0 Eth104/1/36                                 0                                0 Eth104/1/37                                 0                                0 Eth104/1/38                                 0                                0 Eth104/1/39                                 0                                0 Eth104/1/40                                 0                                0 Eth104/1/41                                 0                                0 Eth104/1/42                                 0                                0 Eth104/1/43                                 0                                0 Eth104/1/44                                 0                                0 Eth104/1/45                                 0                                0 Eth104/1/46                                 0                                0 Eth104/1/47                                 0                                0 Eth104/1/48                                 0                                0  

Port                             OutMcastPkts                     OutBcastPkts

Eth104/1/1                                  0                                0 Eth104/1/2                                  0                                0 Eth104/1/3                                  0                                0 Eth104/1/4                                  0                                0 Eth104/1/5                                  0                                0 Eth104/1/6                                  0                                0 Eth104/1/7                                  0                                0 Eth104/1/8                                  0                                0 Eth104/1/9                                  0                                0 Eth104/1/10                                 0                                0 Eth104/1/11                                 0                                0 Eth104/1/12                                 0                                0 Eth104/1/13                                 0                                0 Eth104/1/14                                 0                                0 Eth104/1/15                               331                                4 Eth104/1/16                                 0                                0 Eth104/1/17                                 0                                0 Eth104/1/18                                 0                                0 Eth104/1/19                                 0                                0 Eth104/1/20                                 0                                0 Eth104/1/21                                 0                                0 Eth104/1/22                                 0                                0 Eth104/1/23                                 0                                0 Eth104/1/24                                 0                                0 Eth104/1/25                                 0                                0 Eth104/1/26                                 0                                0 Eth104/1/27                                 0                                0 Eth104/1/28                                 0                                0 Eth104/1/29                                 0                                0 Eth104/1/30                                 0                                0 Eth104/1/31                                 0                                0 Eth104/1/32                                 0                                0 Eth104/1/33                                 0                                0 Eth104/1/34                                 0                                0 Eth104/1/35                                 0                                0 Eth104/1/36                                 0                                0 Eth104/1/37                                 0                                0 Eth104/1/38                                 0                                0 Eth104/1/39                                 0                                0 Eth104/1/40                                 0                                0 Eth104/1/41                                 0                                0 Eth104/1/42                                 0                                0 Eth104/1/43                                 0                                0 Eth104/1/44                                 0                                0 Eth104/1/45                                 0                                0 Eth104/1/46                                 0                                0 Eth104/1/47                                 0                                0 Eth104/1/48                                 0                                0

show interface fex-fabric

show interface fex-fabric 
 
import requests
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 interface fex-fabric”,
  "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)
{
  "TABLE_fex_fabric": {
    "ROW_fex_fabric": [
      {
        "fex_no": 104, 
        "fbr_port": "Ethernet2/7", 
        "fex_uplink": 7, 
        "chas_vendor": "Cisco Systems", 
        "fex_model": "N2K-C2348TQ-10G-E", 
        "chas_ser": "FOC2003R15W", 
        "mod_vendor": "Cisco Systems", 
        "mod_model": "N2K-C2348TQ-10G-E", 
        "fex_ser": "FOC20028DYQ", 
        "mod_no": 0, 
        "mgmt_inst": null, 
        "fbr_state": "Active"
      }, 
      {
        "fex_no": 105, 
        "fbr_port": "Ethernet2/8", 
        "fex_uplink": 7, 
        "chas_vendor": "Cisco Systems", 
        "fex_model": "N2K-C2348TQ-10G-E", 
        "chas_ser": "FOC2003R0EJ", 
        "mod_vendor": "Cisco Systems", 
        "mod_model": "N2K-C2348TQ-10G-E", 
        "fex_ser": "FOC20025JLX", 
        "mod_no": 0, 
        "mgmt_inst": null, 
        "fbr_state": "Active"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <interface>
    <fex-fabric>
     <__readonly__>
      <TABLE_fex_fabric>
       <ROW_fex_fabric>
        <fex_no>104</fex_no>
        <fbr_port>Ethernet2/7</fbr_port>
        <fex_uplink>7</fex_uplink>
        <chas_vendor>Cisco Systems</chas_vendor>
        <fex_model>N2K-C2348TQ-10G-E</fex_model>
        <chas_ser>FOC2003R15W</chas_ser>
        <mod_vendor>Cisco Systems</mod_vendor>
        <mod_model>N2K-C2348TQ-10G-E</mod_model>
        <fex_ser>FOC20028DYQ</fex_ser>
        <mod_no>0</mod_no>
        <mgmt_inst></mgmt_inst>
        <fbr_state>Active</fbr_state>
       </ROW_fex_fabric>
       <ROW_fex_fabric>
        <fex_no>105</fex_no>
        <fbr_port>Ethernet2/8</fbr_port>
        <fex_uplink>7</fex_uplink>
        <chas_vendor>Cisco Systems</chas_vendor>
        <fex_model>N2K-C2348TQ-10G-E</fex_model>
        <chas_ser>FOC2003R0EJ</chas_ser>
        <mod_vendor>Cisco Systems</mod_vendor>
        <mod_model>N2K-C2348TQ-10G-E</mod_model>
        <fex_ser>FOC20025JLX</fex_ser>
        <mod_no>0</mod_no>
        <mgmt_inst></mgmt_inst>
        <fbr_state>Active</fbr_state>
       </ROW_fex_fabric>
      </TABLE_fex_fabric>
     </__readonly__>
    </fex-fabric>
   </interface>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

104 Eth2/7 Active 7 N2K-C2348TQ-10G-E FOC2003R15W 105 Eth2/8 Active 7 N2K-C2348TQ-10G-E FOC2003R0EJ

show interface flowcontrol fex 104

show interface flowcontrol fex 104
 
import requests
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 interface flowcontrol fex 104”,
  "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)
{
  "TABLE_interface": {
    "ROW_interface": [
      {
        "interface": "Ethernet104/1/1", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/2", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/3", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/4", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/5", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/6", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/7", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/8", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/9", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/10", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/11", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/12", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/13", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/14", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/15", 
        "send_admin": "on", 
        "send_oper": "on", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/16", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/17", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/18", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/19", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/20", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/21", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/22", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/23", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/24", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/25", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/26", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/27", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/28", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/29", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/30", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/31", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/32", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/33", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/34", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/35", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/36", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/37", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/38", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/39", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/40", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/41", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/42", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/43", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/44", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/45", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/46", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/47", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }, 
      {
        "interface": "Ethernet104/1/48", 
        "send_admin": "on", 
        "send_oper": "off", 
        "recv_admin": "off", 
        "recv_oper": "off", 
        "rxpause": 0, 
        "txpause": 0
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <interface>
    <flowcontrol>
     <fex>
      <__XML__PARAM__fex_num>
       <__XML__value>104</__XML__value>
       <__readonly__>
        <TABLE_interface>
         <ROW_interface>
          <interface>Ethernet104/1/1</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/2</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/3</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/4</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/5</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/6</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/7</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/8</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/9</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/10</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/11</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/12</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/13</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/14</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/15</interface>
          <send_admin>on</send_admin>
          <send_oper>on</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/16</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/17</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/18</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/19</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/20</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/21</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/22</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/23</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/24</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/25</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/26</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/27</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/28</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/29</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/30</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/31</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/32</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/33</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/34</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/35</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/36</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/37</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/38</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/39</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/40</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/41</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/42</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/43</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/44</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/45</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/46</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/47</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
         <ROW_interface>
          <interface>Ethernet104/1/48</interface>
          <send_admin>on</send_admin>
          <send_oper>off</send_oper>
          <recv_admin>off</recv_admin>
          <recv_oper>off</recv_oper>
          <rxpause>0</rxpause>
          <txpause>0</txpause>
         </ROW_interface>
        </TABLE_interface>
       </__readonly__>
      </__XML__PARAM__fex_num>
     </fex>
    </flowcontrol>
   </interface>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show interface flowcontrol fex 104

Port Send FlowControl Receive FlowControl RxPause TxPause
admin oper admin oper

Eth104/1/1 on off off off 0 0

Eth104/1/2 on off off off 0 0

Eth104/1/3 on off off off 0 0

Eth104/1/4 on off off off 0 0

Eth104/1/5 on off off off 0 0

Eth104/1/6 on off off off 0 0

Eth104/1/7 on off off off 0 0

Eth104/1/8 on off off off 0 0

Eth104/1/9 on off off off 0 0

Eth104/1/10 on off off off 0 0

Eth104/1/11 on off off off 0 0

Eth104/1/12 on off off off 0 0

Eth104/1/13 on off off off 0 0

Eth104/1/14 on off off off 0 0

Eth104/1/15 on on off off 0 0

Eth104/1/16 on off off off 0 0

Eth104/1/17 on off off off 0 0

Eth104/1/18 on off off off 0 0

Eth104/1/19 on off off off 0 0

Eth104/1/20 on off off off 0 0

Eth104/1/21 on off off off 0 0

Eth104/1/22 on off off off 0 0

Eth104/1/23 on off off off 0 0

Eth104/1/24 on off off off 0 0

Eth104/1/25 on off off off 0 0

Eth104/1/26 on off off off 0 0

Eth104/1/27 on off off off 0 0

Eth104/1/28 on off off off 0 0

Eth104/1/29 on off off off 0 0

Eth104/1/30 on off off off 0 0

Eth104/1/31 on off off off 0 0

Eth104/1/32 on off off off 0 0

Eth104/1/33 on off off off 0 0

Eth104/1/34 on off off off 0 0

Eth104/1/35 on off off off 0 0

Eth104/1/36 on off off off 0 0

Eth104/1/37 on off off off 0 0

Eth104/1/38 on off off off 0 0

Eth104/1/39 on off off off 0 0

Eth104/1/40 on off off off 0 0

Eth104/1/41 on off off off 0 0

Eth104/1/42 on off off off 0 0

Eth104/1/43 on off off off 0 0

Eth104/1/44 on off off off 0 0

Eth104/1/45 on off off off 0 0

Eth104/1/46 on off off off 0 0

Eth104/1/47 on off off off 0 0

Eth104/1/48 on off off off 0 0

show inventory fex 105

show inventory fex 105
 
import requests
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 inventory fex 105”,
  "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)
{
  "TABLE_inv": {
    "ROW_inv": [
      {
        "name": "\"FEX 105 CHASSIS\"", 
        "desc": "\"N2K-C2348TQ-10G-E  CHASSIS\"", 
        "productid": "N2K-C2348TQ-10G-E", 
        "vendorid": "V00", 
        "serialnum": "FOC2003R0EJ"
      }, 
      {
        "name": "\"FEX 105 Module 1\"", 
        "desc": "\"Fabric Extender Module: 48x10GE, 24x10GE/6x40G QSFP Supervisor\"", 
        "productid": "N2K-C2348TQ-10G-E", 
        "vendorid": "V00", 
        "serialnum": "FOC20025JLX"
      }, 
      {
        "name": "\"FEX 105 Fan 1\"", 
        "desc": "\"Fabric Extender Fan module\"", 
        "productid": "N2K-2348TQ-E-FAN", 
        "vendorid": "N/A", 
        "serialnum": "N/A"
      }, 
      {
        "name": "\"FEX 105 Fan 2\"", 
        "desc": "\"Fabric Extender Fan module\"", 
        "productid": "N2K-2348TQ-E-FAN", 
        "vendorid": "N/A", 
        "serialnum": "N/A"
      }, 
      {
        "name": "\"FEX 105 Fan 3\"", 
        "desc": "\"Fabric Extender Fan module\"", 
        "productid": "N2K-2348TQ-E-FAN", 
        "vendorid": "N/A", 
        "serialnum": "N/A"
      }, 
      {
        "name": "\"FEX 105 Power Supply 1\"", 
        "desc": "\"Fabric Extender AC power supply\"", 
        "productid": "N2200-PAC-400W", 
        "vendorid": "V05", 
        "serialnum": "LIT200103NC"
      }, 
      {
        "name": "\"FEX 105 Power Supply 2\"", 
        "desc": "\"Fabric Extender AC power supply\"", 
        "productid": "N2200-PAC-400W", 
        "vendorid": "V05", 
        "serialnum": "LIT200103V7"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <inventory>
    <fex>
     <__XML__PARAM__i>
      <__XML__value>105</__XML__value>
      <__readonly__>
       <TABLE_inv>
        <ROW_inv>
         <name>&quot;FEX 105 CHASSIS&quot;</name>
         <desc>&quot;N2K-C2348TQ-10G-E  CHASSIS&quot;</desc>
         <productid>N2K-C2348TQ-10G-E</productid>
         <vendorid>V00</vendorid>
         <serialnum>FOC2003R0EJ</serialnum>
        </ROW_inv>
        <ROW_inv>
         <name>&quot;FEX 105 Module 1&quot;</name>
         <desc>&quot;Fabric Extender Module: 48x10GE, 24x10GE/6x40G QSFP Supervisor&quot;</desc>
         <productid>N2K-C2348TQ-10G-E</productid>
         <vendorid>V00</vendorid>
         <serialnum>FOC20025JLX</serialnum>
        </ROW_inv>
        <ROW_inv>
         <name>&quot;FEX 105 Fan 1&quot;</name>
         <desc>&quot;Fabric Extender Fan module&quot;</desc>
         <productid>N2K-2348TQ-E-FAN</productid>
         <vendorid>N/A</vendorid>
         <serialnum>N/A</serialnum>
        </ROW_inv>
        <ROW_inv>
         <name>&quot;FEX 105 Fan 2&quot;</name>
         <desc>&quot;Fabric Extender Fan module&quot;</desc>
         <productid>N2K-2348TQ-E-FAN</productid>
         <vendorid>N/A</vendorid>
         <serialnum>N/A</serialnum>
        </ROW_inv>
        <ROW_inv>
         <name>&quot;FEX 105 Fan 3&quot;</name>
         <desc>&quot;Fabric Extender Fan module&quot;</desc>
         <productid>N2K-2348TQ-E-FAN</productid>
         <vendorid>N/A</vendorid>
         <serialnum>N/A</serialnum>
        </ROW_inv>
        <ROW_inv>
         <name>&quot;FEX 105 Power Supply 1&quot;</name>
         <desc>&quot;Fabric Extender AC power supply&quot;</desc>
         <productid>N2200-PAC-400W</productid>
         <vendorid>V05</vendorid>
         <serialnum>LIT200103NC</serialnum>
        </ROW_inv>
        <ROW_inv>
         <name>&quot;FEX 105 Power Supply 2&quot;</name>
         <desc>&quot;Fabric Extender AC power supply&quot;</desc>
         <productid>N2200-PAC-400W</productid>
         <vendorid>V05</vendorid>
         <serialnum>LIT200103V7</serialnum>
        </ROW_inv>
       </TABLE_inv>
      </__readonly__>
     </__XML__PARAM__i>
    </fex>
   </inventory>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show inventory fex 105**

NAME: "FEX 105 CHASSIS",  DESCR: "N2K-C2348TQ-10G-E  CHASSIS"            
PID: N2K-C2348TQ-10G-E   ,  VID: V00 ,  SN: FOC2003R0EJ          

NAME: "FEX 105 Module 1", DESCR: "Fabric Extender Module: 48x10GE, 24x10GE/6x40G QSFP Supervisor" PID: N2K-C2348TQ-10G-E , VID: V00 , SN: FOC20025JLX

NAME: "FEX 105 Fan 1", DESCR: "Fabric Extender Fan module"
PID: N2K-2348TQ-E-FAN , VID: N/A , SN: N/A

NAME: "FEX 105 Fan 2", DESCR: "Fabric Extender Fan module"
PID: N2K-2348TQ-E-FAN , VID: N/A , SN: N/A

NAME: "FEX 105 Fan 3", DESCR: "Fabric Extender Fan module"
PID: N2K-2348TQ-E-FAN , VID: N/A , SN: N/A

NAME: "FEX 105 Power Supply 1", DESCR: "Fabric Extender AC power supply"
PID: N2200-PAC-400W , VID: V05 , SN: LIT200103NC

NAME: "FEX 105 Power Supply 2", DESCR: "Fabric Extender AC power supply"
PID: N2200-PAC-400W , VID: V05 , SN: LIT200103V7

show locator-led fex status

show locator-led fex status 
 
import requests
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 locator-led fex status”,
  "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)
{
  "TABLE_locator_fex_status": {
    "ROW_locator_fex_status": [
      {
        "component": 104, 
        "locator_led_status": "Off"
      }, 
      {
        "component": 105, 
        "locator_led_status": "Off"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <locator-led>
    <fex>
     <status>
      <__readonly__>
       <TABLE_locator_fex_status>
        <ROW_locator_fex_status>
         <component>104</component>
         <locator_led_status>Off</locator_led_status>
        </ROW_locator_fex_status>
        <ROW_locator_fex_status>
         <component>105</component>
         <locator_led_status>Off</locator_led_status>
        </ROW_locator_fex_status>
       </TABLE_locator_fex_status>
      </__readonly__>
     </status>
    </fex>
   </locator-led>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show locator-led fex status

Component        Locator LED Status

FEX 104 Off FEX 105 Off

show module fex all

show module fex all
 
import requests
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 module fex all”,
  "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)
{
  "TABLE_modinfo": {
    "ROW_modinfo": [
      {
        "fexinf": 104, 
        "modinf": 1, 
        "ports": 48, 
        "modtype": "Fabric Extender 48x10GE + 6x40GE Module", 
        "model": "N2K-C2348TQ-10G-E", 
        "status": "ok", 
        "modwwn": 1, 
        "sw": "8.3(1)", 
        "hw": "0.311", 
        "wwn": "--", 
        "modmac": 1, 
        "mac": "dceb.9465.5ba0 to dceb.9465.5bdf", 
        "serialnum": "FOC2003R15W"
      }, 
      {
        "fexinf": 105, 
        "modinf": 1, 
        "ports": 48, 
        "modtype": "Fabric Extender 48x10GE + 6x40GE Module", 
        "model": "N2K-C2348TQ-10G-E", 
        "status": "ok", 
        "modwwn": 1, 
        "sw": "8.3(1)", 
        "hw": "0.311", 
        "wwn": "--", 
        "modmac": 1, 
        "mac": "dceb.9456.3de0 to dceb.9456.3e1f", 
        "serialnum": "FOC2003R0EJ"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <module>
    <fex>
     <all>
      <__readonly__>
       <TABLE_modinfo>
        <ROW_modinfo>
         <fexinf>104</fexinf>
         <modinf>1</modinf>
         <ports>48</ports>
         <modtype>Fabric Extender 48x10GE + 6x40GE Module</modtype>
         <model>N2K-C2348TQ-10G-E</model>
         <status>ok</status>
         <modwwn>1</modwwn>
         <sw>8.3(1)</sw>
         <hw>0.311</hw>
         <wwn>--</wwn>
         <modmac>1</modmac>
         <mac>dceb.9465.5ba0 to dceb.9465.5bdf</mac>
         <serialnum>FOC2003R15W</serialnum>
        </ROW_modinfo>
        <ROW_modinfo>
         <fexinf>105</fexinf>
         <modinf>1</modinf>
         <ports>48</ports>
         <modtype>Fabric Extender 48x10GE + 6x40GE Module</modtype>
         <model>N2K-C2348TQ-10G-E</model>
         <status>ok</status>
         <modwwn>1</modwwn>
         <sw>8.3(1)</sw>
         <hw>0.311</hw>
         <wwn>--</wwn>
         <modmac>1</modmac>
         <mac>dceb.9456.3de0 to dceb.9456.3e1f</mac>
         <serialnum>FOC2003R0EJ</serialnum>
        </ROW_modinfo>
       </TABLE_modinfo>
      </__readonly__>
     </all>
    </fex>
   </module>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show module fex all**

FEX Mod Ports Card Type                          Model              Status.
--- --- ----- ---------------------------------- ------------------ -----------
104  1  48    Fabric Extender 48x10GE + 6x40GE   N2K-C2348TQ-10G-E  ok

FEX Mod Sw Hw World-Wide-Name(s) (WWN)


104 1 8.3(1) 0.311 --
FEX Mod MAC-Address(es) Serial-Num


104 1 dceb.9465.5ba0 to dceb.9465.5bdf FOC2003R15W

FEX Mod Ports Card Type Model Status.


105 1 48 Fabric Extender 48x10GE + 6x40GE N2K-C2348TQ-10G-E ok

FEX Mod Sw Hw World-Wide-Name(s) (WWN)


105 1 8.3(1) 0.311 --
FEX Mod MAC-Address(es) Serial-Num


105 1 dceb.9456.3de0 to dceb.9456.3e1f FOC2003R0EJ

show sprom fex all

show sprom fex all 
 
import requests
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 sprom fex all”,
  "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)
{
  "TABLE_FEX": {
    "ROW_FEX": [
      {
        "fex_id": 104, 
        "sup_blk_sig_info": "0xabab", 
        "sup_blk_version_info": 3, 
        "sup_blk_length_info": 160, 
        "sup_blk_checksum_info": "0x1973", 
        "sup_eeprom_size": 65535, 
        "sup_block_count": 3, 
        "sup_fru_major_type": "0x6002", 
        "sup_fru_minor_type": "0x0", 
        "sup_oem_string": "Cisco Systems, Inc.", 
        "sup_product_num": "N2K-C2348TQ-10G-E", 
        "sup_serial_num": "FOC20028DYQ", 
        "sup_part_num": "73-17624-03", 
        "sup_part_revision": "05", 
        "sup_mfg_dev": "0", 
        "sup_hardw_ver": 0, 
        "sup_hardw_ver_min": 311, 
        "sup_mfg_bits": 0, 
        "sup_eng_use": 0, 
        "sup_snmp_oid": "9.12.3.1.9.78.20.0", 
        "sup_power_consum": 2000, 
        "sup_rma_code": "0-0-0-0", 
        "sup_clei_code": "CMMUP00BRA", 
        "sup_vid": "V00", 
        "sup_blk_sig": "0x6002", 
        "sup_blk_ver": 2, 
        "sup_blk_len": 103, 
        "sup_blk_check": "0x25e8", 
        "sup_feature_bit": "0x0", 
        "sup_hw_change_bit": "0xa00", 
        "sup_card_index": 11139, 
        "sup_mac_addrs": "00-00-00-00-00-00", 
        "sup_num_of_mac": 0, 
        "sup_num_of_epld": 0, 
        "sup_port_type_num": "1-8", 
        "TABLE_sup_sen": {
          "ROW_sup_sen": [
            {
              "id": 1, 
              "major_no": 55, 
              "minor_no": 48
            }, 
            {
              "id": 2, 
              "major_no": 70, 
              "minor_no": 65
            }, 
            {
              "id": 3, 
              "major_no": -128, 
              "minor_no": -128
            }, 
            {
              "id": 4, 
              "major_no": -128, 
              "minor_no": -128
            }, 
            {
              "id": 5, 
              "major_no": 65, 
              "minor_no": 50
            }, 
            {
              "id": 6, 
              "major_no": 80, 
              "minor_no": 73
            }, 
            {
              "id": 7, 
              "major_no": -128, 
              "minor_no": -128
            }, 
            {
              "id": 8, 
              "major_no": -128, 
              "minor_no": -128
            }
          ]
        }, 
        "sup_max_power_con": 3333, 
        "sup_cool_req": 65, 
        "sup_ambient_temp": 45, 
        "blk_sig_info": "0xabab", 
        "blk_version_info": 3, 
        "blk_length_info": 160, 
        "blk_checksum_info": "0x1892", 
        "eeprom_size": 65535, 
        "block_count": 5, 
        "fru_major_type": "0x6001", 
        "fru_minor_type": "0x0", 
        "oem_string": "Cisco Systems, Inc.", 
        "product_num": "N2K-C2348TQ-10G-E", 
        "serial_num": "FOC2003R15W", 
        "part_num": "68-5793-01", 
        "part_revision": "17", 
        "mfg_dev": "0", 
        "hardw_ver": 0, 
        "hardw_ver_min": 311, 
        "mfg_bits": 0, 
        "eng_use": 0, 
        "snmp_oid": "9.12.3.1.3.1684.0.0", 
        "power_consum": 0, 
        "rma_code": "0-0-0-0", 
        "clei_code": "CMMUP00BRA", 
        "vid": "V00", 
        "chs_blk_sig": "0x", 
        "chs_blk_ver": 3, 
        "chs_blk_len": 39, 
        "chs_blk_chk": "0x486", 
        "feature_bits": "0x0", 
        "hw_change_bits": "0x0", 
        "stack_mib": 0, 
        "mac_address": "dc-eb-94-65-5b-a0", 
        "number_of_mac": 64, 
        "oem_enter": 0, 
        "oem_mib_offs": 0, 
        "max_conne": 0, 
        "wwn_blk_sig": "0x6005", 
        "wwn_blk_ver": 1, 
        "wwn_blk_len": 0, 
        "wwn_blk_chk": "0x66", 
        "TABLE_usage": {
          "ROW_usage": [
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }
          ]
        }, 
        "ls_blk_sig": "0x6006", 
        "ls_blk_ver": 1, 
        "ls_blk_len": 16, 
        "ls_blk_chk": "0x77", 
        "TABLE_lic_usage": {
          "ROW_lic_usage": [
            {
              "li_use_val": "00"
            }, 
            {
              "li_use_val": "00"
            }, 
            {
              "li_use_val": "00"
            }, 
            {
              "li_use_val": "00"
            }, 
            {
              "li_use_val": "00"
            }, 
            {
              "li_use_val": "00"
            }, 
            {
              "li_use_val": "00"
            }, 
            {
              "li_use_val": "00"
            }
          ]
        }, 
        "TABLE_power": {
          "ROW_power": [
            {
              "pow_count": 1, 
              "pow_blk_sig_info": "0xabab", 
              "pow_blk_version_info": 3, 
              "pow_blk_length_info": 160, 
              "pow_blk_checksum_info": "0x1834", 
              "pow_eeprom_size": 65535, 
              "pow_block_count": 2, 
              "pow_fru_major_type": "0xab01", 
              "pow_fru_minor_type": "0x0", 
              "pow_oem_string": "Cisco Systems, Inc.", 
              "pow_product_num": "N2200-PAC-400W", 
              "pow_serial_num": "LIT20020BE4", 
              "pow_part_num": "341-0375-07", 
              "pow_part_revision": "A0", 
              "pow_mfg_dev": null, 
              "pow_hardw_ver": 4, 
              "pow_hardw_ver_min": 0, 
              "pow_mfg_bits": 0, 
              "pow_eng_use": 0, 
              "pow_snmp_oid": "9.12.3.1.6.273.0.0", 
              "pow_current": 3300, 
              "pow_rma_code": "0-0-0-0", 
              "pow_clei_code": "COUPAG3BAA", 
              "pow_vid": "V05"
            }, 
            {
              "pow_count": 2, 
              "pow_blk_sig_info": "0xabab", 
              "pow_blk_version_info": 3, 
              "pow_blk_length_info": 160, 
              "pow_blk_checksum_info": "0x1840", 
              "pow_eeprom_size": 65535, 
              "pow_block_count": 2, 
              "pow_fru_major_type": "0xab01", 
              "pow_fru_minor_type": "0x0", 
              "pow_oem_string": "Cisco Systems, Inc.", 
              "pow_product_num": "N2200-PAC-400W", 
              "pow_serial_num": "LIT20020B4Q", 
              "pow_part_num": "341-0375-07", 
              "pow_part_revision": "A0", 
              "pow_mfg_dev": null, 
              "pow_hardw_ver": 4, 
              "pow_hardw_ver_min": 0, 
              "pow_mfg_bits": 0, 
              "pow_eng_use": 0, 
              "pow_snmp_oid": "9.12.3.1.6.273.0.0", 
              "pow_current": 3300, 
              "pow_rma_code": "0-0-0-0", 
              "pow_clei_code": "COUPAG3BAA", 
              "pow_vid": "V05"
            }
          ]
        }
      }, 
      {
        "fex_id": 105, 
        "sup_blk_sig_info": "0xabab", 
        "sup_blk_version_info": 3, 
        "sup_blk_length_info": 160, 
        "sup_blk_checksum_info": "0x1970", 
        "sup_eeprom_size": 65535, 
        "sup_block_count": 3, 
        "sup_fru_major_type": "0x6002", 
        "sup_fru_minor_type": "0x0", 
        "sup_oem_string": "Cisco Systems, Inc.", 
        "sup_product_num": "N2K-C2348TQ-10G-E", 
        "sup_serial_num": "FOC20025JLX", 
        "sup_part_num": "73-17624-03", 
        "sup_part_revision": "05", 
        "sup_mfg_dev": "0", 
        "sup_hardw_ver": 0, 
        "sup_hardw_ver_min": 311, 
        "sup_mfg_bits": 0, 
        "sup_eng_use": 0, 
        "sup_snmp_oid": "9.12.3.1.9.78.20.0", 
        "sup_power_consum": 2000, 
        "sup_rma_code": "0-0-0-0", 
        "sup_clei_code": "CMMUP00BRA", 
        "sup_vid": "V00", 
        "sup_blk_sig": "0x6002", 
        "sup_blk_ver": 2, 
        "sup_blk_len": 103, 
        "sup_blk_check": "0x25e8", 
        "sup_feature_bit": "0x0", 
        "sup_hw_change_bit": "0xa00", 
        "sup_card_index": 11139, 
        "sup_mac_addrs": "00-00-00-00-00-00", 
        "sup_num_of_mac": 0, 
        "sup_num_of_epld": 0, 
        "sup_port_type_num": "1-8", 
        "TABLE_sup_sen": {
          "ROW_sup_sen": [
            {
              "id": 1, 
              "major_no": 55, 
              "minor_no": 48
            }, 
            {
              "id": 2, 
              "major_no": 70, 
              "minor_no": 65
            }, 
            {
              "id": 3, 
              "major_no": -128, 
              "minor_no": -128
            }, 
            {
              "id": 4, 
              "major_no": -128, 
              "minor_no": -128
            }, 
            {
              "id": 5, 
              "major_no": 65, 
              "minor_no": 50
            }, 
            {
              "id": 6, 
              "major_no": 80, 
              "minor_no": 73
            }, 
            {
              "id": 7, 
              "major_no": -128, 
              "minor_no": -128
            }, 
            {
              "id": 8, 
              "major_no": -128, 
              "minor_no": -128
            }
          ]
        }, 
        "sup_max_power_con": 3333, 
        "sup_cool_req": 65, 
        "sup_ambient_temp": 45, 
        "blk_sig_info": "0xabab", 
        "blk_version_info": 3, 
        "blk_length_info": 160, 
        "blk_checksum_info": "0x1894", 
        "eeprom_size": 65535, 
        "block_count": 5, 
        "fru_major_type": "0x6001", 
        "fru_minor_type": "0x0", 
        "oem_string": "Cisco Systems, Inc.", 
        "product_num": "N2K-C2348TQ-10G-E", 
        "serial_num": "FOC2003R0EJ", 
        "part_num": "68-5793-01", 
        "part_revision": "17", 
        "mfg_dev": "0", 
        "hardw_ver": 0, 
        "hardw_ver_min": 311, 
        "mfg_bits": 0, 
        "eng_use": 0, 
        "snmp_oid": "9.12.3.1.3.1684.0.0", 
        "power_consum": 0, 
        "rma_code": "0-0-0-0", 
        "clei_code": "CMMUP00BRA", 
        "vid": "V00", 
        "chs_blk_sig": "0x", 
        "chs_blk_ver": 3, 
        "chs_blk_len": 39, 
        "chs_blk_chk": "0x499", 
        "feature_bits": "0x0", 
        "hw_change_bits": "0x0", 
        "stack_mib": 0, 
        "mac_address": "dc-eb-94-56-3d-e0", 
        "number_of_mac": 64, 
        "oem_enter": 0, 
        "oem_mib_offs": 0, 
        "max_conne": 0, 
        "wwn_blk_sig": "0x6005", 
        "wwn_blk_ver": 1, 
        "wwn_blk_len": 0, 
        "wwn_blk_chk": "0x66", 
        "TABLE_usage": {
          "ROW_usage": [
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }, 
            {
              "wn_usg_bit": "00"
            }
          ]
        }, 
        "ls_blk_sig": "0x6006", 
        "ls_blk_ver": 1, 
        "ls_blk_len": 16, 
        "ls_blk_chk": "0x77", 
        "TABLE_lic_usage": {
          "ROW_lic_usage": [
            {
              "li_use_val": "00"
            }, 
            {
              "li_use_val": "00"
            }, 
            {
              "li_use_val": "00"
            }, 
            {
              "li_use_val": "00"
            }, 
            {
              "li_use_val": "00"
            }, 
            {
              "li_use_val": "00"
            }, 
            {
              "li_use_val": "00"
            }, 
            {
              "li_use_val": "00"
            }
          ]
        }, 
        "TABLE_power": {
          "ROW_power": [
            {
              "pow_count": 1, 
              "pow_blk_sig_info": "0xabab", 
              "pow_blk_version_info": 3, 
              "pow_blk_length_info": 160, 
              "pow_blk_checksum_info": "0x183c", 
              "pow_eeprom_size": 65535, 
              "pow_block_count": 2, 
              "pow_fru_major_type": "0xab01", 
              "pow_fru_minor_type": "0x0", 
              "pow_oem_string": "Cisco Systems, Inc.", 
              "pow_product_num": "N2200-PAC-400W", 
              "pow_serial_num": "LIT200103NC", 
              "pow_part_num": "341-0375-07", 
              "pow_part_revision": "A0", 
              "pow_mfg_dev": null, 
              "pow_hardw_ver": 4, 
              "pow_hardw_ver_min": 0, 
              "pow_mfg_bits": 0, 
              "pow_eng_use": 0, 
              "pow_snmp_oid": "9.12.3.1.6.273.0.0", 
              "pow_current": 3300, 
              "pow_rma_code": "0-0-0-0", 
              "pow_clei_code": "COUPAG3BAA", 
              "pow_vid": "V05"
            }, 
            {
              "pow_count": 2, 
              "pow_blk_sig_info": "0xabab", 
              "pow_blk_version_info": 3, 
              "pow_blk_length_info": 160, 
              "pow_blk_checksum_info": "0x1838", 
              "pow_eeprom_size": 65535, 
              "pow_block_count": 2, 
              "pow_fru_major_type": "0xab01", 
              "pow_fru_minor_type": "0x0", 
              "pow_oem_string": "Cisco Systems, Inc.", 
              "pow_product_num": "N2200-PAC-400W", 
              "pow_serial_num": "LIT200103V7", 
              "pow_part_num": "341-0375-07", 
              "pow_part_revision": "A0", 
              "pow_mfg_dev": null, 
              "pow_hardw_ver": 4, 
              "pow_hardw_ver_min": 0, 
              "pow_mfg_bits": 0, 
              "pow_eng_use": 0, 
              "pow_snmp_oid": "9.12.3.1.6.273.0.0", 
              "pow_current": 3300, 
              "pow_rma_code": "0-0-0-0", 
              "pow_clei_code": "COUPAG3BAA", 
              "pow_vid": "V05"
            }
          ]
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <sprom>
    <fex>
     <all>
      <__readonly__>
       <TABLE_FEX>
        <ROW_FEX>
         <fex_id>104</fex_id>
         <sup_blk_sig_info>0xabab</sup_blk_sig_info>
         <sup_blk_version_info>3</sup_blk_version_info>
         <sup_blk_length_info>160</sup_blk_length_info>
         <sup_blk_checksum_info>0x1973</sup_blk_checksum_info>
         <sup_eeprom_size>65535</sup_eeprom_size>
         <sup_block_count>3</sup_block_count>
         <sup_fru_major_type>0x6002</sup_fru_major_type>
         <sup_fru_minor_type>0x0</sup_fru_minor_type>
         <sup_oem_string>Cisco Systems, Inc.</sup_oem_string>
         <sup_product_num>N2K-C2348TQ-10G-E</sup_product_num>
         <sup_serial_num>FOC20028DYQ</sup_serial_num>
         <sup_part_num>73-17624-03</sup_part_num>
         <sup_part_revision>05</sup_part_revision>
         <sup_mfg_dev>0</sup_mfg_dev>
         <sup_hardw_ver>0</sup_hardw_ver>
         <sup_hardw_ver_min>311</sup_hardw_ver_min>
         <sup_mfg_bits>0</sup_mfg_bits>
         <sup_eng_use>0</sup_eng_use>
         <sup_snmp_oid>9.12.3.1.9.78.20.0</sup_snmp_oid>
         <sup_power_consum>2000</sup_power_consum>
         <sup_rma_code>0-0-0-0</sup_rma_code>
         <sup_clei_code>CMMUP00BRA</sup_clei_code>
         <sup_vid>V00</sup_vid>
         <sup_blk_sig>0x6002</sup_blk_sig>
         <sup_blk_ver>2</sup_blk_ver>
         <sup_blk_len>103</sup_blk_len>
         <sup_blk_check>0x25e8</sup_blk_check>
         <sup_feature_bit>0x0</sup_feature_bit>
         <sup_hw_change_bit>0xa00</sup_hw_change_bit>
         <sup_card_index>11139</sup_card_index>
         <sup_mac_addrs>00-00-00-00-00-00</sup_mac_addrs>
         <sup_num_of_mac>0</sup_num_of_mac>
         <sup_num_of_epld>0</sup_num_of_epld>
         <sup_port_type_num>1-8</sup_port_type_num>
         <TABLE_sup_sen>
          <ROW_sup_sen>
           <id>1</id>
           <major_no>55</major_no>
           <minor_no>48</minor_no>
          </ROW_sup_sen>
          <ROW_sup_sen>
           <id>2</id>
           <major_no>70</major_no>
           <minor_no>65</minor_no>
          </ROW_sup_sen>
          <ROW_sup_sen>
           <id>3</id>
           <major_no>-128</major_no>
           <minor_no>-128</minor_no>
          </ROW_sup_sen>
          <ROW_sup_sen>
           <id>4</id>
           <major_no>-128</major_no>
           <minor_no>-128</minor_no>
          </ROW_sup_sen>
          <ROW_sup_sen>
           <id>5</id>
           <major_no>65</major_no>
           <minor_no>50</minor_no>
          </ROW_sup_sen>
          <ROW_sup_sen>
           <id>6</id>
           <major_no>80</major_no>
           <minor_no>73</minor_no>
          </ROW_sup_sen>
          <ROW_sup_sen>
           <id>7</id>
           <major_no>-128</major_no>
           <minor_no>-128</minor_no>
          </ROW_sup_sen>
          <ROW_sup_sen>
           <id>8</id>
           <major_no>-128</major_no>
           <minor_no>-128</minor_no>
          </ROW_sup_sen>
         </TABLE_sup_sen>
         <sup_max_power_con>3333</sup_max_power_con>
         <sup_cool_req>65</sup_cool_req>
         <sup_ambient_temp>45</sup_ambient_temp>
         <blk_sig_info>0xabab</blk_sig_info>
         <blk_version_info>3</blk_version_info>
         <blk_length_info>160</blk_length_info>
         <blk_checksum_info>0x1892</blk_checksum_info>
         <eeprom_size>65535</eeprom_size>
         <block_count>5</block_count>
         <fru_major_type>0x6001</fru_major_type>
         <fru_minor_type>0x0</fru_minor_type>
         <oem_string>Cisco Systems, Inc.</oem_string>
         <product_num>N2K-C2348TQ-10G-E</product_num>
         <serial_num>FOC2003R15W</serial_num>
         <part_num>68-5793-01</part_num>
         <part_revision>17</part_revision>
         <mfg_dev>0</mfg_dev>
         <hardw_ver>0</hardw_ver>
         <hardw_ver_min>311</hardw_ver_min>
         <mfg_bits>0</mfg_bits>
         <eng_use>0</eng_use>
         <snmp_oid>9.12.3.1.3.1684.0.0</snmp_oid>
         <power_consum>0</power_consum>
         <rma_code>0-0-0-0</rma_code>
         <clei_code>CMMUP00BRA</clei_code>
         <vid>V00</vid>
         <chs_blk_sig>0x</chs_blk_sig>
         <chs_blk_ver>3</chs_blk_ver>
         <chs_blk_len>39</chs_blk_len>
         <chs_blk_chk>0x486</chs_blk_chk>
         <feature_bits>0x0</feature_bits>
         <hw_change_bits>0x0</hw_change_bits>
         <stack_mib>0</stack_mib>
         <mac_address>dc-eb-94-65-5b-a0</mac_address>
         <number_of_mac>64</number_of_mac>
         <oem_enter>0</oem_enter>
         <oem_mib_offs>0</oem_mib_offs>
         <max_conne>0</max_conne>
         <wwn_blk_sig>0x6005</wwn_blk_sig>
         <wwn_blk_ver>1</wwn_blk_ver>
         <wwn_blk_len>0</wwn_blk_len>
         <wwn_blk_chk>0x66</wwn_blk_chk>
         <TABLE_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
         </TABLE_usage>
         <ls_blk_sig>0x6006</ls_blk_sig>
         <ls_blk_ver>1</ls_blk_ver>
         <ls_blk_len>16</ls_blk_len>
         <ls_blk_chk>0x77</ls_blk_chk>
         <TABLE_lic_usage>
          <ROW_lic_usage>
           <li_use_val>00</li_use_val>
          </ROW_lic_usage>
          <ROW_lic_usage>
           <li_use_val>00</li_use_val>
          </ROW_lic_usage>
          <ROW_lic_usage>
           <li_use_val>00</li_use_val>
          </ROW_lic_usage>
          <ROW_lic_usage>
           <li_use_val>00</li_use_val>
          </ROW_lic_usage>
          <ROW_lic_usage>
           <li_use_val>00</li_use_val>
          </ROW_lic_usage>
          <ROW_lic_usage>
           <li_use_val>00</li_use_val>
          </ROW_lic_usage>
          <ROW_lic_usage>
           <li_use_val>00</li_use_val>
          </ROW_lic_usage>
          <ROW_lic_usage>
           <li_use_val>00</li_use_val>
          </ROW_lic_usage>
         </TABLE_lic_usage>
         <TABLE_power>
          <ROW_power>
           <pow_count>1</pow_count>
           <pow_blk_sig_info>0xabab</pow_blk_sig_info>
           <pow_blk_version_info>3</pow_blk_version_info>
           <pow_blk_length_info>160</pow_blk_length_info>
           <pow_blk_checksum_info>0x1834</pow_blk_checksum_info>
           <pow_eeprom_size>65535</pow_eeprom_size>
           <pow_block_count>2</pow_block_count>
           <pow_fru_major_type>0xab01</pow_fru_major_type>
           <pow_fru_minor_type>0x0</pow_fru_minor_type>
           <pow_oem_string>Cisco Systems, Inc.</pow_oem_string>
           <pow_product_num>N2200-PAC-400W</pow_product_num>
           <pow_serial_num>LIT20020BE4</pow_serial_num>
           <pow_part_num>341-0375-07</pow_part_num>
           <pow_part_revision>A0</pow_part_revision>
           <pow_mfg_dev></pow_mfg_dev>
           <pow_hardw_ver>4</pow_hardw_ver>
           <pow_hardw_ver_min>0</pow_hardw_ver_min>
           <pow_mfg_bits>0</pow_mfg_bits>
           <pow_eng_use>0</pow_eng_use>
           <pow_snmp_oid>9.12.3.1.6.273.0.0</pow_snmp_oid>
           <pow_current>3300</pow_current>
           <pow_rma_code>0-0-0-0</pow_rma_code>
           <pow_clei_code>COUPAG3BAA</pow_clei_code>
           <pow_vid>V05</pow_vid>
          </ROW_power>
          <ROW_power>
           <pow_count>2</pow_count>
           <pow_blk_sig_info>0xabab</pow_blk_sig_info>
           <pow_blk_version_info>3</pow_blk_version_info>
           <pow_blk_length_info>160</pow_blk_length_info>
           <pow_blk_checksum_info>0x1840</pow_blk_checksum_info>
           <pow_eeprom_size>65535</pow_eeprom_size>
           <pow_block_count>2</pow_block_count>
           <pow_fru_major_type>0xab01</pow_fru_major_type>
           <pow_fru_minor_type>0x0</pow_fru_minor_type>
           <pow_oem_string>Cisco Systems, Inc.</pow_oem_string>
           <pow_product_num>N2200-PAC-400W</pow_product_num>
           <pow_serial_num>LIT20020B4Q</pow_serial_num>
           <pow_part_num>341-0375-07</pow_part_num>
           <pow_part_revision>A0</pow_part_revision>
           <pow_mfg_dev></pow_mfg_dev>
           <pow_hardw_ver>4</pow_hardw_ver>
           <pow_hardw_ver_min>0</pow_hardw_ver_min>
           <pow_mfg_bits>0</pow_mfg_bits>
           <pow_eng_use>0</pow_eng_use>
           <pow_snmp_oid>9.12.3.1.6.273.0.0</pow_snmp_oid>
           <pow_current>3300</pow_current>
           <pow_rma_code>0-0-0-0</pow_rma_code>
           <pow_clei_code>COUPAG3BAA</pow_clei_code>
           <pow_vid>V05</pow_vid>
          </ROW_power>
         </TABLE_power>
        </ROW_FEX>
        <ROW_FEX>
         <fex_id>105</fex_id>
         <sup_blk_sig_info>0xabab</sup_blk_sig_info>
         <sup_blk_version_info>3</sup_blk_version_info>
         <sup_blk_length_info>160</sup_blk_length_info>
         <sup_blk_checksum_info>0x1970</sup_blk_checksum_info>
         <sup_eeprom_size>65535</sup_eeprom_size>
         <sup_block_count>3</sup_block_count>
         <sup_fru_major_type>0x6002</sup_fru_major_type>
         <sup_fru_minor_type>0x0</sup_fru_minor_type>
         <sup_oem_string>Cisco Systems, Inc.</sup_oem_string>
         <sup_product_num>N2K-C2348TQ-10G-E</sup_product_num>
         <sup_serial_num>FOC20025JLX</sup_serial_num>
         <sup_part_num>73-17624-03</sup_part_num>
         <sup_part_revision>05</sup_part_revision>
         <sup_mfg_dev>0</sup_mfg_dev>
         <sup_hardw_ver>0</sup_hardw_ver>
         <sup_hardw_ver_min>311</sup_hardw_ver_min>
         <sup_mfg_bits>0</sup_mfg_bits>
         <sup_eng_use>0</sup_eng_use>
         <sup_snmp_oid>9.12.3.1.9.78.20.0</sup_snmp_oid>
         <sup_power_consum>2000</sup_power_consum>
         <sup_rma_code>0-0-0-0</sup_rma_code>
         <sup_clei_code>CMMUP00BRA</sup_clei_code>
         <sup_vid>V00</sup_vid>
         <sup_blk_sig>0x6002</sup_blk_sig>
         <sup_blk_ver>2</sup_blk_ver>
         <sup_blk_len>103</sup_blk_len>
         <sup_blk_check>0x25e8</sup_blk_check>
         <sup_feature_bit>0x0</sup_feature_bit>
         <sup_hw_change_bit>0xa00</sup_hw_change_bit>
         <sup_card_index>11139</sup_card_index>
         <sup_mac_addrs>00-00-00-00-00-00</sup_mac_addrs>
         <sup_num_of_mac>0</sup_num_of_mac>
         <sup_num_of_epld>0</sup_num_of_epld>
         <sup_port_type_num>1-8</sup_port_type_num>
         <TABLE_sup_sen>
          <ROW_sup_sen>
           <id>1</id>
           <major_no>55</major_no>
           <minor_no>48</minor_no>
          </ROW_sup_sen>
          <ROW_sup_sen>
           <id>2</id>
           <major_no>70</major_no>
           <minor_no>65</minor_no>
          </ROW_sup_sen>
          <ROW_sup_sen>
           <id>3</id>
           <major_no>-128</major_no>
           <minor_no>-128</minor_no>
          </ROW_sup_sen>
          <ROW_sup_sen>
           <id>4</id>
           <major_no>-128</major_no>
           <minor_no>-128</minor_no>
          </ROW_sup_sen>
          <ROW_sup_sen>
           <id>5</id>
           <major_no>65</major_no>
           <minor_no>50</minor_no>
          </ROW_sup_sen>
          <ROW_sup_sen>
           <id>6</id>
           <major_no>80</major_no>
           <minor_no>73</minor_no>
          </ROW_sup_sen>
          <ROW_sup_sen>
           <id>7</id>
           <major_no>-128</major_no>
           <minor_no>-128</minor_no>
          </ROW_sup_sen>
          <ROW_sup_sen>
           <id>8</id>
           <major_no>-128</major_no>
           <minor_no>-128</minor_no>
          </ROW_sup_sen>
         </TABLE_sup_sen>
         <sup_max_power_con>3333</sup_max_power_con>
         <sup_cool_req>65</sup_cool_req>
         <sup_ambient_temp>45</sup_ambient_temp>
         <blk_sig_info>0xabab</blk_sig_info>
         <blk_version_info>3</blk_version_info>
         <blk_length_info>160</blk_length_info>
         <blk_checksum_info>0x1894</blk_checksum_info>
         <eeprom_size>65535</eeprom_size>
         <block_count>5</block_count>
         <fru_major_type>0x6001</fru_major_type>
         <fru_minor_type>0x0</fru_minor_type>
         <oem_string>Cisco Systems, Inc.</oem_string>
         <product_num>N2K-C2348TQ-10G-E</product_num>
         <serial_num>FOC2003R0EJ</serial_num>
         <part_num>68-5793-01</part_num>
         <part_revision>17</part_revision>
         <mfg_dev>0</mfg_dev>
         <hardw_ver>0</hardw_ver>
         <hardw_ver_min>311</hardw_ver_min>
         <mfg_bits>0</mfg_bits>
         <eng_use>0</eng_use>
         <snmp_oid>9.12.3.1.3.1684.0.0</snmp_oid>
         <power_consum>0</power_consum>
         <rma_code>0-0-0-0</rma_code>
         <clei_code>CMMUP00BRA</clei_code>
         <vid>V00</vid>
         <chs_blk_sig>0x</chs_blk_sig>
         <chs_blk_ver>3</chs_blk_ver>
         <chs_blk_len>39</chs_blk_len>
         <chs_blk_chk>0x499</chs_blk_chk>
         <feature_bits>0x0</feature_bits>
         <hw_change_bits>0x0</hw_change_bits>
         <stack_mib>0</stack_mib>
         <mac_address>dc-eb-94-56-3d-e0</mac_address>
         <number_of_mac>64</number_of_mac>
         <oem_enter>0</oem_enter>
         <oem_mib_offs>0</oem_mib_offs>
         <max_conne>0</max_conne>
         <wwn_blk_sig>0x6005</wwn_blk_sig>
         <wwn_blk_ver>1</wwn_blk_ver>
         <wwn_blk_len>0</wwn_blk_len>
         <wwn_blk_chk>0x66</wwn_blk_chk>
         <TABLE_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
          <ROW_usage>
           <wn_usg_bit>00</wn_usg_bit>
          </ROW_usage>
         </TABLE_usage>
         <ls_blk_sig>0x6006</ls_blk_sig>
         <ls_blk_ver>1</ls_blk_ver>
         <ls_blk_len>16</ls_blk_len>
         <ls_blk_chk>0x77</ls_blk_chk>
         <TABLE_lic_usage>
          <ROW_lic_usage>
           <li_use_val>00</li_use_val>
          </ROW_lic_usage>
          <ROW_lic_usage>
           <li_use_val>00</li_use_val>
          </ROW_lic_usage>
          <ROW_lic_usage>
           <li_use_val>00</li_use_val>
          </ROW_lic_usage>
          <ROW_lic_usage>
           <li_use_val>00</li_use_val>
          </ROW_lic_usage>
          <ROW_lic_usage>
           <li_use_val>00</li_use_val>
          </ROW_lic_usage>
          <ROW_lic_usage>
           <li_use_val>00</li_use_val>
          </ROW_lic_usage>
          <ROW_lic_usage>
           <li_use_val>00</li_use_val>
          </ROW_lic_usage>
          <ROW_lic_usage>
           <li_use_val>00</li_use_val>
          </ROW_lic_usage>
         </TABLE_lic_usage>
         <TABLE_power>
          <ROW_power>
           <pow_count>1</pow_count>
           <pow_blk_sig_info>0xabab</pow_blk_sig_info>
           <pow_blk_version_info>3</pow_blk_version_info>
           <pow_blk_length_info>160</pow_blk_length_info>
           <pow_blk_checksum_info>0x183c</pow_blk_checksum_info>
           <pow_eeprom_size>65535</pow_eeprom_size>
           <pow_block_count>2</pow_block_count>
           <pow_fru_major_type>0xab01</pow_fru_major_type>
           <pow_fru_minor_type>0x0</pow_fru_minor_type>
           <pow_oem_string>Cisco Systems, Inc.</pow_oem_string>
           <pow_product_num>N2200-PAC-400W</pow_product_num>
           <pow_serial_num>LIT200103NC</pow_serial_num>
           <pow_part_num>341-0375-07</pow_part_num>
           <pow_part_revision>A0</pow_part_revision>
           <pow_mfg_dev></pow_mfg_dev>
           <pow_hardw_ver>4</pow_hardw_ver>
           <pow_hardw_ver_min>0</pow_hardw_ver_min>
           <pow_mfg_bits>0</pow_mfg_bits>
           <pow_eng_use>0</pow_eng_use>
           <pow_snmp_oid>9.12.3.1.6.273.0.0</pow_snmp_oid>
           <pow_current>3300</pow_current>
           <pow_rma_code>0-0-0-0</pow_rma_code>
           <pow_clei_code>COUPAG3BAA</pow_clei_code>
           <pow_vid>V05</pow_vid>
          </ROW_power>
          <ROW_power>
           <pow_count>2</pow_count>
           <pow_blk_sig_info>0xabab</pow_blk_sig_info>
           <pow_blk_version_info>3</pow_blk_version_info>
           <pow_blk_length_info>160</pow_blk_length_info>
           <pow_blk_checksum_info>0x1838</pow_blk_checksum_info>
           <pow_eeprom_size>65535</pow_eeprom_size>
           <pow_block_count>2</pow_block_count>
           <pow_fru_major_type>0xab01</pow_fru_major_type>
           <pow_fru_minor_type>0x0</pow_fru_minor_type>
           <pow_oem_string>Cisco Systems, Inc.</pow_oem_string>
           <pow_product_num>N2200-PAC-400W</pow_product_num>
           <pow_serial_num>LIT200103V7</pow_serial_num>
           <pow_part_num>341-0375-07</pow_part_num>
           <pow_part_revision>A0</pow_part_revision>
           <pow_mfg_dev></pow_mfg_dev>
           <pow_hardw_ver>4</pow_hardw_ver>
           <pow_hardw_ver_min>0</pow_hardw_ver_min>
           <pow_mfg_bits>0</pow_mfg_bits>
           <pow_eng_use>0</pow_eng_use>
           <pow_snmp_oid>9.12.3.1.6.273.0.0</pow_snmp_oid>
           <pow_current>3300</pow_current>
           <pow_rma_code>0-0-0-0</pow_rma_code>
           <pow_clei_code>COUPAG3BAA</pow_clei_code>
           <pow_vid>V05</pow_vid>
          </ROW_power>
         </TABLE_power>
        </ROW_FEX>
       </TABLE_FEX>
      </__readonly__>
     </all>
    </fex>
   </sprom>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show sprom fex all**

DISPLAY FEX 104 SUP sprom contents
Common block:
 Block Signature : 0xabab
 Block Version   : 3
 Block Length    : 160
 Block Checksum  : 0x1973
 EEPROM Size     : 65535
 Block Count     : 3
 FRU Major Type  : 0x6002
 FRU Minor Type  : 0x0
 OEM String      : Cisco Systems, Inc.
 Product Number  : N2K-C2348TQ-10G-E
 Serial Number   : FOC20028DYQ
 Part Number     : 73-17624-03
 Part Revision   : 05
 Mfg Deviation   : 0
 H/W Version     : 0.311
 Mfg Bits        : 0
 Engineer Use    : 0
 snmpOID         : 9.12.3.1.9.78.20.0
 Power Consump   : 2000
 RMA Code        : 0-0-0-0
 CLEI Code       : CMMUP00BRA
 VID             : V00
Supervisor Module specific block:
 Block Signature : 0x6002
 Block Version   : 2
 Block Length    : 103
 Block Checksum  : 0x25e8
 Feature Bits    : 0x0
 HW Changes Bits : 0xa00
 Card Index      : 11139
 MAC Addresses   : 00-00-00-00-00-00
 Number of MACs  : 0
 Number of EPLD  : 0
 Port Type-Num   : 1-8
 Sensor #1       : 55,48
 Sensor #2       : 70,65
 Sensor #3       : -128,-128
 Sensor #4       : -128,-128
 Sensor #5       : 65,50
 Sensor #6       : 80,73
 Sensor #7       : -128,-128
 Sensor #8       : -128,-128
 Max Connector Power: 3333
 Cooling Requirement: 65
 Ambient Temperature: 45

DISPLAY FEX 104 backplane sprom contents: Common block: Block Signature : 0xabab Block Version : 3 Block Length : 160 Block Checksum : 0x1892 EEPROM Size : 65535 Block Count : 5 FRU Major Type : 0x6001 FRU Minor Type : 0x0 OEM String : Cisco Systems, Inc. Product Number : N2K-C2348TQ-10G-E Serial Number : FOC2003R15W Part Number : 68-5793-01 Part Revision : 17 Mfg Deviation : 0 H/W Version : 0.311 Mfg Bits : 0 Engineer Use : 0 snmpOID : 9.12.3.1.3.1684.0.0 Power Consump : 0 RMA Code : 0-0-0-0 CLEI Code : CMMUP00BRA VID : V00 Chassis specific block: Block Signature : 0x6001 Block Version : 3 Block Length : 39 Block Checksum : 0x486 Feature Bits : 0x0 HW Changes Bits : 0x0 Stackmib OID : 0 MAC Addresses : dc-eb-94-65-5b-a0 Number of MACs : 64 OEM Enterprise : 0 OEM MIB Offset : 0 MAX Connector Power: 0 WWN software-module specific block: Block Signature : 0x6005 Block Version : 1 Block Length : 0 Block Checksum : 0x66 wwn usage bits: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 License software-module specific block: Block Signature : 0x6006 Block Version : 1 Block Length : 16 Block Checksum : 0x77 lic usage bits: 00 00 00 00 00 00 00 00

DISPLAY FEX 104 power-supply 1 sprom contents: Common block: Block Signature : 0xabab Block Version : 3 Block Length : 160 Block Checksum : 0x1834 EEPROM Size : 65535 Block Count : 2 FRU Major Type : 0xab01 FRU Minor Type : 0x0 OEM String : Cisco Systems, Inc. Product Number : N2200-PAC-400W Serial Number : LIT20020BE4 Part Number : 341-0375-07 Part Revision : A0 Mfg Deviation : H/W Version : 4.0 Mfg Bits : 0 Engineer Use : 0 snmpOID : 9.12.3.1.6.273.0.0 Power Consump : 3300 RMA Code : 0-0-0-0 CLEI Code : COUPAG3BAA VID : V05

DISPLAY FEX 104 power-supply 2 sprom contents: Common block: Block Signature : 0xabab Block Version : 3 Block Length : 160 Block Checksum : 0x1840 EEPROM Size : 65535 Block Count : 2 FRU Major Type : 0xab01 FRU Minor Type : 0x0 OEM String : Cisco Systems, Inc. Product Number : N2200-PAC-400W Serial Number : LIT20020B4Q Part Number : 341-0375-07 Part Revision : A0 Mfg Deviation : H/W Version : 4.0 Mfg Bits : 0 Engineer Use : 0 snmpOID : 9.12.3.1.6.273.0.0 Power Consump : 3300 RMA Code : 0-0-0-0 CLEI Code : COUPAG3BAA VID : V05

DISPLAY FEX 105 SUP sprom contents Common block: Block Signature : 0xabab Block Version : 3 Block Length : 160 Block Checksum : 0x1970 EEPROM Size : 65535 Block Count : 3 FRU Major Type : 0x6002 FRU Minor Type : 0x0 OEM String : Cisco Systems, Inc. Product Number : N2K-C2348TQ-10G-E Serial Number : FOC20025JLX Part Number : 73-17624-03 Part Revision : 05 Mfg Deviation : 0 H/W Version : 0.311 Mfg Bits : 0 Engineer Use : 0 snmpOID : 9.12.3.1.9.78.20.0 Power Consump : 2000 RMA Code : 0-0-0-0 CLEI Code : CMMUP00BRA VID : V00 Supervisor Module specific block: Block Signature : 0x6002 Block Version : 2 Block Length : 103 Block Checksum : 0x25e8 Feature Bits : 0x0 HW Changes Bits : 0xa00 Card Index : 11139 MAC Addresses : 00-00-00-00-00-00 Number of MACs : 0 Number of EPLD : 0 Port Type-Num : 1-8 Sensor #1 : 55,48 Sensor #2 : 70,65 Sensor #3 : -128,-128 Sensor #4 : -128,-128 Sensor #5 : 65,50 Sensor #6 : 80,73 Sensor #7 : -128,-128 Sensor #8 : -128,-128 Max Connector Power: 3333 Cooling Requirement: 65 Ambient Temperature: 45

DISPLAY FEX 105 backplane sprom contents: Common block: Block Signature : 0xabab Block Version : 3 Block Length : 160 Block Checksum : 0x1894 EEPROM Size : 65535 Block Count : 5 FRU Major Type : 0x6001 FRU Minor Type : 0x0 OEM String : Cisco Systems, Inc. Product Number : N2K-C2348TQ-10G-E Serial Number : FOC2003R0EJ Part Number : 68-5793-01 Part Revision : 17 Mfg Deviation : 0 H/W Version : 0.311 Mfg Bits : 0 Engineer Use : 0 snmpOID : 9.12.3.1.3.1684.0.0 Power Consump : 0 RMA Code : 0-0-0-0 CLEI Code : CMMUP00BRA VID : V00 Chassis specific block: Block Signature : 0x6001 Block Version : 3 Block Length : 39 Block Checksum : 0x499 Feature Bits : 0x0 HW Changes Bits : 0x0 Stackmib OID : 0 MAC Addresses : dc-eb-94-56-3d-e0 Number of MACs : 64 OEM Enterprise : 0 OEM MIB Offset : 0 MAX Connector Power: 0 WWN software-module specific block: Block Signature : 0x6005 Block Version : 1 Block Length : 0 Block Checksum : 0x66 wwn usage bits: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 License software-module specific block: Block Signature : 0x6006 Block Version : 1 Block Length : 16 Block Checksum : 0x77 lic usage bits: 00 00 00 00 00 00 00 00

DISPLAY FEX 105 power-supply 1 sprom contents: Common block: Block Signature : 0xabab Block Version : 3 Block Length : 160 Block Checksum : 0x183c EEPROM Size : 65535 Block Count : 2 FRU Major Type : 0xab01 FRU Minor Type : 0x0 OEM String : Cisco Systems, Inc. Product Number : N2200-PAC-400W Serial Number : LIT200103NC Part Number : 341-0375-07 Part Revision : A0 Mfg Deviation : H/W Version : 4.0 Mfg Bits : 0 Engineer Use : 0 snmpOID : 9.12.3.1.6.273.0.0 Power Consump : 3300 RMA Code : 0-0-0-0 CLEI Code : COUPAG3BAA VID : V05

DISPLAY FEX 105 power-supply 2 sprom contents: Common block: Block Signature : 0xabab Block Version : 3 Block Length : 160 Block Checksum : 0x1838 EEPROM Size : 65535 Block Count : 2 FRU Major Type : 0xab01 FRU Minor Type : 0x0 OEM String : Cisco Systems, Inc. Product Number : N2200-PAC-400W Serial Number : LIT200103V7 Part Number : 341-0375-07 Part Revision : A0 Mfg Deviation : H/W Version : 4.0 Mfg Bits : 0 Engineer Use : 0 snmpOID : 9.12.3.1.6.273.0.0 Power Consump : 3300 RMA Code : 0-0-0-0 CLEI Code : COUPAG3BAA VID : V05

show system reset-reason fex 104

show system reset-reason fex 104
 
import requests
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 system reset-reason fex 104”,
  "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)
{
  "system_reset_fex_id": 104, 
  "TABLE_RESET_REASON": {
    "ROW_RESET_REASON": [
      {
        "reset_entry_no": 1, 
        "reset_time": "26351 usecs after Wed Jul 18 16:11:57 2018", 
        "reset_reason": "Kernel Reboot (1)", 
        "service_info": "Reload new image", 
        "image_version": "8.2(2)"
      }, 
      {
        "reset_entry_no": 2, 
        "reset_time": "806385 usecs after Tue Jul 17 17:47:56 2018", 
        "reset_reason": "Reset Requested by CLI command reload (9)", 
        "service_info": "Reload requested by supervisor", 
        "image_version": "8.2(2)"
      }, 
      {
        "reset_entry_no": 3, 
        "reset_time": "203723 usecs after Tue Jul 17 18:46:59 2018", 
        "reset_reason": "Reset Requested by CLI command reload (9)", 
        "service_info": "Reload requested by supervisor", 
        "image_version": "8.2(2)"
      }, 
      {
        "reset_entry_no": 4, 
        "reset_time": "320921 usecs after Tue Jul 17 17:35:45 2018", 
        "reset_reason": "Reset Requested by CLI command reload (9)", 
        "service_info": "Reload requested by supervisor", 
        "image_version": "8.3(1)"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <system>
    <reset-reason>
     <fex>
      <__XML__PARAM__i>
       <__XML__value>104</__XML__value>
       <__readonly__>
        <system_reset_fex_id>104</system_reset_fex_id>
        <TABLE_RESET_REASON>
         <ROW_RESET_REASON>
          <reset_entry_no>1</reset_entry_no>
          <reset_time>26351 usecs after Wed Jul 18 16:11:57 2018</reset_time>
          <reset_reason>Kernel Reboot (1)</reset_reason>
          <service_info>Reload new image</service_info>
          <image_version>8.2(2)</image_version>
         </ROW_RESET_REASON>
         <ROW_RESET_REASON>
          <reset_entry_no>2</reset_entry_no>
          <reset_time>806385 usecs after Tue Jul 17 17:47:56 2018</reset_time>
          <reset_reason>Reset Requested by CLI command reload (9)</reset_reason>
          <service_info>Reload requested by supervisor</service_info>
          <image_version>8.2(2)</image_version>
         </ROW_RESET_REASON>
         <ROW_RESET_REASON>
          <reset_entry_no>3</reset_entry_no>
          <reset_time>203723 usecs after Tue Jul 17 18:46:59 2018</reset_time>
          <reset_reason>Reset Requested by CLI command reload (9)</reset_reason>
          <service_info>Reload requested by supervisor</service_info>
          <image_version>8.2(2)</image_version>
         </ROW_RESET_REASON>
         <ROW_RESET_REASON>
          <reset_entry_no>4</reset_entry_no>
          <reset_time>320921 usecs after Tue Jul 17 17:35:45 2018</reset_time>
          <reset_reason>Reset Requested by CLI command reload (9)</reset_reason>
          <service_info>Reload requested by supervisor</service_info>
          <image_version>8.3(1)</image_version>
         </ROW_RESET_REASON>
        </TABLE_RESET_REASON>
       </__readonly__>
      </__XML__PARAM__i>
     </fex>
    </reset-reason>
   </system>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show system reset-reason fex 104**

----- reset reason for FEX 104 ---

  1. At 26351 usecs after Wed Jul 18 16:11:57 2018 Reset Reason: Kernel Reboot (1) Service (Additional Info): Reload new image Image Version: 8.2(2)

  2. At 806385 usecs after Tue Jul 17 17:47:56 2018 Reset Reason: Reset Requested by CLI command reload (9) Service (Additional Info): Reload requested by supervisor Image Version: 8.2(2)

  3. At 203723 usecs after Tue Jul 17 18:46:59 2018 Reset Reason: Reset Requested by CLI command reload (9) Service (Additional Info): Reload requested by supervisor Image Version: 8.2(2)

  4. At 320921 usecs after Tue Jul 17 17:35:45 2018 Reset Reason: Reset Requested by CLI command reload (9) Service (Additional Info): Reload requested by supervisor Image Version: 8.3(1)

show version fex 105

show version fex 105
 
import requests
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 version fex 105”,
  "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)
{
  "boot_ver": "1.19", 
  "sys_boot_mode": "primary", 
  "sys_img_ver": "8.3(1) [build (0.52)FXC_0_7]", 
  "module": "Fabric Extender 48x10GE Base T + 6x40GE Module", 
  "cpu": "Motorola, e500v2, core 0", 
  "serial_num": "FOC20025JLX", 
  "boot_flash": "unlocked", 
  "psoc_version": "v4.0", 
  "kernel_up_time": "0 day(s), 5 hour(s), 42 minutes(s), 50 second(s)", 
  "last_reset": "Wed Jul 18 16:11:54 2018", 
  "reason": "Kernel Reboot", 
  "service": "Reload new image"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <version>
    <fex>
     <__XML__PARAM__i>
      <__XML__value>105</__XML__value>
      <__readonly__>
       <boot_ver>1.19</boot_ver>
       <sys_boot_mode>primary</sys_boot_mode>
       <sys_img_ver>8.3(1) [build (0.52)FXC_0_7]</sys_img_ver>
       <module>Fabric Extender 48x10GE Base T + 6x40GE Module</module>
       <cpu>Motorola, e500v2, core 0</cpu>
       <serial_num>FOC20025JLX</serial_num>
       <boot_flash>unlocked</boot_flash>
       <psoc_version>v4.0           </psoc_version>
       <kernel_up_time>0 day(s), 5 hour(s), 42 minutes(s), 45 second(s)</kernel_up_time>
       <last_reset>Wed Jul 18 16:11:54 2018</last_reset>
       <reason>Kernel Reboot</reason>
       <service>Reload new image</service>
      </__readonly__>
     </__XML__PARAM__i>
    </fex>
   </version>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show version fex 105**

Software
  Bootloader version:           1.19
  System boot mode:             primary
  System image version:         8.3(1) [build (0.52)FXC_0_7]

Hardware Module: Fabric Extender 48x10GE Base T + 6x40GE Module CPU: Motorola, e500v2, core 0 Serial number: FOC20025JLX Bootflash: unlocked PSOC Version: v4.0

Kernel uptime is 0 day(s), 5 hour(s), 42 minutes(s), 42 second(s)

Last reset at Wed Jul 18 16:11:54 2018 Reason: Kernel Reboot Service: Service : Reload new image

show all-fex-by-vdc

show all-fex-by-vdc 
 
import requests
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 all-fex-by-vdc”,
  "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)
{
  "TABLE_all_fex_by_vdc": {
    "ROW_all_fex_by_vdc": [
      {
        "fex_number": "104", 
        "chas_vendor": "Cisco Systems", 
        "fex_model": "N2K-C2348TQ-10G-E", 
        "chas_ser": "FOC2003R15W", 
        "mod_model": "N2K-C2348TQ-10G-E", 
        "fex_ser": "FOC20028DYQ", 
        "module_no": 0, 
        "mod_partno": "73-17624-03", 
        "fex_descr": "FEX0104", 
        "fex_state": "Online"
      }, 
      {
        "fex_number": "105", 
        "chas_vendor": "Cisco Systems", 
        "fex_model": "N2K-C2348TQ-10G-E", 
        "chas_ser": "FOC2003R0EJ", 
        "mod_model": "N2K-C2348TQ-10G-E", 
        "fex_ser": "FOC20025JLX", 
        "module_no": 0, 
        "mod_partno": "73-17624-03", 
        "fex_descr": "FEX0105", 
        "fex_state": "Online"
      }
    ]
  }
}
VDC: 1 
======
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:satmgr_admin" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <all-fex-by-vdc>
    <__readonly__>
     <TABLE_all_fex_by_vdc>
      <ROW_all_fex_by_vdc>
       <fex_number>104</fex_number>
       <chas_vendor>Cisco Systems</chas_vendor>
       <fex_model>N2K-C2348TQ-10G-E</fex_model>
       <chas_ser>FOC2003R15W</chas_ser>
       <mod_model>N2K-C2348TQ-10G-E</mod_model>
       <fex_ser>FOC20028DYQ</fex_ser>
       <module_no>0</module_no>
       <mod_partno>73-17624-03</mod_partno>
       <fex_descr>FEX0104</fex_descr>
       <fex_state>Online</fex_state>
      </ROW_all_fex_by_vdc>
      <ROW_all_fex_by_vdc>
       <fex_number>105</fex_number>
       <chas_vendor>Cisco Systems</chas_vendor>
       <fex_model>N2K-C2348TQ-10G-E</fex_model>
       <chas_ser>FOC2003R0EJ</chas_ser>
       <mod_model>N2K-C2348TQ-10G-E</mod_model>
       <fex_ser>FOC20025JLX</fex_ser>
       <module_no>0</module_no>
       <mod_partno>73-17624-03</mod_partno>
       <fex_descr>FEX0105</fex_descr>
       <fex_state>Online</fex_state>
      </ROW_all_fex_by_vdc>
     </TABLE_all_fex_by_vdc>
    </__readonly__>
   </all-fex-by-vdc>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show all-fex-by-vdc

VDC: 1 

FEX FEX FEX FEX
Number Description State Model Serial

104 FEX0104 Online N2K-C2348TQ-10G-E FOC2003R15W 105 FEX0105 Online N2K-C2348TQ-10G-E FOC2003R0EJ

show processes memory shared detail

show processes memory shared detail 
 
import requests
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 processes memory shared detail”,
  "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)
{
  "TABLE_process_tag": {
    "ROW_process_tag": {
      "TABLE_SHOWPROC": {
        "ROW_SHOWPROC": [
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/smm", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "smm", 
                "process-memory-share-smr-addr": "50000000", 
                "process-memory-share-smr-size": 1052672, 
                "process-memory-share-smr-star-char": null, 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 4216, 
                "process-memory-share-smr-avail": 1048456, 
                "process-memory-share-smr-ref-count": 37
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/cli", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "cli", 
                "process-memory-share-smr-addr": "50101000", 
                "process-memory-share-smr-size": 94375936, 
                "process-memory-share-smr-star-char": "*", 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 48064248, 
                "process-memory-share-smr-avail": 46311688, 
                "process-memory-share-smr-ref-count": 5
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/urib", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-dynamic-smr-name": "urib"
              }
            }, 
            "TABLE_ONEITEMDYNAMIC": {
              "ROW_ONEITEMDYNAMIC": {
                "process-memory-share-dynamic-smr-addr": "55B02000", 
                "process-memory-share-dynamic-smr-size": 1048576, 
                "process-memory-share-dynamic-plus-char": "+", 
                "process-memory-share-max-mem-size-str": null, 
                "process-memory-share-dynamic-smr-used": 714952, 
                "process-memory-share-dynamic-smr-avail": 333624, 
                "process-memory-share-dynamic-smr-ref-count": 22
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/urib-pib", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "urib-pib", 
                "process-memory-share-smr-addr": "5BB03000", 
                "process-memory-share-smr-size": 1052672, 
                "process-memory-share-smr-star-char": "*", 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 268808, 
                "process-memory-share-smr-avail": 783864, 
                "process-memory-share-smr-ref-count": 22
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/urib-redist", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "urib-redist", 
                "process-memory-share-smr-addr": "5BC04000", 
                "process-memory-share-smr-size": 5246976, 
                "process-memory-share-smr-star-char": "*", 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 955112, 
                "process-memory-share-smr-avail": 4291864, 
                "process-memory-share-smr-ref-count": 22
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/urib-ufdm", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "urib-ufdm", 
                "process-memory-share-smr-addr": "5C105000", 
                "process-memory-share-smr-size": 8392704, 
                "process-memory-share-smr-star-char": "*", 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 121176, 
                "process-memory-share-smr-avail": 8271528, 
                "process-memory-share-smr-ref-count": 1
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/am", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "am", 
                "process-memory-share-smr-addr": "5C906000", 
                "process-memory-share-smr-size": 1052672, 
                "process-memory-share-smr-star-char": "*", 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 45496, 
                "process-memory-share-smr-avail": 1007176, 
                "process-memory-share-smr-ref-count": 9
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/am_lim", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "am_lim", 
                "process-memory-share-smr-addr": "5CA07000", 
                "process-memory-share-smr-size": 69632, 
                "process-memory-share-smr-star-char": "*", 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 1368, 
                "process-memory-share-smr-avail": 68264, 
                "process-memory-share-smr-ref-count": 9
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/u6rib", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-dynamic-smr-name": "u6rib"
              }
            }, 
            "TABLE_ONEITEMDYNAMIC": {
              "ROW_ONEITEMDYNAMIC": {
                "process-memory-share-dynamic-smr-addr": "5CA18000", 
                "process-memory-share-dynamic-smr-size": 1048576, 
                "process-memory-share-dynamic-plus-char": "+", 
                "process-memory-share-max-mem-size-str": null, 
                "process-memory-share-dynamic-smr-used": 445400, 
                "process-memory-share-dynamic-smr-avail": 603176, 
                "process-memory-share-dynamic-smr-ref-count": 12
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/u6rib-pib", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "u6rib-pib", 
                "process-memory-share-smr-addr": "5E219000", 
                "process-memory-share-smr-size": 1052672, 
                "process-memory-share-smr-star-char": "*", 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 279032, 
                "process-memory-share-smr-avail": 773640, 
                "process-memory-share-smr-ref-count": 12
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/u6rib-notify", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "u6rib-notify", 
                "process-memory-share-smr-addr": "5E31A000", 
                "process-memory-share-smr-size": 3149824, 
                "process-memory-share-smr-star-char": "*", 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 929704, 
                "process-memory-share-smr-avail": 2220120, 
                "process-memory-share-smr-ref-count": 12
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/npacl", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "npacl", 
                "process-memory-share-smr-addr": "5E61B000", 
                "process-memory-share-smr-size": 25169920, 
                "process-memory-share-smr-star-char": null, 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 2424, 
                "process-memory-share-smr-avail": 25167496, 
                "process-memory-share-smr-ref-count": 1
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/icmpv6", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "icmpv6", 
                "process-memory-share-smr-addr": "5FE1C000", 
                "process-memory-share-smr-size": 6295552, 
                "process-memory-share-smr-star-char": null, 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 500632, 
                "process-memory-share-smr-avail": 5794920, 
                "process-memory-share-smr-ref-count": 10
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/arp", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "arp", 
                "process-memory-share-smr-addr": "6041D000", 
                "process-memory-share-smr-size": 4198400, 
                "process-memory-share-smr-star-char": "*", 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 188888, 
                "process-memory-share-smr-avail": 4009512, 
                "process-memory-share-smr-ref-count": 8
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/arplib", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "arplib", 
                "process-memory-share-smr-addr": "6081E000", 
                "process-memory-share-smr-size": 25169920, 
                "process-memory-share-smr-star-char": "*", 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 115136, 
                "process-memory-share-smr-avail": 25054784, 
                "process-memory-share-smr-ref-count": 1
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/pm", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "pm", 
                "process-memory-share-smr-addr": "6201F000", 
                "process-memory-share-smr-size": 69632, 
                "process-memory-share-smr-star-char": null, 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 504, 
                "process-memory-share-smr-avail": 69128, 
                "process-memory-share-smr-ref-count": 3
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/ip", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "ip", 
                "process-memory-share-smr-addr": "62030000", 
                "process-memory-share-smr-size": 12587008, 
                "process-memory-share-smr-star-char": "*", 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 224704, 
                "process-memory-share-smr-avail": 12362304, 
                "process-memory-share-smr-ref-count": 24
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/ipv6", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "ipv6", 
                "process-memory-share-smr-addr": "62C31000", 
                "process-memory-share-smr-size": 12587008, 
                "process-memory-share-smr-star-char": null, 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 527448, 
                "process-memory-share-smr-avail": 12059560, 
                "process-memory-share-smr-ref-count": 11
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/rpm", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-dynamic-smr-name": "rpm"
              }
            }, 
            "TABLE_ONEITEMDYNAMIC": {
              "ROW_ONEITEMDYNAMIC": {
                "process-memory-share-dynamic-smr-addr": "63832000", 
                "process-memory-share-dynamic-smr-size": 2097152, 
                "process-memory-share-dynamic-plus-char": "+", 
                "process-memory-share-max-mem-size-str": null, 
                "process-memory-share-dynamic-smr-used": 1336, 
                "process-memory-share-dynamic-smr-avail": 2095816, 
                "process-memory-share-dynamic-smr-ref-count": 8
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/igmp", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "igmp", 
                "process-memory-share-smr-addr": "63E33000", 
                "process-memory-share-smr-size": 3149824, 
                "process-memory-share-smr-star-char": null, 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 312, 
                "process-memory-share-smr-avail": 3149512, 
                "process-memory-share-smr-ref-count": 2
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/m6rib", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-dynamic-smr-name": "m6rib"
              }
            }, 
            "TABLE_ONEITEMDYNAMIC": {
              "ROW_ONEITEMDYNAMIC": {
                "process-memory-share-dynamic-smr-addr": "64134000", 
                "process-memory-share-dynamic-smr-size": 3145728, 
                "process-memory-share-dynamic-plus-char": "+", 
                "process-memory-share-max-mem-size-str": null, 
                "process-memory-share-dynamic-smr-used": 12728, 
                "process-memory-share-dynamic-smr-avail": 3133000, 
                "process-memory-share-dynamic-smr-ref-count": 3
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/mrib", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-dynamic-smr-name": "mrib"
              }
            }, 
            "TABLE_ONEITEMDYNAMIC": {
              "ROW_ONEITEMDYNAMIC": {
                "process-memory-share-dynamic-smr-addr": "64935000", 
                "process-memory-share-dynamic-smr-size": 3145728, 
                "process-memory-share-dynamic-plus-char": "+", 
                "process-memory-share-max-mem-size-str": null, 
                "process-memory-share-dynamic-smr-used": 3264, 
                "process-memory-share-dynamic-smr-avail": 3142464, 
                "process-memory-share-dynamic-smr-ref-count": 3
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/m6rib-mfdm", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "m6rib-mfdm", 
                "process-memory-share-smr-addr": "68336000", 
                "process-memory-share-smr-size": 5246976, 
                "process-memory-share-smr-star-char": null, 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 456, 
                "process-memory-share-smr-avail": 5246520, 
                "process-memory-share-smr-ref-count": 2
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/mrib-mfdm", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "mrib-mfdm", 
                "process-memory-share-smr-addr": "68837000", 
                "process-memory-share-smr-size": 6295552, 
                "process-memory-share-smr-star-char": "*", 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 360, 
                "process-memory-share-smr-avail": 6295192, 
                "process-memory-share-smr-ref-count": 1
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/mcastfwd", 
            "TABLE_ONEITEM": {
              "ROW_ONEITEM": {
                "process-memory-share-proc-smr-name": "mcastfwd", 
                "process-memory-share-smr-addr": "68E38000", 
                "process-memory-share-smr-size": 62918656, 
                "process-memory-share-smr-star-char": "*", 
                "process-memory-share-smr-empty-char": null, 
                "process-memory-share-smr-used": 11464, 
                "process-memory-share-smr-avail": 62907192, 
                "process-memory-share-smr-ref-count": 2
              }
            }
          }
        ]
      }, 
      "process-memory-share-total-shm-size": 459, 
      "process-memory-share-total-shm-used": 51, 
      "process-memory-share-total-shm-avail": 408
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:smm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <processes>
    <memory>
     <shared>
      <detail>
       <__readonly__>
        <TABLE_process_tag>
         <ROW_process_tag>
          <TABLE_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/smm</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>smm</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>50000000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>1052672</process-memory-share-smr-size>
              <process-memory-share-smr-star-char> </process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>4216</process-memory-share-smr-used>
              <process-memory-share-smr-avail>1048456</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>37</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/cli</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>cli</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>50101000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>94375936</process-memory-share-smr-size>
              <process-memory-share-smr-star-char>*</process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>48064248</process-memory-share-smr-used>
              <process-memory-share-smr-avail>46311688</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>5</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/urib</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-dynamic-smr-name>urib</process-memory-share-dynamic-smr-name>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
            <TABLE_ONEITEMDYNAMIC>
             <ROW_ONEITEMDYNAMIC>
              <process-memory-share-dynamic-smr-addr>55B02000</process-memory-share-dynamic-smr-addr>
              <process-memory-share-dynamic-smr-size>1048576</process-memory-share-dynamic-smr-size>
              <process-memory-share-dynamic-plus-char>+</process-memory-share-dynamic-plus-char>
              <process-memory-share-max-mem-size-str> </process-memory-share-max-mem-size-str>
              <process-memory-share-dynamic-smr-used>714952</process-memory-share-dynamic-smr-used>
              <process-memory-share-dynamic-smr-avail>333624</process-memory-share-dynamic-smr-avail>
              <process-memory-share-dynamic-smr-ref-count>22</process-memory-share-dynamic-smr-ref-count>
             </ROW_ONEITEMDYNAMIC>
            </TABLE_ONEITEMDYNAMIC>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/urib-pib</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>urib-pib</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>5BB03000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>1052672</process-memory-share-smr-size>
              <process-memory-share-smr-star-char>*</process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>268808</process-memory-share-smr-used>
              <process-memory-share-smr-avail>783864</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>22</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/urib-redist</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>urib-redist</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>5BC04000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>5246976</process-memory-share-smr-size>
              <process-memory-share-smr-star-char>*</process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>955112</process-memory-share-smr-used>
              <process-memory-share-smr-avail>4291864</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>22</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/urib-ufdm</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>urib-ufdm</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>5C105000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>8392704</process-memory-share-smr-size>
              <process-memory-share-smr-star-char>*</process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>121176</process-memory-share-smr-used>
              <process-memory-share-smr-avail>8271528</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>1</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/am</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>am</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>5C906000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>1052672</process-memory-share-smr-size>
              <process-memory-share-smr-star-char>*</process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>45496</process-memory-share-smr-used>
              <process-memory-share-smr-avail>1007176</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>9</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/am_lim</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>am_lim</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>5CA07000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>69632</process-memory-share-smr-size>
              <process-memory-share-smr-star-char>*</process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>1368</process-memory-share-smr-used>
              <process-memory-share-smr-avail>68264</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>9</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/u6rib</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-dynamic-smr-name>u6rib</process-memory-share-dynamic-smr-name>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
            <TABLE_ONEITEMDYNAMIC>
             <ROW_ONEITEMDYNAMIC>
              <process-memory-share-dynamic-smr-addr>5CA18000</process-memory-share-dynamic-smr-addr>
              <process-memory-share-dynamic-smr-size>1048576</process-memory-share-dynamic-smr-size>
              <process-memory-share-dynamic-plus-char>+</process-memory-share-dynamic-plus-char>
              <process-memory-share-max-mem-size-str> </process-memory-share-max-mem-size-str>
              <process-memory-share-dynamic-smr-used>445400</process-memory-share-dynamic-smr-used>
              <process-memory-share-dynamic-smr-avail>603176</process-memory-share-dynamic-smr-avail>
              <process-memory-share-dynamic-smr-ref-count>12</process-memory-share-dynamic-smr-ref-count>
             </ROW_ONEITEMDYNAMIC>
            </TABLE_ONEITEMDYNAMIC>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/u6rib-pib</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>u6rib-pib</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>5E219000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>1052672</process-memory-share-smr-size>
              <process-memory-share-smr-star-char>*</process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>279032</process-memory-share-smr-used>
              <process-memory-share-smr-avail>773640</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>12</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/u6rib-notify</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>u6rib-notify</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>5E31A000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>3149824</process-memory-share-smr-size>
              <process-memory-share-smr-star-char>*</process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>929704</process-memory-share-smr-used>
              <process-memory-share-smr-avail>2220120</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>12</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/npacl</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>npacl</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>5E61B000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>25169920</process-memory-share-smr-size>
              <process-memory-share-smr-star-char> </process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>2424</process-memory-share-smr-used>
              <process-memory-share-smr-avail>25167496</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>1</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/icmpv6</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>icmpv6</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>5FE1C000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>6295552</process-memory-share-smr-size>
              <process-memory-share-smr-star-char> </process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>500632</process-memory-share-smr-used>
              <process-memory-share-smr-avail>5794920</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>10</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/arp</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>arp</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>6041D000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>4198400</process-memory-share-smr-size>
              <process-memory-share-smr-star-char>*</process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>188888</process-memory-share-smr-used>
              <process-memory-share-smr-avail>4009512</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>8</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/arplib</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>arplib</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>6081E000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>25169920</process-memory-share-smr-size>
              <process-memory-share-smr-star-char>*</process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>115136</process-memory-share-smr-used>
              <process-memory-share-smr-avail>25054784</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>1</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/pm</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>pm</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>6201F000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>69632</process-memory-share-smr-size>
              <process-memory-share-smr-star-char> </process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>504</process-memory-share-smr-used>
              <process-memory-share-smr-avail>69128</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>3</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/ip</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>ip</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>62030000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>12587008</process-memory-share-smr-size>
              <process-memory-share-smr-star-char>*</process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>224704</process-memory-share-smr-used>
              <process-memory-share-smr-avail>12362304</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>24</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/ipv6</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>ipv6</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>62C31000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>12587008</process-memory-share-smr-size>
              <process-memory-share-smr-star-char> </process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>527448</process-memory-share-smr-used>
              <process-memory-share-smr-avail>12059560</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>11</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/rpm</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-dynamic-smr-name>rpm</process-memory-share-dynamic-smr-name>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
            <TABLE_ONEITEMDYNAMIC>
             <ROW_ONEITEMDYNAMIC>
              <process-memory-share-dynamic-smr-addr>63832000</process-memory-share-dynamic-smr-addr>
              <process-memory-share-dynamic-smr-size>2097152</process-memory-share-dynamic-smr-size>
              <process-memory-share-dynamic-plus-char>+</process-memory-share-dynamic-plus-char>
              <process-memory-share-max-mem-size-str> </process-memory-share-max-mem-size-str>
              <process-memory-share-dynamic-smr-used>1336</process-memory-share-dynamic-smr-used>
              <process-memory-share-dynamic-smr-avail>2095816</process-memory-share-dynamic-smr-avail>
              <process-memory-share-dynamic-smr-ref-count>8</process-memory-share-dynamic-smr-ref-count>
             </ROW_ONEITEMDYNAMIC>
            </TABLE_ONEITEMDYNAMIC>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/igmp</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>igmp</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>63E33000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>3149824</process-memory-share-smr-size>
              <process-memory-share-smr-star-char> </process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>312</process-memory-share-smr-used>
              <process-memory-share-smr-avail>3149512</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>2</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/m6rib</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-dynamic-smr-name>m6rib</process-memory-share-dynamic-smr-name>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
            <TABLE_ONEITEMDYNAMIC>
             <ROW_ONEITEMDYNAMIC>
              <process-memory-share-dynamic-smr-addr>64134000</process-memory-share-dynamic-smr-addr>
              <process-memory-share-dynamic-smr-size>3145728</process-memory-share-dynamic-smr-size>
              <process-memory-share-dynamic-plus-char>+</process-memory-share-dynamic-plus-char>
              <process-memory-share-max-mem-size-str> </process-memory-share-max-mem-size-str>
              <process-memory-share-dynamic-smr-used>12728</process-memory-share-dynamic-smr-used>
              <process-memory-share-dynamic-smr-avail>3133000</process-memory-share-dynamic-smr-avail>
              <process-memory-share-dynamic-smr-ref-count>3</process-memory-share-dynamic-smr-ref-count>
             </ROW_ONEITEMDYNAMIC>
            </TABLE_ONEITEMDYNAMIC>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/mrib</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-dynamic-smr-name>mrib</process-memory-share-dynamic-smr-name>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
            <TABLE_ONEITEMDYNAMIC>
             <ROW_ONEITEMDYNAMIC>
              <process-memory-share-dynamic-smr-addr>64935000</process-memory-share-dynamic-smr-addr>
              <process-memory-share-dynamic-smr-size>3145728</process-memory-share-dynamic-smr-size>
              <process-memory-share-dynamic-plus-char>+</process-memory-share-dynamic-plus-char>
              <process-memory-share-max-mem-size-str> </process-memory-share-max-mem-size-str>
              <process-memory-share-dynamic-smr-used>3264</process-memory-share-dynamic-smr-used>
              <process-memory-share-dynamic-smr-avail>3142464</process-memory-share-dynamic-smr-avail>
              <process-memory-share-dynamic-smr-ref-count>3</process-memory-share-dynamic-smr-ref-count>
             </ROW_ONEITEMDYNAMIC>
            </TABLE_ONEITEMDYNAMIC>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/m6rib-mfdm</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>m6rib-mfdm</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>68336000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>5246976</process-memory-share-smr-size>
              <process-memory-share-smr-star-char> </process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>456</process-memory-share-smr-used>
              <process-memory-share-smr-avail>5246520</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>2</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/mrib-mfdm</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>mrib-mfdm</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>68837000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>6295552</process-memory-share-smr-size>
              <process-memory-share-smr-star-char>*</process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>360</process-memory-share-smr-used>
              <process-memory-share-smr-avail>6295192</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>1</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/mcastfwd</process-memory-share-table-showproc-key>
            <TABLE_ONEITEM>
             <ROW_ONEITEM>
              <process-memory-share-proc-smr-name>mcastfwd</process-memory-share-proc-smr-name>
              <process-memory-share-smr-addr>68E38000</process-memory-share-smr-addr>
              <process-memory-share-smr-size>62918656</process-memory-share-smr-size>
              <process-memory-share-smr-star-char>*</process-memory-share-smr-star-char>
              <process-memory-share-smr-empty-char></process-memory-share-smr-empty-char>
              <process-memory-share-smr-used>11464</process-memory-share-smr-used>
              <process-memory-share-smr-avail>62907192</process-memory-share-smr-avail>
              <process-memory-share-smr-ref-count>2</process-memory-share-smr-ref-count>
             </ROW_ONEITEM>
            </TABLE_ONEITEM>
           </ROW_SHOWPROC>
          </TABLE_SHOWPROC>
          <process-memory-share-total-shm-size>459</process-memory-share-total-shm-size>
          <process-memory-share-total-shm-used>51</process-memory-share-total-shm-used>
          <process-memory-share-total-shm-avail>408</process-memory-share-total-shm-avail>
         </ROW_process_tag>
        </TABLE_process_tag>
       </__readonly__>
      </detail>
     </shared>
    </memory>
   </processes>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show processes memory shared detail**

Component           Shared Memory      Size              Used  Available    Ref
                           Address                                        Count
smm                    0X50000000   1052672              4216    1048456     37
cli                    0X50101000  94375936*         48064248   46311688      5
urib                   0X55B02000   1048576+           714952     333624     22
urib-pib               0X5BB03000   1052672*           268808     783864     22
urib-redist            0X5BC04000   5246976*           955112    4291864     22
urib-ufdm              0X5C105000   8392704*           121176    8271528      1
am                     0X5C906000   1052672*            45496    1007176      9
am_lim                 0X5CA07000     69632*             1368      68264      9
u6rib                  0X5CA18000   1048576+           445400     603176     12
u6rib-pib              0X5E219000   1052672*           279032     773640     12
u6rib-notify           0X5E31A000   3149824*           929704    2220120     12
npacl                  0X5E61B000  25169920              2424   25167496      1
icmpv6                 0X5FE1C000   6295552            500632    5794920     10
arp                    0X6041D000   4198400*           188888    4009512      8
arplib                 0X6081E000  25169920*           115136   25054784      1
pm                     0X6201F000     69632               504      69128      3
ip                     0X62030000  12587008*           224704   12362304     24
ipv6                   0X62C31000  12587008            527448   12059560     11
rpm                    0X63832000   2097152+             1336    2095816      8
igmp                   0X63E33000   3149824               312    3149512      2
m6rib                  0X64134000   3145728+            12728    3133000      3
mrib                   0X64935000   3145728+             3264    3142464      3
m6rib-mfdm             0X68336000   5246976               456    5246520      2
mrib-mfdm              0X68837000   6295552*              360    6295192      1
mcastfwd               0X68E38000  62918656*            11464   62907192      2

Shared memory totals - Size: 459 MB, Used: 51 MB, Available: 408 MB '+' - Dynamic shared memory segment. '*' - Non-default sized share memory segment.

show processes memory shared dynamic

show processes memory shared dynamic 
 
import requests
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 processes memory shared dynamic”,
  "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)
{
  "TABLE_process_tag": {
    "ROW_process_tag": {
      "TABLE_SHOWPROC": {
        "ROW_SHOWPROC": [
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/smm"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/cli"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/urib", 
            "TABLE_SHOWONEDYNAMIC": {
              "ROW_SHOWONEDYNAMIC": {
                "process-memory-share-component": "urib", 
                "process-memory-share-shared-memory": "55B02000", 
                "process-memory-share-current-size": 1048264, 
                "process-memory-share-max-size": 100663296, 
                "process-memory-share-used": 714640
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/urib-pib"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/urib-redist"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/urib-ufdm"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/am"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/am_lim"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/u6rib", 
            "TABLE_SHOWONEDYNAMIC": {
              "ROW_SHOWONEDYNAMIC": {
                "process-memory-share-component": "u6rib", 
                "process-memory-share-shared-memory": "5CA18000", 
                "process-memory-share-current-size": 1048264, 
                "process-memory-share-max-size": 25165824, 
                "process-memory-share-used": 445088
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/u6rib-pib"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/u6rib-notify"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/npacl"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/icmpv6"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/arp"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/arplib"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/pm"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/ip"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/ipv6"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/rpm", 
            "TABLE_SHOWONEDYNAMIC": {
              "ROW_SHOWONEDYNAMIC": {
                "process-memory-share-component": "rpm", 
                "process-memory-share-shared-memory": "63832000", 
                "process-memory-share-current-size": 2096840, 
                "process-memory-share-max-size": 6291456, 
                "process-memory-share-used": 1024
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/igmp"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/m6rib", 
            "TABLE_SHOWONEDYNAMIC": {
              "ROW_SHOWONEDYNAMIC": {
                "process-memory-share-component": "m6rib", 
                "process-memory-share-shared-memory": "64134000", 
                "process-memory-share-current-size": 3145416, 
                "process-memory-share-max-size": 8388608, 
                "process-memory-share-used": 12416
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/mrib", 
            "TABLE_SHOWONEDYNAMIC": {
              "ROW_SHOWONEDYNAMIC": {
                "process-memory-share-component": "mrib", 
                "process-memory-share-shared-memory": "64935000", 
                "process-memory-share-current-size": 3145416, 
                "process-memory-share-max-size": 60817408, 
                "process-memory-share-used": 2952
              }
            }
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/m6rib-mfdm"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/mrib-mfdm"
          }, 
          {
            "process-memory-share-table-showproc-key": "/rsw/shm/mcastfwd"
          }
        ]
      }
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:smm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <processes>
    <memory>
     <shared>
      <dynamic>
       <__readonly__>
        <TABLE_process_tag>
         <ROW_process_tag>
          <TABLE_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/smm</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/cli</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/urib</process-memory-share-table-showproc-key>
            <TABLE_SHOWONEDYNAMIC>
             <ROW_SHOWONEDYNAMIC>
              <process-memory-share-component>urib</process-memory-share-component>
              <process-memory-share-shared-memory>55B02000</process-memory-share-shared-memory>
              <process-memory-share-current-size>1048264</process-memory-share-current-size>
              <process-memory-share-max-size>100663296</process-memory-share-max-size>
              <process-memory-share-used>714640</process-memory-share-used>
             </ROW_SHOWONEDYNAMIC>
            </TABLE_SHOWONEDYNAMIC>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/urib-pib</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/urib-redist</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/urib-ufdm</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/am</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/am_lim</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/u6rib</process-memory-share-table-showproc-key>
            <TABLE_SHOWONEDYNAMIC>
             <ROW_SHOWONEDYNAMIC>
              <process-memory-share-component>u6rib</process-memory-share-component>
              <process-memory-share-shared-memory>5CA18000</process-memory-share-shared-memory>
              <process-memory-share-current-size>1048264</process-memory-share-current-size>
              <process-memory-share-max-size>25165824</process-memory-share-max-size>
              <process-memory-share-used>445088</process-memory-share-used>
             </ROW_SHOWONEDYNAMIC>
            </TABLE_SHOWONEDYNAMIC>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/u6rib-pib</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/u6rib-notify</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/npacl</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/icmpv6</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/arp</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/arplib</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/pm</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/ip</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/ipv6</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/rpm</process-memory-share-table-showproc-key>
            <TABLE_SHOWONEDYNAMIC>
             <ROW_SHOWONEDYNAMIC>
              <process-memory-share-component>rpm</process-memory-share-component>
              <process-memory-share-shared-memory>63832000</process-memory-share-shared-memory>
              <process-memory-share-current-size>2096840</process-memory-share-current-size>
              <process-memory-share-max-size>6291456</process-memory-share-max-size>
              <process-memory-share-used>1024</process-memory-share-used>
             </ROW_SHOWONEDYNAMIC>
            </TABLE_SHOWONEDYNAMIC>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/igmp</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/m6rib</process-memory-share-table-showproc-key>
            <TABLE_SHOWONEDYNAMIC>
             <ROW_SHOWONEDYNAMIC>
              <process-memory-share-component>m6rib</process-memory-share-component>
              <process-memory-share-shared-memory>64134000</process-memory-share-shared-memory>
              <process-memory-share-current-size>3145416</process-memory-share-current-size>
              <process-memory-share-max-size>8388608</process-memory-share-max-size>
              <process-memory-share-used>12416</process-memory-share-used>
             </ROW_SHOWONEDYNAMIC>
            </TABLE_SHOWONEDYNAMIC>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/mrib</process-memory-share-table-showproc-key>
            <TABLE_SHOWONEDYNAMIC>
             <ROW_SHOWONEDYNAMIC>
              <process-memory-share-component>mrib</process-memory-share-component>
              <process-memory-share-shared-memory>64935000</process-memory-share-shared-memory>
              <process-memory-share-current-size>3145416</process-memory-share-current-size>
              <process-memory-share-max-size>60817408</process-memory-share-max-size>
              <process-memory-share-used>2952</process-memory-share-used>
             </ROW_SHOWONEDYNAMIC>
            </TABLE_SHOWONEDYNAMIC>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/m6rib-mfdm</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/mrib-mfdm</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
           <ROW_SHOWPROC>
            <process-memory-share-table-showproc-key>/rsw/shm/mcastfwd</process-memory-share-table-showproc-key>
           </ROW_SHOWPROC>
          </TABLE_SHOWPROC>
         </ROW_process_tag>
        </TABLE_process_tag>
       </__readonly__>
      </dynamic>
     </shared>
    </memory>
   </processes>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show processes memory shared dynamic**

Component           Shared Memory Current Size   Max Size      Used
urib                   0X55B02000      1048264  100663296    714640
u6rib                  0X5CA18000      1048264   25165824    445088
rpm                    0X63832000      2096840    6291456      1024
m6rib                  0X64134000      3145416    8388608     12416
mrib                   0X64935000      3145416   60817408      2952
'+' - Dynamic shared memory segment.
'*' - Non-default sized share memory segment. 

show configuration session

show configuration session myACLs
 
import requests
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 configuration session myACLs”,
  "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)
{
  "ssn-name": "config session name myACLs", 
  "TABLE_session_details": {
    "ROW_session_details": [
      {
        "ssn-cmd-num": 1, 
        "command": "ip access-list acl1"
      }, 
      {
        "ssn-cmd-num": 2, 
        "command": "permit tcp any any"
      }, 
      {
        "ssn-cmd-num": 3, 
        "command": "interface Ethernet2/1"
      }, 
      {
        "ssn-cmd-num": 4, 
        "command": "ip access-group acl1 in"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:ssnmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <configuration>
    <session>
     <__XML__PARAM__s3>
      <__XML__value>myACLs</__XML__value>
      <__readonly__>
       <ssn-name>config session name myACLs</ssn-name>
       <TABLE_session_details>
        <ROW_session_details>
         <ssn-cmd-num>1</ssn-cmd-num>
         <command>ip access-list acl1</command>
        </ROW_session_details>
        <ROW_session_details>
         <ssn-cmd-num>2</ssn-cmd-num>
         <command>permit tcp any any</command>
        </ROW_session_details>
        <ROW_session_details>
         <ssn-cmd-num>3</ssn-cmd-num>
         <command>interface Ethernet2/1</command>
        </ROW_session_details>
        <ROW_session_details>
         <ssn-cmd-num>4</ssn-cmd-num>
         <command>ip access-group acl1 in</command>
        </ROW_session_details>
       </TABLE_session_details>
      </__readonly__>
     </__XML__PARAM__s3>
    </session>
   </configuration>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show configuration session myACLs**

config session name myACLs
0001  ip access-list acl1
0002  permit tcp any any
0003  interface Ethernet2/1
0004  ip access-group acl1 in

show configuration session global-info

show configuration session global-info 
 
import requests
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 configuration session global-info”,
  "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)
{
  "max-ssns": 32, 
  "max-cmds": 102400, 
  "curr-num-ssns": 1, 
  "curr-num-cmds": 4
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:ssnmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <configuration>
    <session>
     <global-info>
      <__readonly__>
       <max-ssns>32</max-ssns>
       <max-cmds>102400</max-cmds>
       <curr-num-ssns>1</curr-num-ssns>
       <curr-num-cmds>4</curr-num-cmds>
      </__readonly__>
     </global-info>
    </session>
   </configuration>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show configuration session global-info**

Maximum number of sessions allowed     : 32
Maximum number of commands (all ssns)  : 102400
Current number of active sessions      : 1
Current number of commands (all ssns)  : 4

show configuration session status

show configuration session status
 
import requests
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 configuration session status”,
  "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)
{
  "TABLE_session_status": {
    "ROW_session_status": {
      "ssn-name": "myACLs", 
      "last-action": "Validate", 
      "ac-status": "Success", 
      "ac-reason": "NA", 
      "ac-tstamp": "22:05:15 IST Jul 18 2018"
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:ssnmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <configuration>
    <session>
     <status>
      <__readonly__>
       <TABLE_session_status>
        <ROW_session_status>
         <ssn-name>myACLs</ssn-name>
         <last-action>Validate</last-action>
         <ac-status>Success</ac-status>
         <ac-reason>NA</ac-reason>
         <ac-tstamp>22:05:15 IST Jul 18 2018</ac-tstamp>
        </ROW_session_status>
       </TABLE_session_status>
      </__readonly__>
     </status>
    </session>
   </configuration>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show configuration session status**

Session Name : myACLs Last Action : Validate Last Action Status : Success Last Action Reason : NA Last Action Timestamp : 22:05:15 IST Jul 18 2018

show configuration session summary

show configuration session summary 
 
import requests
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 configuration session summary”,
  "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)
{
  "TABLE_session_summary": {
    "ROW_session_summary": {
      "ssn-name": "myACLs", 
      "username": "admin", 
      "tstamp": "22:04:45 IST Jul 18 2018"
    }
  }, 
  "activesesscnt": 1
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:ssnmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <configuration>
    <session>
     <summary>
      <__readonly__>
       <TABLE_session_summary>
        <ROW_session_summary>
         <ssn-name>myACLs</ssn-name>
         <username>admin</username>
         <tstamp>22:04:45 IST Jul 18 2018</tstamp>
        </ROW_session_summary>
       </TABLE_session_summary>
       <activesesscnt>1</activesesscnt>
      </__readonly__>
     </summary>
    </session>
   </configuration>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show configuration session summary

Session Manager Database:

Name Session Owner Creation Time

myACLs admin 22:04:45 IST Jul 18 2018

Number of active configuration sessions = 1

show hardware queuing drops module

show hardware queuing drops module 1 
 
import requests
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 hardware queuing drops 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)
n7k2# show hardware queuing drops module 1 | json
n7k2# 
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:stats_client" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <hardware>
    <queuing>
     <drops>
      <module>
       <__XML__PARAM__module>
        <__XML__value>1</__XML__value>
       </__XML__PARAM__module>
      </module>
     </drops>
    </queuing>
   </hardware>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware queuing drops module 1**

|---------------------------------------|
|Executed at : 2018-07-18 22:08:11.694  |
|---------------------------------------|

VQ Drops

| Source | Egresss | Congested | Dropped | | Interface | Port | Queue | Packet |


Egress Buffer Drops

| Output | EB Drop pkts | | Interface | |


Span Drops

| input | SPAN session | span drop pkts | | Interface | | |


show hardware queuing drops egress module

show hardware queuing drops egress module 1
 
import requests
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 hardware queuing drops egress 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)
n7k2# show hardware queuing drops egress module 1 | json
n7k2# 
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:stats_client" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <hardware>
    <queuing>
     <drops>
      <egress>
       <module>
        <__XML__PARAM__module>
         <__XML__value>1</__XML__value>
        </__XML__PARAM__module>
       </module>
      </egress>
     </drops>
    </queuing>
   </hardware>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show hardware queuing drops egress module 1

VQ Drops

| Output | VQ Drops | VQ Congestion | Src | Src | Input | | Interface | | | Mod | Inst | Interface |


Egress Buffer Drops

| Output | EB Drops | | Interface | |


show hardware queuing drops ingress module

show hardware queuing drops ingress module 2
 
import requests
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 hardware queuing drops ingress module 2”,
  "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)
{
  "TABLE_module": {
    "ROW_module": {
      "module_number": "2", 
      "TABLE_deviceinfo": {
        "ROW_deviceinfo": {
          "device_name": "Flanker Queue"
        }
      }
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:stats_client" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <hardware>
    <queuing>
     <drops>
      <ingress>
       <module>
        <__XML__PARAM__module>
         <__XML__value>2</__XML__value>
         <__readonly__>
          <TABLE_module>
           <ROW_module>
            <module_number>2</module_number>
            <TABLE_deviceinfo>
             <ROW_deviceinfo>
              <device_name>Flanker Queue</device_name>
             </ROW_deviceinfo>
            </TABLE_deviceinfo>
           </ROW_module>
          </TABLE_module>
         </__readonly__>
        </__XML__PARAM__module>
       </module>
      </ingress>
     </drops>
    </queuing>
   </hardware>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware queuing drops ingress module 2**

Device: Flanker Queue

Buffer Tail drops: SOURCE INTERFACE OVL COUNT


VOQ drops: SOURCE INTERFACE VQI CCOS COUNT


SPAN drops: SOURCE INTERFACE SESSION COUNT


PL drops: SOURCE INTERFACE VL COUNT


Aggregate VOQ Tail drops: SOURCE INTERFACE CCOS COUNT


show file sh_fex

show file sh_fex 
 
import requests
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 file sh_fex”,
  "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)
{
  "file_content": [
    "FEX             FEX                 FEX                            FEX", 
    "Number        Description            State                 Model               Serial", 
    "------------------------------------------------------------------------------------------", 
    "104           FEX0104                Online                N2K-C2348TQ-10G-E   FOC2003R15W", 
    "105           FEX0105                Online                N2K-C2348TQ-10G-E   FOC2003R0EJ"
  ]
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:util_cli" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <file>
    <__XML__PARAM__uri0>
     <__XML__value>bootflash:/sh_fex</__XML__value>
     <__readonly__>
      <file_content>  FEX             FEX                 FEX                            FEX                  
</file_content>
      <file_content>Number        Description            State                 Model               Serial     
</file_content>
      <file_content>------------------------------------------------------------------------------------------
</file_content>
      <file_content>104           FEX0104                Online                N2K-C2348TQ-10G-E   FOC2003R15W 
</file_content>
      <file_content>105           FEX0105                Online                N2K-C2348TQ-10G-E   FOC2003R0EJ 
</file_content>
     </__readonly__>
    </__XML__PARAM__uri0>
   </file>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show file sh_fex

  FEX             FEX                 FEX                            FEX
Number Description State Model Serial

104 FEX0104 Online N2K-C2348TQ-10G-E FOC2003R15W 105 FEX0105 Online N2K-C2348TQ-10G-E FOC2003R0EJ

show file sh_fex cksum

show file sh_fex cksum
 
import requests
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 file sh_fex cksum”,
  "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)
{
  "file_content_cksum": "3750888201"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:util_cli" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <file>
    <__XML__PARAM__uri0>
     <__XML__value>bootflash:/sh_fex</__XML__value>
     <cksum>
      <__readonly__>
       <file_content_cksum>3750888201</file_content_cksum>
      </__readonly__>
     </cksum>
    </__XML__PARAM__uri0>
   </file>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show file sh_fex cksum**

3750888201

show file sh_fex md5sum

show file sh_fex md5sum
 
import requests
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 file sh_fex md5sum”,
  "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)
{
  "file_content_md5sum": "55e2ef78c481a589f3d3fb051191b082"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:util_cli" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <file>
    <__XML__PARAM__uri0>
     <__XML__value>bootflash:/sh_fex</__XML__value>
     <md5sum>
      <__readonly__>
       <file_content_md5sum>55e2ef78c481a589f3d3fb051191b082</file_content_md5sum>
      </__readonly__>
     </md5sum>
    </__XML__PARAM__uri0>
   </file>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show file sh_fex md5sum**

55e2ef78c481a589f3d3fb051191b082

show file sh_fex sha256sum

show file sh_fex sha256sum
 
import requests
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 file sh_fex sha256sum”,
  "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)
{
  "file_content_sha256sum": "c7f7a376833ea1a756f1a18c384d315b5ef6ba35bb24eb207d0f22faaded3b3d"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:util_cli" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <file>
    <__XML__PARAM__uri0>
     <__XML__value>bootflash:/sh_fex</__XML__value>
     <sha256sum>
      <__readonly__>
       <file_content_sha256sum>c7f7a376833ea1a756f1a18c384d315b5ef6ba35bb24eb207d0f22faaded3b3d</file_content_sha256sum>
      </__readonly__>
     </sha256sum>
    </__XML__PARAM__uri0>
   </file>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show file sh_fex sha256sum**

c7f7a376833ea1a756f1a18c384d315b5ef6ba35bb24eb207d0f22faaded3b3d

show file sh_fex sha512sum

show file sh_fex sha512sum
 
import requests
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 file sh_fex sha512sum”,
  "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)
{
  "file_content_sha512sum": "61cdffde3e85211142aa6d15983cdf2a237c8a7ca6a7251184af213456f72332a79f05375d203d7596b613b68e561423630df16d68a42fba97cfd3e272a6616e"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:util_cli" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <file>
    <__XML__PARAM__uri0>
     <__XML__value>bootflash:/sh_fex</__XML__value>
     <sha512sum>
      <__readonly__>
       <file_content_sha512sum>61cdffde3e85211142aa6d15983cdf2a237c8a7ca6a7251184af213456f72332a79f05375d203d7596b613b68e561423630df16d68a42fba97cfd3e272a6616e</file_content_sha512sum>
      </__readonly__>
     </sha512sum>
    </__XML__PARAM__uri0>
   </file>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>
 

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show file sh_fex sha512sum**

61cdffde3e85211142aa6d15983cdf2a237c8a7ca6a7251184af213456f72332a79f05375d203d7596b613b68e561423630df16d68a42fba97cfd3e272a6616e

show vdc current-vdc

show vdc current-vdc 
 
import requests
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 vdc current-vdc”,
  "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)
{
  "mode": 1, 
  "name": "n7k2"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:vdc_mgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <vdc>
    <current-vdc>
     <__readonly__>
      <mode>1</mode>
      <name>n7k2</name>
     </__readonly__>
    </current-vdc>
   </vdc>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show vdc current-vdc**

Current vdc is 1 - n7k2

show vdc fcoe-vlan-range

show vdc fcoe-vlan-range 
 
import requests
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 vdc fcoe-vlan-range”,
  "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)
{
  "fcoe-vdc": 0
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:vdc_mgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <vdc>
    <fcoe-vlan-range>
     <__readonly__>
      <fcoe-vdc>0</fcoe-vdc>
     </__readonly__>
    </fcoe-vlan-range>
   </vdc>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show vdc fcoe-vlan-range**

Storage VDC: 0

show hardware capacity fabric-utilization

show hardware capacity fabric-utilization
 
import requests
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 hardware capacity fabric-utilization”,
  "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)
{
  "TABLE_fabric_peak_util": {
    "ROW_fabric_peak_util": [
      {
        "module": 1, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 16, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 1, 
        "fab_link": 2, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 17, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 1, 
        "fab_link": 3, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 0, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 1, 
        "fab_link": 4, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 24, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 1, 
        "fab_link": 9, 
        "fab_slot": 3, 
        "fab_asic": 1, 
        "asic_port": 16, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 1, 
        "fab_link": 10, 
        "fab_slot": 3, 
        "fab_asic": 1, 
        "asic_port": 17, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 1, 
        "fab_link": 11, 
        "fab_slot": 3, 
        "fab_asic": 2, 
        "asic_port": 0, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 1, 
        "fab_link": 12, 
        "fab_slot": 3, 
        "fab_asic": 2, 
        "asic_port": 24, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 1, 
        "fab_link": 17, 
        "fab_slot": 5, 
        "fab_asic": 1, 
        "asic_port": 16, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 1, 
        "fab_link": 18, 
        "fab_slot": 5, 
        "fab_asic": 1, 
        "asic_port": 17, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 1, 
        "fab_link": 19, 
        "fab_slot": 5, 
        "fab_asic": 2, 
        "asic_port": 0, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 1, 
        "fab_link": 20, 
        "fab_slot": 5, 
        "fab_asic": 2, 
        "asic_port": 24, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 2, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 18, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 2, 
        "fab_link": 2, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 19, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 2, 
        "fab_link": 3, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 1, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 2, 
        "fab_link": 4, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 2, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 2, 
        "fab_link": 9, 
        "fab_slot": 3, 
        "fab_asic": 1, 
        "asic_port": 18, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 2, 
        "fab_link": 10, 
        "fab_slot": 3, 
        "fab_asic": 1, 
        "asic_port": 19, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 2, 
        "fab_link": 11, 
        "fab_slot": 3, 
        "fab_asic": 2, 
        "asic_port": 1, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 2, 
        "fab_link": 12, 
        "fab_slot": 3, 
        "fab_asic": 2, 
        "asic_port": 2, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 2, 
        "fab_link": 17, 
        "fab_slot": 5, 
        "fab_asic": 1, 
        "asic_port": 18, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 2, 
        "fab_link": 18, 
        "fab_slot": 5, 
        "fab_asic": 1, 
        "asic_port": 19, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 2, 
        "fab_link": 19, 
        "fab_slot": 5, 
        "fab_asic": 2, 
        "asic_port": 1, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 2, 
        "fab_link": 20, 
        "fab_slot": 5, 
        "fab_asic": 2, 
        "asic_port": 2, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 3, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 20, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 3, 
        "fab_link": 2, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 22, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 3, 
        "fab_link": 3, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 4, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 3, 
        "fab_link": 4, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 8, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 3, 
        "fab_link": 9, 
        "fab_slot": 3, 
        "fab_asic": 1, 
        "asic_port": 20, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 3, 
        "fab_link": 10, 
        "fab_slot": 3, 
        "fab_asic": 1, 
        "asic_port": 22, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 3, 
        "fab_link": 11, 
        "fab_slot": 3, 
        "fab_asic": 2, 
        "asic_port": 4, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 3, 
        "fab_link": 12, 
        "fab_slot": 3, 
        "fab_asic": 2, 
        "asic_port": 8, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 3, 
        "fab_link": 17, 
        "fab_slot": 5, 
        "fab_asic": 1, 
        "asic_port": 20, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 3, 
        "fab_link": 18, 
        "fab_slot": 5, 
        "fab_asic": 1, 
        "asic_port": 22, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 3, 
        "fab_link": 19, 
        "fab_slot": 5, 
        "fab_asic": 2, 
        "asic_port": 4, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 3, 
        "fab_link": 20, 
        "fab_slot": 5, 
        "fab_asic": 2, 
        "asic_port": 8, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 4, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 23, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 4, 
        "fab_link": 2, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 24, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 4, 
        "fab_link": 3, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 6, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 4, 
        "fab_link": 4, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 5, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 4, 
        "fab_link": 9, 
        "fab_slot": 3, 
        "fab_asic": 1, 
        "asic_port": 23, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 4, 
        "fab_link": 10, 
        "fab_slot": 3, 
        "fab_asic": 1, 
        "asic_port": 24, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 4, 
        "fab_link": 11, 
        "fab_slot": 3, 
        "fab_asic": 2, 
        "asic_port": 6, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 4, 
        "fab_link": 12, 
        "fab_slot": 3, 
        "fab_asic": 2, 
        "asic_port": 5, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 4, 
        "fab_link": 17, 
        "fab_slot": 5, 
        "fab_asic": 1, 
        "asic_port": 23, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 4, 
        "fab_link": 18, 
        "fab_slot": 5, 
        "fab_asic": 1, 
        "asic_port": 24, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 4, 
        "fab_link": 19, 
        "fab_slot": 5, 
        "fab_asic": 2, 
        "asic_port": 6, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 4, 
        "fab_link": 20, 
        "fab_slot": 5, 
        "fab_asic": 2, 
        "asic_port": 5, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 5, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 1, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 5, 
        "fab_link": 3, 
        "fab_slot": 3, 
        "fab_asic": 1, 
        "asic_port": 1, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 5, 
        "fab_link": 5, 
        "fab_slot": 5, 
        "fab_asic": 1, 
        "asic_port": 1, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 6, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 0, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 6, 
        "fab_link": 3, 
        "fab_slot": 3, 
        "fab_asic": 1, 
        "asic_port": 0, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 6, 
        "fab_link": 5, 
        "fab_slot": 5, 
        "fab_asic": 1, 
        "asic_port": 0, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 7, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 3, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 7, 
        "fab_link": 2, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 2, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 7, 
        "fab_link": 3, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 9, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 7, 
        "fab_link": 4, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 10, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 7, 
        "fab_link": 9, 
        "fab_slot": 3, 
        "fab_asic": 1, 
        "asic_port": 3, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 7, 
        "fab_link": 10, 
        "fab_slot": 3, 
        "fab_asic": 1, 
        "asic_port": 2, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 7, 
        "fab_link": 11, 
        "fab_slot": 3, 
        "fab_asic": 2, 
        "asic_port": 9, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 7, 
        "fab_link": 12, 
        "fab_slot": 3, 
        "fab_asic": 2, 
        "asic_port": 10, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 7, 
        "fab_link": 17, 
        "fab_slot": 5, 
        "fab_asic": 1, 
        "asic_port": 3, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 7, 
        "fab_link": 18, 
        "fab_slot": 5, 
        "fab_asic": 1, 
        "asic_port": 2, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 7, 
        "fab_link": 19, 
        "fab_slot": 5, 
        "fab_asic": 2, 
        "asic_port": 9, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 7, 
        "fab_link": 20, 
        "fab_slot": 5, 
        "fab_asic": 2, 
        "asic_port": 10, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 8, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 4, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 8, 
        "fab_link": 2, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 8, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 8, 
        "fab_link": 3, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 12, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 8, 
        "fab_link": 4, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 7, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 8, 
        "fab_link": 9, 
        "fab_slot": 3, 
        "fab_asic": 1, 
        "asic_port": 4, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 8, 
        "fab_link": 10, 
        "fab_slot": 3, 
        "fab_asic": 1, 
        "asic_port": 8, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 8, 
        "fab_link": 11, 
        "fab_slot": 3, 
        "fab_asic": 2, 
        "asic_port": 12, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 8, 
        "fab_link": 12, 
        "fab_slot": 3, 
        "fab_asic": 2, 
        "asic_port": 7, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 8, 
        "fab_link": 17, 
        "fab_slot": 5, 
        "fab_asic": 1, 
        "asic_port": 4, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 8, 
        "fab_link": 18, 
        "fab_slot": 5, 
        "fab_asic": 1, 
        "asic_port": 8, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 8, 
        "fab_link": 19, 
        "fab_slot": 5, 
        "fab_asic": 2, 
        "asic_port": 12, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 8, 
        "fab_link": 20, 
        "fab_slot": 5, 
        "fab_asic": 2, 
        "asic_port": 7, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 10, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 9, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 10, 
        "fab_link": 2, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 7, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 10, 
        "fab_link": 3, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 15, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 10, 
        "fab_link": 4, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 14, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 10, 
        "fab_link": 9, 
        "fab_slot": 3, 
        "fab_asic": 1, 
        "asic_port": 9, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 10, 
        "fab_link": 10, 
        "fab_slot": 3, 
        "fab_asic": 1, 
        "asic_port": 7, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 10, 
        "fab_link": 11, 
        "fab_slot": 3, 
        "fab_asic": 2, 
        "asic_port": 15, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 10, 
        "fab_link": 12, 
        "fab_slot": 3, 
        "fab_asic": 2, 
        "asic_port": 14, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 10, 
        "fab_link": 17, 
        "fab_slot": 5, 
        "fab_asic": 1, 
        "asic_port": 9, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 10, 
        "fab_link": 18, 
        "fab_slot": 5, 
        "fab_asic": 1, 
        "asic_port": 7, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 10, 
        "fab_link": 19, 
        "fab_slot": 5, 
        "fab_asic": 2, 
        "asic_port": 15, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }, 
      {
        "module": 10, 
        "fab_link": 20, 
        "fab_slot": 5, 
        "fab_asic": 2, 
        "asic_port": 14, 
        "bandwidth": 55, 
        "high_ingress_util": 0, 
        "high_ingress_time": "--", 
        "high_egress_util": 0, 
        "high_egress_time": "--", 
        "low_ingress_util": 0, 
        "low_ingress_time": "--", 
        "low_egress_util": 0, 
        "low_egress_time": "--"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:xbm_dbgwrap" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <hardware>
    <capacity>
     <fabric-utilization>
      <__readonly__>
       <TABLE_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>1</module>
         <fab_link>1</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>16</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>1</module>
         <fab_link>2</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>17</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>1</module>
         <fab_link>3</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>0</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>1</module>
         <fab_link>4</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>24</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>1</module>
         <fab_link>9</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>16</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>1</module>
         <fab_link>10</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>17</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>1</module>
         <fab_link>11</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>0</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>1</module>
         <fab_link>12</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>24</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>1</module>
         <fab_link>17</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>16</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>1</module>
         <fab_link>18</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>17</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>1</module>
         <fab_link>19</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>0</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>1</module>
         <fab_link>20</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>24</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>2</module>
         <fab_link>1</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>18</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>2</module>
         <fab_link>2</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>19</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>2</module>
         <fab_link>3</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>1</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>2</module>
         <fab_link>4</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>2</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>2</module>
         <fab_link>9</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>18</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>2</module>
         <fab_link>10</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>19</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>2</module>
         <fab_link>11</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>1</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>2</module>
         <fab_link>12</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>2</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>2</module>
         <fab_link>17</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>18</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>2</module>
         <fab_link>18</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>19</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>2</module>
         <fab_link>19</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>1</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>2</module>
         <fab_link>20</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>2</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>3</module>
         <fab_link>1</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>20</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>3</module>
         <fab_link>2</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>22</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>3</module>
         <fab_link>3</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>4</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>3</module>
         <fab_link>4</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>8</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>3</module>
         <fab_link>9</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>20</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>3</module>
         <fab_link>10</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>22</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>3</module>
         <fab_link>11</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>4</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>3</module>
         <fab_link>12</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>8</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>3</module>
         <fab_link>17</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>20</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>3</module>
         <fab_link>18</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>22</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>3</module>
         <fab_link>19</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>4</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>3</module>
         <fab_link>20</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>8</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>4</module>
         <fab_link>1</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>23</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>4</module>
         <fab_link>2</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>24</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>4</module>
         <fab_link>3</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>6</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>4</module>
         <fab_link>4</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>5</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>4</module>
         <fab_link>9</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>23</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>4</module>
         <fab_link>10</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>24</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>4</module>
         <fab_link>11</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>6</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>4</module>
         <fab_link>12</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>5</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>4</module>
         <fab_link>17</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>23</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>4</module>
         <fab_link>18</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>24</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>4</module>
         <fab_link>19</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>6</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>4</module>
         <fab_link>20</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>5</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>5</module>
         <fab_link>1</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>1</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>5</module>
         <fab_link>3</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>1</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>5</module>
         <fab_link>5</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>1</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>6</module>
         <fab_link>1</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>0</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>6</module>
         <fab_link>3</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>0</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>6</module>
         <fab_link>5</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>0</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>7</module>
         <fab_link>1</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>3</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>7</module>
         <fab_link>2</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>2</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>7</module>
         <fab_link>3</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>9</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>7</module>
         <fab_link>4</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>10</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>7</module>
         <fab_link>9</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>3</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>7</module>
         <fab_link>10</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>2</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>7</module>
         <fab_link>11</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>9</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>7</module>
         <fab_link>12</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>10</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>7</module>
         <fab_link>17</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>3</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>7</module>
         <fab_link>18</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>2</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>7</module>
         <fab_link>19</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>9</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>7</module>
         <fab_link>20</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>10</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>8</module>
         <fab_link>1</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>4</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>8</module>
         <fab_link>2</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>8</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>8</module>
         <fab_link>3</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>12</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>8</module>
         <fab_link>4</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>7</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>8</module>
         <fab_link>9</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>4</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>8</module>
         <fab_link>10</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>8</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>8</module>
         <fab_link>11</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>12</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>8</module>
         <fab_link>12</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>7</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>8</module>
         <fab_link>17</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>4</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>8</module>
         <fab_link>18</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>8</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>8</module>
         <fab_link>19</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>12</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>8</module>
         <fab_link>20</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>7</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>10</module>
         <fab_link>1</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>9</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>10</module>
         <fab_link>2</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>7</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>10</module>
         <fab_link>3</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>15</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>10</module>
         <fab_link>4</fab_link>
         <fab_slot>1</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>14</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>10</module>
         <fab_link>9</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>9</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>10</module>
         <fab_link>10</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>7</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>10</module>
         <fab_link>11</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>15</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>10</module>
         <fab_link>12</fab_link>
         <fab_slot>3</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>14</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>10</module>
         <fab_link>17</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>9</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>10</module>
         <fab_link>18</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>1</fab_asic>
         <asic_port>7</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>10</module>
         <fab_link>19</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>15</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
        <ROW_fabric_peak_util>
         <module>10</module>
         <fab_link>20</fab_link>
         <fab_slot>5</fab_slot>
         <fab_asic>2</fab_asic>
         <asic_port>14</asic_port>
         <bandwidth>55</bandwidth>
         <high_ingress_util>0</high_ingress_util>
         <high_ingress_time>--</high_ingress_time>
         <high_egress_util>0</high_egress_util>
         <high_egress_time>--</high_egress_time>
         <low_ingress_util>0</low_ingress_util>
         <low_ingress_time>--</low_ingress_time>
         <low_egress_util>0</low_egress_util>
         <low_egress_time>--</low_egress_time>
        </ROW_fabric_peak_util>
       </TABLE_fabric_peak_util>
      </__readonly__>
     </fabric-utilization>
    </capacity>
   </hardware>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware capacity fabric-utilization**

Fabric Planes: A -- Unicast fabric packets B -- Multicast/Multidestination fabric packets

Bandwidth is in Gbps and shared by both Fabric Planes (A+B) PEAK FABRIC UTILIZATION Mod Fab Fab Fab ASIC Band Fab Ingress Egress Lnk Mod ASIC Port wdth Pln Util% Time Util% Time

1 1 1 1 16 55 A 0 -- 0 --
1 1 1 1 16 55 B 0 -- 0 --
1 2 1 1 17 55 A 0 -- 0 --
1 2 1 1 17 55 B 0 -- 0 --
1 3 1 2 0 55 A 0 -- 0 --
1 3 1 2 0 55 B 0 -- 0 --
1 4 1 2 24 55 A 0 -- 0 --
1 4 1 2 24 55 B 0 -- 0 --
1 9 3 1 16 55 A 0 -- 0 --
1 9 3 1 16 55 B 0 -- 0 --
1 10 3 1 17 55 A 0 -- 0 --
1 10 3 1 17 55 B 0 -- 0 --
1 11 3 2 0 55 A 0 -- 0 --
1 11 3 2 0 55 B 0 -- 0 --
1 12 3 2 24 55 A 0 -- 0 --
1 12 3 2 24 55 B 0 -- 0 --
1 17 5 1 16 55 A 0 -- 0 --
1 17 5 1 16 55 B 0 -- 0 --
1 18 5 1 17 55 A 0 -- 0 --
1 18 5 1 17 55 B 0 -- 0 --
1 19 5 2 0 55 A 0 -- 0 --
1 19 5 2 0 55 B 0 -- 0 --
1 20 5 2 24 55 A 0 -- 0 --
1 20 5 2 24 55 B 0 -- 0 --

2 1 1 1 18 55 A 0 -- 0 --
2 1 1 1 18 55 B 0 -- 0 --
2 2 1 1 19 55 A 0 -- 0 --
2 2 1 1 19 55 B 0 -- 0 --
2 3 1 2 1 55 A 0 -- 0 --
2 3 1 2 1 55 B 0 -- 0 --
2 4 1 2 2 55 A 0 -- 0 --
2 4 1 2 2 55 B 0 -- 0 --
2 9 3 1 18 55 A 0 -- 0 --
2 9 3 1 18 55 B 0 -- 0 --
2 10 3 1 19 55 A 0 -- 0 --
2 10 3 1 19 55 B 0 -- 0 --
2 11 3 2 1 55 A 0 -- 0 --
2 11 3 2 1 55 B 0 -- 0 --
2 12 3 2 2 55 A 0 -- 0 --
2 12 3 2 2 55 B 0 -- 0 --
2 17 5 1 18 55 A 0 -- 0 --
2 17 5 1 18 55 B 0 -- 0 --
2 18 5 1 19 55 A 0 -- 0 --
2 18 5 1 19 55 B 0 -- 0 --
2 19 5 2 1 55 A 0 -- 0 --
2 19 5 2 1 55 B 0 -- 0 --
2 20 5 2 2 55 A 0 -- 0 --
2 20 5 2 2 55 B 0 -- 0 --

3 1 1 1 20 55 A 0 -- 0 --
3 1 1 1 20 55 B 0 -- 0 --
3 2 1 1 22 55 A 0 -- 0 --
3 2 1 1 22 55 B 0 -- 0 --
3 3 1 2 4 55 A 0 -- 0 --
3 3 1 2 4 55 B 0 -- 0 --
3 4 1 2 8 55 A 0 -- 0 --
3 4 1 2 8 55 B 0 -- 0 --
3 9 3 1 20 55 A 0 -- 0 --
3 9 3 1 20 55 B 0 -- 0 --
3 10 3 1 22 55 A 0 -- 0 --
3 10 3 1 22 55 B 0 -- 0 --
3 11 3 2 4 55 A 0 -- 0 --
3 11 3 2 4 55 B 0 -- 0 --
3 12 3 2 8 55 A 0 -- 0 --
3 12 3 2 8 55 B 0 -- 0 --
3 17 5 1 20 55 A 0 -- 0 --
3 17 5 1 20 55 B 0 -- 0 --
3 18 5 1 22 55 A 0 -- 0 --
3 18 5 1 22 55 B 0 -- 0 --
3 19 5 2 4 55 A 0 -- 0 --
3 19 5 2 4 55 B 0 -- 0 --
3 20 5 2 8 55 A 0 -- 0 --
3 20 5 2 8 55 B 0 -- 0 --

4 1 1 1 23 55 A 0 -- 0 --
4 1 1 1 23 55 B 0 -- 0 --
4 2 1 1 24 55 A 0 -- 0 --
4 2 1 1 24 55 B 0 -- 0 --
4 3 1 2 6 55 A 0 -- 0 --
4 3 1 2 6 55 B 0 -- 0 --
4 4 1 2 5 55 A 0 -- 0 --
4 4 1 2 5 55 B 0 -- 0 --
4 9 3 1 23 55 A 0 -- 0 --
4 9 3 1 23 55 B 0 -- 0 --
4 10 3 1 24 55 A 0 -- 0 --
4 10 3 1 24 55 B 0 -- 0 --
4 11 3 2 6 55 A 0 -- 0 --
4 11 3 2 6 55 B 0 -- 0 --
4 12 3 2 5 55 A 0 -- 0 --
4 12 3 2 5 55 B 0 -- 0 --
4 17 5 1 23 55 A 0 -- 0 --
4 17 5 1 23 55 B 0 -- 0 --
4 18 5 1 24 55 A 0 -- 0 --
4 18 5 1 24 55 B 0 -- 0 --
4 19 5 2 6 55 A 0 -- 0 --
4 19 5 2 6 55 B 0 -- 0 --
4 20 5 2 5 55 A 0 -- 0 --
4 20 5 2 5 55 B 0 -- 0 --

5 1 1 1 1 55 A 0 -- 0 --
5 1 1 1 1 55 B 0 -- 0 --
5 3 3 1 1 55 A 0 -- 0 --
5 3 3 1 1 55 B 0 -- 0 --
5 5 5 1 1 55 A 0 -- 0 --
5 5 5 1 1 55 B 0 -- 0 --

6 1 1 1 0 55 A 0 -- 0 --
6 1 1 1 0 55 B 0 -- 0 --
6 3 3 1 0 55 A 0 -- 0 --
6 3 3 1 0 55 B 0 -- 0 --
6 5 5 1 0 55 A 0 -- 0 --
6 5 5 1 0 55 B 0 -- 0 --

7 1 1 1 3 55 A 0 -- 0 --
7 1 1 1 3 55 B 0 -- 0 --
7 2 1 1 2 55 A 0 -- 0 --
7 2 1 1 2 55 B 0 -- 0 --
7 3 1 2 9 55 A 0 -- 0 --
7 3 1 2 9 55 B 0 -- 0 --
7 4 1 2 10 55 A 0 -- 0 --
7 4 1 2 10 55 B 0 -- 0 --
7 9 3 1 3 55 A 0 -- 0 --
7 9 3 1 3 55 B 0 -- 0 --
7 10 3 1 2 55 A 0 -- 0 --
7 10 3 1 2 55 B 0 -- 0 --
7 11 3 2 9 55 A 0 -- 0 --
7 11 3 2 9 55 B 0 -- 0 --
7 12 3 2 10 55 A 0 -- 0 --
7 12 3 2 10 55 B 0 -- 0 --
7 17 5 1 3 55 A 0 -- 0 --
7 17 5 1 3 55 B 0 -- 0 --
7 18 5 1 2 55 A 0 -- 0 --
7 18 5 1 2 55 B 0 -- 0 --
7 19 5 2 9 55 A 0 -- 0 --
7 19 5 2 9 55 B 0 -- 0 --
7 20 5 2 10 55 A 0 -- 0 --
7 20 5 2 10 55 B 0 -- 0 --

8 1 1 1 4 55 A 0 -- 0 --
8 1 1 1 4 55 B 0 -- 0 --
8 2 1 1 8 55 A 0 -- 0 --
8 2 1 1 8 55 B 0 -- 0 --
8 3 1 2 12 55 A 0 -- 0 --
8 3 1 2 12 55 B 0 -- 0 --
8 4 1 2 7 55 A 0 -- 0 --
8 4 1 2 7 55 B 0 -- 0 --
8 9 3 1 4 55 A 0 -- 0 --
8 9 3 1 4 55 B 0 -- 0 --
8 10 3 1 8 55 A 0 -- 0 --
8 10 3 1 8 55 B 0 -- 0 --
8 11 3 2 12 55 A 0 -- 0 --
8 11 3 2 12 55 B 0 -- 0 --
8 12 3 2 7 55 A 0 -- 0 --
8 12 3 2 7 55 B 0 -- 0 --
8 17 5 1 4 55 A 0 -- 0 --
8 17 5 1 4 55 B 0 -- 0 --
8 18 5 1 8 55 A 0 -- 0 --
8 18 5 1 8 55 B 0 -- 0 --
8 19 5 2 12 55 A 0 -- 0 --
8 19 5 2 12 55 B 0 -- 0 --
8 20 5 2 7 55 A 0 -- 0 --
8 20 5 2 7 55 B 0 -- 0 --

10 1 1 1 9 55 A 0 -- 0 --
10 1 1 1 9 55 B 0 -- 0 --
10 2 1 1 7 55 A 0 -- 0 --
10 2 1 1 7 55 B 0 -- 0 --
10 3 1 2 15 55 A 0 -- 0 --
10 3 1 2 15 55 B 0 -- 0 --
10 4 1 2 14 55 A 0 -- 0 --
10 4 1 2 14 55 B 0 -- 0 --
10 9 3 1 9 55 A 0 -- 0 --
10 9 3 1 9 55 B 0 -- 0 --
10 10 3 1 7 55 A 0 -- 0 --
10 10 3 1 7 55 B 0 -- 0 --
10 11 3 2 15 55 A 0 -- 0 --
10 11 3 2 15 55 B 0 -- 0 --
10 12 3 2 14 55 A 0 -- 0 --
10 12 3 2 14 55 B 0 -- 0 --
10 17 5 1 9 55 A 0 -- 0 --
10 17 5 1 9 55 B 0 -- 0 --
10 18 5 1 7 55 A 0 -- 0 --
10 18 5 1 7 55 B 0 -- 0 --
10 19 5 2 15 55 A 0 -- 0 --
10 19 5 2 15 55 B 0 -- 0 --
10 20 5 2 14 55 A 0 -- 0 --
10 20 5 2 14 55 B 0 -- 0 --

show hardware fabric-utilization

show hardware fabric-utilization
 
import requests
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 hardware fabric-utilization”,
  "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)
{
  "TABLE_fabric_util": {
    "ROW_fabric_util": [
      {
        "module": 1, 
        "bandwidth": 660, 
        "ingress": 0.0, 
        "egress": 0.0
      }, 
      {
        "module": 2, 
        "bandwidth": 660, 
        "ingress": 0.0, 
        "egress": 0.0
      }, 
      {
        "module": 3, 
        "bandwidth": 660, 
        "ingress": 0.0, 
        "egress": 0.0
      }, 
      {
        "module": 4, 
        "bandwidth": 660, 
        "ingress": 0.0, 
        "egress": 0.0
      }, 
      {
        "module": 5, 
        "bandwidth": 165, 
        "ingress": 0.0, 
        "egress": 0.0
      }, 
      {
        "module": 6, 
        "bandwidth": 165, 
        "ingress": 0.0, 
        "egress": 0.0
      }, 
      {
        "module": 7, 
        "bandwidth": 660, 
        "ingress": 0.0, 
        "egress": 0.0
      }, 
      {
        "module": 8, 
        "bandwidth": 660, 
        "ingress": 0.0, 
        "egress": 0.0
      }, 
      {
        "module": 10, 
        "bandwidth": 660, 
        "ingress": 0.0, 
        "egress": 0.0
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:xbm_dbgwrap" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <hardware>
    <fabric-utilization>
     <__readonly__>
      <TABLE_fabric_util>
       <ROW_fabric_util>
        <module>1</module>
        <bandwidth>660</bandwidth>
        <ingress>0.0</ingress>
        <egress>0.0</egress>
       </ROW_fabric_util>
       <ROW_fabric_util>
        <module>2</module>
        <bandwidth>660</bandwidth>
        <ingress>0.0</ingress>
        <egress>0.0</egress>
       </ROW_fabric_util>
       <ROW_fabric_util>
        <module>3</module>
        <bandwidth>660</bandwidth>
        <ingress>0.0</ingress>
        <egress>0.0</egress>
       </ROW_fabric_util>
       <ROW_fabric_util>
        <module>4</module>
        <bandwidth>660</bandwidth>
        <ingress>0.0</ingress>
        <egress>0.0</egress>
       </ROW_fabric_util>
       <ROW_fabric_util>
        <module>5</module>
        <bandwidth>165</bandwidth>
        <ingress>0.0</ingress>
        <egress>0.0</egress>
       </ROW_fabric_util>
       <ROW_fabric_util>
        <module>6</module>
        <bandwidth>165</bandwidth>
        <ingress>0.0</ingress>
        <egress>0.0</egress>
       </ROW_fabric_util>
       <ROW_fabric_util>
        <module>7</module>
        <bandwidth>660</bandwidth>
        <ingress>0.0</ingress>
        <egress>0.0</egress>
       </ROW_fabric_util>
       <ROW_fabric_util>
        <module>8</module>
        <bandwidth>660</bandwidth>
        <ingress>0.0</ingress>
        <egress>0.0</egress>
       </ROW_fabric_util>
       <ROW_fabric_util>
        <module>10</module>
        <bandwidth>660</bandwidth>
        <ingress>0.0</ingress>
        <egress>0.0</egress>
       </ROW_fabric_util>
      </TABLE_fabric_util>
     </__readonly__>
    </fabric-utilization>
   </hardware>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware fabric-utilization**

Mod Total Fabric Utilization
Bandwidth Ingress% Egress%

1 660 Gbps 0.0 0.0 2 660 Gbps 0.0 0.0 3 660 Gbps 0.0 0.0 4 660 Gbps 0.0 0.0 5 165 Gbps 0.0 0.0 6 165 Gbps 0.0 0.0 7 660 Gbps 0.0 0.0 8 660 Gbps 0.0 0.0 10 660 Gbps 0.0 0.0

show hardware fabric-utilization detail fabric-slot

show hardware fabric-utilization detail fabric-slot
 
import requests
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 hardware fabric-utilization detail fabric-slot”,
  "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)
{
  "TABLE_fabric_util": {
    "ROW_fabric_util": [
      {
        "module": 1, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 16, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 1, 
        "fab_link": 2, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 17, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 1, 
        "fab_link": 3, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 0, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 1, 
        "fab_link": 4, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 24, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 2, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 18, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 2, 
        "fab_link": 2, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 19, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 2, 
        "fab_link": 3, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 1, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 2, 
        "fab_link": 4, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 2, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 3, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 20, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 3, 
        "fab_link": 2, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 22, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 3, 
        "fab_link": 3, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 4, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 3, 
        "fab_link": 4, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 8, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 4, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 23, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 4, 
        "fab_link": 2, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 24, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 4, 
        "fab_link": 3, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 6, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 4, 
        "fab_link": 4, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 5, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 5, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 1, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 6, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 0, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 7, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 3, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 7, 
        "fab_link": 2, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 2, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 7, 
        "fab_link": 3, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 9, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 7, 
        "fab_link": 4, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 10, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 8, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 4, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 8, 
        "fab_link": 2, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 8, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 8, 
        "fab_link": 3, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 12, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 8, 
        "fab_link": 4, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 7, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 10, 
        "fab_link": 1, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 9, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 10, 
        "fab_link": 2, 
        "fab_slot": 1, 
        "fab_asic": 1, 
        "asic_port": 7, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 10, 
        "fab_link": 3, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 15, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "module": 10, 
        "fab_link": 4, 
        "fab_slot": 1, 
        "fab_asic": 2, 
        "asic_port": 14, 
        "bandwidth": 55, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }
    ]
  }, 
  "TABLE_fabric_util_spine_xlink": {
    "ROW_fabric_util_spine_xlink": [
      {
        "fab_mod": 1, 
        "fab_asic": 1, 
        "asic_port": 11, 
        "conn_asic": 2, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }, 
      {
        "fab_mod": 1, 
        "fab_asic": 2, 
        "asic_port": 19, 
        "conn_asic": 1, 
        "high_ingress": 0, 
        "high_egress": 0, 
        "low_ingress": 0, 
        "low_egress": 0
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:xbm_dbgwrap" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <hardware>
    <fabric-utilization>
     <detail>
      <fabric-slot>
       <__XML__PARAM__santa-cruz-range>
        <__XML__value>1</__XML__value>
        <__readonly__>
         <TABLE_fabric_util>
          <ROW_fabric_util>
           <module>1</module>
           <fab_link>1</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>1</fab_asic>
           <asic_port>16</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>1</module>
           <fab_link>2</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>1</fab_asic>
           <asic_port>17</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>1</module>
           <fab_link>3</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>2</fab_asic>
           <asic_port>0</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>1</module>
           <fab_link>4</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>2</fab_asic>
           <asic_port>24</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>2</module>
           <fab_link>1</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>1</fab_asic>
           <asic_port>18</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>2</module>
           <fab_link>2</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>1</fab_asic>
           <asic_port>19</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>2</module>
           <fab_link>3</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>2</fab_asic>
           <asic_port>1</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>2</module>
           <fab_link>4</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>2</fab_asic>
           <asic_port>2</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>3</module>
           <fab_link>1</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>1</fab_asic>
           <asic_port>20</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>3</module>
           <fab_link>2</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>1</fab_asic>
           <asic_port>22</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>3</module>
           <fab_link>3</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>2</fab_asic>
           <asic_port>4</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>3</module>
           <fab_link>4</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>2</fab_asic>
           <asic_port>8</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>4</module>
           <fab_link>1</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>1</fab_asic>
           <asic_port>23</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>4</module>
           <fab_link>2</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>1</fab_asic>
           <asic_port>24</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>4</module>
           <fab_link>3</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>2</fab_asic>
           <asic_port>6</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>4</module>
           <fab_link>4</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>2</fab_asic>
           <asic_port>5</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>5</module>
           <fab_link>1</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>1</fab_asic>
           <asic_port>1</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>6</module>
           <fab_link>1</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>1</fab_asic>
           <asic_port>0</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>7</module>
           <fab_link>1</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>1</fab_asic>
           <asic_port>3</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>7</module>
           <fab_link>2</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>1</fab_asic>
           <asic_port>2</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>7</module>
           <fab_link>3</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>2</fab_asic>
           <asic_port>9</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>7</module>
           <fab_link>4</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>2</fab_asic>
           <asic_port>10</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>8</module>
           <fab_link>1</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>1</fab_asic>
           <asic_port>4</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>8</module>
           <fab_link>2</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>1</fab_asic>
           <asic_port>8</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>8</module>
           <fab_link>3</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>2</fab_asic>
           <asic_port>12</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>8</module>
           <fab_link>4</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>2</fab_asic>
           <asic_port>7</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>10</module>
           <fab_link>1</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>1</fab_asic>
           <asic_port>9</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>10</module>
           <fab_link>2</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>1</fab_asic>
           <asic_port>7</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>10</module>
           <fab_link>3</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>2</fab_asic>
           <asic_port>15</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
          <ROW_fabric_util>
           <module>10</module>
           <fab_link>4</fab_link>
           <fab_slot>1</fab_slot>
           <fab_asic>2</fab_asic>
           <asic_port>14</asic_port>
           <bandwidth>55</bandwidth>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util>
         </TABLE_fabric_util>
         <TABLE_fabric_util_spine_xlink>
          <ROW_fabric_util_spine_xlink>
           <fab_mod>1</fab_mod>
           <fab_asic>1</fab_asic>
           <asic_port>11</asic_port>
           <conn_asic>2</conn_asic>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util_spine_xlink>
          <ROW_fabric_util_spine_xlink>
           <fab_mod>1</fab_mod>
           <fab_asic>2</fab_asic>
           <asic_port>19</asic_port>
           <conn_asic>1</conn_asic>
           <high_ingress>0</high_ingress>
           <high_egress>0</high_egress>
           <low_ingress>0</low_ingress>
           <low_egress>0</low_egress>
          </ROW_fabric_util_spine_xlink>
         </TABLE_fabric_util_spine_xlink>
        </__readonly__>
       </__XML__PARAM__santa-cruz-range>
      </fabric-slot>
     </detail>
    </fabric-utilization>
   </hardware>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware fabric-utilization detail fabric-slot**

n7k2# show hardware fabric-utilization detail fabric-slot ?
  <1-6>  Enter the fabric number

n7k2# show hardware fabric-utilization detail fabric-slot 2 ERROR: Fabric is not present n7k2# show hardware fabric-utilization detail fabric-slot 1

Fabric Planes: A -- Unicast fabric packets B -- Multicast/Multidestination fabric packets

Bandwidth is in Gbps and shared by both Fabric Planes (A+B)

1 1 1 1 16 55 A 0 0 1 1 1 1 16 55 B 0 0 1 2 1 1 17 55 A 0 0 1 2 1 1 17 55 B 0 0 1 3 1 2 0 55 A 0 0 1 3 1 2 0 55 B 0 0 1 4 1 2 24 55 A 0 0 1 4 1 2 24 55 B 0 0

2 1 1 1 18 55 A 0 0 2 1 1 1 18 55 B 0 0 2 2 1 1 19 55 A 0 0 2 2 1 1 19 55 B 0 0 2 3 1 2 1 55 A 0 0 2 3 1 2 1 55 B 0 0 2 4 1 2 2 55 A 0 0 2 4 1 2 2 55 B 0 0

3 1 1 1 20 55 A 0 0 3 1 1 1 20 55 B 0 0 3 2 1 1 22 55 A 0 0 3 2 1 1 22 55 B 0 0 3 3 1 2 4 55 A 0 0 3 3 1 2 4 55 B 0 0 3 4 1 2 8 55 A 0 0 3 4 1 2 8 55 B 0 0

4 1 1 1 23 55 A 0 0 4 1 1 1 23 55 B 0 0 4 2 1 1 24 55 A 0 0 4 2 1 1 24 55 B 0 0 4 3 1 2 6 55 A 0 0 4 3 1 2 6 55 B 0 0 4 4 1 2 5 55 A 0 0 4 4 1 2 5 55 B 0 0

5 1 1 1 1 55 A 0 0 5 1 1 1 1 55 B 0 0

6 1 1 1 0 55 A 0 0 6 1 1 1 0 55 B 0 0

7 1 1 1 3 55 A 0 0 7 1 1 1 3 55 B 0 0 7 2 1 1 2 55 A 0 0 7 2 1 1 2 55 B 0 0 7 3 1 2 9 55 A 0 0 7 3 1 2 9 55 B 0 0 7 4 1 2 10 55 A 0 0 7 4 1 2 10 55 B 0 0

8 1 1 1 4 55 A 0 0 8 1 1 1 4 55 B 0 0 8 2 1 1 8 55 A 0 0 8 2 1 1 8 55 B 0 0 8 3 1 2 12 55 A 0 0 8 3 1 2 12 55 B 0 0 8 4 1 2 7 55 A 0 0 8 4 1 2 7 55 B 0 0

10 1 1 1 9 55 A 0 0 10 1 1 1 9 55 B 0 0 10 2 1 1 7 55 A 0 0 10 2 1 1 7 55 B 0 0 10 3 1 2 15 55 A 0 0 10 3 1 2 15 55 B 0 0 10 4 1 2 14 55 A 0 0 10 4 1 2 14 55 B 0 0

Fab ASIC ASIC Conn Fab Fabric Utilization Mod Port ASIC Plane Ingress% Egress%

1 1 11 2 A 0 0 1 1 11 2 B 0 0 1 2 19 1 A 0 0 1 2 19 1 B 0 0

show system vqi allocations

show system vqi allocations 
 
import requests
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 system vqi allocations”,
  "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)
{
  "TABLE_vqi_allocations": {
    "ROW_vqi_allocations": [
      {
        "slot": 1, 
        "allocated": 36, 
        "reserved": 36
      }, 
      {
        "slot": 2, 
        "allocated": 54, 
        "reserved": 54
      }, 
      {
        "slot": 3, 
        "allocated": 26, 
        "reserved": 26
      }, 
      {
        "slot": 4, 
        "allocated": 36, 
        "reserved": 36
      }, 
      {
        "slot": 5, 
        "allocated": 3, 
        "reserved": 3
      }, 
      {
        "slot": 6, 
        "allocated": 3, 
        "reserved": 3
      }, 
      {
        "slot": 7, 
        "allocated": 14, 
        "reserved": 14
      }, 
      {
        "slot": 8, 
        "allocated": 50, 
        "reserved": 50
      }, 
      {
        "slot": 10, 
        "allocated": 36, 
        "reserved": 36
      }
    ]
  }, 
  "available_vqis": 766
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:xbm_dbgwrap" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <system>
    <vqi>
     <allocations>
      <__readonly__>
       <TABLE_vqi_allocations>
        <ROW_vqi_allocations>
         <slot>1</slot>
         <allocated>36</allocated>
         <reserved>36</reserved>
        </ROW_vqi_allocations>
        <ROW_vqi_allocations>
         <slot>2</slot>
         <allocated>54</allocated>
         <reserved>54</reserved>
        </ROW_vqi_allocations>
        <ROW_vqi_allocations>
         <slot>3</slot>
         <allocated>26</allocated>
         <reserved>26</reserved>
        </ROW_vqi_allocations>
        <ROW_vqi_allocations>
         <slot>4</slot>
         <allocated>36</allocated>
         <reserved>36</reserved>
        </ROW_vqi_allocations>
        <ROW_vqi_allocations>
         <slot>5</slot>
         <allocated>3</allocated>
         <reserved>3</reserved>
        </ROW_vqi_allocations>
        <ROW_vqi_allocations>
         <slot>6</slot>
         <allocated>3</allocated>
         <reserved>3</reserved>
        </ROW_vqi_allocations>
        <ROW_vqi_allocations>
         <slot>7</slot>
         <allocated>14</allocated>
         <reserved>14</reserved>
        </ROW_vqi_allocations>
        <ROW_vqi_allocations>
         <slot>8</slot>
         <allocated>50</allocated>
         <reserved>50</reserved>
        </ROW_vqi_allocations>
        <ROW_vqi_allocations>
         <slot>10</slot>
         <allocated>36</allocated>
         <reserved>36</reserved>
        </ROW_vqi_allocations>
       </TABLE_vqi_allocations>
       <available_vqis>766</available_vqis>
      </__readonly__>
     </allocations>
    </vqi>
   </system>
  </show>
 </nf:data>
</nf:rpc-reply>
]]>]]>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show system vqi allocations**

Slot | Allocated | Reserved

1 | 36 | 36 2 | 54 | 54 3 | 26 | 26 4 | 36 | 36 5 | 3 | 3 6 | 3 | 3 7 | 14 | 14 8 | 50 | 50 10 | 36 | 36

Available VQI count=766

show install all impact epld n7700-s2-epld.8.3.0.47.img

show install all impact epld n7700-s2-epld.8.3.0.47.img 
 
import requests
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 install all impact epld n7700-s2-epld.8.3.0.47.img”,
  "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)
{                                                                          
  "TABLE_compatibility_check": {                                           
    "ROW_compatibility_check": [                                           
      {                                                                    
        "module": 1,                                                       
        "type": "LC",                                                      
        "upgradable": "No",                                                
        "impact": "none",                                                  
        "reason": "Module is not Online"                                   
      },                                                                   
      {                                                                    
        "module": 3,                                                       
        "type": "LC",                                                      
        "upgradable": "No",                                                
        "impact": "none",                                                  
        "reason": "Module is not Online"                                   
      },                                                                   
      {                                                                    
        "module": 4,                                                       
        "type": "LC",                                                      
        "upgradable": "No",                                                
        "impact": "none",                                                  
        "reason": "Module is not Online"                                   
      },                                                                   
      {                                                                    
        "module": 5,                                                       
        "type": "LC",                                                      
        "upgradable": "No",                                                
        "impact": "none",                                                  
        "reason": "Module is not Online"                                   
      },                                                                   
      {                                                                    
        "module": 6,                                                       
        "type": "LC",                                                      
        "upgradable": "Yes",                                               
        "impact": "disruptive",                                            
        "reason": "Module Upgradable"                                      
      },                                                                   
      {                                                                    
        "module": 7,                                                       
        "type": "LC",                                                      
        "upgradable": "Yes",                                               
        "impact": "disruptive",                                            
        "reason": "Module Upgradable"                                      
      },                                                                   
      {                                                                    
        "module": 8,                                                       
        "type": "LC",                                                      
        "upgradable": "Yes",                                               
        "impact": "disruptive",                                            
        "reason": "Module Upgradable"                                      
      },                                                                   
      {                                                                    
        "module": 9,                                                       
        "type": "SUP",                                                     
        "upgradable": "Yes",                                               
        "impact": "disruptive",                                            
        "reason": "Module Upgradable"                                      
      },                                                                   
      {                                                                    
        "module": 10,                                                      
        "type": "SUP",                                                     
        "upgradable": "Yes",                                               
        "impact": "disruptive",                                            
        "reason": "Module Upgradable"                                      
      },                                                                   
      {                                                                    
        "module": 11,                                                      
        "type": "LC",                                                      
        "upgradable": "No",                                                
        "impact": "none",                                                  
        "reason": "Module is not Online"                                   
      },                                                                   
      {                                                                    
        "module": 14,                                                      
        "type": "LC",                                                      
        "upgradable": "No",                                                
        "impact": "none",                                                  
        "reason": "Module is not Online"                                   
      },                                                                   
      {                                                                    
        "module": 15,                                                      
        "type": "LC",                                                      
        "upgradable": "Yes",                                               
        "impact": "disruptive",                                            
        "reason": "Module Upgradable"                                      
      },                                                                   
      {                                                                    
        "module": 16,                                                      
        "type": "LC",                                                      
        "upgradable": "No",                                                
        "impact": "none",                                                  
        "reason": "Module is not Online"                                   
      },                                                                   
      {                                                                    
        "module": 17,                                                      
        "type": "LC",                                                      
        "upgradable": "No",                                                
        "impact": "none",                                                  
        "reason": "Module is not Online"                                   
      },                                                                   
      {                                                                    
        "module": 1,                                                       
        "type": "Xbar",                                                    
        "upgradable": "Yes",                                               
        "impact": "disruptive",                                            
        "reason": "Module Upgradable"                                      
      },                                                                   
      {                                                                    
        "module": 2,                                                       
        "type": "Xbar",                                                    
        "upgradable": "Yes",                                               
        "impact": "disruptive",                                            
        "reason": "Module Upgradable"                                      
      },                                                                   
      {                                                                    
        "module": 3,                                                       
        "type": "Xbar",                                                    
        "upgradable": "Yes",                                               
        "impact": "disruptive",                                            
        "reason": "Module Upgradable"                                      
      },                                                                   
      {                                                                    
        "module": 4,                                                       
        "type": "Xbar",                                                    
        "upgradable": "Yes",                                               
        "impact": "disruptive",                                            
        "reason": "Module Upgradable"                                      
      },                                                                   
      {                                                                    
        "module": 5,                                                       
        "type": "Xbar",                                                    
        "upgradable": "Yes",                                               
        "impact": "disruptive",                                            
        "reason": "Module Upgradable"                                      
      },                                                                   
      {                                                                    
        "module": 6,                                                       
        "type": "Xbar",                                                    
        "upgradable": "Yes",                                               
        "impact": "disruptive",                                            
        "reason": "Module Upgradable"                                      
      },                                                                   
      {                                                                    
        "module": 1,                                                       
        "type": "FAN",                                                     
        "upgradable": "Yes",                                               
        "impact": "disruptive",                                            
        "reason": "Module Upgradable"                                      
      },                                                                   
      {
        "module": 2, 
        "type": "FAN", 
        "upgradable": "Yes", 
        "impact": "disruptive", 
        "reason": "Module Upgradable"
      },                             
      {                              
        "module": 3,                 
        "type": "FAN",               
        "upgradable": "Yes",         
        "impact": "disruptive",      
        "reason": "Module Upgradable"
      }                              
    ]                                
  },                                 
  "TABLE_upgrad_info": {             
    "ROW_upgrad_info": [             
      {                              
        "module": 6,                 
        "type": "LC",                
        "epld": "Power Manager SPI", 
        "running-version": "1.002",  
        "new-version": "1.002",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 6,                 
        "type": "LC",                
        "epld": "IO SPI",            
        "running-version": "1.003",  
        "new-version": "1.003",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 6,                 
        "type": "LC",                
        "epld": "SFP SPI",           
        "running-version": "1.000",  
        "new-version": "1.000",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 7,                 
        "type": "LC",                
        "epld": "Power Manager SPI", 
        "running-version": "0.012",  
        "new-version": "0.012",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 7,                 
        "type": "LC",                
        "epld": "IO SPI",            
        "running-version": "1.003",  
        "new-version": "1.003",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 7,                 
        "type": "LC",                
        "epld": "SFP SPI",           
        "running-version": "0.006",  
        "new-version": "0.006",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 8,                 
        "type": "LC",                
        "epld": "Power Manager SPI", 
        "running-version": "0.012",  
        "new-version": "0.012",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 8,                 
        "type": "LC",                
        "epld": "IO SPI",            
        "running-version": "1.003",  
        "new-version": "1.003",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 8,                 
        "type": "LC",                
        "epld": "SFP SPI",           
        "running-version": "0.006",  
        "new-version": "0.006",      
        "upg-required": "No"         
      },                             
      {
        "module": 9, 
        "type": "SUP", 
        "epld": "Power Manager SPI", 
        "running-version": "20.000", 
        "new-version": "20.000",     
        "upg-required": "No"         
      },                             
      {                              
        "module": 10,                
        "type": "SUP",               
        "epld": "Power Manager SPI", 
        "running-version": "20.000", 
        "new-version": "20.000",     
        "upg-required": "No"         
      },                             
      {                              
        "module": 15,                
        "type": "LC",                
        "epld": "Power Manager SPI", 
        "running-version": "0.012",  
        "new-version": "0.012",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 15,                
        "type": "LC",                
        "epld": "IO SPI",            
        "running-version": "1.003",  
        "new-version": "1.003",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 15,                
        "type": "LC",                
        "epld": "SFP SPI",           
        "running-version": "0.006",  
        "new-version": "0.006",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 1,                 
        "type": "Xbar",              
        "epld": "Power Manager",     
        "running-version": "1.002",  
        "new-version": "1.002",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 2,                 
        "type": "Xbar",              
        "epld": "Power Manager",     
        "running-version": "1.002",  
        "new-version": "1.002",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 3,                 
        "type": "Xbar",              
        "epld": "Power Manager",     
        "running-version": "1.002",  
        "new-version": "1.002",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 4,                 
        "type": "Xbar",              
        "epld": "Power Manager",     
        "running-version": "1.002",  
        "new-version": "1.002",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 5,                 
        "type": "Xbar",              
        "epld": "Power Manager",     
        "running-version": "1.002",  
        "new-version": "1.002",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 6,                 
        "type": "Xbar",              
        "epld": "Power Manager",     
        "running-version": "1.002",  
        "new-version": "1.002",      
        "upg-required": "No"         
      },                             
      {                              
        "module": 1,                 
        "type": "FAN",               
        "epld": "Fan Controller (1)", 
        "running-version": "0.006",   
        "new-version": "0.006",       
        "upg-required": "No"          
      },                              
      {                               
        "module": 1,                  
        "type": "FAN",                
        "epld": "Fan Controller (2)", 
        "running-version": "0.006",   
        "new-version": "0.006",       
        "upg-required": "No"          
      },                              
      {                               
        "module": 2,                  
        "type": "FAN",                
        "epld": "Fan Controller (1)", 
        "running-version": "0.006",   
        "new-version": "0.006",       
        "upg-required": "No"          
      },                              
      {
        "module": 2,
        "type": "FAN",
        "epld": "Fan Controller (2)",
        "running-version": "0.006",
        "new-version": "0.006",
        "upg-required": "No"
      },
      {
        "module": 3,
        "type": "FAN",
        "epld": "Fan Controller (1)",
        "running-version": "0.006",
        "new-version": "0.006",
        "upg-required": "No"
      },
      {
        "module": 3,
        "type": "FAN",
        "epld": "Fan Controller (2)",
        "running-version": "0.006",
        "new-version": "0.006",
        "upg-required": "No"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                                        
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:cli_epld_upg_apex" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                                  
  <show>                                                                                                                    
   <install>                                                                                                                
    <all>                                                                                                                   
     <impact>                                                                                                               
      <epld>                                                                                                                
       <__XML__PARAM__uri1>                                                                                                 
        <__XML__value>bootflash:/n7700-s2-epld.8.3.0.47.img</__XML__value>                                                  
        <__readonly__>                                                                                                      
         <TABLE_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>1</module>                                                                                               
           <type>LC</type>                                                                                                  
           <upgradable>No</upgradable>                                                                                      
           <impact>none</impact>                                                                                            
           <reason>Module is not Online</reason>                                                                            
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>3</module>                                                                                               
           <type>LC</type>                                                                                                  
           <upgradable>No</upgradable>                                                                                      
           <impact>none</impact>                                                                                            
           <reason>Module is not Online</reason>                                                                            
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>4</module>                                                                                               
           <type>LC</type>                                                                                                  
           <upgradable>No</upgradable>                                                                                      
           <impact>none</impact>                                                                                            
           <reason>Module is not Online</reason>                                                                            
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>5</module>                                                                                               
           <type>LC</type>                                                                                                  
           <upgradable>No</upgradable>                                                                                      
           <impact>none</impact>                                                                                            
           <reason>Module is not Online</reason>                                                                            
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>6</module>                                                                                               
           <type>LC</type>                                                                                                  
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>7</module>                                                                                               
           <type>LC</type>                                                                                                  
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>8</module>                                                                                               
           <type>LC</type>                                                                                                  
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>9</module>                                                                                               
           <type>SUP</type>                                                                                                 
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>10</module>                                                                                              
           <type>SUP</type>                                                                                                 
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>11</module>                                                                                              
           <type>LC</type>                                                                                                  
           <upgradable>No</upgradable>                                                                                      
           <impact>none</impact>                                                                                            
           <reason>Module is not Online</reason>                                                                            
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>14</module>                                                                                              
           <type>LC</type>                                                                                                  
           <upgradable>No</upgradable>                                                                                      
           <impact>none</impact>                                                                                            
           <reason>Module is not Online</reason>                                                                            
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>15</module>                                                                                              
           <type>LC</type>                                                                                                  
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>16</module>                                                                                              
           <type>LC</type>                                                                                                  
           <upgradable>No</upgradable>                                                                                      
           <impact>none</impact>                                                                                            
           <reason>Module is not Online</reason>                                                                            
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>17</module>                                                                                              
           <type>LC</type>                                                                                                  
           <upgradable>No</upgradable>                                                                                      
           <impact>none</impact>                                                                                            
           <reason>Module is not Online</reason>                                                                            
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>1</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>2</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>3</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>4</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>5</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>6</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>1</module>                                                                                               
           <type>FAN</type>                                                                                                 
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>2</module>                                                                                               
           <type>FAN</type>                                                                                                 
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>3</module>                                                                                               
           <type>FAN</type>                                                                                                 
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
         </TABLE_compatibility_check>                                                                                       
         <TABLE_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>6</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>Power Manager SPI</epld>                                                                                   
           <running-version> 1.002</running-version>                                                                        
           <new-version> 1.002</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>6</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>IO SPI</epld>                                                                                              
           <running-version> 1.003</running-version>                                                                        
           <new-version> 1.003</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>6</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>SFP SPI</epld>                                                                                             
           <running-version> 1.000</running-version>                                                                        
           <new-version> 1.000</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>7</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>Power Manager SPI</epld>                                                                                   
           <running-version> 0.012</running-version>                                                                        
           <new-version> 0.012</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>7</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>IO SPI</epld>                                                                                              
           <running-version> 1.003</running-version>                                                                        
           <new-version> 1.003</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>7</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>SFP SPI</epld>                                                                                             
           <running-version> 0.006</running-version>                                                                        
           <new-version> 0.006</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>8</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>Power Manager SPI</epld>                                                                                   
           <running-version> 0.012</running-version>                                                                        
           <new-version> 0.012</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>8</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>IO SPI</epld>                                                                                              
           <running-version> 1.003</running-version>                                                                        
           <new-version> 1.003</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>8</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>SFP SPI</epld>                                                                                             
           <running-version> 0.006</running-version>                                                                        
           <new-version> 0.006</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>9</module>                                                                                               
           <type>SUP</type>                                                                                                 
           <epld>Power Manager SPI</epld>                                                                                   
           <running-version>20.000</running-version>                                                                        
           <new-version>20.000</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>10</module>                                                                                              
           <type>SUP</type>                                                                                                 
           <epld>Power Manager SPI</epld>                                                                                   
           <running-version>20.000</running-version>                                                                        
           <new-version>20.000</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>15</module>                                                                                              
           <type>LC</type>                                                                                                  
           <epld>Power Manager SPI</epld>                                                                                   
           <running-version> 0.012</running-version>                                                                        
           <new-version> 0.012</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>15</module>                                                                                              
           <type>LC</type>                                                                                                  
           <epld>IO SPI</epld>                                                                                              
           <running-version> 1.003</running-version>                                                                        
           <new-version> 1.003</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>15</module>                                                                                              
           <type>LC</type>                                                                                                  
           <epld>SFP SPI</epld>                                                                                             
           <running-version> 0.006</running-version>                                                                        
           <new-version> 0.006</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>1</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <epld>Power Manager</epld>                                                                                       
           <running-version> 1.002</running-version>                                                                        
           <new-version> 1.002</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>2</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <epld>Power Manager</epld>                                                                                       
           <running-version> 1.002</running-version>                                                                        
           <new-version> 1.002</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>3</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <epld>Power Manager</epld>                                                                                       
           <running-version> 1.002</running-version>                                                                        
           <new-version> 1.002</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>4</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <epld>Power Manager</epld>                                                                                       
           <running-version> 1.002</running-version>                                                                        
           <new-version> 1.002</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>5</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <epld>Power Manager</epld>                                                                                       
           <running-version> 1.002</running-version>                                                                        
           <new-version> 1.002</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>6</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <epld>Power Manager</epld>                                                                                       
           <running-version> 1.002</running-version>                                                                        
           <new-version> 1.002</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>1</module>                                                                                               
           <type>FAN</type>                                                                                                 
           <epld>Fan Controller (1)</epld>                                                                                  
           <running-version> 0.006</running-version>                                                                        
           <new-version> 0.006</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>1</module>                                                                                               
           <type>FAN</type>                                                                                                 
           <epld>Fan Controller (2)</epld>                                                                                  
           <running-version> 0.006</running-version>                                                                        
           <new-version> 0.006</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>2</module>                                                                                               
           <type>FAN</type>                                                                                                 
           <epld>Fan Controller (1)</epld>                                                                                  
           <running-version> 0.006</running-version>                                                                        
           <new-version> 0.006</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>2</module>                                                                                               
           <type>FAN</type>                                                                                                 
           <epld>Fan Controller (2)</epld>                                                                                  
           <running-version> 0.006</running-version>
           <new-version> 0.006</new-version>
           <upg-required>No</upg-required>
          </ROW_upgrad_info>
          <ROW_upgrad_info>
           <module>3</module>
           <type>FAN</type>
           <epld>Fan Controller (1)</epld>
           <running-version> 0.006</running-version>
           <new-version> 0.006</new-version>
           <upg-required>No</upg-required>
          </ROW_upgrad_info>
          <ROW_upgrad_info>
           <module>3</module>
           <type>FAN</type>
           <epld>Fan Controller (2)</epld>
           <running-version> 0.006</running-version>
           <new-version> 0.006</new-version>
           <upg-required>No</upg-required>
          </ROW_upgrad_info>
         </TABLE_upgrad_info>
        </__readonly__>
       </__XML__PARAM__uri1>
      </epld>
     </impact>
    </all>
   </install>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch (config)# **show install all impact epld n7700-s2-epld.8.3.0.47.img**

Compatibility check:                                                  
Module  Type  Upgradable        Impact   Reason                       
------  ----  ----------    ----------   ------                       
     1    LC          No          none   Module is not Online         
     3    LC          No          none   Module is not Online         
     4    LC          No          none   Module is not Online         
     5    LC          No          none   Module is not Online         
     6    LC         Yes    disruptive   Module Upgradable            
     7    LC         Yes    disruptive   Module Upgradable            
     8    LC         Yes    disruptive   Module Upgradable            
     9   SUP         Yes    disruptive   Module Upgradable            
    10   SUP         Yes    disruptive   Module Upgradable            
    11    LC          No          none   Module is not Online         
    14    LC          No          none   Module is not Online         
    15    LC          No          none   Module is not Online         
    16    LC          No          none   Module is not Online         
    17    LC          No          none   Module is not Online         
     1  Xbar         Yes    disruptive   Module Upgradable            
     2  Xbar         Yes    disruptive   Module Upgradable            
     3  Xbar         Yes    disruptive   Module Upgradable            
     4  Xbar         Yes    disruptive   Module Upgradable            
     5  Xbar         Yes    disruptive   Module Upgradable            
     6  Xbar         Yes    disruptive   Module Upgradable            
     1   FAN         Yes    disruptive   Module Upgradable            
     2   FAN         Yes    disruptive   Module Upgradable            
     3   FAN         Yes    disruptive   Module Upgradable            

Retrieving EPLD versions... Please wait.

Images will be upgraded according to following table: Module Type EPLD Running-Version New-Version Upg-Required


 6    LC  Power Manager SPI          1.002       1.002           No     
 6    LC  IO SPI                     1.003       1.003           No     
 6    LC  SFP SPI                    1.000       1.000           No     
 7    LC  Power Manager SPI          0.012       0.012           No     
 7    LC  IO SPI                     1.003       1.003           No     
 7    LC  SFP SPI                    0.006       0.006           No     
 8    LC  Power Manager SPI          0.012       0.012           No     
 8    LC  IO SPI                     1.003       1.003           No     
 8    LC  SFP SPI                    0.006       0.006           No     
 9   SUP  Power Manager SPI         20.000      20.000           No     
10   SUP  Power Manager SPI         20.000      20.000           No     
 1  Xbar  Power Manager              1.002       1.002           No     
 2  Xbar  Power Manager              1.002       1.002           No     
 3  Xbar  Power Manager              1.002       1.002           No     
 4  Xbar  Power Manager              1.002       1.002           No     
 5  Xbar  Power Manager              1.002       1.002           No     
 6  Xbar  Power Manager              1.002       1.002           No     
 1   FAN  Fan Controller (1)         0.006       0.006           No     
 1   FAN  Fan Controller (2)         0.006       0.006           No     
 2   FAN  Fan Controller (1)         0.006       0.006           No     
 2   FAN  Fan Controller (2)         0.006       0.006           No     
 3   FAN  Fan Controller (1)         0.006       0.006           No     
 3   FAN  Fan Controller (2)         0.006       0.006           No     

show install all impact epld system

show install all impact epld system 
 
import requests
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 install all impact epld system”,
  "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)
{                                                              
  "TABLE_compatibility_check": {                               
    "ROW_compatibility_check": [                               
      {                                                        
        "module": 1,                                           
        "type": "LC",                                          
        "upgradable": "No",                                    
        "impact": "none",                                      
        "reason": "Module is not Online"                       
      },                                                       
      {                                                        
        "module": 3,                                           
        "type": "LC",                                          
        "upgradable": "No",                                    
        "impact": "none",                                      
        "reason": "Module is not Online"                       
      },                                                       
      {                                                        
        "module": 4,                                           
        "type": "LC",                                          
        "upgradable": "No",                                    
        "impact": "none",                                      
        "reason": "Module is not Online"                       
      },                                                       
      {                                                        
        "module": 5,                                           
        "type": "LC",                                          
        "upgradable": "No",                                    
        "impact": "none",                                      
        "reason": "Module is not Online"                       
      },                                                       
      {                                                        
        "module": 6,                                           
        "type": "LC",                                          
        "upgradable": "Yes",                                   
        "impact": "disruptive",                                
        "reason": "Module Upgradable"                          
      },                                                       
      {                                                        
        "module": 7,                                           
        "type": "LC",                                          
        "upgradable": "Yes",                                   
        "impact": "disruptive",                                
        "reason": "Module Upgradable"                          
      },                                                       
      {                                                        
        "module": 8,                                           
        "type": "LC",                                          
        "upgradable": "Yes",                                   
        "impact": "disruptive",                                
        "reason": "Module Upgradable"                          
      },                                                       
      {                                                        
        "module": 9,                                           
        "type": "SUP",                                         
        "upgradable": "Yes",                                   
        "impact": "disruptive",                                
        "reason": "Module Upgradable"                          
      },                                                       
      {                                                        
        "module": 10,                                          
        "type": "SUP",                                         
        "upgradable": "Yes",                                   
        "impact": "disruptive",                                
        "reason": "Module Upgradable"                          
      },                                                       
      {                                                        
        "module": 11,                                          
        "type": "LC",                                          
        "upgradable": "No",                                    
        "impact": "none",                                      
        "reason": "Module is not Online"                       
      },                                                       
      {                                                        
        "module": 14,                                          
        "type": "LC",                                          
        "upgradable": "No",                                    
        "impact": "none",                                      
        "reason": "Module is not Online"                       
      },                                                       
      {                                                        
        "module": 15,                                          
        "type": "LC",                                          
        "upgradable": "Yes",                                   
        "impact": "disruptive",                                
        "reason": "Module Upgradable"                          
      },                                                       
      {                                                        
        "module": 16,                                          
        "type": "LC",                                          
        "upgradable": "No",                                    
        "impact": "none",                                      
        "reason": "Module is not Online"                       
      },                                                       
      {                                                        
        "module": 17,                                          
        "type": "LC",                                          
        "upgradable": "No",                                    
        "impact": "none",                                      
        "reason": "Module is not Online"                       
      },                                                       
      {                                                        
        "module": 1,                                           
        "type": "Xbar",                                        
        "upgradable": "Yes",                                   
        "impact": "disruptive",                                
        "reason": "Module Upgradable"                          
      },                                                       
      {                                                        
        "module": 2,                                           
        "type": "Xbar",                                        
        "upgradable": "Yes",                                   
        "impact": "disruptive",                                
        "reason": "Module Upgradable"                          
      },                                                       
      {                                                        
        "module": 3,                                           
        "type": "Xbar",                                        
        "upgradable": "Yes",                                   
        "impact": "disruptive",                                
        "reason": "Module Upgradable"                          
      },                                                       
      {                                                        
        "module": 4,                                           
        "type": "Xbar",                                        
        "upgradable": "Yes",                                   
        "impact": "disruptive",                                
        "reason": "Module Upgradable"                          
      },                                                       
      {                                                        
        "module": 5,                                           
        "type": "Xbar",                                        
        "upgradable": "Yes",                                   
        "impact": "disruptive",                                
        "reason": "Module Upgradable"                          
      },                                                       
      {                                                        
        "module": 6,                                           
        "type": "Xbar",                                        
        "upgradable": "Yes",                                   
        "impact": "disruptive",                                
        "reason": "Module Upgradable"                          
      },                                                       
      {                                                        
        "module": 1,                                           
        "type": "FAN",                                         
        "upgradable": "Yes",                                   
        "impact": "disruptive",                                
        "reason": "Module Upgradable"                          
      },                                                       
      {                                                        
        "module": 2,                                           
        "type": "FAN",                                         
        "upgradable": "Yes",                                   
        "impact": "disruptive",                                
        "reason": "Module Upgradable"                          
      },                                                       
      {                                                        
        "module": 3,                                           
        "type": "FAN",                                         
        "upgradable": "Yes",                                   
        "impact": "disruptive",                                
        "reason": "Module Upgradable"                          
      }                                                        
    ]                                                          
  },                                                           
  "TABLE_upgrad_info": {                                       
    "ROW_upgrad_info": [                                       
      {                                                        
        "module": 6,                                           
        "type": "LC",                                          
        "epld": "Power Manager SPI",                           
        "running-version": "1.002",                            
        "new-version": "1.002",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 6,                                           
        "type": "LC",                                          
        "epld": "IO SPI",                                      
        "running-version": "1.003",                            
        "new-version": "1.003",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 6,                                           
        "type": "LC",                                          
        "epld": "SFP SPI",                                     
        "running-version": "1.000",                            
        "new-version": "1.000",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 7,                                           
        "type": "LC",                                          
        "epld": "Power Manager SPI",                           
        "running-version": "0.012",                            
        "new-version": "0.012",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 7,                                           
        "type": "LC",                                          
        "epld": "IO SPI",                                      
        "running-version": "1.003",                            
        "new-version": "1.003",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 7,                                           
        "type": "LC",                                          
        "epld": "SFP SPI",                                     
        "running-version": "0.006",                            
        "new-version": "0.006",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 8,                                           
        "type": "LC",                                          
        "epld": "Power Manager SPI",                           
        "running-version": "0.012",                            
        "new-version": "0.012",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 8,                                           
        "type": "LC",                                          
        "epld": "IO SPI",                                      
        "running-version": "1.003",                            
        "new-version": "1.003",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 8,                                           
        "type": "LC",                                          
        "epld": "SFP SPI",                                     
        "running-version": "0.006",                            
        "new-version": "0.006",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 9,                                           
        "type": "SUP",                                         
        "epld": "Power Manager SPI",                           
        "running-version": "20.000",                           
        "new-version": "20.000",                               
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 10,                                          
        "type": "SUP",                                         
        "epld": "Power Manager SPI",                           
        "running-version": "20.000",                           
        "new-version": "20.000",                               
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 15,                                          
        "type": "LC",                                          
        "epld": "Power Manager SPI",                           
        "running-version": "0.012",                            
        "new-version": "0.012",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 15,                                          
        "type": "LC",                                          
        "epld": "IO SPI",                                      
        "running-version": "1.003",                            
        "new-version": "1.003",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 15,                                          
        "type": "LC",                                          
        "epld": "SFP SPI",                                     
        "running-version": "0.006",                            
        "new-version": "0.006",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 1,                                           
        "type": "Xbar",                                        
        "epld": "Power Manager",                               
        "running-version": "1.002",                            
        "new-version": "1.002",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 2,                                           
        "type": "Xbar",                                        
        "epld": "Power Manager",                               
        "running-version": "1.002",                            
        "new-version": "1.002",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 3,                                           
        "type": "Xbar",                                        
        "epld": "Power Manager",                               
        "running-version": "1.002",                            
        "new-version": "1.002",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 4,                                           
        "type": "Xbar",                                        
        "epld": "Power Manager",                               
        "running-version": "1.002",                            
        "new-version": "1.002",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 5,                                           
        "type": "Xbar",                                        
        "epld": "Power Manager",                               
        "running-version": "1.002",                            
        "new-version": "1.002",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 6,                                           
        "type": "Xbar",                                        
        "epld": "Power Manager",                               
        "running-version": "1.002",                            
        "new-version": "1.002",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 1,                                           
        "type": "FAN",                                         
        "epld": "Fan Controller (1)",                          
        "running-version": "0.006",                            
        "new-version": "0.006",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 1,                                           
        "type": "FAN",                                         
        "epld": "Fan Controller (2)",                          
        "running-version": "0.006",                            
        "new-version": "0.006",                                
        "upg-required": "No"                                   
      },                                                       
      {                                                        
        "module": 2,                                           
        "type": "FAN",                                         
        "epld": "Fan Controller (1)",                          
        "running-version": "0.006",                            
        "new-version": "0.006",
        "upg-required": "No"
      },
      {
        "module": 2,
        "type": "FAN",
        "epld": "Fan Controller (2)",
        "running-version": "0.006",
        "new-version": "0.006",
        "upg-required": "No"
      },
      {
        "module": 3,
        "type": "FAN",
        "epld": "Fan Controller (1)",
        "running-version": "0.006",
        "new-version": "0.006",
        "upg-required": "No"
      },
      {
        "module": 3,
        "type": "FAN",
        "epld": "Fan Controller (2)",
        "running-version": "0.006",
        "new-version": "0.006",
        "upg-required": "No"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                   
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:cli_epld_upg_apex" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                                  
  <show>                                                                                                                    
   <install>                                                                                                                
    <all>                                                                                                                   
     <impact>                                                                                                               
      <epld>                                                                                                                
       <system>                                                                                                             
        <__readonly__>                                                                                                      
         <TABLE_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>1</module>                                                                                               
           <type>LC</type>                                                                                                  
           <upgradable>No</upgradable>                                                                                      
           <impact>none</impact>                                                                                            
           <reason>Module is not Online</reason>                                                                            
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>3</module>                                                                                               
           <type>LC</type>                                                                                                  
           <upgradable>No</upgradable>                                                                                      
           <impact>none</impact>                                                                                            
           <reason>Module is not Online</reason>                                                                            
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>4</module>                                                                                               
           <type>LC</type>                                                                                                  
           <upgradable>No</upgradable>                                                                                      
           <impact>none</impact>                                                                                            
           <reason>Module is not Online</reason>                                                                            
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>5</module>                                                                                               
           <type>LC</type>                                                                                                  
           <upgradable>No</upgradable>                                                                                      
           <impact>none</impact>                                                                                            
           <reason>Module is not Online</reason>                                                                            
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>6</module>                                                                                               
           <type>LC</type>                                                                                                  
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>7</module>                                                                                               
           <type>LC</type>                                                                                                  
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>8</module>                                                                                               
           <type>LC</type>                                                                                                  
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>9</module>                                                                                               
           <type>SUP</type>                                                                                                 
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>10</module>                                                                                              
           <type>SUP</type>                                                                                                 
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>11</module>                                                                                              
           <type>LC</type>                                                                                                  
           <upgradable>No</upgradable>                                                                                      
           <impact>none</impact>                                                                                            
           <reason>Module is not Online</reason>                                                                            
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>14</module>                                                                                              
           <type>LC</type>                                                                                                  
           <upgradable>No</upgradable>                                                                                      
           <impact>none</impact>                                                                                            
           <reason>Module is not Online</reason>                                                                            
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>15</module>                                                                                              
           <type>LC</type>                                                                                                  
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>16</module>                                                                                              
           <type>LC</type>                                                                                                  
           <upgradable>No</upgradable>                                                                                      
           <impact>none</impact>                                                                                            
           <reason>Module is not Online</reason>                                                                            
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>17</module>                                                                                              
           <type>LC</type>                                                                                                  
           <upgradable>No</upgradable>                                                                                      
           <impact>none</impact>                                                                                            
           <reason>Module is not Online</reason>                                                                            
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>1</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>2</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>3</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>4</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>5</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>6</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>1</module>                                                                                               
           <type>FAN</type>                                                                                                 
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>2</module>                                                                                               
           <type>FAN</type>                                                                                                 
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
          <ROW_compatibility_check>                                                                                         
           <module>3</module>                                                                                               
           <type>FAN</type>                                                                                                 
           <upgradable>Yes</upgradable>                                                                                     
           <impact>disruptive</impact>                                                                                      
           <reason>Module Upgradable</reason>                                                                               
          </ROW_compatibility_check>                                                                                        
         </TABLE_compatibility_check>                                                                                       
         <TABLE_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>6</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>Power Manager SPI</epld>                                                                                   
           <running-version> 1.002</running-version>                                                                        
           <new-version> 1.002</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>6</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>IO SPI</epld>                                                                                              
           <running-version> 1.003</running-version>                                                                        
           <new-version> 1.003</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>6</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>SFP SPI</epld>                                                                                             
           <running-version> 1.000</running-version>                                                                        
           <new-version> 1.000</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>7</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>Power Manager SPI</epld>                                                                                   
           <running-version> 0.012</running-version>                                                                        
           <new-version> 0.012</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>7</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>IO SPI</epld>                                                                                              
           <running-version> 1.003</running-version>                                                                        
           <new-version> 1.003</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>7</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>SFP SPI</epld>                                                                                             
           <running-version> 0.006</running-version>                                                                        
           <new-version> 0.006</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>8</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>Power Manager SPI</epld>                                                                                   
           <running-version> 0.012</running-version>                                                                        
           <new-version> 0.012</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>8</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>IO SPI</epld>                                                                                              
           <running-version> 1.003</running-version>                                                                        
           <new-version> 1.003</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>8</module>                                                                                               
           <type>LC</type>                                                                                                  
           <epld>SFP SPI</epld>                                                                                             
           <running-version> 0.006</running-version>                                                                        
           <new-version> 0.006</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>9</module>                                                                                               
           <type>SUP</type>                                                                                                 
           <epld>Power Manager SPI</epld>                                                                                   
           <running-version>20.000</running-version>                                                                        
           <new-version>20.000</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>10</module>                                                                                              
           <type>SUP</type>                                                                                                 
           <epld>Power Manager SPI</epld>                                                                                   
           <running-version>20.000</running-version>                                                                        
           <new-version>20.000</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>15</module>                                                                                              
           <type>LC</type>                                                                                                  
           <epld>Power Manager SPI</epld>                                                                                   
           <running-version> 0.012</running-version>                                                                        
           <new-version> 0.012</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>15</module>                                                                                              
           <type>LC</type>                                                                                                  
           <epld>IO SPI</epld>                                                                                              
           <running-version> 1.003</running-version>                                                                        
           <new-version> 1.003</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>15</module>                                                                                              
           <type>LC</type>                                                                                                  
           <epld>SFP SPI</epld>                                                                                             
           <running-version> 0.006</running-version>                                                                        
           <new-version> 0.006</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>1</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <epld>Power Manager</epld>                                                                                       
           <running-version> 1.002</running-version>                                                                        
           <new-version> 1.002</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>2</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <epld>Power Manager</epld>                                                                                       
           <running-version> 1.002</running-version>                                                                        
           <new-version> 1.002</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>3</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <epld>Power Manager</epld>                                                                                       
           <running-version> 1.002</running-version>                                                                        
           <new-version> 1.002</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>4</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <epld>Power Manager</epld>                                                                                       
           <running-version> 1.002</running-version>                                                                        
           <new-version> 1.002</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>5</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <epld>Power Manager</epld>                                                                                       
           <running-version> 1.002</running-version>                                                                        
           <new-version> 1.002</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>6</module>                                                                                               
           <type>Xbar</type>                                                                                                
           <epld>Power Manager</epld>                                                                                       
           <running-version> 1.002</running-version>                                                                        
           <new-version> 1.002</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>1</module>                                                                                               
           <type>FAN</type>                                                                                                 
           <epld>Fan Controller (1)</epld>                                                                                  
           <running-version> 0.006</running-version>                                                                        
           <new-version> 0.006</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>1</module>                                                                                               
           <type>FAN</type>                                                                                                 
           <epld>Fan Controller (2)</epld>                                                                                  
           <running-version> 0.006</running-version>                                                                        
           <new-version> 0.006</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>2</module>                                                                                               
           <type>FAN</type>                                                                                                 
           <epld>Fan Controller (1)</epld>                                                                                  
           <running-version> 0.006</running-version>                                                                        
           <new-version> 0.006</new-version>                                                                                
           <upg-required>No</upg-required>                                                                                  
          </ROW_upgrad_info>                                                                                                
          <ROW_upgrad_info>                                                                                                 
           <module>2</module>                                                                                               
           <type>FAN</type>                                                                                                 
           <epld>Fan Controller (2)</epld>                                                                                  
           <running-version> 0.006</running-version>
           <new-version> 0.006</new-version>
           <upg-required>No</upg-required>
          </ROW_upgrad_info>
          <ROW_upgrad_info>
           <module>3</module>
           <type>FAN</type>
           <epld>Fan Controller (1)</epld>
           <running-version> 0.006</running-version>
           <new-version> 0.006</new-version>
           <upg-required>No</upg-required>
          </ROW_upgrad_info>
          <ROW_upgrad_info>
           <module>3</module>
           <type>FAN</type>
           <epld>Fan Controller (2)</epld>
           <running-version> 0.006</running-version>
           <new-version> 0.006</new-version>
           <upg-required>No</upg-required>
          </ROW_upgrad_info>
         </TABLE_upgrad_info>
        </__readonly__>
       </system>
      </epld>
     </impact>
    </all>
   </install>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show install all impact epld system**

Compatibility check:                              
Module  Type  Upgradable        Impact   Reason   
------  ----  ----------    ----------   ------   
     1    LC          No          none   Module is not Online
     3    LC          No          none   Module is not Online
     4    LC          No          none   Module is not Online
     5    LC          No          none   Module is not Online
     6    LC         Yes    disruptive   Module Upgradable   
     7    LC         Yes    disruptive   Module Upgradable   
     8    LC         Yes    disruptive   Module Upgradable   
     9   SUP         Yes    disruptive   Module Upgradable   
    10   SUP         Yes    disruptive   Module Upgradable   
    11    LC          No          none   Module is not Online
    14    LC          No          none   Module is not Online
    15    LC          No          none   Module is not Online
    16    LC          No          none   Module is not Online
    17    LC          No          none   Module is not Online
     1  Xbar         Yes    disruptive   Module Upgradable   
     2  Xbar         Yes    disruptive   Module Upgradable   
     3  Xbar         Yes    disruptive   Module Upgradable   
     4  Xbar         Yes    disruptive   Module Upgradable   
     5  Xbar         Yes    disruptive   Module Upgradable   
     6  Xbar         Yes    disruptive   Module Upgradable   
     1   FAN         Yes    disruptive   Module Upgradable   
     2   FAN         Yes    disruptive   Module Upgradable   
     3   FAN         Yes    disruptive   Module Upgradable   

Retrieving EPLD versions... Please wait.

Images will be upgraded according to following table: Module Type EPLD Running-Version New-Version Upg-Required


 6    LC  Power Manager SPI          1.002       1.002           No     
 6    LC  IO SPI                     1.003       1.003           No     
 6    LC  SFP SPI                    1.000       1.000           No     
 7    LC  Power Manager SPI          0.012       0.012           No     
 7    LC  IO SPI                     1.003       1.003           No     
 7    LC  SFP SPI                    0.006       0.006           No     
 8    LC  Power Manager SPI          0.012       0.012           No     
 8    LC  IO SPI                     1.003       1.003           No     
 8    LC  SFP SPI                    0.006       0.006           No     
 9   SUP  Power Manager SPI         20.000      20.000           No     
10   SUP  Power Manager SPI         20.000      20.000           No     
 1  Xbar  Power Manager              1.002       1.002           No     
 2  Xbar  Power Manager              1.002       1.002           No     
 3  Xbar  Power Manager              1.002       1.002           No     
 4  Xbar  Power Manager              1.002       1.002           No     
 5  Xbar  Power Manager              1.002       1.002           No     
 6  Xbar  Power Manager              1.002       1.002           No     
 1   FAN  Fan Controller (1)         0.006       0.006           No     
 1   FAN  Fan Controller (2)         0.006       0.006           No     
 2   FAN  Fan Controller (1)         0.006       0.006           No     
 2   FAN  Fan Controller (2)         0.006       0.006           No     
 3   FAN  Fan Controller (1)         0.006       0.006           No     
 3   FAN  Fan Controller (2)         0.006       0.006           No     

show install auto-upgrade epld status

show install auto-upgrade epld status
 
import requests
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 install auto-upgrade epld status”,
  "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)
{                                                               
  "TABLE_upg_status": {                                         
    "ROW_upg_status": [                                         
      {                                                         
        "entry_info": "1) Module 14 upgraded on Wed Jun 20 20:28:54 2018 (985943 us)", 
        "status": "EPLD Upgrade failed",                                               
        "reason": "Reason: No space left to created new directory (Error Number : 66)" 
      },                                                                               
      {                                                                                
        "entry_info": "2) Module 2 upgraded on Wed Jun 20 20:25:13 2018 (561646 us)",  
        "status": "EPLD Upgrade failed",                                               
        "reason": "Reason: Unknown error code (Error Number : 255)"                    
      },                                                                               
      {                                                                                
        "entry_info": "3) Module 14 upgraded on Wed Jun 20 19:44:07 2018 (451702 us)", 
        "status": "EPLD Upgrade failed",                                               
        "reason": "Reason: No space left to created new directory (Error Number : 66)" 
      },                                                                               
      {                                                                                
        "entry_info": "4) Module 2 upgraded on Wed Jun 20 19:40:19 2018 (245208 us)",  
        "status": "EPLD Upgrade failed",                                               
        "reason": "Reason: Unknown error code (Error Number : 255)"                    
      },                                                                               
      {                                                                                
        "entry_info": "5) Module 14 upgraded on Fri Jun 15 05:04:23 2018 (  1781 us)", 
        "status": "EPLD Upgrade failed",                                               
        "reason": "Reason: No space left to created new directory (Error Number : 66)" 
      },                                                                               
      {                                                                                
        "entry_info": "6) Module 2 upgraded on Fri Jun 15 05:00:30 2018 (761972 us)",  
        "status": "EPLD Upgrade failed",                                               
        "reason": "Reason: Unknown error code (Error Number : 255)"                    
      },                                                                               
      {                                                                                
        "entry_info": "7) Module 8 upgraded on Thu Jun 14 00:48:34 2018 (782814 us)",  
        "status": "EPLD Upgrade was Successful",                                       
        "TABLE_version_info": {                                                        
          "ROW_version_info": {                                                        
            "epld": "IO SPI",
            "cur_version": "1.003",
            "old_version": "1.000"
          }
        }
      },
      {
        "entry_info": "8) Module 7 upgraded on Thu Jun 14 00:48:17 2018 (839287 us)",
        "status": "EPLD Upgrade was Successful",
        "TABLE_version_info": {
          "ROW_version_info": {
            "epld": "IO SPI",
            "cur_version": "1.003",
            "old_version": "1.000"
          }
        }
      },
      {
        "entry_info": "9) Module 14 upgraded on Thu Jun 14 00:45:04 2018 (563547 us)",
        "status": "EPLD Upgrade failed",
        "reason": "Reason: No space left to created new directory (Error Number : 66)"
      },
      {
        "entry_info": "10) Module 2 upgraded on Thu Jun 14 00:41:08 2018 (409212 us)",
        "status": "EPLD Upgrade failed",
        "reason": "Reason: Unknown error code (Error Number : 255)"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                    
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:cli_epld_upg_apex" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                                  
  <show>                                                                                                                    
   <install>                                                                                                                
    <auto-upgrade>                                                                                                          
     <epld>                                                                                                                 
      <status>                                                                                                              
       <__readonly__>                                                                                                       
        <TABLE_upg_status>                                                                                                  
         <ROW_upg_status>                                                                                                   
          <entry_info>1) Module 14 upgraded on Wed Jun 20 20:28:54 2018 (985943 us) </entry_info>                           
          <status>EPLD Upgrade failed</status>                                                                              
          <reason>Reason: No space left to created new directory (Error Number : 66)</reason>                               
         </ROW_upg_status>                                                                                                  
         <ROW_upg_status>                                                                                                   
          <entry_info>2) Module 2 upgraded on Wed Jun 20 20:25:13 2018 (561646 us) </entry_info>                            
          <status>EPLD Upgrade failed</status>                                                                              
          <reason>Reason: Unknown error code (Error Number : 255)</reason>                                                  
         </ROW_upg_status>                                                                                                  
         <ROW_upg_status>                                                                                                   
          <entry_info>3) Module 14 upgraded on Wed Jun 20 19:44:07 2018 (451702 us) </entry_info>                           
          <status>EPLD Upgrade failed</status>                                                                              
          <reason>Reason: No space left to created new directory (Error Number : 66)</reason>                               
         </ROW_upg_status>                                                                                                  
         <ROW_upg_status>                                                                                                   
          <entry_info>4) Module 2 upgraded on Wed Jun 20 19:40:19 2018 (245208 us) </entry_info>                            
          <status>EPLD Upgrade failed</status>                                                                              
          <reason>Reason: Unknown error code (Error Number : 255)</reason>                                                  
         </ROW_upg_status>                                                                                                  
         <ROW_upg_status>                                                                                                   
          <entry_info>5) Module 14 upgraded on Fri Jun 15 05:04:23 2018 (  1781 us) </entry_info>                           
          <status>EPLD Upgrade failed</status>                                                                              
          <reason>Reason: No space left to created new directory (Error Number : 66)</reason>                               
         </ROW_upg_status>                                                                                                  
         <ROW_upg_status>                                                                                                   
          <entry_info>6) Module 2 upgraded on Fri Jun 15 05:00:30 2018 (761972 us) </entry_info>                            
          <status>EPLD Upgrade failed</status>                                                                              
          <reason>Reason: Unknown error code (Error Number : 255)</reason>                                                  
         </ROW_upg_status>                                                                                                  
         <ROW_upg_status>                                                                                                   
          <entry_info>7) Module 8 upgraded on Thu Jun 14 00:48:34 2018 (782814 us) </entry_info>                            
          <status>EPLD Upgrade was Successful</status>                                                                      
          <TABLE_version_info>                                                                                              
           <ROW_version_info>                                                                                               
            <epld>IO SPI</epld>                                                                                             
            <cur_version>1.003</cur_version>                                                                                
            <old_version>1.000</old_version>                                                                                
           </ROW_version_info>                                                                                              
          </TABLE_version_info>                                                                                             
         </ROW_upg_status>                                                                                                  
         <ROW_upg_status>                                                                                                   
          <entry_info>8) Module 7 upgraded on Thu Jun 14 00:48:17 2018 (839287 us) </entry_info>                            
          <status>EPLD Upgrade was Successful</status>                                                                      
          <TABLE_version_info>                                                                                              
           <ROW_version_info>                                                                                               
            <epld>IO SPI</epld>                                                                                             
            <cur_version>1.003</cur_version>                                                                                
            <old_version>1.000</old_version>                                                                                
           </ROW_version_info>                                                                                              
          </TABLE_version_info>                                                                                             
         </ROW_upg_status>                                                                                                  
         <ROW_upg_status>                                                                                                   
          <entry_info>9) Module 14 upgraded on Thu Jun 14 00:45:04 2018 (563547 us) </entry_info>                           
          <status>EPLD Upgrade failed</status>                                                                              
          <reason>Reason: No space left to created new directory (Error Number : 66)</reason>                               
         </ROW_upg_status>                                                                                                  
         <ROW_upg_status>                                                                                                   
          <entry_info>10) Module 2 upgraded on Thu Jun 14 00:41:08 2018 (409212 us) </entry_info>                           
          <status>EPLD Upgrade failed</status>                                                                              
          <reason>Reason: Unknown error code (Error Number : 255)</reason>                                                  
         </ROW_upg_status>                                                                                                  
        </TABLE_upg_status>                                                                                                 
       </__readonly__>                                                                                                      
      </status>                                                                                                             
     </epld>                                                                                                                
    </auto-upgrade>                                                                                                         
   </install>                                                                                                               
  </show>                                                                                                                   
 </nf:data>                                                                                                                 
</nf:rpc-reply>   

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch(config)# **show install auto-upgrade epld status**

1) Module 14 upgraded on Wed Jun 20 20:28:54 2018 (985943 us) 
Status: EPLD Upgrade failed                                   
Reason: No space left to created new directory (Error Number : 66)

  1. Module 2 upgraded on Wed Jun 20 20:25:13 2018 (561646 us) Status: EPLD Upgrade failed
    Reason: Unknown error code (Error Number : 255)

  2. Module 14 upgraded on Wed Jun 20 19:44:07 2018 (451702 us) Status: EPLD Upgrade failed
    Reason: No space left to created new directory (Error Number : 66)

  3. Module 2 upgraded on Wed Jun 20 19:40:19 2018 (245208 us) Status: EPLD Upgrade failed
    Reason: Unknown error code (Error Number : 255)

  4. Module 14 upgraded on Fri Jun 15 05:04:23 2018 ( 1781 us) Status: EPLD Upgrade failed
    Reason: No space left to created new directory (Error Number : 66)

  5. Module 2 upgraded on Fri Jun 15 05:00:30 2018 (761972 us) Status: EPLD Upgrade failed
    Reason: Unknown error code (Error Number : 255)

  6. Module 8 upgraded on Thu Jun 14 00:48:34 2018 (782814 us) Status: EPLD Upgrade was Successful

EPLD Curr Ver Old Ver

IO SPI 1.003 1.000

  1. Module 7 upgraded on Thu Jun 14 00:48:17 2018 (839287 us) Status: EPLD Upgrade was Successful

EPLD Curr Ver Old Ver

IO SPI 1.003 1.000

  1. Module 14 upgraded on Thu Jun 14 00:45:04 2018 (563547 us) Status: EPLD Upgrade failed
    Reason: No space left to created new directory (Error Number : 66)

  2. Module 2 upgraded on Thu Jun 14 00:41:08 2018 (409212 us) Status: EPLD Upgrade failed
    Reason: Unknown error code (Error Number : 255)

show install epld status

show install epld status
 
import requests
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 install epld status”,
  "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)
{                                                  
  "TABLE_upg_status": {                            
    "ROW_upg_status": [                            
      {                                            
        "entry_info": "1) Module 13 upgraded on Mon Jun 11 17:12:06 2018 (699323 us)", 
        "status": "EPLD Upgrade was Successful",                                       
        "TABLE_version_info": {                                                        
          "ROW_version_info": {                                                        
            "epld": "IO SPI",                                                          
            "cur_version": "1.003",                                                    
            "old_version": "1.000"                                                     
          }                                                                            
        }                                                                              
      },
      {
        "entry_info": "2) Fan Module 3 upgraded on Wed Apr  1 16:58:27 2015 (188062 us)",
        "status": "EPLD Upgrade failed",
        "reason": "Reason:  (Error Number : 21)"
      },
      {
        "entry_info": "3) Fan Module 2 upgraded on Wed Apr  1 16:58:26 2015 (448706 us)",
        "status": "EPLD Upgrade failed",
        "reason": "Reason:  (Error Number : 21)"
      },
      {
        "entry_info": "4) Fan Module 1 upgraded on Wed Apr  1 16:58:25 2015 (710266 us)",
        "status": "EPLD Upgrade failed",
        "reason": "Reason:  (Error Number : 21)"
      },
      {
        "entry_info": "5) Module 10 upgraded on Wed Apr  1 15:04:21 2015 (957476 us)",
        "status": "EPLD Upgrade was Successful",
        "TABLE_version_info": {
          "ROW_version_info": {
            "epld": "Power Manager SPI",
            "cur_version": "20.000",
            "old_version": "19.000"
          }
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                                            
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:cli_epld_upg_apex" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                                  
  <show>                                                                                                                    
   <install>                                                                                                                
    <epld>                                                                                                                  
     <status>                                                                                                               
      <__readonly__>                                                                                                        
       <TABLE_upg_status>                                                                                                   
        <ROW_upg_status>                                                                                                    
         <entry_info>1) Module 13 upgraded on Mon Jun 11 17:12:06 2018 (699323 us) </entry_info>                            
         <status>EPLD Upgrade was Successful</status>                                                                       
         <TABLE_version_info>                                                                                               
          <ROW_version_info>                                                                                                
           <epld>IO SPI</epld>                                                                                              
           <cur_version>1.003</cur_version>                                                                                 
           <old_version>1.000</old_version>                                                                                 
          </ROW_version_info>                                                                                               
         </TABLE_version_info>                                                                                              
        </ROW_upg_status>                                                                                                   
        <ROW_upg_status>                                                                                                    
         <entry_info>2) Fan Module 3 upgraded on Wed Apr  1 16:58:27 2015 (188062 us) </entry_info>                         
         <status>EPLD Upgrade failed</status>                                                                               
         <reason>Reason:  (Error Number : 21)</reason>                                                                      
        </ROW_upg_status>                                                                                                   
        <ROW_upg_status>                                                                                                    
         <entry_info>3) Fan Module 2 upgraded on Wed Apr  1 16:58:26 2015 (448706 us) </entry_info>                         
         <status>EPLD Upgrade failed</status>                                                                               
         <reason>Reason:  (Error Number : 21)</reason>                                                                      
        </ROW_upg_status>                                                                                                   
        <ROW_upg_status>                                                                                                    
         <entry_info>4) Fan Module 1 upgraded on Wed Apr  1 16:58:25 2015 (710266 us) </entry_info>                         
         <status>EPLD Upgrade failed</status>                                                                               
         <reason>Reason:  (Error Number : 21)</reason>                                                                      
        </ROW_upg_status>                                                                                                   
        <ROW_upg_status>                                                                                                    
         <entry_info>5) Module 10 upgraded on Wed Apr  1 15:04:21 2015 (957476 us) </entry_info>                            
         <status>EPLD Upgrade was Successful</status>                                                                       
         <TABLE_version_info>                                                                                               
          <ROW_version_info>                                                                                                
           <epld>Power Manager SPI</epld>                                                                                   
           <cur_version>20.000</cur_version>                                                                                
           <old_version>19.000</old_version>                                                                                
          </ROW_version_info>                                                                                               
         </TABLE_version_info>                                                                                              
        </ROW_upg_status>                                                                                                   
       </TABLE_upg_status>                                                                                                  
      </__readonly__>                                                                                                       
     </status>                                                                                                              
    </epld>                                                                                                                 
   </install>                                                                                                               
  </show>                                                                                                                   
 </nf:data>                                                                                                                 
</nf:rpc-reply>    

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show install epld status**

1) Module 13 upgraded on Mon Jun 11 17:12:06 2018 (699323 us) 
Status: EPLD Upgrade was Successful                           

EPLD Curr Ver Old Ver

IO SPI 1.003 1.000

  1. Fan Module 3 upgraded on Wed Apr 1 16:58:27 2015 (188062 us) Status: EPLD Upgrade failed
    Reason: (Error Number : 21)

  2. Fan Module 2 upgraded on Wed Apr 1 16:58:26 2015 (448706 us) Status: EPLD Upgrade failed
    Reason: (Error Number : 21)

  3. Fan Module 1 upgraded on Wed Apr 1 16:58:25 2015 (710266 us) Status: EPLD Upgrade failed
    Reason: (Error Number : 21)

  4. Module 10 upgraded on Wed Apr 1 15:04:21 2015 (957476 us) Status: EPLD Upgrade was Successful

EPLD Curr Ver Old Ver

Power Manager SPI 20.000 19.000

show install fan-module 1 impact epld n7700-s2-epld.8.3.0.47.img

show install fan-module 1 impact epld n7700-s2-epld.8.3.0.47.img     
 
import requests
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 install fan-module 1 impact epld n7700-s2-epld.8.3.0.47.img”,
  "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)
{
  "TABLE_upgrad_info": {
    "ROW_upgrad_info": [
      {
        "module": 1,
        "type": "FAN",
        "epld": "Fan Controller (1)",
        "running-version": "0.006",
        "new-version": "0.006",
        "upg-required": "No"
      },
      {
        "module": 1,
        "type": "FAN",
        "epld": "Fan Controller (2)",
        "running-version": "0.006",
        "new-version": "0.006",
        "upg-required": "No"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:cli_epld_upg_apex" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                                  
  <show>                                                                                                                    
   <install>                                                                                                                
    <fan-module>                                                                                                            
     <__XML__PARAM__fan-range>                                                                                              
      <__XML__value>1</__XML__value>                                                                                        
      <impact>                                                                                                              
       <epld>                                                                                                               
        <__XML__PARAM__uri1>                                                                                                
         <__XML__value>bootflash:/n7700-s2-epld.8.3.0.47.img</__XML__value>                                                 
         <__readonly__>                                                                                                     
          <TABLE_upgrad_info>                                                                                               
           <ROW_upgrad_info>                                                                                                
            <module>1</module>                                                                                              
            <type>FAN</type>                                                                                                
            <epld>Fan Controller (1)</epld>                                                                                 
            <running-version> 0.006</running-version>                                                                       
            <new-version> 0.006</new-version>                                                                               
            <upg-required>No</upg-required>                                                                                 
           </ROW_upgrad_info>                                                                                               
           <ROW_upgrad_info>                                                                                                
            <module>1</module>                                                                                              
            <type>FAN</type>                                                                                                
            <epld>Fan Controller (2)</epld>                                                                                 
            <running-version> 0.006</running-version>                                                                       
            <new-version> 0.006</new-version>                                                                               
            <upg-required>No</upg-required>                                                                                 
           </ROW_upgrad_info>                                                                                               
          </TABLE_upgrad_info>                                                                                              
         </__readonly__>                                                                                                    
        </__XML__PARAM__uri1>                                                                                               
       </epld>                                                                                                              
      </impact>                                                                                                             
     </__XML__PARAM__fan-range>                                                                                             
    </fan-module>                                                                                                           
   </install>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show install fan-module 1 impact epld n7700-s2-epld.8.3.0.47.img.**

Retrieving EPLD versions... Please wait.

Fan Module 1 is up to date Images will be upgraded according to following table: Module Type EPLD Running-Version New-Version Upg-Required


 1   FAN  Fan Controller (1)         0.006       0.006           No     
 1   FAN  Fan Controller (2)         0.006       0.006           No     

show install fan-module 2 impact epld system

show install fan-module 2 impact epld system 
 
import requests
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 install fan-module 2 impact epld system”,
  "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)
{
  "TABLE_upgrad_info": {
    "ROW_upgrad_info": [
      {
        "module": 2,
        "type": "FAN",
        "epld": "Fan Controller (1)",
        "running-version": "0.006",
        "new-version": "0.006",
        "upg-required": "No"
      },
      {
        "module": 2,
        "type": "FAN",
        "epld": "Fan Controller (2)",
        "running-version": "0.006",
        "new-version": "0.006",
        "upg-required": "No"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:cli_epld_upg_apex" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                                  
  <show>                                                                                                                    
   <install>                                                                                                                
    <fan-module>                                                                                                            
     <__XML__PARAM__fan-range>                                                                                              
      <__XML__value>2</__XML__value>                                                                                        
      <impact>                                                                                                              
       <epld>                                                                                                               
        <system>                                                                                                            
         <__readonly__>                                                                                                     
          <TABLE_upgrad_info>                                                                                               
           <ROW_upgrad_info>                                                                                                
            <module>2</module>                                                                                              
            <type>FAN</type>                                                                                                
            <epld>Fan Controller (1)</epld>                                                                                 
            <running-version> 0.006</running-version>                                                                       
            <new-version> 0.006</new-version>                                                                               
            <upg-required>No</upg-required>                                                                                 
           </ROW_upgrad_info>                                                                                               
           <ROW_upgrad_info>                                                                                                
            <module>2</module>                                                                                              
            <type>FAN</type>                                                                                                
            <epld>Fan Controller (2)</epld>                                                                                 
            <running-version> 0.006</running-version>                                                                       
            <new-version> 0.006</new-version>                                                                               
            <upg-required>No</upg-required>                                                                                 
           </ROW_upgrad_info>                                                                                               
          </TABLE_upgrad_info>                                                                                              
         </__readonly__>                                                                                                    
        </system>                                                                                                           
       </epld>                                                                                                              
      </impact>
     </__XML__PARAM__fan-range>
    </fan-module>
   </install>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch(config)# **show install fan-module 2 impact epld system**

Retrieving EPLD versions... Please wait.

Fan Module 2 is up to date Images will be upgraded according to following table: Module Type EPLD Running-Version New-Version Upg-Required


 2   FAN  Fan Controller (1)         0.006       0.006           No     
 2   FAN  Fan Controller (2)         0.006       0.006           No     

show system auto-upgrade epld status

show system auto-upgrade epld status
 
import requests
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 system auto-upgrade epld status”,
  "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)
{
  "auto_upg_status": "Auto upgrade disabled."
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:cli_epld_upg_apex" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <system>
    <auto-upgrade>
     <epld>
      <status>
       <__readonly__>
        <auto_upg_status>Auto upgrade disabled.</auto_upg_status>
       </__readonly__>
      </status>
     </epld>
    </auto-upgrade>
   </system>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show system auto-upgrade epld status**

Auto upgrade disabled.

show version epld system

show version epld system 
 
import requests
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 version epld system”,
  "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)
{                                                  
  "image-info": "EPLD image file 8.3.1 built on Sun Jul  1 04:30:37 2018", 
  "TABLE_module_info": {                                                   
    "ROW_module_info": [                                                   
      {                                                                    
        "module-type": "Fan",                                              
        "model": "N77-C7718-FAN",                                          
        "epld-device": "Fan Controller (1)",                               
        "version": "0.006"                                                 
      },                                                                   
      {                                                                    
        "module-type": "Fan",                                              
        "model": "N77-C7718-FAN",                                          
        "epld-device": "Fan Controller (2)",                               
        "version": "0.006"                                                 
      },                                                                   
      {                                                                    
        "module-type": "Fan",                                              
        "model": "N77-C7710-FAN",                                          
        "epld-device": "Fan Controller (1)",                               
        "version": "0.006"                                                 
      },                                                                   
      {                                                                    
        "module-type": "Fan",                                              
        "model": "N77-C7710-FAN",                                          
        "epld-device": "Fan Controller (2)",                               
        "version": "0.006"                                                 
      },                                                                   
      {                                                                    
        "module-type": "Fan",                                              
        "model": "N77-C7706-FAN",                                          
        "epld-device": "Fan Controller (1)",                               
        "version": "0.006"                                                 
      },                                                                   
      {                                                                    
        "module-type": "Fan",                                              
        "model": "N77-C7706-FAN",                                          
        "epld-device": "Fan Controller (2)",                               
        "version": "0.006"                                                 
      },                                                                   
      {                                                                    
        "module-type": "Fan",                                              
        "model": "N77-C7702-FAN",                                          
        "epld-device": "Fan Controller (1)",                               
        "version": "0.016"                                                 
      },                                                                   
      {                                                                    
        "module-type": "Fan",                                              
        "model": "N77-C7702-FAN",                                          
        "epld-device": "Fan Controller (2)",                               
        "version": "0.016"                                                 
      },                                                                   
      {                                                                    
        "module-type": "1/10 Gbps Ethernet Module",                        
        "model": "N77-F248XP-23E",                                         
        "epld-device": "Power Manager",                                    
        "version": "0.006"                                                 
      },                                                                   
      {                                                                    
        "module-type": "1/10 Gbps Ethernet Module",                        
        "model": "N77-F248XP-23E",                                         
        "epld-device": "IO",                                               
        "version": "0.005"                                                 
      },                                                                   
      {                                                                    
        "module-type": "Fabric Module 2",                                  
        "model": "N77-C7718-FAB-2",                                        
        "epld-device": "Power Manager",                                    
        "version": "1.002"                                                 
      },                                                                   
      {                                                                    
        "module-type": "Fabric Module 2",                                  
        "model": "N77-C7710-FAB-2",                                        
        "epld-device": "Power Manager",                                    
        "version": "1.003"                                                 
      },                                                                   
      {                                                                    
        "module-type": "Fabric Module 2",                                  
        "model": "N77-C7706-FAB-2",                                        
        "epld-device": "Power Manager",                                    
        "version": "1.002"                                                 
      },                                                                   
      {                                                                    
        "module-type": "Supervisor Module 2",                              
        "model": "N77-SUP2E",                                              
        "epld-device": "Power Manager SPI",                                
        "version": "20.000"                                                
      },                                                                   
      {                                                                    
        "module-type": "10/40 Gbps Ethernet Module",                       
        "model": "N77-F324FQ-25",                                          
        "epld-device": "Power Manager SPI",                                
        "version": "1.005"                                                 
      },                                                                   
      {                                                                    
        "module-type": "10/40 Gbps Ethernet Module",                       
        "model": "N77-F324FQ-25",                                          
        "epld-device": "IO SPI 2",                                         
        "version": "0.028"                                                 
      },                                                                   
      {                                                                    
        "module-type": "10/40 Gbps Ethernet Module",                       
        "model": "N77-F324FQ-25",                                          
        "epld-device": "IO SPI 4342",                                      
        "version": "0.028"                                                 
      },                                                                   
      {                                                                    
        "module-type": "10/40 Gbps Ethernet Module",                       
        "model": "N77-F324FQ-25",                                          
        "epld-device": "IO SPI 4343",                                      
        "version": "0.031"                                                 
      },                                                                   
      {                                                                    
        "module-type": "100 Gbps Ethernet Module",                         
        "model": "N77-F312CF-26",                                          
        "epld-device": "Power Manager SPI",                                
        "version": "1.008"                                                 
      },                                                                   
      {                                                                    
        "module-type": "100 Gbps Ethernet Module",                         
        "model": "N77-F312CF-26",                                          
        "epld-device": "IO SPI",                                           
        "version": "0.021"                                                 
      },                                                                   
      {                                                                    
        "module-type": "1/10 Gbps Ethernet Module",                        
        "model": "N77-F348XP-23",                                          
        "epld-device": "Power Manager SPI",                                
        "version": "1.007"                                                 
      },                                                                   
      {                                                                    
        "module-type": "1/10 Gbps Ethernet Module",                        
        "model": "N77-F348XP-23",                                          
        "epld-device": "SFP SPI",                                          
        "version": "1.003"                                                 
      },                                                                   
      {                                                                    
        "module-type": "1/10 Gbps Ethernet Module",                        
        "model": "N77-F348XP-23",                                          
        "epld-device": "IO SPI",                                           
        "version": "0.031"                                                 
      },                                                                   
      {                                                                    
        "module-type": "10/40 Gbps Ethernet Module",                       
        "model": "N77-M324FQ-25L",                                         
        "epld-device": "Power Manager SPI",                                
        "version": "1.002"                                                 
      },                                                                   
      {                                                                    
        "module-type": "10/40 Gbps Ethernet Module",                       
        "model": "N77-M324FQ-25L",                                         
        "epld-device": "IO SPI 2",                                         
        "version": "1.000"                                                 
      },                                                                   
      {                                                                    
        "module-type": "10/40 Gbps Ethernet Module",                       
        "model": "N77-M324FQ-25L",                                         
        "epld-device": "IO SPI",                                           
        "version": "1.002"                                                 
      },                                                                   
      {                                                                    
        "module-type": "10/40/100 Gbps Ethernet Module",                   
        "model": "N77-M312CF-26L",                                         
        "epld-device": "Power Manager SPI",                                
        "version": "1.000"                                                 
      },                                                                   
      {                                                                    
        "module-type": "10/40/100 Gbps Ethernet Module",                   
        "model": "N77-M312CF-26L",                                         
        "epld-device": "IO SPI 2",                                         
        "version": "1.001"                                                 
      },                                                                   
      {                                                                    
        "module-type": "10/40/100 Gbps Ethernet Module",                   
        "model": "N77-M312CF-26L",                                         
        "epld-device": "IO SPI",                                           
        "version": "1.002"                                                 
      },                                                                   
      {                                                                    
        "module-type": "1/10 Gbps Ethernet Module",                        
        "model": "N77-M348XP-23L",                                         
        "epld-device": "Power Manager SPI",                                
        "version": "1.002"                                                 
      },                                                                   
      {                                                                    
        "module-type": "1/10 Gbps Ethernet Module",                        
        "model": "N77-M348XP-23L",                                         
        "epld-device": "SFP SPI",                                          
        "version": "1.000"                                                 
      },                                                                   
      {                                                                    
        "module-type": "1/10 Gbps Ethernet Module",                        
        "model": "N77-M348XP-23L",                                         
        "epld-device": "IO SPI",                                           
        "version": "1.003"                                                 
      },                                                                   
      {                                                                    
        "module-type": "100 Gbps Ethernet Module",                         
        "model": "N77-F430CQ-36",                                          
        "epld-device": "Power Manager SPI",
        "version": "0.012"
      },
      {
        "module-type": "100 Gbps Ethernet Module",
        "model": "N77-F430CQ-36",
        "epld-device": "SFP SPI",
        "version": "0.006"
      },
      {
        "module-type": "100 Gbps Ethernet Module",
        "model": "N77-F430CQ-36",
        "epld-device": "IO SPI",
        "version": "1.003"
      },
      {
        "module-type": "Fabric Module 3",
        "model": "N77-C7710-FAB-3",
        "epld-device": "Power Manager",
        "version": "0.007"
      },
      {
        "module-type": "Fabric Module 3",
        "model": "N77-C7706-FAB-3",
        "epld-device": "Power Manager",
        "version": "0.008"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>       
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:cli_epld_upg_apex" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                                  
  <show>                                                                                                                    
   <version>                                                                                                                
    <epld>                                                                                                                  
     <system>                                                                                                               
      <__readonly__>                                                                                                        
       <image-info>EPLD image file 8.3.1 built on Sun Jul  1 04:30:37 2018                                                  
</image-info>                                                                                                               
       <TABLE_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fan</module-type>                                                                                     
         <model>N77-C7718-FAN</model>                                                                                       
         <epld-device>Fan Controller (1)</epld-device>                                                                      
         <version> 0.006</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fan</module-type>                                                                                     
         <model>N77-C7718-FAN</model>                                                                                       
         <epld-device>Fan Controller (2)</epld-device>                                                                      
         <version> 0.006</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fan</module-type>                                                                                     
         <model>N77-C7710-FAN</model>                                                                                       
         <epld-device>Fan Controller (1)</epld-device>                                                                      
         <version> 0.006</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fan</module-type>                                                                                     
         <model>N77-C7710-FAN</model>                                                                                       
         <epld-device>Fan Controller (2)</epld-device>                                                                      
         <version> 0.006</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fan</module-type>                                                                                     
         <model>N77-C7706-FAN</model>                                                                                       
         <epld-device>Fan Controller (1)</epld-device>                                                                      
         <version> 0.006</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fan</module-type>                                                                                     
         <model>N77-C7706-FAN</model>                                                                                       
         <epld-device>Fan Controller (2)</epld-device>                                                                      
         <version> 0.006</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fan</module-type>                                                                                     
         <model>N77-C7702-FAN</model>                                                                                       
         <epld-device>Fan Controller (1)</epld-device>                                                                      
         <version> 0.016</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fan</module-type>                                                                                     
         <model>N77-C7702-FAN</model>                                                                                       
         <epld-device>Fan Controller (2)</epld-device>                                                                      
         <version> 0.016</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>1/10 Gbps Ethernet Module </module-type>                                                              
         <model>N77-F248XP-23E</model>                                                                                      
         <epld-device>Power Manager</epld-device>                                                                           
         <version> 0.006</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>1/10 Gbps Ethernet Module </module-type>                                                              
         <model>N77-F248XP-23E</model>                                                                                      
         <epld-device>IO</epld-device>                                                                                      
         <version> 0.005</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fabric Module 2</module-type>                                                                         
         <model>N77-C7718-FAB-2</model>                                                                                     
         <epld-device>Power Manager</epld-device>                                                                           
         <version> 1.002</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fabric Module 2</module-type>                                                                         
         <model>N77-C7710-FAB-2</model>                                                                                     
         <epld-device>Power Manager</epld-device>                                                                           
         <version> 1.003</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fabric Module 2</module-type>                                                                         
         <model>N77-C7706-FAB-2</model>                                                                                     
         <epld-device>Power Manager</epld-device>                                                                           
         <version> 1.002</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Supervisor Module 2</module-type>                                                                     
         <model>N77-SUP2E</model>                                                                                           
         <epld-device>Power Manager SPI</epld-device>                                                                       
         <version>20.000</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40 Gbps Ethernet Module </module-type>                                                             
         <model>N77-F324FQ-25</model>                                                                                       
         <epld-device>Power Manager SPI</epld-device>                                                                       
         <version> 1.005</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40 Gbps Ethernet Module </module-type>                                                             
         <model>N77-F324FQ-25</model>                                                                                       
         <epld-device>IO SPI 2</epld-device>                                                                                
         <version> 0.028</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40 Gbps Ethernet Module </module-type>                                                             
         <model>N77-F324FQ-25</model>                                                                                       
         <epld-device>IO SPI 4342</epld-device>                                                                             
         <version> 0.028</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40 Gbps Ethernet Module </module-type>                                                             
         <model>N77-F324FQ-25</model>                                                                                       
         <epld-device>IO SPI 4343</epld-device>                                                                             
         <version> 0.031</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>100 Gbps Ethernet Module </module-type>                                                               
         <model>N77-F312CF-26</model>                                                                                       
         <epld-device>Power Manager SPI</epld-device>                                                                       
         <version> 1.008</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>100 Gbps Ethernet Module </module-type>                                                               
         <model>N77-F312CF-26</model>                                                                                       
         <epld-device>IO SPI</epld-device>                                                                                  
         <version> 0.021</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>1/10 Gbps Ethernet Module</module-type>                                                               
         <model>N77-F348XP-23</model>                                                                                       
         <epld-device>Power Manager SPI</epld-device>                                                                       
         <version> 1.007</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>1/10 Gbps Ethernet Module</module-type>                                                               
         <model>N77-F348XP-23</model>                                                                                       
         <epld-device>SFP SPI</epld-device>                                                                                 
         <version> 1.003</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>1/10 Gbps Ethernet Module</module-type>                                                               
         <model>N77-F348XP-23</model>                                                                                       
         <epld-device>IO SPI</epld-device>                                                                                  
         <version> 0.031</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40 Gbps Ethernet Module</module-type>                                                              
         <model>N77-M324FQ-25L</model>                                                                                      
         <epld-device>Power Manager SPI</epld-device>                                                                       
         <version> 1.002</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40 Gbps Ethernet Module</module-type>                                                              
         <model>N77-M324FQ-25L</model>                                                                                      
         <epld-device>IO SPI 2</epld-device>                                                                                
         <version> 1.000</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40 Gbps Ethernet Module</module-type>                                                              
         <model>N77-M324FQ-25L</model>                                                                                      
         <epld-device>IO SPI</epld-device>                                                                                  
         <version> 1.002</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40/100 Gbps Ethernet Module</module-type>                                                          
         <model>N77-M312CF-26L</model>                                                                                      
         <epld-device>Power Manager SPI</epld-device>                                                                       
         <version> 1.000</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40/100 Gbps Ethernet Module</module-type>                                                          
         <model>N77-M312CF-26L</model>                                                                                      
         <epld-device>IO SPI 2</epld-device>                                                                                
         <version> 1.001</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40/100 Gbps Ethernet Module</module-type>                                                          
         <model>N77-M312CF-26L</model>                                                                                      
         <epld-device>IO SPI</epld-device>                                                                                  
         <version> 1.002</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>1/10 Gbps Ethernet Module</module-type>                                                               
         <model>N77-M348XP-23L</model>                                                                                      
         <epld-device>Power Manager SPI</epld-device>                                                                       
         <version> 1.002</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>1/10 Gbps Ethernet Module</module-type>                                                               
         <model>N77-M348XP-23L</model>                                                                                      
         <epld-device>SFP SPI</epld-device>                                                                                 
         <version> 1.000</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>1/10 Gbps Ethernet Module</module-type>                                                               
         <model>N77-M348XP-23L</model>                                                                                      
         <epld-device>IO SPI</epld-device>                                                                                  
         <version> 1.003</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>100 Gbps Ethernet Module</module-type>                                                                
         <model>N77-F430CQ-36</model>                                                                                       
         <epld-device>Power Manager SPI</epld-device>                                                                       
         <version> 0.012</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>100 Gbps Ethernet Module</module-type>                                                                
         <model>N77-F430CQ-36</model>                                                                                       
         <epld-device>SFP SPI</epld-device>                                                                                 
         <version> 0.006</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>100 Gbps Ethernet Module</module-type>                                                                
         <model>N77-F430CQ-36</model>                                                                                       
         <epld-device>IO SPI</epld-device>                                                                                  
         <version> 1.003</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fabric Module 3</module-type>                                                                         
         <model>N77-C7710-FAB-3</model>                                                                                     
         <epld-device>Power Manager</epld-device>                                                                           
         <version> 0.007</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fabric Module 3</module-type>                                                                         
         <model>N77-C7706-FAB-3</model>                                                                                     
         <epld-device>Power Manager</epld-device>                                                                           
         <version> 0.008</version>                                                                                          
        </ROW_module_info>                                                                                                  
       </TABLE_module_info>                                                                                                 
      </__readonly__>                                                                                                       
     </system>                                                                                                              
    </epld>                                                                                                                 
   </version>                                                                                                               
  </show>                                                                                                                   
 </nf:data>                                                                                                                 
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch(config)# **show version epld system**

Retrieving EPLD versions... Please wait.

EPLD image file 8.3.1 built on Sun Jul 1 04:30:37 2018

Module Type Model EPLD Device Version

Fan N77-C7718-FAN Fan Controller (1) 0.006 Fan N77-C7718-FAN Fan Controller (2) 0.006

Fan N77-C7710-FAN Fan Controller (1) 0.006 Fan N77-C7710-FAN Fan Controller (2) 0.006

Fan N77-C7706-FAN Fan Controller (1) 0.006 Fan N77-C7706-FAN Fan Controller (2) 0.006

Fan N77-C7702-FAN Fan Controller (1) 0.016 Fan N77-C7702-FAN Fan Controller (2) 0.016

1/10 Gbps Ethernet Module N77-F248XP-23E Power Manager 0.006 1/10 Gbps Ethernet Module N77-F248XP-23E IO 0.005

Fabric Module 2 N77-C7718-FAB-2 Power Manager 1.002

Fabric Module 2 N77-C7710-FAB-2 Power Manager 1.003

Fabric Module 2 N77-C7706-FAB-2 Power Manager 1.002

Supervisor Module 2 N77-SUP2E Power Manager SPI 20.000

10/40 Gbps Ethernet Module N77-F324FQ-25 Power Manager SPI 1.005 10/40 Gbps Ethernet Module N77-F324FQ-25 IO SPI 2 0.028 10/40 Gbps Ethernet Module N77-F324FQ-25 IO SPI 4342 0.028 10/40 Gbps Ethernet Module N77-F324FQ-25 IO SPI 4343 0.031

100 Gbps Ethernet Module N77-F312CF-26 Power Manager SPI 1.008 100 Gbps Ethernet Module N77-F312CF-26 IO SPI 0.021

1/10 Gbps Ethernet Module N77-F348XP-23 Power Manager SPI 1.007 1/10 Gbps Ethernet Module N77-F348XP-23 SFP SPI 1.003 1/10 Gbps Ethernet Module N77-F348XP-23 IO SPI 0.031

10/40 Gbps Ethernet Module N77-M324FQ-25L Power Manager SPI 1.002 10/40 Gbps Ethernet Module N77-M324FQ-25L IO SPI 2 1.000 10/40 Gbps Ethernet Module N77-M324FQ-25L IO SPI 1.002

10/40/100 Gbps Ethernet Module N77-M312CF-26L Power Manager SPI 1.000 10/40/100 Gbps Ethernet Module N77-M312CF-26L IO SPI 2 1.001 10/40/100 Gbps Ethernet Module N77-M312CF-26L IO SPI 1.002

1/10 Gbps Ethernet Module N77-M348XP-23L Power Manager SPI 1.002 1/10 Gbps Ethernet Module N77-M348XP-23L SFP SPI 1.000 1/10 Gbps Ethernet Module N77-M348XP-23L IO SPI 1.003

100 Gbps Ethernet Module N77-F430CQ-36 Power Manager SPI 0.012 100 Gbps Ethernet Module N77-F430CQ-36 SFP SPI 0.006 100 Gbps Ethernet Module N77-F430CQ-36 IO SPI 1.003

Fabric Module 3 N77-C7710-FAB-3 Power Manager 0.007

Fabric Module 3 N77-C7706-FAB-3 Power Manager 0.008

show install module 7 impact epld system

show install module 7 impact epld system 
 
import requests
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 install module 7 impact epld system”,
  "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)
{
  "TABLE_upgrad_info": {
    "ROW_upgrad_info": [
      {
        "module": 7,
        "type": "LC",
        "epld": "Power Manager SPI",
        "running-version": "0.012",
        "new-version": "0.012",
        "upg-required": "No"
      },
      {
        "module": 7,
        "type": "LC",
        "epld": "IO SPI",
        "running-version": "1.003",
        "new-version": "1.003",
        "upg-required": "No"
      },
      {
        "module": 7,
        "type": "LC",
        "epld": "SFP SPI",
        "running-version": "0.006",
        "new-version": "0.006",
        "upg-required": "No"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:cli_epld_upg_apex" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                                  
  <show>                                                                                                                    
   <install>                                                                                                                
    <module>                                                                                                                
     <__XML__PARAM__module>                                                                                                 
      <__XML__value>7</__XML__value>                                                                                        
      <impact>                                                                                                              
       <epld>                                                                                                               
        <system>                                                                                                            
         <__readonly__>                                                                                                     
          <TABLE_upgrad_info>                                                                                               
           <ROW_upgrad_info>                                                                                                
            <module>7</module>                                                                                              
            <type>LC</type>                                                                                                 
            <epld>Power Manager SPI</epld>                                                                                  
            <running-version> 0.012</running-version>                                                                       
            <new-version> 0.012</new-version>                                                                               
            <upg-required>No</upg-required>                                                                                 
           </ROW_upgrad_info>                                                                                               
           <ROW_upgrad_info>                                                                                                
            <module>7</module>                                                                                              
            <type>LC</type>                                                                                                 
            <epld>IO SPI</epld>                                                                                             
            <running-version> 1.003</running-version>                                                                       
            <new-version> 1.003</new-version>                                                                               
            <upg-required>No</upg-required>                                                                                 
           </ROW_upgrad_info>                                                                                               
           <ROW_upgrad_info>                                                                                                
            <module>7</module>                                                                                              
            <type>LC</type>                                                                                                 
            <epld>SFP SPI</epld>                                                                                            
            <running-version> 0.006</running-version>                                                                       
            <new-version> 0.006</new-version>                                                                               
            <upg-required>No</upg-required>                                                                                 
           </ROW_upgrad_info>                                                                                               
          </TABLE_upgrad_info>                                                                                              
         </__readonly__>                                                                                                    
        </system>                                                                                                           
       </epld>                                                                                                              
      </impact>                                                                                                             
     </__XML__PARAM__module>                                                                                                
    </module>                                                                                                               
   </install>                                                                                                               
  </show>                                                                                                                   
 </nf:data>                                                                                                                 
</nf:rpc-reply>   

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show install module 7 impact epld system**

Retrieving EPLD versions... Please wait.

Images will be upgraded according to following table: Module Type EPLD Running-Version New-Version Upg-Required


 7    LC  Power Manager SPI          0.012       0.012           No     
 7    LC  IO SPI                     1.003       1.003           No     
 7    LC  SFP SPI                    0.006       0.006           No     

show version fan 1 epld

show version fan 1 epld 
 
import requests
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 version fan 1 epld”,
  "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)
{                                                 
  "TABLE_EPLD_Fan_Version": {                     
    "ROW_EPLD_Fan_Version": [                     
      {                                           
        "epld_device": "Fan Controller (1)",      
        "epld_version": "0.006"                   
      },                                          
      {                                           
        "epld_device": "Fan Controller (2)",      
        "epld_version": "0.006"                   
      }                                           
    ]                                             
  }                                               
}  
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:cli_epld_upg_apex" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                                  
  <show>                                                                                                                    
   <version>                                                                                                                
    <fan>                                                                                                                   
     <__XML__PARAM__fan-range>                                                                                              
      <__XML__value>1</__XML__value>                                                                                        
      <epld>                                                                                                                
       <__readonly__>                                                                                                       
        <TABLE_EPLD_Fan_Version>                                                                                            
         <ROW_EPLD_Fan_Version>                                                                                             
          <epld_device>Fan Controller (1)</epld_device>                                                                     
          <epld_version> 0.006</epld_version>                                                                               
         </ROW_EPLD_Fan_Version>                                                                                            
         <ROW_EPLD_Fan_Version>                                                                                             
          <epld_device>Fan Controller (2)</epld_device>                                                                     
          <epld_version> 0.006</epld_version>                                                                               
         </ROW_EPLD_Fan_Version>                                                                                            
        </TABLE_EPLD_Fan_Version>                                                                                           
       </__readonly__>                                                                                                      
      </epld>                                                                                                               
     </__XML__PARAM__fan-range>                                                                                             
    </fan>                                                                                                                  
   </version>                                                                                                               
  </show>                                                                                                                   
 </nf:data>                                                                                                                 
</nf:rpc-reply>       

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# **show version fan 1 epld **

EPLD Device                     Version

Fan Controller (1) 0.006 Fan Controller (2) 0.006

show version module 7 epld

show version module 7 epld
 
import requests
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 version module 7 epld”,
  "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)
{
  "TABLE_EPLD_Module_Version": {
    "ROW_EPLD_Module_Version": [
      {
        "epld_device": "Power Manager SPI",
        "epld_version": "0.012"
      },
      {
        "epld_device": "IO SPI",
        "epld_version": "1.003"
      },
      {
        "epld_device": "SFP SPI",
        "epld_version": "0.006"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:cli_epld_upg_apex" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                                  
  <show>                                                                                                                    
   <version>                                                                                                                
    <module>                                                                                                                
     <__XML__PARAM__module>                                                                                                 
      <__XML__value>7</__XML__value>                                                                                        
      <epld>                                                                                                                
       <__readonly__>                                                                                                       
        <TABLE_EPLD_Module_Version>                                                                                         
         <ROW_EPLD_Module_Version>                                                                                          
          <epld_device>Power Manager SPI</epld_device>                                                                      
          <epld_version> 0.012</epld_version>                                                                               
         </ROW_EPLD_Module_Version>                                                                                         
         <ROW_EPLD_Module_Version>                                                                                          
          <epld_device>IO SPI</epld_device>                                                                                 
          <epld_version> 1.003</epld_version>                                                                               
         </ROW_EPLD_Module_Version>                                                                                         
         <ROW_EPLD_Module_Version>                                                                                          
          <epld_device>SFP SPI</epld_device>                                                                                
          <epld_version> 0.006</epld_version>
         </ROW_EPLD_Module_Version>
        </TABLE_EPLD_Module_Version>
       </__readonly__>
      </epld>
     </__XML__PARAM__module>
    </module>
   </version>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch(config)# show version module 7 epld

EPLD Device                     Version

Power Manager SPI 0.012 IO SPI 1.003 SFP SPI 0.006

show version epld n7700-s2-epld.8.3.0.47.img

show version epld n7700-s2-epld.8.3.0.47.img 
 
import requests
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 version epld n7700-s2-epld.8.3.0.47.img”,
  "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)
{                                                                      
  "image-info": "EPLD image file 8.3.0.47 built on Fri Jun  8 01:33:29 2018", 
  "TABLE_module_info": {                                                      
    "ROW_module_info": [                                                      
      {                                                                       
        "module-type": "Fan",                                                 
        "model": "N77-C7718-FAN",                                             
        "epld-device": "Fan Controller (1)",                                  
        "version": "0.006"                                                    
      },                                                                      
      {                                                                       
        "module-type": "Fan",                                                 
        "model": "N77-C7718-FAN",                                             
        "epld-device": "Fan Controller (2)",                                  
        "version": "0.006"                                                    
      },                                                                      
      {                                                                       
        "module-type": "Fan",                                                 
        "model": "N77-C7710-FAN",                                             
        "epld-device": "Fan Controller (1)",                                  
        "version": "0.006"                                                    
      },                                                                      
      {                                                                       
        "module-type": "Fan",                                                 
        "model": "N77-C7710-FAN",                                             
        "epld-device": "Fan Controller (2)",                                  
        "version": "0.006"                                                    
      },                                                                      
      {                                                                       
        "module-type": "Fan",                                                 
        "model": "N77-C7706-FAN",                                             
        "epld-device": "Fan Controller (1)",                                  
        "version": "0.006"                                                    
      },                                                                      
      {                                                                       
        "module-type": "Fan",                                                 
        "model": "N77-C7706-FAN",                                             
        "epld-device": "Fan Controller (2)",                                  
        "version": "0.006"                                                    
      },                                                                      
      {                                                                       
        "module-type": "Fan",                                                 
        "model": "N77-C7702-FAN",                                             
        "epld-device": "Fan Controller (1)",                                  
        "version": "0.016"                                                    
      },                                                                      
      {                                                                       
        "module-type": "Fan",                                                 
        "model": "N77-C7702-FAN",                                             
        "epld-device": "Fan Controller (2)",                                  
        "version": "0.016"                                                    
      },                                                                      
      {                                                                       
        "module-type": "1/10 Gbps Ethernet Module",                           
        "model": "N77-F248XP-23E",                                            
        "epld-device": "Power Manager",                                       
        "version": "0.006"                                                    
      },                                                                      
      {                                                                       
        "module-type": "1/10 Gbps Ethernet Module",                           
        "model": "N77-F248XP-23E",                                            
        "epld-device": "IO",                                                  
        "version": "0.005"                                                    
      },                                                                      
      {                                                                       
        "module-type": "Fabric Module 2",                                     
        "model": "N77-C7718-FAB-2",                                           
        "epld-device": "Power Manager",                                       
        "version": "1.002"                                                    
      },                                                                      
      {                                                                       
        "module-type": "Fabric Module 2",                                     
        "model": "N77-C7710-FAB-2",                                           
        "epld-device": "Power Manager",                                       
        "version": "1.003"                                                    
      },                                                                      
      {                                                                       
        "module-type": "Fabric Module 2",                                     
        "model": "N77-C7706-FAB-2",                                           
        "epld-device": "Power Manager",                                       
        "version": "1.002"                                                    
      },                                                                      
      {                                                                       
        "module-type": "Supervisor Module 2",                                 
        "model": "N77-SUP2E",                                                 
        "epld-device": "Power Manager SPI",                                   
        "version": "20.000"                                                   
      },                                                                      
      {                                                                       
        "module-type": "10/40 Gbps Ethernet Module",                          
        "model": "N77-F324FQ-25",                                             
        "epld-device": "Power Manager SPI",                                   
        "version": "1.005"                                                    
      },                                                                      
      {                                                                       
        "module-type": "10/40 Gbps Ethernet Module",                          
        "model": "N77-F324FQ-25",                                             
        "epld-device": "IO SPI 2",                                            
        "version": "0.028"                                                    
      },                                                                      
      {                                                                       
        "module-type": "10/40 Gbps Ethernet Module",                          
        "model": "N77-F324FQ-25",                                             
        "epld-device": "IO SPI 4342",                                         
        "version": "0.028"                                                    
      },                                                                      
      {                                                                       
        "module-type": "10/40 Gbps Ethernet Module",                          
        "model": "N77-F324FQ-25",                                             
        "epld-device": "IO SPI 4343",                                         
        "version": "0.031"                                                    
      },                                                                      
      {                                                                       
        "module-type": "100 Gbps Ethernet Module",                            
        "model": "N77-F312CF-26",                                             
        "epld-device": "Power Manager SPI",                                   
        "version": "1.008"                                                    
      },                                                                      
      {                                                                       
        "module-type": "100 Gbps Ethernet Module",                            
        "model": "N77-F312CF-26",                                             
        "epld-device": "IO SPI",                                              
        "version": "0.021"                                                    
      },                                                                      
      {                                                                       
        "module-type": "1/10 Gbps Ethernet Module",                           
        "model": "N77-F348XP-23",                                             
        "epld-device": "Power Manager SPI",                                   
        "version": "1.007"                                                    
      },                                                                      
      {                                                                       
        "module-type": "1/10 Gbps Ethernet Module",                           
        "model": "N77-F348XP-23",                                             
        "epld-device": "SFP SPI",                                             
        "version": "1.003"                                                    
      },                                                                      
      {                                                                       
        "module-type": "1/10 Gbps Ethernet Module",                           
        "model": "N77-F348XP-23",                                             
        "epld-device": "IO SPI",                                              
        "version": "0.031"                                                    
      },                                                                      
      {                                                                       
        "module-type": "10/40 Gbps Ethernet Module",                          
        "model": "N77-M324FQ-25L",                                            
        "epld-device": "Power Manager SPI",                                   
        "version": "1.002"                                                    
      },                                                                      
      {                                                                       
        "module-type": "10/40 Gbps Ethernet Module",                          
        "model": "N77-M324FQ-25L",                                            
        "epld-device": "IO SPI 2",                                            
        "version": "1.000"                                                    
      },                                                                      
      {                                                                       
        "module-type": "10/40 Gbps Ethernet Module",                          
        "model": "N77-M324FQ-25L",                                            
        "epld-device": "IO SPI",                                              
        "version": "1.002"                                                    
      },                                                                      
      {                                                                       
        "module-type": "10/40/100 Gbps Ethernet Module",                      
        "model": "N77-M312CF-26L",                                            
        "epld-device": "Power Manager SPI",                                   
        "version": "1.000"                                                    
      },                                                                      
      {                                                                       
        "module-type": "10/40/100 Gbps Ethernet Module",                      
        "model": "N77-M312CF-26L",                                            
        "epld-device": "IO SPI 2",                                            
        "version": "1.001"                                                    
      },                                                                      
      {                                                                       
        "module-type": "10/40/100 Gbps Ethernet Module",                      
        "model": "N77-M312CF-26L",                                            
        "epld-device": "IO SPI",                                              
        "version": "1.002"                                                    
      },                                                                      
      {                                                                       
        "module-type": "1/10 Gbps Ethernet Module",                           
        "model": "N77-M348XP-23L",                                            
        "epld-device": "Power Manager SPI",                                   
        "version": "1.002"                                                    
      },                                                                      
      {                                                                       
        "module-type": "1/10 Gbps Ethernet Module",                           
        "model": "N77-M348XP-23L",                                            
        "epld-device": "SFP SPI",                                             
        "version": "1.000"                                                    
      },                                                                      
      {                                                                       
        "module-type": "1/10 Gbps Ethernet Module",                           
        "model": "N77-M348XP-23L",                                            
        "epld-device": "IO SPI",                                              
        "version": "1.003"                                                    
      },                                                                      
      {                                                                       
        "module-type": "100 Gbps Ethernet Module",                            
        "model": "N77-F430CQ-36",                                             
        "epld-device": "Power Manager SPI",
        "version": "0.012"
      },
      {
        "module-type": "100 Gbps Ethernet Module",
        "model": "N77-F430CQ-36",
        "epld-device": "SFP SPI",
        "version": "0.006"
      },
      {
        "module-type": "100 Gbps Ethernet Module",
        "model": "N77-F430CQ-36",
        "epld-device": "IO SPI",
        "version": "1.003"
      },
      {
        "module-type": "Fabric Module 3",
        "model": "N77-C7710-FAB-3",
        "epld-device": "Power Manager",
        "version": "0.007"
      },
      {
        "module-type": "Fabric Module 3",
        "model": "N77-C7706-FAB-3",
        "epld-device": "Power Manager",
        "version": "0.008"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                            
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:cli_epld_upg_apex" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                                  
  <show>                                                                                                                    
   <version>                                                                                                                
    <epld>                                                                                                                  
     <__XML__PARAM__uri0>                                                                                                   
      <__XML__value>bootflash:/n7700-s2-epld.8.3.0.47.img</__XML__value>                                                    
      <__readonly__>                                                                                                        
       <image-info>EPLD image file 8.3.0.47 built on Fri Jun  8 01:33:29 2018                                               
</image-info>                                                                                                               
       <TABLE_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fan</module-type>                                                                                     
         <model>N77-C7718-FAN</model>                                                                                       
         <epld-device>Fan Controller (1)</epld-device>                                                                      
         <version> 0.006</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fan</module-type>                                                                                     
         <model>N77-C7718-FAN</model>                                                                                       
         <epld-device>Fan Controller (2)</epld-device>                                                                      
         <version> 0.006</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fan</module-type>                                                                                     
         <model>N77-C7710-FAN</model>                                                                                       
         <epld-device>Fan Controller (1)</epld-device>                                                                      
         <version> 0.006</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fan</module-type>                                                                                     
         <model>N77-C7710-FAN</model>                                                                                       
         <epld-device>Fan Controller (2)</epld-device>                                                                      
         <version> 0.006</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fan</module-type>                                                                                     
         <model>N77-C7706-FAN</model>                                                                                       
         <epld-device>Fan Controller (1)</epld-device>                                                                      
         <version> 0.006</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fan</module-type>                                                                                     
         <model>N77-C7706-FAN</model>                                                                                       
         <epld-device>Fan Controller (2)</epld-device>                                                                      
         <version> 0.006</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fan</module-type>                                                                                     
         <model>N77-C7702-FAN</model>                                                                                       
         <epld-device>Fan Controller (1)</epld-device>                                                                      
         <version> 0.016</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fan</module-type>                                                                                     
         <model>N77-C7702-FAN</model>                                                                                       
         <epld-device>Fan Controller (2)</epld-device>                                                                      
         <version> 0.016</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>1/10 Gbps Ethernet Module </module-type>                                                              
         <model>N77-F248XP-23E</model>                                                                                      
         <epld-device>Power Manager</epld-device>                                                                           
         <version> 0.006</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>1/10 Gbps Ethernet Module </module-type>                                                              
         <model>N77-F248XP-23E</model>                                                                                      
         <epld-device>IO</epld-device>                                                                                      
         <version> 0.005</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fabric Module 2</module-type>                                                                         
         <model>N77-C7718-FAB-2</model>                                                                                     
         <epld-device>Power Manager</epld-device>                                                                           
         <version> 1.002</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fabric Module 2</module-type>                                                                         
         <model>N77-C7710-FAB-2</model>                                                                                     
         <epld-device>Power Manager</epld-device>                                                                           
         <version> 1.003</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fabric Module 2</module-type>                                                                         
         <model>N77-C7706-FAB-2</model>                                                                                     
         <epld-device>Power Manager</epld-device>                                                                           
         <version> 1.002</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Supervisor Module 2</module-type>                                                                     
         <model>N77-SUP2E</model>                                                                                           
         <epld-device>Power Manager SPI</epld-device>                                                                       
         <version>20.000</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40 Gbps Ethernet Module </module-type>                                                             
         <model>N77-F324FQ-25</model>                                                                                       
         <epld-device>Power Manager SPI</epld-device>                                                                       
         <version> 1.005</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40 Gbps Ethernet Module </module-type>                                                             
         <model>N77-F324FQ-25</model>                                                                                       
         <epld-device>IO SPI 2</epld-device>                                                                                
         <version> 0.028</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40 Gbps Ethernet Module </module-type>                                                             
         <model>N77-F324FQ-25</model>                                                                                       
         <epld-device>IO SPI 4342</epld-device>                                                                             
         <version> 0.028</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40 Gbps Ethernet Module </module-type>                                                             
         <model>N77-F324FQ-25</model>                                                                                       
         <epld-device>IO SPI 4343</epld-device>                                                                             
         <version> 0.031</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>100 Gbps Ethernet Module </module-type>                                                               
         <model>N77-F312CF-26</model>                                                                                       
         <epld-device>Power Manager SPI</epld-device>                                                                       
         <version> 1.008</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>100 Gbps Ethernet Module </module-type>                                                               
         <model>N77-F312CF-26</model>                                                                                       
         <epld-device>IO SPI</epld-device>                                                                                  
         <version> 0.021</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>1/10 Gbps Ethernet Module</module-type>                                                               
         <model>N77-F348XP-23</model>                                                                                       
         <epld-device>Power Manager SPI</epld-device>                                                                       
         <version> 1.007</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>1/10 Gbps Ethernet Module</module-type>                                                               
         <model>N77-F348XP-23</model>                                                                                       
         <epld-device>SFP SPI</epld-device>                                                                                 
         <version> 1.003</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>1/10 Gbps Ethernet Module</module-type>                                                               
         <model>N77-F348XP-23</model>                                                                                       
         <epld-device>IO SPI</epld-device>                                                                                  
         <version> 0.031</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40 Gbps Ethernet Module</module-type>                                                              
         <model>N77-M324FQ-25L</model>                                                                                      
         <epld-device>Power Manager SPI</epld-device>                                                                       
         <version> 1.002</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40 Gbps Ethernet Module</module-type>                                                              
         <model>N77-M324FQ-25L</model>                                                                                      
         <epld-device>IO SPI 2</epld-device>                                                                                
         <version> 1.000</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40 Gbps Ethernet Module</module-type>                                                              
         <model>N77-M324FQ-25L</model>                                                                                      
         <epld-device>IO SPI</epld-device>                                                                                  
         <version> 1.002</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40/100 Gbps Ethernet Module</module-type>                                                          
         <model>N77-M312CF-26L</model>                                                                                      
         <epld-device>Power Manager SPI</epld-device>                                                                       
         <version> 1.000</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40/100 Gbps Ethernet Module</module-type>                                                          
         <model>N77-M312CF-26L</model>                                                                                      
         <epld-device>IO SPI 2</epld-device>                                                                                
         <version> 1.001</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>10/40/100 Gbps Ethernet Module</module-type>                                                          
         <model>N77-M312CF-26L</model>                                                                                      
         <epld-device>IO SPI</epld-device>                                                                                  
         <version> 1.002</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>1/10 Gbps Ethernet Module</module-type>                                                               
         <model>N77-M348XP-23L</model>                                                                                      
         <epld-device>Power Manager SPI</epld-device>                                                                       
         <version> 1.002</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>1/10 Gbps Ethernet Module</module-type>                                                               
         <model>N77-M348XP-23L</model>                                                                                      
         <epld-device>SFP SPI</epld-device>                                                                                 
         <version> 1.000</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>1/10 Gbps Ethernet Module</module-type>                                                               
         <model>N77-M348XP-23L</model>                                                                                      
         <epld-device>IO SPI</epld-device>                                                                                  
         <version> 1.003</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>100 Gbps Ethernet Module</module-type>                                                                
         <model>N77-F430CQ-36</model>                                                                                       
         <epld-device>Power Manager SPI</epld-device>                                                                       
         <version> 0.012</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>100 Gbps Ethernet Module</module-type>                                                                
         <model>N77-F430CQ-36</model>                                                                                       
         <epld-device>SFP SPI</epld-device>                                                                                 
         <version> 0.006</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>100 Gbps Ethernet Module</module-type>                                                                
         <model>N77-F430CQ-36</model>                                                                                       
         <epld-device>IO SPI</epld-device>                                                                                  
         <version> 1.003</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fabric Module 3</module-type>                                                                         
         <model>N77-C7710-FAB-3</model>                                                                                     
         <epld-device>Power Manager</epld-device>                                                                           
         <version> 0.007</version>                                                                                          
        </ROW_module_info>                                                                                                  
        <ROW_module_info>                                                                                                   
         <module-type>Fabric Module 3</module-type>                                                                         
         <model>N77-C7706-FAB-3</model>                                                                                     
         <epld-device>Power Manager</epld-device>                                                                           
         <version> 0.008</version>                                                                                          
        </ROW_module_info>                                                                                                  
       </TABLE_module_info>                                                                                                 
      </__readonly__>                                                                                                       
     </__XML__PARAM__uri0>                                                                                                  
    </epld>                                                                                                                 
   </version>                                                                                                               
  </show>                                                                                                                   
 </nf:data>                                                                                                                 
</nf:rpc-reply>  

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch(config)# **show version epld n7700-s2-epld.8.3.0.47.img**

Retrieving EPLD versions... Please wait.

EPLD image file 8.3.0.47 built on Fri Jun 8 01:33:29 2018

Module Type Model EPLD Device Version

Fan N77-C7718-FAN Fan Controller (1) 0.006 Fan N77-C7718-FAN Fan Controller (2) 0.006

Fan N77-C7710-FAN Fan Controller (1) 0.006 Fan N77-C7710-FAN Fan Controller (2) 0.006

Fan N77-C7706-FAN Fan Controller (1) 0.006 Fan N77-C7706-FAN Fan Controller (2) 0.006

Fan N77-C7702-FAN Fan Controller (1) 0.016 Fan N77-C7702-FAN Fan Controller (2) 0.016

1/10 Gbps Ethernet Module N77-F248XP-23E Power Manager 0.006 1/10 Gbps Ethernet Module N77-F248XP-23E IO 0.005

Fabric Module 2 N77-C7718-FAB-2 Power Manager 1.002

Fabric Module 2 N77-C7710-FAB-2 Power Manager 1.003

Fabric Module 2 N77-C7706-FAB-2 Power Manager 1.002

Supervisor Module 2 N77-SUP2E Power Manager SPI 20.000

10/40 Gbps Ethernet Module N77-F324FQ-25 Power Manager SPI 1.005 10/40 Gbps Ethernet Module N77-F324FQ-25 IO SPI 2 0.028 10/40 Gbps Ethernet Module N77-F324FQ-25 IO SPI 4342 0.028 10/40 Gbps Ethernet Module N77-F324FQ-25 IO SPI 4343 0.031

100 Gbps Ethernet Module N77-F312CF-26 Power Manager SPI 1.008 100 Gbps Ethernet Module N77-F312CF-26 IO SPI 0.021

1/10 Gbps Ethernet Module N77-F348XP-23 Power Manager SPI 1.007 1/10 Gbps Ethernet Module N77-F348XP-23 SFP SPI 1.003 1/10 Gbps Ethernet Module N77-F348XP-23 IO SPI 0.031

10/40 Gbps Ethernet Module N77-M324FQ-25L Power Manager SPI 1.002 10/40 Gbps Ethernet Module N77-M324FQ-25L IO SPI 2 1.000 10/40 Gbps Ethernet Module N77-M324FQ-25L IO SPI 1.002

10/40/100 Gbps Ethernet Module N77-M312CF-26L Power Manager SPI 1.000 10/40/100 Gbps Ethernet Module N77-M312CF-26L IO SPI 2 1.001 10/40/100 Gbps Ethernet Module N77-M312CF-26L IO SPI 1.002

1/10 Gbps Ethernet Module N77-M348XP-23L Power Manager SPI 1.002 1/10 Gbps Ethernet Module N77-M348XP-23L SFP SPI 1.000 1/10 Gbps Ethernet Module N77-M348XP-23L IO SPI 1.003

100 Gbps Ethernet Module N77-F430CQ-36 Power Manager SPI 0.012 100 Gbps Ethernet Module N77-F430CQ-36 SFP SPI 0.006 100 Gbps Ethernet Module N77-F430CQ-36 IO SPI 1.003

Fabric Module 3 N77-C7710-FAB-3 Power Manager 0.007

Fabric Module 3 N77-C7706-FAB-3 Power Manager 0.008

show hardware feature-capability

show hardware feature-capability 
 
import requests
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 hardware feature-capability”,
  "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)
{                                                           
  "TABLE_feature_support": {                                
    "ROW_feature_support": [                                
      {                                                     
        "feature_name": "VPC",                              
        "TABLE_module_support": {                           
          "ROW_module_support": [                           
            {                                               
              "mod_inst": "6",                              
              "support": "Yes"                              
            },                                              
            {                                               
              "mod_inst": "7",                              
              "support": "Yes"                              
            },                                              
            {                                               
              "mod_inst": "8",                              
              "support": "Yes"                              
            },                                              
            {                                               
              "mod_inst": "15",                             
              "support": "Yes"                              
            }                                               
          ]                                                 
        }                                                   
      },                                                    
      {                                                     
        "feature_name": "PVLAN Trunk",                      
        "TABLE_module_support": {                           
          "ROW_module_support": [                           
            {                                               
              "mod_inst": "6",                              
              "support": "Yes"                              
            },                                              
            {                                               
              "mod_inst": "7",                              
              "support": "Yes"                              
            },                                              
            {                                               
              "mod_inst": "8",                              
              "support": "Yes"                              
            },                                              
            {                                               
              "mod_inst": "15",                             
              "support": "Yes"                              
            }                                               
          ]                                                 
        }                                                   
      },                                                    
      {                                                     
        "feature_name": "Orion Features",                   
        "TABLE_module_support": {                           
          "ROW_module_support": [                           
            {                                               
              "mod_inst": "6",                              
              "support": "No"                               
            },                                              
            {                                               
              "mod_inst": "7",                              
              "support": "No"                               
            },                                              
            {                                               
              "mod_inst": "8",                              
              "support": "No"                               
            },                                              
            {                                               
              "mod_inst": "15",                             
              "support": "No"                               
            }                                               
          ]                                                 
        }                                                   
      },                                                    
      {                                                     
        "feature_name": "Orion-CR Features",                
        "TABLE_module_support": {                           
          "ROW_module_support": [                           
            {                                               
              "mod_inst": "6",                              
              "support": "No"                               
            },                                              
            {                                               
              "mod_inst": "7",                              
              "support": "No"                               
            },                                              
            {                                               
              "mod_inst": "8",                              
              "support": "No"                               
            },                                              
            {                                               
              "mod_inst": "15",                             
              "support": "No"                               
            }                                               
          ]                                                 
        }                                                   
      },                                                    
      {                                                     
        "feature_name": "Orion-CR2 Features",               
        "TABLE_module_support": {                           
          "ROW_module_support": [                           
            {                                               
              "mod_inst": "6",                              
              "support": "No"                               
            },                                              
            {                                               
              "mod_inst": "7",                              
              "support": "No"                               
            },                                              
            {                                               
              "mod_inst": "8",                              
              "support": "No"                               
            },                                              
            {                                               
              "mod_inst": "15",                             
              "support": "No"                               
            }                                               
          ]                                                 
        }                                                   
      },                                                    
      {                                                     
        "feature_name": "Orion-CR3 Features",               
        "TABLE_module_support": {                           
          "ROW_module_support": [                           
            {                                               
              "mod_inst": "6",                              
              "support": "No"                               
            },                                              
            {                                               
              "mod_inst": "7",                              
              "support": "No"                               
            },                                              
            {                                               
              "mod_inst": "8",                              
              "support": "No"                               
            },                                              
            {                                               
              "mod_inst": "15",                             
              "support": "No"                               
            }
          ]
        }
      },
      {
        "feature_name": "FEX",
        "TABLE_module_support": {
          "ROW_module_support": [
            {
              "mod_inst": "6",
              "support": "Yes"
            },
            {
              "mod_inst": "7",
              "support": "No"
            },
            {
              "mod_inst": "8",
              "support": "No"
            },
            {
              "mod_inst": "15",
              "support": "No"
            }
          ]
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>               
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:crdcfg_server" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                              
  <show>                                                                                                                
   <hardware>                                                                                                           
    <feature-capability>                                                                                                
     <__readonly__>                                                                                                     
      <TABLE_feature_support>                                                                                           
       <ROW_feature_support>                                                                                            
        <feature_name>VPC</feature_name>                                                                                
        <TABLE_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>6</mod_inst>                                                                                        
          <support>Yes</support>                                                                                        
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>7</mod_inst>                                                                                        
          <support>Yes</support>                                                                                        
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>8</mod_inst>                                                                                        
          <support>Yes</support>                                                                                        
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>15</mod_inst>                                                                                       
          <support>Yes</support>                                                                                        
         </ROW_module_support>                                                                                          
        </TABLE_module_support>                                                                                         
       </ROW_feature_support>                                                                                           
       <ROW_feature_support>                                                                                            
        <feature_name>PVLAN Trunk</feature_name>                                                                        
        <TABLE_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>6</mod_inst>                                                                                        
          <support>Yes</support>                                                                                        
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>7</mod_inst>                                                                                        
          <support>Yes</support>                                                                                        
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>8</mod_inst>                                                                                        
          <support>Yes</support>                                                                                        
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>15</mod_inst>                                                                                       
          <support>Yes</support>                                                                                        
         </ROW_module_support>                                                                                          
        </TABLE_module_support>                                                                                         
       </ROW_feature_support>                                                                                           
       <ROW_feature_support>                                                                                            
        <feature_name>Orion Features</feature_name>                                                                     
        <TABLE_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>6</mod_inst>                                                                                        
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>7</mod_inst>                                                                                        
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>8</mod_inst>                                                                                        
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>15</mod_inst>                                                                                       
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
        </TABLE_module_support>                                                                                         
       </ROW_feature_support>                                                                                           
       <ROW_feature_support>                                                                                            
        <feature_name>Orion-CR Features</feature_name>                                                                  
        <TABLE_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>6</mod_inst>                                                                                        
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>7</mod_inst>                                                                                        
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>8</mod_inst>                                                                                        
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>15</mod_inst>                                                                                       
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
        </TABLE_module_support>                                                                                         
       </ROW_feature_support>                                                                                           
       <ROW_feature_support>                                                                                            
        <feature_name>Orion-CR2 Features</feature_name>                                                                 
        <TABLE_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>6</mod_inst>                                                                                        
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>7</mod_inst>                                                                                        
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>8</mod_inst>                                                                                        
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>15</mod_inst>                                                                                       
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
        </TABLE_module_support>                                                                                         
       </ROW_feature_support>                                                                                           
       <ROW_feature_support>                                                                                            
        <feature_name>Orion-CR3 Features</feature_name>                                                                 
        <TABLE_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>6</mod_inst>                                                                                        
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>7</mod_inst>                                                                                        
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>8</mod_inst>                                                                                        
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>15</mod_inst>                                                                                       
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
        </TABLE_module_support>                                                                                         
       </ROW_feature_support>                                                                                           
       <ROW_feature_support>                                                                                            
        <feature_name>FEX</feature_name>                                                                                
        <TABLE_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>6</mod_inst>                                                                                        
          <support>Yes</support>                                                                                        
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>7</mod_inst>                                                                                        
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>8</mod_inst>                                                                                        
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
         <ROW_module_support>                                                                                           
          <mod_inst>15</mod_inst>                                                                                       
          <support>No</support>                                                                                         
         </ROW_module_support>                                                                                          
        </TABLE_module_support>                                                                                         
       </ROW_feature_support>                                                                                           
      </TABLE_feature_support>                                                                                          
     </__readonly__>                                                                                                    
    </feature-capability>                                                                                               
   </hardware>                                                                                                          
  </show>                                                                                                               
 </nf:data>                                                                                                             
</nf:rpc-reply>         

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware feature-capability**

VPC                                                  
    module  6 : Yes                                  
    module  7 : Yes                                  
    module  8 : Yes                                  
    module 15 : Yes                                  
PVLAN Trunk                                          
    module  6 : Yes                                  
    module  7 : Yes                                  
    module  8 : Yes                                  
    module 15 : Yes                                  
Orion Features                                       
    module  6 : No                                   
    module  7 : No                                   
    module  8 : No                                   
    module 15 : No                                   
Orion-CR Features                                    
    module  6 : No                                   
    module  7 : No                                   
    module  8 : No                                   
    module 15 : No                                   
Orion-CR2 Features                                   
    module  6 : No                                   
    module  7 : No                                   
    module  8 : No                                   
    module 15 : No                                   
Orion-CR3 Features                                   
    module  6 : No                                   
    module  7 : No                                   
    module  8 : No                                   
    module 15 : No                                   
FEX                                                  
    module  6 : Yes                                  
    module  7 : No                                   
    module  8 : No                                   
    module 15 : No      

show hardware feature-capability detailed

show hardware feature-capability detailed 
 
import requests
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 hardware feature-capability detailed”,
  "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)
{                                                                    
  "TABLE_feature_support": {                                         
    "ROW_feature_support": [                                         
      {                                                              
        "feature_name": "VPC",                                       
        "TABLE_module_support": {                                    
          "ROW_module_support": [                                    
            {                                                        
              "mod_inst": "6",                                       
              "support": "SUCCESS"                                   
            },                                                       
            {                                                        
              "mod_inst": "7",                                       
              "support": "SUCCESS"                                   
            },                                                       
            {                                                        
              "mod_inst": "8",                                       
              "support": "SUCCESS"                                   
            },                                                       
            {                                                        
              "mod_inst": "15",                                      
              "support": "SUCCESS"                                   
            }                                                        
          ]                                                          
        }                                                            
      },                                                             
      {                                                              
        "feature_name": "PVLAN Trunk",                               
        "TABLE_module_support": {                                    
          "ROW_module_support": [                                    
            {                                                        
              "mod_inst": "6",                                       
              "support": "SUCCESS"                                   
            },                                                       
            {                                                        
              "mod_inst": "7",                                       
              "support": "SUCCESS"                                   
            },                                                       
            {                                                        
              "mod_inst": "8",                                       
              "support": "SUCCESS"                                   
            },                                                       
            {                                                        
              "mod_inst": "15",                                      
              "support": "SUCCESS"                                   
            }                                                        
          ]                                                          
        }                                                            
      },                                                             
      {                                                              
        "feature_name": "Orion Features",                            
        "TABLE_module_support": {                                    
          "ROW_module_support": [                                    
            {                                                        
              "mod_inst": "6",                                       
              "support": "Feature Absent"                            
            },                                                       
            {                                                        
              "mod_inst": "7",                                       
              "support": "Feature Absent"                            
            },                                                       
            {                                                        
              "mod_inst": "8",                                       
              "support": "Feature Absent"                            
            },                                                       
            {                                                        
              "mod_inst": "15",                                      
              "support": "Feature Absent"                            
            }                                                        
          ]                                                          
        }                                                            
      },                                                             
      {                                                              
        "feature_name": "Orion-CR Features",                         
        "TABLE_module_support": {                                    
          "ROW_module_support": [                                    
            {                                                        
              "mod_inst": "6",                                       
              "support": "Feature Absent"                            
            },                                                       
            {                                                        
              "mod_inst": "7",                                       
              "support": "Feature Absent"                            
            },                                                       
            {                                                        
              "mod_inst": "8",                                       
              "support": "Feature Absent"                            
            },                                                       
            {                                                        
              "mod_inst": "15",                                      
              "support": "Feature Absent"                            
            }                                                        
          ]                                                          
        }                                                            
      },                                                             
      {                                                              
        "feature_name": "Orion-CR2 Features",                        
        "TABLE_module_support": {                                    
          "ROW_module_support": [                                    
            {                                                        
              "mod_inst": "6",                                       
              "support": "Feature Absent"                            
            },                                                       
            {                                                        
              "mod_inst": "7",                                       
              "support": "Feature Absent"                            
            },                                                       
            {                                                        
              "mod_inst": "8",                                       
              "support": "Feature Absent"                            
            },                                                       
            {                                                        
              "mod_inst": "15",                                      
              "support": "Feature Absent"                            
            }                                                        
          ]                                                          
        }                                                            
      },                                                             
      {                                                              
        "feature_name": "Orion-CR3 Features",                        
        "TABLE_module_support": {                                    
          "ROW_module_support": [                                    
            {                                                        
              "mod_inst": "6",                                       
              "support": "Feature Absent"                            
            },                                                       
            {                                                        
              "mod_inst": "7",                                       
              "support": "Feature Absent"                            
            },                                                       
            {                                                        
              "mod_inst": "8",                                       
              "support": "Feature Absent"                            
            },                                                       
            {                                                        
              "mod_inst": "15",                                      
              "support": "Feature Absent"                            
            }
          ]
        }
      },
      {
        "feature_name": "FEX",
        "TABLE_module_support": {
          "ROW_module_support": [
            {
              "mod_inst": "6",
              "support": "SUCCESS"
            },
            {
              "mod_inst": "7",
              "support": "Feature Absent"
            },
            {
              "mod_inst": "8",
              "support": "Feature Absent"
            },
            {
              "mod_inst": "15",
              "support": "Feature Absent"
            }
          ]
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                        
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:crdcfg_server" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                              
  <show>                                                                                                                
   <hardware>                                                                                                           
    <feature-capability>                                                                                                
     <detailed>                                                                                                         
      <__readonly__>                                                                                                    
       <TABLE_feature_support>                                                                                          
        <ROW_feature_support>                                                                                           
         <feature_name>VPC</feature_name>                                                                               
         <TABLE_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>6</mod_inst>                                                                                       
           <support>SUCCESS</support>                                                                                   
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>7</mod_inst>                                                                                       
           <support>SUCCESS</support>                                                                                   
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>8</mod_inst>                                                                                       
           <support>SUCCESS</support>                                                                                   
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>15</mod_inst>                                                                                      
           <support>SUCCESS</support>                                                                                   
          </ROW_module_support>                                                                                         
         </TABLE_module_support>                                                                                        
        </ROW_feature_support>                                                                                          
        <ROW_feature_support>                                                                                           
         <feature_name>PVLAN Trunk</feature_name>                                                                       
         <TABLE_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>6</mod_inst>                                                                                       
           <support>SUCCESS</support>                                                                                   
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>7</mod_inst>                                                                                       
           <support>SUCCESS</support>                                                                                   
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>8</mod_inst>                                                                                       
           <support>SUCCESS</support>                                                                                   
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>15</mod_inst>                                                                                      
           <support>SUCCESS</support>                                                                                   
          </ROW_module_support>                                                                                         
         </TABLE_module_support>                                                                                        
        </ROW_feature_support>                                                                                          
        <ROW_feature_support>                                                                                           
         <feature_name>Orion Features</feature_name>                                                                    
         <TABLE_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>6</mod_inst>                                                                                       
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>7</mod_inst>                                                                                       
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>8</mod_inst>                                                                                       
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>15</mod_inst>                                                                                      
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
         </TABLE_module_support>                                                                                        
        </ROW_feature_support>                                                                                          
        <ROW_feature_support>                                                                                           
         <feature_name>Orion-CR Features</feature_name>                                                                 
         <TABLE_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>6</mod_inst>                                                                                       
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>7</mod_inst>                                                                                       
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>8</mod_inst>                                                                                       
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>15</mod_inst>                                                                                      
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
         </TABLE_module_support>                                                                                        
        </ROW_feature_support>                                                                                          
        <ROW_feature_support>                                                                                           
         <feature_name>Orion-CR2 Features</feature_name>                                                                
         <TABLE_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>6</mod_inst>                                                                                       
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>7</mod_inst>                                                                                       
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>8</mod_inst>                                                                                       
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>15</mod_inst>                                                                                      
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
         </TABLE_module_support>                                                                                        
        </ROW_feature_support>                                                                                          
        <ROW_feature_support>                                                                                           
         <feature_name>Orion-CR3 Features</feature_name>                                                                
         <TABLE_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>6</mod_inst>                                                                                       
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>7</mod_inst>                                                                                       
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>8</mod_inst>                                                                                       
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>15</mod_inst>                                                                                      
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
         </TABLE_module_support>                                                                                        
        </ROW_feature_support>                                                                                          
        <ROW_feature_support>                                                                                           
         <feature_name>FEX</feature_name>                                                                               
         <TABLE_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>6</mod_inst>                                                                                       
           <support>SUCCESS</support>                                                                                   
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>7</mod_inst>                                                                                       
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>8</mod_inst>                                                                                       
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
          <ROW_module_support>                                                                                          
           <mod_inst>15</mod_inst>                                                                                      
           <support>Feature Absent</support>                                                                            
          </ROW_module_support>                                                                                         
         </TABLE_module_support>                                                                                        
        </ROW_feature_support>                                                                                          
       </TABLE_feature_support>                                                                                         
      </__readonly__>                                                                                                   
     </detailed>                                                                                                        
    </feature-capability>                                                                                               
   </hardware>                                                                                                          
  </show>                                                                                                               
 </nf:data>                                                                                                             
</nf:rpc-reply>                                                                                                         

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware feature-capability detailed**

VPC                                                           
    module  6 : SUCCESS                                       
    module  7 : SUCCESS                                       
    module  8 : SUCCESS                                       
    module 15 : SUCCESS                                       
PVLAN Trunk                                                   
    module  6 : SUCCESS                                       
    module  7 : SUCCESS                                       
    module  8 : SUCCESS                                       
    module 15 : SUCCESS                                       
Orion Features                                                
    module  6 : Feature Absent                                
    module  7 : Feature Absent                                
    module  8 : Feature Absent                                
    module 15 : Feature Absent                                
Orion-CR Features                                             
    module  6 : Feature Absent                                
    module  7 : Feature Absent                                
    module  8 : Feature Absent                                
    module 15 : Feature Absent                                
Orion-CR2 Features                                            
    module  6 : Feature Absent                                
    module  7 : Feature Absent                                
    module  8 : Feature Absent                                
    module 15 : Feature Absent                                
Orion-CR3 Features                                            
    module  6 : Feature Absent                                
    module  7 : Feature Absent                                
    module  8 : Feature Absent                                
    module 15 : Feature Absent                                
FEX                                                           
    module  6 : SUCCESS                                       
    module  7 : Feature Absent                                
    module  8 : Feature Absent                                
    module 15 : Feature Absent      

show diagnostic bootup level

show diagnostic bootup level
 
import requests
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 bootup level”,
  "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)
{
  "bootup_level": "complete"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <diagnostic>
    <bootup>
     <level>
      <__readonly__>
       <bootup_level>complete</bootup_level>
      </__readonly__>
     </level>
    </bootup>
   </diagnostic>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show diagnostic bootup level**

Current bootup diagnostic level: complete

show diagnostic content module all

show diagnostic content module all 
 
import requests
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 content module all”,
  "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)
{                                                               
  "attr_descr": "Diagnostics test suite attributes: \nB/C/* - Bypass bootup level test / Complete bootup level test / NA \nP/*   - Per port test / NA \nM/S/* - Only applicable to active / standby unit / NA \nD/N/* - Disruptive test / Non-disruptive test / NA \nH/O/* - Always enabled monitoring test / Conditionally enabled test / NA \nF/*   - Fixed monitoring interval test / NA \nX/*   - Not a health monitoring test / NA \nE/*   - Sup to line card test / NA \nL/*   - Exclusively run this test / NA \nT/*   - Not an ondemand test / NA \nA/I/* - Monitoring is active / Monitoring is inactive / NA \nZ/D/* - Corrective Action is enabled / Corrective Action is disabled / NA",                                                                                                   
  "TABLE_module": {                                                                                                                                        
    "ROW_module": {                                                                                                                                        
      "module_number": "0",                                                                                                                                
      "module_id": [                                                                                                                                       
        "6",                                                                                                                                               
        "7",                                                                                                                                               
        "8",                                                                                                                                               
        "9",                                                                                                                                               
        "10",                                                                                                                                              
        "15"                                                                                                                                               
      ],                                                                                                                                                   
      "module_type": [                                                                                                                                     
        "1/10 Gbps Ethernet Module",                                                                                                                       
        "100 Gbps Ethernet Module",                                                                                                                        
        "100 Gbps Ethernet Module",                                                                                                                        
        "Supervisor Module-2 (Active)",                                                                                                                    
        "Supervisor Module-2 (Standby)",                                                                                                                   
        "100 Gbps Ethernet Module"                                                                                                                         
      ],                                                                                                                                                   
      "TABLE_test": [                                                                                                                                      
        {                                                                                                                                                  
          "ROW_test": [                                                                                                                                    
            {                                                                                                                                              
              "test_id": 1,                                                                                                                                
              "testname": "ASICRegisterCheck",                                                                                                             
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:01:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 2,                                                                                                                                
              "testname": "PrimaryBootROM",                                                                                                                
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:30:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 3,                                                                                                                                
              "testname": "SecondaryBootROM",                                                                                                              
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:30:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 4,                                                                                                                                
              "testname": "EOBCPortLoopback",                                                                                                              
              "test_attr": "C**N**X**T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 5,                                                                                                                                
              "testname": "OBFL",                                                                                                                          
              "test_attr": "C**N**X**T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 6,                                                                                                                                
              "testname": "PortLoopback",                                                                                                                  
              "test_attr": "*P*N***E**AD",                                                                                                                 
              "test_interval": "00:15:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 7,                                                                                                                                
              "testname": "RewriteEngineLoopback",                                                                                                         
              "test_attr": "*P*N***E**AD",                                                                                                                 
              "test_interval": "00:01:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 8,                                                                                                                                
              "testname": "SnakeLoopback",                                                                                                                 
              "test_attr": "*P*N***E**ID",                                                                                                                 
              "test_interval": "00:20:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 9,                                                                                                                                
              "testname": "IntPortLoopback",                                                                                                               
              "test_attr": "*P*N***E**AD",                                                                                                                 
              "test_interval": "00:05:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 10,                                                                                                                               
              "testname": "FIPS",                                                                                                                          
              "test_attr": "*P*NO*XE*T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 11,                                                                                                                               
              "testname": "BootupPortLoopback",                                                                                                            
              "test_attr": "CP*N**XE*T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            }                                                                                                                                              
          ]                                                                                                                                                
        },                                                                                                                                                 
        {                                                                                                                                                  
          "ROW_test": [                                                                                                                                    
            {                                                                                                                                              
              "test_id": 1,                                                                                                                                
              "testname": "ASICRegisterCheck",                                                                                                             
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:01:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 2,                                                                                                                                
              "testname": "PrimaryBootROM",                                                                                                                
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:30:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 3,                                                                                                                                
              "testname": "SecondaryBootROM",                                                                                                              
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:30:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 4,                                                                                                                                
              "testname": "EOBCPortLoopback",                                                                                                              
              "test_attr": "C**N**X**T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 5,                                                                                                                                
              "testname": "OBFL",                                                                                                                          
              "test_attr": "C**N**X**T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 6,                                                                                                                                
              "testname": "ACT2",                                                                                                                          
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:300:00"                                                                                                                 
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 7,                                                                                                                                
              "testname": "PortLoopback",                                                                                                                  
              "test_attr": "*P*N***E**AD",                                                                                                                 
              "test_interval": "00:15:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 8,                                                                                                                                
              "testname": "RewriteEngineLoopback",                                                                                                         
              "test_attr": "*P*N***E**AD",                                                                                                                 
              "test_interval": "00:01:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 9,                                                                                                                                
              "testname": "SnakeLoopback",                                                                                                                 
              "test_attr": "*P*N***E**ID",                                                                                                                 
              "test_interval": "00:20:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 10,                                                                                                                               
              "testname": "IntPortLoopback",                                                                                                               
              "test_attr": "*P*N***E**AD",                                                                                                                 
              "test_interval": "00:05:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 11,                                                                                                                               
              "testname": "FIPS",                                                                                                                          
              "test_attr": "*P*NO*XE*T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 12,                                                                                                                               
              "testname": "BootupPortLoopback",                                                                                                            
              "test_attr": "CP*N**XE*T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            }                                                                                                                                              
          ]                                                                                                                                                
        },                                                                                                                                                 
        {                                                                                                                                                  
          "ROW_test": [                                                                                                                                    
            {                                                                                                                                              
              "test_id": 1,                                                                                                                                
              "testname": "ASICRegisterCheck",                                                                                                             
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:01:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 2,                                                                                                                                
              "testname": "PrimaryBootROM",                                                                                                                
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:30:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 3,                                                                                                                                
              "testname": "SecondaryBootROM",                                                                                                              
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:30:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 4,                                                                                                                                
              "testname": "EOBCPortLoopback",                                                                                                              
              "test_attr": "C**N**X**T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 5,                                                                                                                                
              "testname": "OBFL",                                                                                                                          
              "test_attr": "C**N**X**T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 6,                                                                                                                                
              "testname": "ACT2",                                                                                                                          
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:300:00"                                                                                                                 
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 7,                                                                                                                                
              "testname": "PortLoopback",                                                                                                                  
              "test_attr": "*P*N***E**AD",                                                                                                                 
              "test_interval": "00:15:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 8,                                                                                                                                
              "testname": "RewriteEngineLoopback",                                                                                                         
              "test_attr": "*P*N***E**AD",                                                                                                                 
              "test_interval": "00:01:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 9,                                                                                                                                
              "testname": "SnakeLoopback",                                                                                                                 
              "test_attr": "*P*N***E**ID",                                                                                                                 
              "test_interval": "00:20:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 10,                                                                                                                               
              "testname": "IntPortLoopback",                                                                                                               
              "test_attr": "*P*N***E**AD",                                                                                                                 
              "test_interval": "00:05:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 11,                                                                                                                               
              "testname": "FIPS",                                                                                                                          
              "test_attr": "*P*NO*XE*T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 12,                                                                                                                               
              "testname": "BootupPortLoopback",                                                                                                            
              "test_attr": "CP*N**XE*T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            }                                                                                                                                              
          ]                                                                                                                                                
        },                                                                                                                                                 
        {                                                                                                                                                  
          "ROW_test": [                                                                                                                                    
            {                                                                                                                                              
              "test_id": 1,                                                                                                                                
              "testname": "ASICRegisterCheck",                                                                                                             
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:00:20"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 2,                                                                                                                                
              "testname": "USB",                                                                                                                           
              "test_attr": "C**N**X**T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 3,                                                                                                                                
              "testname": "NVRAM",                                                                                                                         
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:05:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 4,                                                                                                                                
              "testname": "RealTimeClock",                                                                                                                 
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:05:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 5,                                                                                                                                
              "testname": "PrimaryBootROM",                                                                                                                
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:30:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 6,                                                                                                                                
              "testname": "SecondaryBootROM",                                                                                                              
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:30:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 7,                                                                                                                                
              "testname": "CompactFlash",                                                                                                                  
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:30:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 8,                                                                                                                                
              "testname": "ExternalCompactFlash",                                                                                                          
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:30:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 9,                                                                                                                                
              "testname": "PwrMgmtBus",                                                                                                                    
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:00:30"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 10,                                                                                                                               
              "testname": "SystemMgmtBus",                                                                                                                 
              "test_attr": "**MN******A*",                                                                                                                 
              "test_interval": "00:00:30"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 11,                                                                                                                               
              "testname": "StatusBus",                                                                                                                     
              "test_attr": "**MN******A*",                                                                                                                 
              "test_interval": "00:00:30"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 12,                                                                                                                               
              "testname": "PCIeBus",                                                                                                                       
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:00:30"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 13,                                                                                                                               
              "testname": "StandbyFabricLoopback",                                                                                                         
              "test_attr": "**SN******A*",                                                                                                                 
              "test_interval": "00:00:30"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 14,                                                                                                                               
              "testname": "ManagementPortLoopback",                                                                                                        
              "test_attr": "C**D**X**T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 15,                                                                                                                               
              "testname": "EOBCPortLoopback",                                                                                                              
              "test_attr": "C**D**X**T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 16,                                                                                                                               
              "testname": "OBFL",                                                                                                                          
              "test_attr": "C**N**X**T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            }                                                                                                                                              
          ]                                                                                                                                                
        },                                                                                                                                                 
        {                                                                                                                                                  
          "ROW_test": [                                                                                                                                    
            {                                                                                                                                              
              "test_id": 1,                                                                                                                                
              "testname": "ASICRegisterCheck",                                                                                                             
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:00:20"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 2,                                                                                                                                
              "testname": "USB",                                                                                                                           
              "test_attr": "C**N**X**T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 3,                                                                                                                                
              "testname": "NVRAM",                                                                                                                         
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:05:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 4,                                                                                                                                
              "testname": "RealTimeClock",                                                                                                                 
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:05:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 5,                                                                                                                                
              "testname": "PrimaryBootROM",                                                                                                                
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:30:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 6,                                                                                                                                
              "testname": "SecondaryBootROM",                                                                                                              
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:30:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 7,                                                                                                                                
              "testname": "CompactFlash",                                                                                                                  
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:30:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 8,                                                                                                                                
              "testname": "ExternalCompactFlash",                                                                                                          
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:30:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 9,                                                                                                                                
              "testname": "PwrMgmtBus",                                                                                                                    
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:00:30"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 10,                                                                                                                               
              "testname": "SystemMgmtBus",                                                                                                                 
              "test_attr": "**MN******A*",                                                                                                                 
              "test_interval": "00:00:30"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 11,                                                                                                                               
              "testname": "StatusBus",                                                                                                                     
              "test_attr": "**MN******A*",                                                                                                                 
              "test_interval": "00:00:30"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 12,                                                                                                                               
              "testname": "PCIeBus",                                                                                                                       
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:00:30"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 13,                                                                                                                               
              "testname": "StandbyFabricLoopback",                                                                                                         
              "test_attr": "**SN******A*",                                                                                                                 
              "test_interval": "00:00:30"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 14,                                                                                                                               
              "testname": "ManagementPortLoopback",                                                                                                        
              "test_attr": "C**D**X**T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 15,                                                                                                                               
              "testname": "EOBCPortLoopback",                                                                                                              
              "test_attr": "C**D**X**T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 16,                                                                                                                               
              "testname": "OBFL",                                                                                                                          
              "test_attr": "C**N**X**T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            }                                                                                                                                              
          ]                                                                                                                                                
        },                                                                                                                                                 
        {                                                                                                                                                  
          "ROW_test": [                                                                                                                                    
            {                                                                                                                                              
              "test_id": 1,                                                                                                                                
              "testname": "ASICRegisterCheck",                                                                                                             
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:01:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 2,                                                                                                                                
              "testname": "PrimaryBootROM",                                                                                                                
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:30:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 3,                                                                                                                                
              "testname": "SecondaryBootROM",                                                                                                              
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:30:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 4,                                                                                                                                
              "testname": "EOBCPortLoopback",                                                                                                              
              "test_attr": "C**N**X**T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 5,                                                                                                                                
              "testname": "OBFL",                                                                                                                          
              "test_attr": "C**N**X**T**",                                                                                                                 
              "test_interval": "-NA-"                                                                                                                      
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 6,                                                                                                                                
              "testname": "ACT2",                                                                                                                          
              "test_attr": "***N******A*",                                                                                                                 
              "test_interval": "00:300:00"                                                                                                                 
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 7,                                                                                                                                
              "testname": "PortLoopback",                                                                                                                  
              "test_attr": "*P*N***E**AD",                                                                                                                 
              "test_interval": "00:15:00"                                                                                                                  
            },                                                                                                                                             
            {                                                                                                                                              
              "test_id": 8,                                                                                                                                
              "testname": "RewriteEngineLoopback",                                                                                                         
              "test_attr": "*P*N***E**AD",                                                                                                                 
              "test_interval": "00:01:00"                                                                                                                  
            },                                                                                                                                             
            {
              "test_id": 9,
              "testname": "SnakeLoopback",
              "test_attr": "*P*N***E**ID",
              "test_interval": "00:20:00"
            },
            {
              "test_id": 10,
              "testname": "IntPortLoopback",
              "test_attr": "*P*N***E**AD",
              "test_interval": "00:05:00"
            },
            {
              "test_id": 11,
              "testname": "FIPS",
              "test_attr": "*P*NO*XE*T**",
              "test_interval": "-NA-"
            },
            {
              "test_id": 12,
              "testname": "BootupPortLoopback",
              "test_attr": "CP*N**XE*T**",
              "test_interval": "-NA-"
            }
          ]
        }
      ]
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                   
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                        
  <show>                                                                                                          
   <diagnostic>                                                                                                   
    <content>                                                                                                     
     <module>                                                                                                     
      <all>                                                                                                       
       <__readonly__>                                                                                             
        <attr_descr>Diagnostics test suite attributes:                                                            
B/C/* - Bypass bootup level test / Complete bootup level test / NA                                                
P/*   - Per port test / NA                                                                                        
M/S/* - Only applicable to active / standby unit / NA                                                             
D/N/* - Disruptive test / Non-disruptive test / NA                                                                
H/O/* - Always enabled monitoring test / Conditionally enabled test / NA                                          
F/*   - Fixed monitoring interval test / NA                                                                       
X/*   - Not a health monitoring test / NA                                                                         
E/*   - Sup to line card test / NA                                                                                
L/*   - Exclusively run this test / NA                                                                            
T/*   - Not an ondemand test / NA                                                                                 
A/I/* - Monitoring is active / Monitoring is inactive / NA                                                        
Z/D/* - Corrective Action is enabled / Corrective Action is disabled / NA</attr_descr>                            
        <TABLE_module>                                                                                            
         <ROW_module>                                                                                             
          <module_number>0</module_number>                                                                        
          <module_id>6</module_id>                                                                                
          <module_type>1/10 Gbps Ethernet Module </module_type>                                                   
          <TABLE_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>1</test_id>                                                                                  
            <testname>ASICRegisterCheck</testname>                                                                
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:01:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>2</test_id>                                                                                  
            <testname>PrimaryBootROM</testname>                                                                   
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>3</test_id>                                                                                  
            <testname>SecondaryBootROM</testname>                                                                 
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>4</test_id>                                                                                  
            <testname>EOBCPortLoopback</testname>                                                                 
            <test_attr>C**N**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>5</test_id>                                                                                  
            <testname>OBFL</testname>                                                                             
            <test_attr>C**N**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>6</test_id>                                                                                  
            <testname>PortLoopback</testname>                                                                     
            <test_attr>*P*N***E**AD</test_attr>                                                                   
            <test_interval>00:15:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>7</test_id>                                                                                  
            <testname>RewriteEngineLoopback</testname>                                                            
            <test_attr>*P*N***E**AD</test_attr>                                                                   
            <test_interval>00:01:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>8</test_id>                                                                                  
            <testname>SnakeLoopback</testname>                                                                    
            <test_attr>*P*N***E**ID</test_attr>                                                                   
            <test_interval>00:20:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>9</test_id>                                                                                  
            <testname>IntPortLoopback</testname>                                                                  
            <test_attr>*P*N***E**AD</test_attr>                                                                   
            <test_interval>00:05:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>10</test_id>                                                                                 
            <testname>FIPS</testname>                                                                             
            <test_attr>*P*NO*XE*T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>11</test_id>                                                                                 
            <testname>BootupPortLoopback</testname>                                                               
            <test_attr>CP*N**XE*T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
          </TABLE_test>                                                                                           
          <module_id>7</module_id>                                                                                
          <module_type>100 Gbps Ethernet Module </module_type>                                                    
          <TABLE_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>1</test_id>                                                                                  
            <testname>ASICRegisterCheck</testname>                                                                
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:01:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>2</test_id>                                                                                  
            <testname>PrimaryBootROM</testname>                                                                   
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>3</test_id>                                                                                  
            <testname>SecondaryBootROM</testname>                                                                 
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>4</test_id>                                                                                  
            <testname>EOBCPortLoopback</testname>                                                                 
            <test_attr>C**N**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>5</test_id>                                                                                  
            <testname>OBFL</testname>                                                                             
            <test_attr>C**N**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>6</test_id>                                                                                  
            <testname>ACT2</testname>                                                                             
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:300:00</test_interval>                                                              
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>7</test_id>                                                                                  
            <testname>PortLoopback</testname>                                                                     
            <test_attr>*P*N***E**AD</test_attr>                                                                   
            <test_interval>00:15:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>8</test_id>                                                                                  
            <testname>RewriteEngineLoopback</testname>                                                            
            <test_attr>*P*N***E**AD</test_attr>                                                                   
            <test_interval>00:01:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>9</test_id>                                                                                  
            <testname>SnakeLoopback</testname>                                                                    
            <test_attr>*P*N***E**ID</test_attr>                                                                   
            <test_interval>00:20:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>10</test_id>                                                                                 
            <testname>IntPortLoopback</testname>                                                                  
            <test_attr>*P*N***E**AD</test_attr>                                                                   
            <test_interval>00:05:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>11</test_id>                                                                                 
            <testname>FIPS</testname>                                                                             
            <test_attr>*P*NO*XE*T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>12</test_id>                                                                                 
            <testname>BootupPortLoopback</testname>                                                               
            <test_attr>CP*N**XE*T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
          </TABLE_test>                                                                                           
          <module_id>8</module_id>                                                                                
          <module_type>100 Gbps Ethernet Module </module_type>                                                    
          <TABLE_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>1</test_id>                                                                                  
            <testname>ASICRegisterCheck</testname>                                                                
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:01:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>2</test_id>                                                                                  
            <testname>PrimaryBootROM</testname>                                                                   
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>3</test_id>                                                                                  
            <testname>SecondaryBootROM</testname>                                                                 
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>4</test_id>                                                                                  
            <testname>EOBCPortLoopback</testname>                                                                 
            <test_attr>C**N**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>5</test_id>                                                                                  
            <testname>OBFL</testname>                                                                             
            <test_attr>C**N**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>6</test_id>                                                                                  
            <testname>ACT2</testname>                                                                             
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:300:00</test_interval>                                                              
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>7</test_id>                                                                                  
            <testname>PortLoopback</testname>                                                                     
            <test_attr>*P*N***E**AD</test_attr>                                                                   
            <test_interval>00:15:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>8</test_id>                                                                                  
            <testname>RewriteEngineLoopback</testname>                                                            
            <test_attr>*P*N***E**AD</test_attr>                                                                   
            <test_interval>00:01:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>9</test_id>                                                                                  
            <testname>SnakeLoopback</testname>                                                                    
            <test_attr>*P*N***E**ID</test_attr>                                                                   
            <test_interval>00:20:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>10</test_id>                                                                                 
            <testname>IntPortLoopback</testname>                                                                  
            <test_attr>*P*N***E**AD</test_attr>                                                                   
            <test_interval>00:05:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>11</test_id>                                                                                 
            <testname>FIPS</testname>                                                                             
            <test_attr>*P*NO*XE*T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>12</test_id>                                                                                 
            <testname>BootupPortLoopback</testname>                                                               
            <test_attr>CP*N**XE*T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
          </TABLE_test>                                                                                           
          <module_id>9</module_id>                                                                                
          <module_type>Supervisor Module-2 (Active)</module_type>                                                 
          <TABLE_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>1</test_id>                                                                                  
            <testname>ASICRegisterCheck</testname>                                                                
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:00:20</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>2</test_id>                                                                                  
            <testname>USB</testname>                                                                              
            <test_attr>C**N**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>3</test_id>                                                                                  
            <testname>NVRAM</testname>                                                                            
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:05:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>4</test_id>                                                                                  
            <testname>RealTimeClock</testname>                                                                    
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:05:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>5</test_id>                                                                                  
            <testname>PrimaryBootROM</testname>                                                                   
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>6</test_id>                                                                                  
            <testname>SecondaryBootROM</testname>                                                                 
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>7</test_id>                                                                                  
            <testname>CompactFlash</testname>                                                                     
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>8</test_id>                                                                                  
            <testname>ExternalCompactFlash</testname>                                                             
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>9</test_id>                                                                                  
            <testname>PwrMgmtBus</testname>                                                                       
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:00:30</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>10</test_id>                                                                                 
            <testname>SystemMgmtBus</testname>                                                                    
            <test_attr>**MN******A*</test_attr>                                                                   
            <test_interval>00:00:30</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>11</test_id>                                                                                 
            <testname>StatusBus</testname>                                                                        
            <test_attr>**MN******A*</test_attr>                                                                   
            <test_interval>00:00:30</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>12</test_id>                                                                                 
            <testname>PCIeBus</testname>                                                                          
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:00:30</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>13</test_id>                                                                                 
            <testname>StandbyFabricLoopback</testname>                                                            
            <test_attr>**SN******A*</test_attr>                                                                   
            <test_interval>00:00:30</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>14</test_id>                                                                                 
            <testname>ManagementPortLoopback</testname>                                                           
            <test_attr>C**D**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>15</test_id>                                                                                 
            <testname>EOBCPortLoopback</testname>                                                                 
            <test_attr>C**D**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>16</test_id>                                                                                 
            <testname>OBFL</testname>                                                                             
            <test_attr>C**N**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
          </TABLE_test>                                                                                           
          <module_id>10</module_id>                                                                               
          <module_type>Supervisor Module-2 (Standby)</module_type>                                                
          <TABLE_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>1</test_id>                                                                                  
            <testname>ASICRegisterCheck</testname>                                                                
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:00:20</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>2</test_id>                                                                                  
            <testname>USB</testname>                                                                              
            <test_attr>C**N**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>3</test_id>                                                                                  
            <testname>NVRAM</testname>                                                                            
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:05:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>4</test_id>                                                                                  
            <testname>RealTimeClock</testname>                                                                    
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:05:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>5</test_id>                                                                                  
            <testname>PrimaryBootROM</testname>                                                                   
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>6</test_id>                                                                                  
            <testname>SecondaryBootROM</testname>                                                                 
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>7</test_id>                                                                                  
            <testname>CompactFlash</testname>                                                                     
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>8</test_id>                                                                                  
            <testname>ExternalCompactFlash</testname>                                                             
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>9</test_id>                                                                                  
            <testname>PwrMgmtBus</testname>                                                                       
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:00:30</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>10</test_id>                                                                                 
            <testname>SystemMgmtBus</testname>                                                                    
            <test_attr>**MN******A*</test_attr>                                                                   
            <test_interval>00:00:30</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>11</test_id>                                                                                 
            <testname>StatusBus</testname>                                                                        
            <test_attr>**MN******A*</test_attr>                                                                   
            <test_interval>00:00:30</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>12</test_id>                                                                                 
            <testname>PCIeBus</testname>                                                                          
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:00:30</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>13</test_id>                                                                                 
            <testname>StandbyFabricLoopback</testname>                                                            
            <test_attr>**SN******A*</test_attr>                                                                   
            <test_interval>00:00:30</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>14</test_id>                                                                                 
            <testname>ManagementPortLoopback</testname>                                                           
            <test_attr>C**D**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>15</test_id>                                                                                 
            <testname>EOBCPortLoopback</testname>                                                                 
            <test_attr>C**D**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>16</test_id>                                                                                 
            <testname>OBFL</testname>                                                                             
            <test_attr>C**N**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
          </TABLE_test>                                                                                           
          <module_id>15</module_id>                                                                               
          <module_type>100 Gbps Ethernet Module </module_type>                                                    
          <TABLE_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>1</test_id>                                                                                  
            <testname>ASICRegisterCheck</testname>                                                                
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:01:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>2</test_id>                                                                                  
            <testname>PrimaryBootROM</testname>                                                                   
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>3</test_id>                                                                                  
            <testname>SecondaryBootROM</testname>                                                                 
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>4</test_id>                                                                                  
            <testname>EOBCPortLoopback</testname>                                                                 
            <test_attr>C**N**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>5</test_id>                                                                                  
            <testname>OBFL</testname>                                                                             
            <test_attr>C**N**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>6</test_id>                                                                                  
            <testname>ACT2</testname>                                                                             
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:300:00</test_interval>                                                              
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>7</test_id>                                                                                  
            <testname>PortLoopback</testname>                                                                     
            <test_attr>*P*N***E**AD</test_attr>                                                                   
            <test_interval>00:15:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>8</test_id>                                                                                  
            <testname>RewriteEngineLoopback</testname>                                                            
            <test_attr>*P*N***E**AD</test_attr>                                                                   
            <test_interval>00:01:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>9</test_id>                                                                                  
            <testname>SnakeLoopback</testname>                                                                    
            <test_attr>*P*N***E**ID</test_attr>                                                                   
            <test_interval>00:20:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>10</test_id>                                                                                 
            <testname>IntPortLoopback</testname>                                                                  
            <test_attr>*P*N***E**AD</test_attr>                                                                   
            <test_interval>00:05:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>11</test_id>                                                                                 
            <testname>FIPS</testname>                                                                             
            <test_attr>*P*NO*XE*T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>12</test_id>                                                                                 
            <testname>BootupPortLoopback</testname>                                                               
            <test_attr>CP*N**XE*T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
          </TABLE_test>                                                                                           
         </ROW_module>                                                                                            
        </TABLE_module>                                                                                           
       </__readonly__>                                                                                            
      </all>                                                                                                      
     </module>                                                                                                    
    </content>                                                                                                    
   </diagnostic>                                                                                                  
  </show>                                                                                                         
 </nf:data>                                                                                                       
</nf:rpc-reply>          

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch(config)# **show diagnostic content module all**

Diagnostics test suite attributes:                       
B/C/* - Bypass bootup level test / Complete bootup level test / NA 
P/*   - Per port test / NA                                         
M/S/* - Only applicable to active / standby unit / NA              
D/N/* - Disruptive test / Non-disruptive test / NA                 
H/O/* - Always enabled monitoring test / Conditionally enabled test / NA 
F/*   - Fixed monitoring interval test / NA                              
X/*   - Not a health monitoring test / NA                                
E/*   - Sup to line card test / NA                                       
L/*   - Exclusively run this test / NA                                   
T/*   - Not an ondemand test / NA                                        
A/I/* - Monitoring is active / Monitoring is inactive / NA               
Z/D/* - Corrective Action is enabled / Corrective Action is disabled / NA


Module 6: 1/10 Gbps Ethernet Module

                                                   Testing Interval

ID Name Attributes (hh:mm:ss)


  1. ASICRegisterCheck-------------> N**A 00:01:00
  2. PrimaryBootROM----------------> N**A 00:30:00
  3. SecondaryBootROM--------------> N**A 00:30:00
  4. EOBCPortLoopback--------------> CNXT -NA-
  5. OBFL--------------------------> CNXT -NA-
  6. PortLoopback------------------> PN*EAD 00:15:00
  7. RewriteEngineLoopback---------> PN*EAD 00:01:00
  8. SnakeLoopback-----------------> PN*EID 00:20:00
  9. IntPortLoopback---------------> PN*EAD 00:05:00
  10. FIPS--------------------------> PNOXET** -NA-
  11. BootupPortLoopback------------> CPN**XET** -NA-

Module 7: 100 Gbps Ethernet Module

                                                   Testing Interval

ID Name Attributes (hh:mm:ss)


  1. ASICRegisterCheck-------------> N**A 00:01:00
  2. PrimaryBootROM----------------> N**A 00:30:00
  3. SecondaryBootROM--------------> N**A 00:30:00
  4. EOBCPortLoopback--------------> CNXT -NA-
  5. OBFL--------------------------> CNXT -NA-
  6. ACT2--------------------------> N**A 00:300:00
  7. PortLoopback------------------> PN*EAD 00:15:00
  8. RewriteEngineLoopback---------> PN*EAD 00:01:00
  9. SnakeLoopback-----------------> PN*EID 00:20:00
  10. IntPortLoopback---------------> PN*EAD 00:05:00
  11. FIPS--------------------------> PNOXET** -NA-
  12. BootupPortLoopback------------> CPN**XET** -NA-

Module 8: 100 Gbps Ethernet Module

                                                   Testing Interval

ID Name Attributes (hh:mm:ss)


  1. ASICRegisterCheck-------------> N**A 00:01:00
  2. PrimaryBootROM----------------> N**A 00:30:00
  3. SecondaryBootROM--------------> N**A 00:30:00
  4. EOBCPortLoopback--------------> CNXT -NA-
  5. OBFL--------------------------> CNXT -NA-
  6. ACT2--------------------------> N**A 00:300:00
  7. PortLoopback------------------> PN*EAD 00:15:00
  8. RewriteEngineLoopback---------> PN*EAD 00:01:00
  9. SnakeLoopback-----------------> PN*EID 00:20:00
  10. IntPortLoopback---------------> PN*EAD 00:05:00
  11. FIPS--------------------------> PNOXET** -NA-
  12. BootupPortLoopback------------> CPN**XET** -NA-

Module 9: Supervisor Module-2 (Active)

                                                   Testing Interval

ID Name Attributes (hh:mm:ss)


  1. ASICRegisterCheck-------------> N**A 00:00:20
  2. USB---------------------------> CNXT -NA-
  3. NVRAM-------------------------> N**A 00:05:00
  4. RealTimeClock-----------------> N**A 00:05:00
  5. PrimaryBootROM----------------> N**A 00:30:00
  6. SecondaryBootROM--------------> N**A 00:30:00
  7. CompactFlash------------------> N**A 00:30:00
  8. ExternalCompactFlash----------> N**A 00:30:00
  9. PwrMgmtBus--------------------> N**A 00:00:30
  10. SystemMgmtBus-----------------> MN***A 00:00:30
  11. StatusBus---------------------> MN***A 00:00:30
  12. PCIeBus-----------------------> N**A 00:00:30
  13. StandbyFabricLoopback---------> SN***A 00:00:30
  14. ManagementPortLoopback--------> CDXT -NA-
  15. EOBCPortLoopback--------------> CDXT -NA-
  16. OBFL--------------------------> CNXT -NA-

Module 10: Supervisor Module-2 (Standby)

                                                   Testing Interval

ID Name Attributes (hh:mm:ss)


  1. ASICRegisterCheck-------------> N**A 00:00:20
  2. USB---------------------------> CNXT -NA-
  3. NVRAM-------------------------> N**A 00:05:00
  4. RealTimeClock-----------------> N**A 00:05:00
  5. PrimaryBootROM----------------> N**A 00:30:00
  6. SecondaryBootROM--------------> N**A 00:30:00
  7. CompactFlash------------------> N**A 00:30:00
  8. ExternalCompactFlash----------> N**A 00:30:00
  9. PwrMgmtBus--------------------> N**A 00:00:30
  10. SystemMgmtBus-----------------> MN***A 00:00:30
  11. StatusBus---------------------> MN***A 00:00:30
  12. PCIeBus-----------------------> N**A 00:00:30
  13. StandbyFabricLoopback---------> SN***A 00:00:30
  14. ManagementPortLoopback--------> CDXT -NA-
  15. EOBCPortLoopback--------------> CDXT -NA-
  16. OBFL--------------------------> CNXT -NA-

Module 15: 100 Gbps Ethernet Module

                                                   Testing Interval

ID Name Attributes (hh:mm:ss)


  1. ASICRegisterCheck-------------> N**A 00:01:00
  2. PrimaryBootROM----------------> N**A 00:30:00
  3. SecondaryBootROM--------------> N**A 00:30:00
  4. EOBCPortLoopback--------------> CNXT -NA-
  5. OBFL--------------------------> CNXT -NA-
  6. ACT2--------------------------> N**A 00:300:00
  7. PortLoopback------------------> PN*EAD 00:15:00
  8. RewriteEngineLoopback---------> PN*EAD 00:01:00
  9. SnakeLoopback-----------------> PN*EID 00:20:00
  10. IntPortLoopback---------------> PN*EAD 00:05:00
  11. FIPS--------------------------> PNOXET** -NA-
  12. BootupPortLoopback------------> CPN**XET** -NA-

show diagnostic content module 7

show diagnostic content module 7 
 
import requests
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 content module 7”,
  "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)
{                                                            
  "attr_descr": "Diagnostics test suite attributes: \nB/C/* - Bypass bootup level test / Complete bootup level test / NA \nP/*   - Per port test / NA \nM/S/* - Only applicable to active / standby unit / NA \nD/N/* - Disruptive test / Non-disruptive test / NA \nH/O/* - Always enabled monitoring test / Conditionally enabled test / NA \nF/*   - Fixed monitoring interval test / NA \nX/*   - Not a health monitoring test / NA \nE/*   - Sup to line card test / NA \nL/*   - Exclusively run this test / NA \nT/*   - Not an ondemand test / NA \nA/I/* - Monitoring is active / Monitoring is inactive / NA \nZ/D/* - Corrective Action is enabled / Corrective Action is disabled / NA",                                                                                                   
  "TABLE_module": {                                                                                                                                        
    "ROW_module": {                                                                                                                                        
      "module_number": "0",                                                                                                                                
      "module_id": 7,                                                                                                                                      
      "module_type": "100 Gbps Ethernet Module",                                                                                                           
      "TABLE_test": {                                                                                                                                      
        "ROW_test": [                                                                                                                                      
          {                                                                                                                                                
            "test_id": 1,                                                                                                                                  
            "testname": "ASICRegisterCheck",                                                                                                               
            "test_attr": "***N******A*",                                                                                                                   
            "test_interval": "00:01:00"                                                                                                                    
          },                                                                                                                                               
          {                                                                                                                                                
            "test_id": 2,                                                                                                                                  
            "testname": "PrimaryBootROM",                                                                                                                  
            "test_attr": "***N******A*",                                                                                                                   
            "test_interval": "00:30:00"                                                                                                                    
          },                                                                                                                                               
          {                                                                                                                                                
            "test_id": 3,                                                                                                                                  
            "testname": "SecondaryBootROM",                                                                                                                
            "test_attr": "***N******A*",                                                                                                                   
            "test_interval": "00:30:00"                                                                                                                    
          },                                                                                                                                               
          {                                                                                                                                                
            "test_id": 4,                                                                                                                                  
            "testname": "EOBCPortLoopback",                                                                                                                
            "test_attr": "C**N**X**T**",                                                                                                                   
            "test_interval": "-NA-"                                                                                                                        
          },                                                                                                                                               
          {                                                                                                                                                
            "test_id": 5,                                                                                                                                  
            "testname": "OBFL",                                                                                                                            
            "test_attr": "C**N**X**T**",                                                                                                                   
            "test_interval": "-NA-"                                                                                                                        
          },                                                                                                                                               
          {                                                                                                                                                
            "test_id": 6,                                                                                                                                  
            "testname": "ACT2",                                                                                                                            
            "test_attr": "***N******A*",                                                                                                                   
            "test_interval": "00:300:00"                                                                                                                   
          },                                                                                                                                               
          {                                                                                                                                                
            "test_id": 7,                                                                                                                                  
            "testname": "PortLoopback",                                                                                                                    
            "test_attr": "*P*N***E**AD",                                                                                                                   
            "test_interval": "00:15:00"                                                                                                                    
          },                                                                                                                                               
          {                                                                                                                                                
            "test_id": 8,                                                                                                                                  
            "testname": "RewriteEngineLoopback",                                                                                                           
            "test_attr": "*P*N***E**AD",                                                                                                                   
            "test_interval": "00:01:00"                                                                                                                    
          },
          {
            "test_id": 9,
            "testname": "SnakeLoopback",
            "test_attr": "*P*N***E**ID",
            "test_interval": "00:20:00"
          },
          {
            "test_id": 10,
            "testname": "IntPortLoopback",
            "test_attr": "*P*N***E**AD",
            "test_interval": "00:05:00"
          },
          {
            "test_id": 11,
            "testname": "FIPS",
            "test_attr": "*P*NO*XE*T**",
            "test_interval": "-NA-"
          },
          {
            "test_id": 12,
            "testname": "BootupPortLoopback",
            "test_attr": "CP*N**XE*T**",
            "test_interval": "-NA-"
          }
        ]
      }
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                 
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                        
  <show>                                                                                                          
   <diagnostic>                                                                                                   
    <content>                                                                                                     
     <module>                                                                                                     
      <__XML__PARAM__module>                                                                                      
       <__XML__value>7</__XML__value>                                                                             
       <__readonly__>                                                                                             
        <attr_descr>Diagnostics test suite attributes:                                                            
B/C/* - Bypass bootup level test / Complete bootup level test / NA                                                
P/*   - Per port test / NA                                                                                        
M/S/* - Only applicable to active / standby unit / NA                                                             
D/N/* - Disruptive test / Non-disruptive test / NA                                                                
H/O/* - Always enabled monitoring test / Conditionally enabled test / NA                                          
F/*   - Fixed monitoring interval test / NA                                                                       
X/*   - Not a health monitoring test / NA                                                                         
E/*   - Sup to line card test / NA                                                                                
L/*   - Exclusively run this test / NA                                                                            
T/*   - Not an ondemand test / NA                                                                                 
A/I/* - Monitoring is active / Monitoring is inactive / NA                                                        
Z/D/* - Corrective Action is enabled / Corrective Action is disabled / NA</attr_descr>                            
        <TABLE_module>                                                                                            
         <ROW_module>                                                                                             
          <module_number>0</module_number>                                                                        
          <module_id>7</module_id>                                                                                
          <module_type>100 Gbps Ethernet Module </module_type>                                                    
          <TABLE_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>1</test_id>                                                                                  
            <testname>ASICRegisterCheck</testname>                                                                
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:01:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>2</test_id>                                                                                  
            <testname>PrimaryBootROM</testname>                                                                   
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>3</test_id>                                                                                  
            <testname>SecondaryBootROM</testname>                                                                 
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:30:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>4</test_id>                                                                                  
            <testname>EOBCPortLoopback</testname>                                                                 
            <test_attr>C**N**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>5</test_id>                                                                                  
            <testname>OBFL</testname>                                                                             
            <test_attr>C**N**X**T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>6</test_id>                                                                                  
            <testname>ACT2</testname>                                                                             
            <test_attr>***N******A*</test_attr>                                                                   
            <test_interval>00:300:00</test_interval>                                                              
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>7</test_id>                                                                                  
            <testname>PortLoopback</testname>                                                                     
            <test_attr>*P*N***E**AD</test_attr>                                                                   
            <test_interval>00:15:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>8</test_id>                                                                                  
            <testname>RewriteEngineLoopback</testname>                                                            
            <test_attr>*P*N***E**AD</test_attr>                                                                   
            <test_interval>00:01:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>9</test_id>                                                                                  
            <testname>SnakeLoopback</testname>                                                                    
            <test_attr>*P*N***E**ID</test_attr>                                                                   
            <test_interval>00:20:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>10</test_id>                                                                                 
            <testname>IntPortLoopback</testname>                                                                  
            <test_attr>*P*N***E**AD</test_attr>                                                                   
            <test_interval>00:05:00</test_interval>                                                               
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>11</test_id>                                                                                 
            <testname>FIPS</testname>                                                                             
            <test_attr>*P*NO*XE*T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
           <ROW_test>                                                                                             
            <test_id>12</test_id>                                                                                 
            <testname>BootupPortLoopback</testname>                                                               
            <test_attr>CP*N**XE*T**</test_attr>                                                                   
            <test_interval>-NA-</test_interval>                                                                   
           </ROW_test>                                                                                            
          </TABLE_test>                                                                                           
         </ROW_module>                                                                                            
        </TABLE_module>                                                                                           
       </__readonly__>                                                                                            
      </__XML__PARAM__module>                                                                                     
     </module>                                                                                                    
    </content>                                                                                                    
   </diagnostic>                                                                                                  
  </show>                                                                                                         
 </nf:data>                                                                                                       
</nf:rpc-reply>       

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show diagnostic content module 7**

Diagnostics test suite attributes:                     
B/C/* - Bypass bootup level test / Complete bootup level test / NA 
P/*   - Per port test / NA                                         
M/S/* - Only applicable to active / standby unit / NA              
D/N/* - Disruptive test / Non-disruptive test / NA                 
H/O/* - Always enabled monitoring test / Conditionally enabled test / NA 
F/*   - Fixed monitoring interval test / NA                              
X/*   - Not a health monitoring test / NA                                
E/*   - Sup to line card test / NA                                       
L/*   - Exclusively run this test / NA                                   
T/*   - Not an ondemand test / NA                                        
A/I/* - Monitoring is active / Monitoring is inactive / NA               
Z/D/* - Corrective Action is enabled / Corrective Action is disabled / NA


Module 7: 100 Gbps Ethernet Module

                                                   Testing Interval

ID Name Attributes (hh:mm:ss)


  1. ASICRegisterCheck-------------> N**A 00:01:00
  2. PrimaryBootROM----------------> N**A 00:30:00
  3. SecondaryBootROM--------------> N**A 00:30:00
  4. EOBCPortLoopback--------------> CNXT -NA-
  5. OBFL--------------------------> CNXT -NA-
  6. ACT2--------------------------> N**A 00:300:00
  7. PortLoopback------------------> PN*EAD 00:15:00
  8. RewriteEngineLoopback---------> PN*EAD 00:01:00
  9. SnakeLoopback-----------------> PN*EID 00:20:00
  10. IntPortLoopback---------------> PN*EAD 00:05:00
  11. FIPS--------------------------> PNOXET** -NA-
  12. BootupPortLoopback------------> CPN**XET** -NA-

show diagnostic description module 7 test all

show diagnostic description module 7 test all
 
import requests
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 description module 7 test all”,
  "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)
{                                                                        
  "TABLE_desc": {                                                        
    "ROW_desc": [                                                        
      {                                                                  
        "testname": "ASICRegisterCheck",                                 
        "testdesc": "A health monitoring test,enabled by default that checks read/write access to scratch registers on ASICs on the module."
      },                                                                                                                                    
      {                                                                                                                                     
        "testname": "PrimaryBootROM",                                                                                                       
        "testdesc": "A health monitoring test that verifies the primary BootROM state."                                                     
      },                                                                                                                                    
      {                                                                                                                                     
        "testname": "SecondaryBootROM",                                                                                                     
        "testdesc": "A health monitoring test that verifies the secondary BootROM state."                                                   
      },                                                                                                                                    
      {                                                                                                                                     
        "testname": "EOBCPortLoopback",                                                                                                     
        "testdesc": "A bootup test that tests loopback on the EOBC"                                                                         
      },                                                                                                                                    
      {                                                                                                                                     
        "testname": "OBFL",                                                                                                                 
        "testdesc": "A bootup test that checks the onboard flash used for failure logging (OBFL) device initialization on the module."      
      },                                                                                                                                    
      {                                                                                                                                     
        "testname": "ACT2",                                                                                                                 
        "testdesc": "A health monitoring test,enabled by default that authenticates the linecard hardware with the ACT2 device."
      },
      {
        "testname": "PortLoopback",
        "testdesc": "An ondemand test that will test the packet path from the Supervisor card to the physical port in ADMIN DOWN state on Linecards."
      },
      {
        "testname": "RewriteEngineLoopback",
        "testdesc": "A health monitoring test, enabled by default, that does non disruptive loopback from stage 3 fabric."
      },
      {
        "testname": "SnakeLoopback",
        "testdesc": "A health monitoring test, enabled by default, that does Snake Test for Orion based ASICs"
      },
      {
        "testname": "IntPortLoopback",
        "testdesc": "A health monitoring test, enabled by default, that does Internal (non-disruptive) portloopback test"
      },
      {
        "testname": "FIPS",
        "testdesc": "A conditionally enabled test that tests packet path from Supervisor card to physical port on Linecards along with the encryption of the CryptoAsic"
      },
      {
        "testname": "BootupPortLoopback",
        "testdesc": "A Bootup test that will test the packet path from the Supervisor card to the physical port in ADMIN DOWN state on Linecards."
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                            
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                        
  <show>                                                                                                          
   <diagnostic>                                                                                                   
    <description>                                                                                                 
     <module>                                                                                                     
      <__XML__PARAM__module>                                                                                      
       <__XML__value>7</__XML__value>                                                                             
       <test>                                                                                                     
        <all>                                                                                                     
         <__readonly__>                                                                                           
          <TABLE_desc>                                                                                            
           <ROW_desc>                                                                                             
            <testname>ASICRegisterCheck</testname>                                                                
            <testdesc>A health monitoring test,enabled by default that checks read/write access to scratch registers on ASICs on the module.</testdesc>
           </ROW_desc>                                                                                                                                 
           <ROW_desc>                                                                                                                                  
            <testname>PrimaryBootROM</testname>                                                                                                        
            <testdesc>A health monitoring test that verifies the primary BootROM state.</testdesc>                                                     
           </ROW_desc>                                                                                                                                 
           <ROW_desc>                                                                                                                                  
            <testname>SecondaryBootROM</testname>                                                                                                      
            <testdesc>A health monitoring test that verifies the secondary BootROM state.</testdesc>                                                   
           </ROW_desc>                                                                                                                                 
           <ROW_desc>                                                                                                                                  
            <testname>EOBCPortLoopback</testname>                                                                                                      
            <testdesc>A bootup test that tests loopback on the EOBC</testdesc>                                                                         
           </ROW_desc>                                                                                                                                 
           <ROW_desc>                                                                                                                                  
            <testname>OBFL</testname>                                                                                                                  
            <testdesc>A bootup test that checks the onboard flash used for failure logging (OBFL) device initialization on the module.</testdesc>      
           </ROW_desc>                                                                                                                                 
           <ROW_desc>                                                                                                                                  
            <testname>ACT2</testname>                                                                                                                  
            <testdesc>A health monitoring test,enabled by default that authenticates the linecard hardware with the ACT2 device.</testdesc>            
           </ROW_desc>                                                                                                                                 
           <ROW_desc>                                                                                                                                  
            <testname>PortLoopback</testname>                                                                                                          
            <testdesc>An ondemand test that will test the packet path from the Supervisor card to the physical port in ADMIN DOWN state on Linecards.</testdesc>                                                                                                                                                      
           </ROW_desc>                                                                                                                                     
           <ROW_desc>                                                                                                                                      
            <testname>RewriteEngineLoopback</testname>                                                                                                     
            <testdesc>A health monitoring test, enabled by default, that does non disruptive loopback from stage 3 fabric.</testdesc>                      
           </ROW_desc>                                                                                                                                     
           <ROW_desc>                                                                                                                                      
            <testname>SnakeLoopback</testname>                                                                                                             
            <testdesc>A health monitoring test, enabled by default, that does Snake Test for Orion based ASICs</testdesc>                                  
           </ROW_desc>                                                                                                                                     
           <ROW_desc>                                                                                                                                      
            <testname>IntPortLoopback</testname>                                                                                                           
            <testdesc>A health monitoring test, enabled by default, that does Internal (non-disruptive) portloopback test</testdesc>                       
           </ROW_desc>                                                                                                                                     
           <ROW_desc>                                                                                                                                      
            <testname>FIPS</testname>                                                                                                                      
            <testdesc>A conditionally enabled test that tests packet path from Supervisor card to physical port on Linecards along with the encryption of the CryptoAsic</testdesc>                                                                                                                                   
           </ROW_desc>                                                                                                                                     
           <ROW_desc>                                                                                                                                      
            <testname>BootupPortLoopback</testname>                                                                                                        
            <testdesc>A Bootup test that will test the packet path from the Supervisor card to the physical port in ADMIN DOWN state on Linecards.</testdesc>                                                                                                                                                         
           </ROW_desc>                                                                                                                                     
          </TABLE_desc>                                                                                                                                    
         </__readonly__>                                                                                                                                   
        </all>                                                                                                                                             
       </test>                                                                                                                                             
      </__XML__PARAM__module>                                                                                                                              
     </module>                                                                                                                                             
    </description>                                                                                                                                         
   </diagnostic>                                                                                                                                           
  </show>                                                                                                                                                  
 </nf:data>                                                                                                                                                
</nf:rpc-reply>    

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show diagnostic description module 7 test all**

ASICRegisterCheck :                                               
        A health monitoring test,enabled by default that checks read/write
        access to scratch registers on ASICs on the module.               

PrimaryBootROM : A health monitoring test that verifies the primary BootROM state.

SecondaryBootROM : A health monitoring test that verifies the secondary BootROM state.

EOBCPortLoopback : A bootup test that tests loopback on the EOBC

OBFL : A bootup test that checks the onboard flash used for failure logging (OBFL) device initialization on the module.

ACT2 : A health monitoring test,enabled by default that authenticates the linecard hardware with the ACT2 device.

PortLoopback : An ondemand test that will test the packet path from the Supervisor card to the physical port in ADMIN DOWN state on Linecards.

RewriteEngineLoopback : A health monitoring test, enabled by default, that does non disruptive loopback from stage 3 fabric.

SnakeLoopback : A health monitoring test, enabled by default, that does Snake Test for Orion based ASICs

IntPortLoopback : A health monitoring test, enabled by default, that does Internal (non-disruptive) portloopback test

FIPS : A conditionally enabled test that tests packet path from Supervisor card to physical port on Linecards along with the encryption
of the CryptoAsic

BootupPortLoopback : A Bootup test that will test the packet path from the Supervisor card to the physical port in ADMIN DOWN state on Linecards.

show diagnostic description module 7 test 1

show diagnostic description module 7 test 1
 
import requests
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 description module 7 test 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)
{
  "TABLE_desc": {
    "ROW_desc": {
      "testname": "ASICRegisterCheck",
      "testdesc": "A health monitoring test,enabled by default that checks read/write access to scratch registers on ASICs on the module."
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                          
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                        
  <show>                                                                                                          
   <diagnostic>                                                                                                   
    <description>                                                                                                 
     <module>                                                                                                     
      <__XML__PARAM__module>                                                                                      
       <__XML__value>7</__XML__value>
       <test>
        <__XML__PARAM__test-id>
         <__XML__value>1</__XML__value>
         <__readonly__>
          <TABLE_desc>
           <ROW_desc>
            <testname>ASICRegisterCheck</testname>
            <testdesc>A health monitoring test,enabled by default that checks read/write access to scratch registers on ASICs on the module.</testdesc>
           </ROW_desc>
          </TABLE_desc>
         </__readonly__>
        </__XML__PARAM__test-id>
       </test>
      </__XML__PARAM__module>
     </module>
    </description>
   </diagnostic>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch(config)# **show diagnostic description module 7 test 1**

ASICRegisterCheck :                                             
        A health monitoring test,enabled by default that checks read/write

show diagnostic description module 7 test ASICRegisterCheck

show diagnostic description module 7 test ASICRegisterCheck
 
import requests
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 description module 7 test ASICRegisterCheck”,
  "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)
{
  "TABLE_desc": {
    "ROW_desc": {
      "testname": "ASICRegisterCheck",
      "testdesc": "A health monitoring test,enabled by default that checks read/write access to scratch registers on ASICs on the module."
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                                          
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                        
  <show>                                                                                                          
   <diagnostic>                                                                                                   
    <description>                                                                                                 
     <module>                                                                                                     
      <__XML__PARAM__module>                                                                                      
       <__XML__value>7</__XML__value>
       <test>
        <__XML__PARAM__name>
         <__XML__value>ASICRegisterCheck</__XML__value>
         <__readonly__>
          <TABLE_desc>
           <ROW_desc>
            <testname>ASICRegisterCheck</testname>
            <testdesc>A health monitoring test,enabled by default that checks read/write access to scratch registers on ASICs on the module.</testdesc>
           </ROW_desc>
          </TABLE_desc>
         </__readonly__>
        </__XML__PARAM__name>
       </test>
      </__XML__PARAM__module>
     </module>
    </description>
   </diagnostic>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch(config)# **show diagnostic description module 7 test ASICRegisterCheck**

ASICRegisterCheck :                                                            
        A health monitoring test,enabled by default that checks read/write     
        access to scratch registers on ASICs on the module.          

show diagnostic eem action

show diagnostic eem action 
 
import requests
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 eem action”,
  "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)
{                                                        
  "level": "Disabled"                                    
}               
<?xml version="1.0" encoding="ISO-8859-1"?>            
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                        
  <show>                                                                                                          
   <diagnostic>                                                                                                   
    <eem>                                                                                                         
     <action>                                                                                                     
      <__readonly__>                                                                                              
       <level>Disabled</level>                                                                                    
      </__readonly__>                                                                                             
     </action>                                                                                                    
    </eem>                                                                                                        
   </diagnostic>                                                                                                  
  </show>                                                                                                         
 </nf:data>                                                                                                       
</nf:rpc-reply> 

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show diagnostic eem action**

 EEM action is Disabled

show diagnostic eem action description

show diagnostic eem action description 
 
import requests
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 eem action description”,
  "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)
{
  "level": null,
  "descr": "-- Sup Failure --\n \nRewriteEngineLoopback:\n    When corrective action is enabled perform a system switchover\n    after 10 consecutive failures of  GOLD RewriteEngineLoopback \n    test with gold_sup_failure event if standby sup is available.\n \n-- Fabric Failure --\n \nRewriteEngineLoopback:\n    When corrective action is enabled power down fabric cards aft\n    er 10 consecutive failures of GOLD  RewriteEngineLoopback if \n    the number of remaining fabric modules is greater than 1.\n\n-- Module Failure --\n \nStandby Fabric Loopback:\n    When corrective action is enabled power down  standby supervi\n    sor module after 10 consecutive failures of GOLD StandbyFabri\n    c Loopback test.\n\n--Port Failure --\n\nPortLoopback:\n    When corrective action is enabled error disable affected port\n    s after 10 consecutive failures of GOLD PortLoopback test.   \n\nRewriteEngineLoopback:\n    When corrective action is enabled error disable affected port\n    s after 10 consecutive failures of GOLD RewriteEngineLoopback\n    test.\n\nSnakeLoopback:\n    When corrective action is enabled error disable affected port\n    s after 10 consecutive failures of GOLD SnakeLoopback test."
}
<?xml version="1.0" encoding="ISO-8859-1"?>                        
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                        
  <show>                                                                                                          
   <diagnostic>                                                                                                   
    <eem>                                                                                                         
     <action>                                                                                                     
      <description>                                                                                               
       <__readonly__>                                                                                             
        <level></level>                                                                                           
        <descr>                                                                                                   
-- Sup Failure --                                                                                                 
                                                                                                                  
RewriteEngineLoopback:                                                                                            
    When corrective action is enabled perform a system switchover                                                 
    after 10 consecutive failures of  GOLD RewriteEngineLoopback                                                  
    test with gold_sup_failure event if standby sup is available.                                                 
                                                                                                                  
-- Fabric Failure --                                                                                              
                                                                                                                  
RewriteEngineLoopback:                                                                                            
    When corrective action is enabled power down fabric cards aft                                                 
    er 10 consecutive failures of GOLD  RewriteEngineLoopback if                                                  
    the number of remaining fabric modules is greater than 1.                                                     

-- Module Failure --
                    
Standby Fabric Loopback:
    When corrective action is enabled power down  standby supervi
    sor module after 10 consecutive failures of GOLD StandbyFabri
    c Loopback test.                                             

--Port Failure --

PortLoopback:
    When corrective action is enabled error disable affected port
    s after 10 consecutive failures of GOLD PortLoopback test.   

RewriteEngineLoopback:
    When corrective action is enabled error disable affected port
    s after 10 consecutive failures of GOLD RewriteEngineLoopback
    test.

SnakeLoopback:
    When corrective action is enabled error disable affected port
    s after 10 consecutive failures of GOLD SnakeLoopback test.
</descr>
       </__readonly__>
      </description>
     </action>
    </eem>
   </diagnostic>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show diagnostic eem action description**

EEM action description :

-- Sup Failure --

RewriteEngineLoopback: When corrective action is enabled perform a system switchover after 10 consecutive failures of GOLD RewriteEngineLoopback test with gold_sup_failure event if standby sup is available.

-- Fabric Failure --

RewriteEngineLoopback:
When corrective action is enabled power down fabric cards aft er 10 consecutive failures of GOLD RewriteEngineLoopback if the number of remaining fabric modules is greater than 1.

-- Module Failure --

Standby Fabric Loopback: When corrective action is enabled power down standby supervi sor module after 10 consecutive failures of GOLD StandbyFabri c Loopback test.

--Port Failure --

PortLoopback: When corrective action is enabled error disable affected port s after 10 consecutive failures of GOLD PortLoopback test.

RewriteEngineLoopback: When corrective action is enabled error disable affected port s after 10 consecutive failures of GOLD RewriteEngineLoopback test.

SnakeLoopback: When corrective action is enabled error disable affected port s after 10 consecutive failures of GOLD SnakeLoopback test.

show diagnostic eem policy module 7

show diagnostic eem policy module 7
 
import requests
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 eem policy module 7”,
  "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)
{                                                                
  "TABLE_module": {                                              
    "ROW_module": {                                              
      "module_number": "0",                                      
      "module_id": 7,                                            
      "module_type": "100 Gbps Ethernet Module"                  
    }                                                            
  },                                                             
  "policy_desc": "Module 7: 100 Gbps Ethernet Module  \n\n\nConservative action status :Disabled\nNumber of Test Services    : 2\n________________________________________\n \nTest Service name             :device_test\n\n\nNo of system default policies :7\n\n\n\tPolicy name   : __asic_register_check\n\tPolicy desc   : Do CallHome, log error and disable further HM testing for that ASIC device/instance after 20 consecutive failures of GOLD  \"AsicRegisterCheck\" test\n\tTest name     : ASICRegisterCheck\n\tSeverity      : Ignored\n\tTest type     : Monitor\n\tConsc fail cnt: 20\n\n\tPolicy name   : __primary_bootrom\n\tPolicy desc   : Do CallHome, log error and disable further HM testing after 20 consecutive failures of GOLD \"PrmaryBootROM\" test\n\tTest name     : PrimaryBootROM\n\tSeverity      : Ignored\n\tTest type     : Monitor\n\tConsc fail cnt: 20\n\n\tPolicy name   : __secondary_bootrom\n\tPolicy desc   : Do CallHome, log error and disable further HM testing after 20 consecutive failures of  GOLD \"SecondaryBootROM\" test\n\tTest name     : SecondaryBootROM\n\tSeverity      : Ignored\n\tTest type     : Monitor\n\tConsc fail cnt: 20\n\n\tPolicy name   : __eobc_port_loopback\n\tPolicy desc   : Do CallHome and log error when GOLD \"EOBCPortLoopback\" test fails\n\tTest name     : EOBCPortLoopback\n\tSeverity      : Ignored\n\tTest type     : Bootup\n\tConsc fail cnt: 1\n\n\tPolicy name   : __gold_obfl\n\tPolicy desc   : Do CallHome and log error when GOLD\"OBFL\" test fails\n\tTest name     : OBFL\n\tSeverity      : Ignored\n\tTest type     : Bootup\n\tConsc fail cnt: 1\n\n\tPolicy name   : __ACT2\n\tPolicy desc   : Do CallHome and log error when \"ACT2\" test fails\n\tTest name     : ACT2\n\tSeverity      : Ignored\n\tTest type     : Monitor\n\tConsc fail cnt: 1\n\n\tPolicy name   : __asic_register_check_MOF\n\tPolicy desc   : Fail module, callhome, log error and disable HM testing after 20 failures of \"ASICRegisterCheck\" test due to faulty module\n\tTest name     : ASICRegisterCheck\n\tSeverity      : Ignored\n\tTest type     : Monitor\n\tConsc fail cnt: 20\n________________________________________\n \nTest Service name             :\n\n\nNo of system default policies :0\n\n\nNo policies configured for this test service:"                                                        
}     
<?xml version="1.0" encoding="ISO-8859-1"?>                    
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                        
  <show>                                                                                                          
   <diagnostic>                                                                                                   
    <eem>                                                                                                         
     <policy>                                                                                                     
      <module>                                                                                                    
       <__XML__PARAM__module>                                                                                     
        <__XML__value>7</__XML__value>                                                                            
        <__readonly__>                                                                                            
         <TABLE_module>                                                                                           
          <ROW_module>                                                                                            
           <module_number>0</module_number>                                                                       
           <module_id>7</module_id>                                                                               
           <module_type>100 Gbps Ethernet Module </module_type>                                                   
          </ROW_module>                                                                                           
         </TABLE_module>                                                                                          
         <policy_desc>                                                                                            
Module 7: 100 Gbps Ethernet Module                                                                                


Conservative action status :Disabled
Number of Test Services    : 2      
________________________________________
                                        
Test Service name             :device_test


No of system default policies :7


        Policy name   : __asic_register_check
        Policy desc   : Do CallHome, log error and disable further HM testing for that ASIC device/instance after 20 consecutive failures of GOLD  &quot;AsicRegisterCheck&quot; test                                                                                                                                 
        Test name     : ASICRegisterCheck                                                                                                                  
        Severity      : Ignored                                                                                                                            
        Test type     : Monitor                                                                                                                            
        Consc fail cnt: 20                                                                                                                                 

        Policy name   : __primary_bootrom
        Policy desc   : Do CallHome, log error and disable further HM testing after 20 consecutive failures of GOLD &quot;PrmaryBootROM&quot; test
        Test name     : PrimaryBootROM                                                                                                            
        Severity      : Ignored                                                                                                                   
        Test type     : Monitor                                                                                                                   
        Consc fail cnt: 20                                                                                                                        

        Policy name   : __secondary_bootrom
        Policy desc   : Do CallHome, log error and disable further HM testing after 20 consecutive failures of  GOLD &quot;SecondaryBootROM&quot; test
        Test name     : SecondaryBootROM                                                                                                              
        Severity      : Ignored                                                                                                                       
        Test type     : Monitor                                                                                                                       
        Consc fail cnt: 20                                                                                                                            

        Policy name   : __eobc_port_loopback
        Policy desc   : Do CallHome and log error when GOLD &quot;EOBCPortLoopback&quot; test fails
        Test name     : EOBCPortLoopback                                                           
        Severity      : Ignored                                                                    
        Test type     : Bootup                                                                     
        Consc fail cnt: 1                                                                          

        Policy name   : __gold_obfl
        Policy desc   : Do CallHome and log error when GOLD&quot;OBFL&quot; test fails
        Test name     : OBFL                                                          
        Severity      : Ignored                                                       
        Test type     : Bootup                                                        
        Consc fail cnt: 1                                                             

        Policy name   : __ACT2
        Policy desc   : Do CallHome and log error when &quot;ACT2&quot; test fails
        Test name     : ACT2                                                      
        Severity      : Ignored                                                   
        Test type     : Monitor                                                   
        Consc fail cnt: 1                                                         

        Policy name   : __asic_register_check_MOF
        Policy desc   : Fail module, callhome, log error and disable HM testing after 20 failures of &quot;ASICRegisterCheck&quot; test due to faulty module                                                                                                                                                          
        Test name     : ASICRegisterCheck                                                                                                                  
        Severity      : Ignored                                                                                                                            
        Test type     : Monitor                                                                                                                            
        Consc fail cnt: 20                                                                                                                                 
________________________________________                                                                                                                   
                                                                                                                                                           
Test Service name             :                                                                                                                            


No of system default policies :0


No policies configured for this test service:


</policy_desc>
        </__readonly__>
       </__XML__PARAM__module>
      </module>               
     </policy>                
    </eem>                    
   </diagnostic>              
  </show>                     
 </nf:data>                   
</nf:rpc-reply>      

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show diagnostic eem policy module 7**

Module 7: 100 Gbps Ethernet Module  


Conservative action status :Disabled Number of Test Services : 2


Test Service name :device_test

No of system default policies :7

    Policy name   : __asic_register_check
    Policy desc   : Do CallHome, log error and disable further HM testing for that ASIC device/instance after 20 consecutive failures of GOLD  "AsicRegisterCheck" test                                                                                                                                           
    Test name     : ASICRegisterCheck                                                                                                                  
    Severity      : Ignored                                                                                                                            
    Test type     : Monitor                                                                                                                            
    Consc fail cnt: 20                                                                                                                                 

    Policy name   : __primary_bootrom
    Policy desc   : Do CallHome, log error and disable further HM testing after 20 consecutive failures of GOLD "PrmaryBootROM" test
    Test name     : PrimaryBootROM                                                                                                  
    Severity      : Ignored                                                                                                         
    Test type     : Monitor                                                                                                         
    Consc fail cnt: 20                                                                                                              

    Policy name   : __secondary_bootrom
    Policy desc   : Do CallHome, log error and disable further HM testing after 20 consecutive failures of  GOLD "SecondaryBootROM" test
    Test name     : SecondaryBootROM                                                                                                    
    Severity      : Ignored                                                                                                             
    Test type     : Monitor                                                                                                             
    Consc fail cnt: 20                                                                                                                  

    Policy name   : __eobc_port_loopback
    Policy desc   : Do CallHome and log error when GOLD "EOBCPortLoopback" test fails
    Test name     : EOBCPortLoopback                                                 
    Severity      : Ignored                                                          
    Test type     : Bootup                                                           
    Consc fail cnt: 1                                                                

    Policy name   : __gold_obfl
    Policy desc   : Do CallHome and log error when GOLD"OBFL" test fails
    Test name     : OBFL                                                
    Severity      : Ignored                                             
    Test type     : Bootup                                              
    Consc fail cnt: 1                                                   

    Policy name   : __ACT2
    Policy desc   : Do CallHome and log error when "ACT2" test fails
    Test name     : ACT2                                            
    Severity      : Ignored                                         
    Test type     : Monitor                                         
    Consc fail cnt: 1                                               

    Policy name   : __asic_register_check_MOF
    Policy desc   : Fail module, callhome, log error and disable HM testing after 20 failures of "ASICRegisterCheck" test due to faulty module
    Test name     : ASICRegisterCheck                                                                                                         
    Severity      : Ignored                                                                                                                   
    Test type     : Monitor                                                                                                                   
    Consc fail cnt: 20                                                                                                                        

Test Service name :

No of system default policies :0

No policies configured for this test service:

show diagnostic ondemand setting

show diagnostic ondemand setting
 
import requests
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 ondemand setting”,
  "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)
{
  "test_iteration_count": 1,
  "action_on_failure": "continue until test failure limit reaches 1"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <diagnostic>
    <ondemand>
     <setting>
      <__readonly__>
       <test_iteration_count>1</test_iteration_count>
       <action_on_failure>continue until test failure limit reaches 1</action_on_failure>
      </__readonly__>
     </setting>
    </ondemand>
   </diagnostic>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show diagnostic ondemand setting**

        Test iterations = 1
        Action on test failure = continue until test failure limit reaches 1

show diagnostic result module 7

show diagnostic result module 7
 
import requests
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 7”,
  "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)
{                                                            
  "module_id": 7,                                            
  "curr_diag_level": "complete",                             
  "module_name": "100 Gbps Ethernet Module",                 
  "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": "EOBCPortLoopback",                      
        "testresult": "Pass"                                 
      },                                                     
      {                                                      
        "test_id": 5,                                        
        "testname": "OBFL",                                  
        "testresult": "Pass"                                 
      },                                                     
      {                                                      
        "test_id": 6,                                        
        "testname": "ACT2",                                  
        "testresult": "Untested"                             
      },                                                     
      {                                                      
        "test_id": 7,                                        
        "testname": "PortLoopback",                          
        "passed_ports": "none",                              
        "failed_ports": "none",                              
        "incomplete_ports": "none",                          
        "untested_ports": "1-90",                            
        "aborted_ports": "none",                             
        "err_disabled_ports": "none"                         
      },                                                     
      {                                                      
        "test_id": 8,                                        
        "testname": "RewriteEngineLoopback",                 
        "passed_ports": "1",                                 
        "failed_ports": "none",                              
        "incomplete_ports": "none",                          
        "untested_ports": "2-90",                            
        "aborted_ports": "none",                             
        "err_disabled_ports": "none"                         
      },                                                     
      {                                                      
        "test_id": 9,                                        
        "testname": "SnakeLoopback",                         
        "passed_ports": "none",                              
        "failed_ports": "none",                              
        "incomplete_ports": "none",                          
        "untested_ports": "1-90",                            
        "aborted_ports": "none",                             
        "err_disabled_ports": "none"                         
      },                                                     
      {                                                      
        "test_id": 10,                                       
        "testname": "IntPortLoopback",                       
        "passed_ports": "1,5,9-10,14,18-19,23,27-28,32,36-37,41,45-46,50,54-55,59,63-64,68,72-73,77,81-82,86,90",
        "failed_ports": "none",
        "incomplete_ports": "none",
        "untested_ports": "2-4,6-8,11-13,15-17,20-22,24-26,29-31,33-35,38-40,42-44,47-49,51-53,56-58,60-62,65-67,69-71,74-76,78-80,83-85,87-89",
        "aborted_ports": "none",
        "err_disabled_ports": "none"
      },
      {
        "test_id": 11,
        "testname": "FIPS",
        "passed_ports": "none",
        "failed_ports": "none",
        "incomplete_ports": "none",
        "untested_ports": "1-90",
        "aborted_ports": "none",
        "err_disabled_ports": "none"
      },
      {
        "test_id": 12,
        "testname": "BootupPortLoopback",
        "passed_ports": "1,5,9-10,14,18-19,23,27-28,32,36-37,41,45-46,50,54-55,59,63-64,68,72-73,77,81-82,86,90",
        "failed_ports": "none",
        "incomplete_ports": "none",
        "untested_ports": "2-4,6-8,11-13,15-17,20-22,24-26,29-31,33-35,38-40,42-44,47-49,51-53,56-58,60-62,65-67,69-71,74-76,78-80,83-85,87-89",
        "aborted_ports": "none",
        "err_disabled_ports": "none"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                        
  <show>                                                                                                          
   <diagnostic>                                                                                                   
    <result>                                                                                                      
     <module>                                                                                                     
      <__XML__PARAM__module>                                                                                      
       <__XML__value>7</__XML__value>                                                                             
       <__readonly__>                                                                                             
        <module_id>7</module_id>                                                                                  
        <curr_diag_level>complete</curr_diag_level>                                                               
        <module_name>100 Gbps Ethernet Module </module_name>                                                      
        <TABLE_Test>                                                                                              
         <ROW_Test>                                                                                               
          <test_id>1</test_id>                                                                                    
          <testname>ASICRegisterCheck</testname>                                                                  
          <testresult>Pass</testresult>                                                                           
         </ROW_Test>                                                                                              
         <ROW_Test>                                                                                               
          <test_id>2</test_id>                                                                                    
          <testname>PrimaryBootROM</testname>                                                                     
          <testresult>Pass</testresult>                                                                           
         </ROW_Test>                                                                                              
         <ROW_Test>                                                                                               
          <test_id>3</test_id>                                                                                    
          <testname>SecondaryBootROM</testname>                                                                   
          <testresult>Pass</testresult>                                                                           
         </ROW_Test>                                                                                              
         <ROW_Test>                                                                                               
          <test_id>4</test_id>                                                                                    
          <testname>EOBCPortLoopback</testname>                                                                   
          <testresult>Pass</testresult>                                                                           
         </ROW_Test>                                                                                              
         <ROW_Test>                                                                                               
          <test_id>5</test_id>                                                                                    
          <testname>OBFL</testname>                                                                               
          <testresult>Pass</testresult>                                                                           
         </ROW_Test>                                                                                              
         <ROW_Test>                                                                                               
          <test_id>6</test_id>                                                                                    
          <testname>ACT2</testname>                                                                               
          <testresult>Untested</testresult>                                                                       
         </ROW_Test>                                                                                              
         <ROW_Test>                                                                                               
          <test_id>7</test_id>                                                                                    
          <testname>PortLoopback</testname>                                                                       
          <passed_ports>none</passed_ports>                                                                       
          <failed_ports>none</failed_ports>                                                                       
          <incomplete_ports>none</incomplete_ports>                                                               
          <untested_ports>1-90</untested_ports>                                                                   
          <aborted_ports>none</aborted_ports>                                                                     
          <err_disabled_ports>none</err_disabled_ports>                                                           
         </ROW_Test>                                                                                              
         <ROW_Test>                                                                                               
          <test_id>8</test_id>                                                                                    
          <testname>RewriteEngineLoopback</testname>                                                              
          <passed_ports>1</passed_ports>                                                                          
          <failed_ports>none</failed_ports>                                                                       
          <incomplete_ports>none</incomplete_ports>                                                               
          <untested_ports>2-90</untested_ports>                                                                   
          <aborted_ports>none</aborted_ports>                                                                     
          <err_disabled_ports>none</err_disabled_ports>                                                           
         </ROW_Test>                                                                                              
         <ROW_Test>                                                                                               
          <test_id>9</test_id>                                                                                    
          <testname>SnakeLoopback</testname>                                                                      
          <passed_ports>none</passed_ports>                                                                       
          <failed_ports>none</failed_ports>                                                                       
          <incomplete_ports>none</incomplete_ports>                                                               
          <untested_ports>1-90</untested_ports>                                                                   
          <aborted_ports>none</aborted_ports>                                                                     
          <err_disabled_ports>none</err_disabled_ports>                                                           
         </ROW_Test>                                                                                              
         <ROW_Test>                                                                                               
          <test_id>10</test_id>                                                                                   
          <testname>IntPortLoopback</testname>                                                                    
          <passed_ports>1,5,9-10,14,18-19,23,27-28,32,36-37,41,45-46,50,54-55,59,63-64,68,72-73,77,81-82,86,90</passed_ports>
          <failed_ports>none</failed_ports>                                                                                  
          <incomplete_ports>none</incomplete_ports>                                                                          
          <untested_ports>2-4,6-8,11-13,15-17,20-22,24-26,29-31,33-35,38-40,42-44,47-49,51-53,56-58,60-62,65-67,69-71,74-76,78-80,83-85,87-89</untested_ports>                                                                                                                                                        
          <aborted_ports>none</aborted_ports>                                                                                                              
          <err_disabled_ports>none</err_disabled_ports>                                                                                                    
         </ROW_Test>                                                                                                                                       
         <ROW_Test>                                                                                                                                        
          <test_id>11</test_id>                                                                                                                            
          <testname>FIPS</testname>                                                                                                                        
          <passed_ports>none</passed_ports>                                                                                                                
          <failed_ports>none</failed_ports>                                                                                                                
          <incomplete_ports>none</incomplete_ports>                                                                                                        
          <untested_ports>1-90</untested_ports>                                                                                                            
          <aborted_ports>none</aborted_ports>                                                                                                              
          <err_disabled_ports>none</err_disabled_ports>                                                                                                    
         </ROW_Test>                                                                                                                                       
         <ROW_Test>                                                                                                                                        
          <test_id>12</test_id>                                                                                                                            
          <testname>BootupPortLoopback</testname>                                                                                                          
          <passed_ports>1,5,9-10,14,18-19,23,27-28,32,36-37,41,45-46,50,54-55,59,63-64,68,72-73,77,81-82,86,90</passed_ports>                              
          <failed_ports>none</failed_ports>                                                                                                                
          <incomplete_ports>none</incomplete_ports>                                                                                                        
          <untested_ports>2-4,6-8,11-13,15-17,20-22,24-26,29-31,33-35,38-40,42-44,47-49,51-53,56-58,60-62,65-67,69-71,74-76,78-80,83-85,87-89</untested_ports>                                                                                                                                                        
          <aborted_ports>none</aborted_ports>                                                                                                              
          <err_disabled_ports>none</err_disabled_ports>                                                                                                    
         </ROW_Test>                                                                                                                                       
        </TABLE_Test>                                                                                                                                      
       </__readonly__>                                                                                                                                     
      </__XML__PARAM__module>                                                                                                                              
     </module>                                                                                                                                             
    </result>                                                                                                                                              
   </diagnostic>                                                                                                                                           
  </show>                                                                                                                                                  
 </nf:data>                                                                                                                                                
</nf:rpc-reply>  

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show diagnostic result module 7**

Current bootup diagnostic level: complete
Module 7: 100 Gbps Ethernet Module       

    Test results: (. = Pass, F = Fail, I = Incomplete,
    U = Untested, A = Abort, E = Error disabled)      

     1) ASICRegisterCheck-------------> .
     2) PrimaryBootROM----------------> .
     3) SecondaryBootROM--------------> .
     4) EOBCPortLoopback--------------> .
     5) OBFL--------------------------> .
     6) ACT2--------------------------> U
     7) PortLoopback:                    

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             U  U  U  U  U  U  U  U  U  U  


     8) RewriteEngineLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             .  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             U  U  U  U  U  U  U  U  U  U  


     9) SnakeLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             U  U  U  U  U  U  U  U  U  U  


    10) IntPortLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             .  U  U  U  .  U  U  U  .  .  U  U  U  .  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  .  .  U  U  U  .  U  U  U  .  .  U  U  U  .  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  .  .  U  U  U  .  U  U  U  .  .  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  .  U  U  U  .  .  U  U  U  .  U  U  U  .  .  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  .  U  U  U  .  .  U  U  U  .  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             .  .  U  U  U  .  U  U  U  .  


    11) FIPS:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             U  U  U  U  U  U  U  U  U  U  


    12) BootupPortLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             .  U  U  U  .  U  U  U  .  .  U  U  U  .  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  .  .  U  U  U  .  U  U  U  .  .  U  U  U  .  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  .  .  U  U  U  .  U  U  U  .  .  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  .  U  U  U  .  .  U  U  U  .  U  U  U  .  .  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  .  U  U  U  .  .  U  U  U  .  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             .  .  U  U  U  .  U  U  U  .  

show diagnostic result module 7 test 1

show diagnostic result module 7 test 1
 
import requests
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 7 test 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)
{                                                                   
  "module_id": 7,                                                   
  "curr_diag_level": "complete",                                    
  "module_name": "100 Gbps Ethernet Module",                        
  "TABLE_Test": {                                                   
    "ROW_Test": {                                                   
      "test_id": 1,                                                 
      "testname": "ASICRegisterCheck",                              
      "testresult": "Pass"                                          
    }                                                               
  }                                                                 
}     
<?xml version="1.0" encoding="ISO-8859-1"?>                       
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                        
  <show>                                                                                                          
   <diagnostic>                                                                                                   
    <result>                                                                                                      
     <module>                                                                                                     
      <__XML__PARAM__module>                                                                                      
       <__XML__value>7</__XML__value>                                                                             
       <test>                                                                                                     
        <__XML__PARAM__test-id>                                                                                   
         <__XML__value>1</__XML__value>                                                                           
         <__readonly__>                                                                                           
          <module_id>7</module_id>                                                                                
          <curr_diag_level>complete</curr_diag_level>                                                             
          <module_name>100 Gbps Ethernet Module </module_name>                                                    
          <TABLE_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>1</test_id>                                                                                  
            <testname>ASICRegisterCheck</testname>                                                                
            <testresult>Pass</testresult>                                                                         
           </ROW_Test>                                                                                            
          </TABLE_Test>                                                                                           
         </__readonly__>                                                                                          
        </__XML__PARAM__test-id>                                                                                  
       </test>                                                                                                    
      </__XML__PARAM__module>                                                                                     
     </module>                                                                                                    
    </result>                                                                                                     
   </diagnostic>                                                                                                  
  </show>                                                                                                         
 </nf:data>                                                                                                       
</nf:rpc-reply>   

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show diagnostic result module 7 test 1**

Current bootup diagnostic level: complete
Module 7: 100 Gbps Ethernet Module       

    Test results: (. = Pass, F = Fail, I = Incomplete,
    U = Untested, A = Abort, E = Error disabled)      

     1) ASICRegisterCheck-------------> .

show diagnostic result module 7 test 1 detail

show  diagnostic result module 7 test 1 detail 
 
import requests
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 7 test 1 detail”,
  "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)
{
  "module_id": 7,
  "curr_diag_level": "complete",
  "module_name": "100 Gbps Ethernet Module",
  "bootup_diag_level": "complete",
  "TABLE_Test": {
    "ROW_Test": {
      "test_id": 1,
      "testname": "ASICRegisterCheck",
      "err_code": "DIAG TEST SUCCESS",
      "total_run_count": 86,
      "last_execution_time": "Wed Jul 18 00:11:24 2018",
      "first_failure_time": "n/a",
      "last_failure_time": "n/a",
      "last_pass_time": "Wed Jul 18 00:11:25 2018",
      "total_fail_count": 0,
      "consequtive_fail_count": 0,
      "last_fail_reason": "No failures yet",
      "next_execution_time": "Wed Jul 18 00:12:24 2018"
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                              
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                        
  <show>                                                                                                          
   <diagnostic>                                                                                                   
    <result>                                                                                                      
     <module>                                                                                                     
      <__XML__PARAM__module>                                                                                      
       <__XML__value>7</__XML__value>                                                                             
       <test>                                                                                                     
        <__XML__PARAM__test-id>                                                                                   
         <__XML__value>1</__XML__value>                                                                           
         <detail>                                                                                                 
          <__readonly__>                                                                                          
           <module_id>7</module_id>                                                                               
           <curr_diag_level>complete</curr_diag_level>                                                            
           <module_name>100 Gbps Ethernet Module </module_name>                                                   
           <bootup_diag_level>complete</bootup_diag_level>                                                        
           <TABLE_Test>                                                                                           
            <ROW_Test>                                                                                            
             <test_id>1</test_id>                                                                                 
             <testname>ASICRegisterCheck</testname>                                                               
             <err_code>DIAG TEST SUCCESS</err_code>                                                               
             <total_run_count>86</total_run_count>                                                                
             <last_execution_time>Wed Jul 18 00:11:24 2018                                                        
</last_execution_time>                                                                                            
             <first_failure_time>n/a</first_failure_time>                                                         
             <last_failure_time>n/a</last_failure_time>                                                           
             <last_pass_time>Wed Jul 18 00:11:25 2018                                                             
</last_pass_time>                                                                                                 
             <total_fail_count>0</total_fail_count>                                                               
             <consequtive_fail_count>0</consequtive_fail_count>                                                   
             <last_fail_reason>No failures yet</last_fail_reason>                                                 
             <next_execution_time>Wed Jul 18 00:12:24 2018                                                        
</next_execution_time>                                                                                            
            </ROW_Test>                                                                                           
           </TABLE_Test>                                                                                          
          </__readonly__>                                                                                         
         </detail>                                                                                                
        </__XML__PARAM__test-id>                                                                                  
       </test>                                                                                                    
      </__XML__PARAM__module>
     </module>
    </result>
   </diagnostic>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show diagnostic result module 7 test 1 detail **

Current bootup diagnostic level: complete
Module 7: 100 Gbps Ethernet Module       

Diagnostic level at card bootup: complete

    Test results: (. = Pass, F = Fail, I = Incomplete,
    U = Untested, A = Abort, E = Error disabled)      

    ______________________________________________________________________

    1) ASICRegisterCheck .

            Error code ------------------> DIAG TEST SUCCESS
            Total run count -------------> 86               
            Last test execution time ----> Wed Jul 18 00:11:24 2018
            First test failure time ----->  n/a                    
            Last test failure time ------>  n/a                    
            Last test pass time ---------> Wed Jul 18 00:11:25 2018
            Total failure count ---------> 0                       
            Consecutive failure count ---> 0                       
            Last failure reason ---------> No failures yet         
            Next Execution time ---------> Wed Jul 18 00:12:24 2018

show diagnostic result module 7 test 7 statistics

show diagnostic result module 7 test 7 statistics
 
import requests
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 7 test 7 statistics”,
  "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)
{                                                                             
  "module_id": 7,                                                             
  "curr_diag_level": "complete",                                              
  "module_name": "100 Gbps Ethernet Module",                                  
  "bootup_diag_level": "complete",                                            
  "TABLE_TestStat": {                                                         
    "ROW_TestStat": {                                                         
      "stat_testid": 7,                                                       
      "stat_testname": "PortLoopback",                                        
      "TABLE_StatDetail": {                                                   
        "ROW_StatDetail": [                                                   
          {                                                                   
            "port_no": 1,                                                     
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 2,                                                     
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 3,                                                     
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 4,                                                     
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 5,                                                     
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 6,                                                     
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 7,                                                     
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 8,                                                     
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 9,                                                     
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 10,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 11,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 12,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 13,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 14,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 15,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 16,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 17,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 18,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 19,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 20,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 21,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 22,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 23,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 24,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 25,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 26,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 27,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 28,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 29,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 30,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 31,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 32,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 33,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 34,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 35,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 36,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 37,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 38,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 39,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 40,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 41,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 42,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 43,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 44,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 45,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 46,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 47,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 48,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 49,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 50,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 51,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 52,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 53,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 54,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 55,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 56,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 57,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 58,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 59,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 60,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 61,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 62,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 63,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 64,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 65,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 66,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 67,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 68,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 69,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 70,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 71,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 72,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 73,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 74,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 75,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 76,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 77,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 78,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 79,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 80,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 81,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 82,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 83,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 84,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 85,                                                    
            "packet_tx": 0,                                                   
            "packet_rx": 0,                                                   
            "packet_loss": 0                                                  
          },                                                                  
          {                                                                   
            "port_no": 86,                                                    
            "packet_tx": 4,                                                   
            "packet_rx": 4,                                                   
            "packet_loss": 0                                                  
          },
          {
            "port_no": 87,
            "packet_tx": 0,
            "packet_rx": 0,
            "packet_loss": 0
          },
          {
            "port_no": 88,
            "packet_tx": 0,
            "packet_rx": 0,
            "packet_loss": 0
          },
          {
            "port_no": 89,
            "packet_tx": 0,
            "packet_rx": 0,
            "packet_loss": 0
          },
          {
            "port_no": 90,
            "packet_tx": 4,
            "packet_rx": 4,
            "packet_loss": 0
          }
        ]
      }
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                                  
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                        
  <show>                                                                                                          
   <diagnostic>                                                                                                   
    <result>                                                                                                      
     <module>                                                                                                     
      <__XML__PARAM__module>                                                                                      
       <__XML__value>7</__XML__value>                                                                             
       <test>                                                                                                     
        <__XML__PARAM__test-id>                                                                                   
         <__XML__value>7</__XML__value>                                                                           
         <statistics>                                                                                             
          <__readonly__>                                                                                          
           <module_id>7</module_id>                                                                               
           <curr_diag_level>complete</curr_diag_level>                                                            
           <module_name>100 Gbps Ethernet Module </module_name>                                                   
           <bootup_diag_level>complete</bootup_diag_level>                                                        
           <TABLE_TestStat>                                                                                       
            <ROW_TestStat>                                                                                        
             <stat_testid>7</stat_testid>                                                                         
             <stat_testname>PortLoopback</stat_testname>                                                          
             <TABLE_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>1</port_no>                                                                               
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>2</port_no>                                                                               
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>3</port_no>                                                                               
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>4</port_no>                                                                               
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>5</port_no>                                                                               
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>6</port_no>                                                                               
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>7</port_no>                                                                               
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>8</port_no>                                                                               
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>9</port_no>                                                                               
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>10</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>11</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>12</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>13</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>14</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>15</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>16</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>17</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>18</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>19</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>20</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>21</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>22</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>23</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>24</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>25</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>26</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>27</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>28</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>29</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>30</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>31</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>32</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>33</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>34</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>35</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>36</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>37</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>38</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>39</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>40</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>41</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>42</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>43</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>44</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>45</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>46</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>47</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>48</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>49</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>50</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>51</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>52</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>53</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>54</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>55</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>56</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>57</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>58</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>59</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>60</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>61</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>62</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>63</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>64</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>65</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>66</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>67</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>68</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>69</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>70</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>71</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>72</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>73</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>74</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>75</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>76</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>77</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>78</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>79</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>80</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>81</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>82</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>83</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>84</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>85</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>86</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>87</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>88</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>89</port_no>                                                                              
               <packet_tx>0</packet_tx>                                                                           
               <packet_rx>0</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
              <ROW_StatDetail>                                                                                    
               <port_no>90</port_no>                                                                              
               <packet_tx>4</packet_tx>                                                                           
               <packet_rx>4</packet_rx>                                                                           
               <packet_loss>0</packet_loss>                                                                       
              </ROW_StatDetail>                                                                                   
             </TABLE_StatDetail>                                                                                  
            </ROW_TestStat>                                                                                       
           </TABLE_TestStat>                                                                                      
          </__readonly__>                                                                                         
         </statistics>                                                                                            
        </__XML__PARAM__test-id>                                                                                  
       </test>                                                                                                    
      </__XML__PARAM__module>                                                                                     
     </module>                                                                                                    
    </result>                                                                                                     
   </diagnostic>                                                                                                  
  </show>                                                                                                         
 </nf:data>                                                                                                       
</nf:rpc-reply> 

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show diagnostic result module 7 test 7 statistics**

Current bootup diagnostic level: complete
Module 7: 100 Gbps Ethernet Module       

Diagnostic level at card bootup: complete

    ______________________________________________________________________

     7) PortLoopback
    ______________________________________________________________________

    Port No     Packet TX   Packet RX   Packet Loss
    ______________________________________________________________________

    1           4           4           0
    2           0           0           0
    3           0           0           0
    4           0           0           0
    5           4           4           0
    6           0           0           0
    7           0           0           0
    8           0           0           0
    9           4           4           0
    10          4           4           0
    11          0           0           0
    12          0           0           0
    13          0           0           0
    14          4           4           0
    15          0           0           0
    16          0           0           0
    17          0           0           0
    18          4           4           0
    19          4           4           0
    20          0           0           0
    21          0           0           0
    22          0           0           0
    23          4           4           0
    24          0           0           0
    25          0           0           0
    26          0           0           0
    27          4           4           0
    28          4           4           0
    29          0           0           0
    30          0           0           0
    31          0           0           0
    32          4           4           0
    33          0           0           0
    34          0           0           0
    35          0           0           0
    36          4           4           0
    37          4           4           0
    38          0           0           0
    39          0           0           0
    40          0           0           0
    41          4           4           0
    42          0           0           0
    43          0           0           0
    44          0           0           0
    45          4           4           0
    46          4           4           0
    47          0           0           0
    48          0           0           0
    49          0           0           0
    50          4           4           0
    51          0           0           0
    52          0           0           0
    53          0           0           0
    54          4           4           0
    55          4           4           0
    56          0           0           0
    57          0           0           0
    58          0           0           0
    59          4           4           0
    60          0           0           0
    61          0           0           0
    62          0           0           0
    63          4           4           0
    64          4           4           0
    65          0           0           0
    66          0           0           0
    67          0           0           0
    68          4           4           0
    69          0           0           0
    70          0           0           0
    71          0           0           0
    72          4           4           0
    73          4           4           0
    74          0           0           0
    75          0           0           0
    76          0           0           0
    77          4           4           0
    78          0           0           0
    79          0           0           0
    80          0           0           0
    81          4           4           0
    82          4           4           0
    83          0           0           0
    84          0           0           0
    85          0           0           0
    86          4           4           0
    87          0           0           0
    88          0           0           0
    89          0           0           0
    90          4           4           0

show diagnostic result module all

show diagnostic result module all 
 
import requests
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 all”,
  "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)
{                                                              
  "TABLE_Module": {                                            
    "ROW_Module": [                                            
      {                                                        
        "module_id": 6,                                        
        "curr_diag_level": "complete",                         
        "module_name": "1/10 Gbps Ethernet Module",            
        "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": "EOBCPortLoopback",                  
              "testresult": "Pass"                             
            },                                                 
            {                                                  
              "test_id": 5,                                    
              "testname": "OBFL",                              
              "testresult": "Pass"                             
            },                                                 
            {                                                  
              "test_id": 6,                                    
              "testname": "PortLoopback",                      
              "passed_ports": "1-18",                          
              "failed_ports": "none",                          
              "incomplete_ports": "none",                      
              "untested_ports": "19-48",                       
              "aborted_ports": "none",                         
              "err_disabled_ports": "none"                     
            },                                                 
            {                                                  
              "test_id": 7,                                    
              "testname": "RewriteEngineLoopback",             
              "passed_ports": "1",                             
              "failed_ports": "none",                          
              "incomplete_ports": "none",                      
              "untested_ports": "2-48",                        
              "aborted_ports": "none",                         
              "err_disabled_ports": "none"                     
            },                                                 
            {                                                  
              "test_id": 8,                                    
              "testname": "SnakeLoopback",                     
              "passed_ports": "none",                          
              "failed_ports": "none",                          
              "incomplete_ports": "none",                      
              "untested_ports": "1-48",                        
              "aborted_ports": "none",                         
              "err_disabled_ports": "none"                     
            },                                                 
            {                                                  
              "test_id": 9,                                    
              "testname": "IntPortLoopback",                   
              "passed_ports": "19,23-24",                      
              "failed_ports": "none",                          
              "incomplete_ports": "none",                      
              "untested_ports": "1-18,20-22,25-48",            
              "aborted_ports": "none",                         
              "err_disabled_ports": "none"                     
            },                                                 
            {                                                  
              "test_id": 10,                                   
              "testname": "FIPS",                              
              "passed_ports": "none",                          
              "failed_ports": "none",                          
              "incomplete_ports": "none",                      
              "untested_ports": "1-48",                        
              "aborted_ports": "none",                         
              "err_disabled_ports": "none"                     
            },                                                 
            {                                                  
              "test_id": 11,                                   
              "testname": "BootupPortLoopback",                
              "passed_ports": "1-48",                          
              "failed_ports": "none",                          
              "incomplete_ports": "none",                      
              "untested_ports": "none",                        
              "aborted_ports": "none",                         
              "err_disabled_ports": "none"                     
            }                                                  
          ]                                                    
        }                                                      
      },                                                       
      {                                                        
        "module_id": 7,                                        
        "curr_diag_level": "complete",                         
        "module_name": "100 Gbps Ethernet Module",             
        "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": "EOBCPortLoopback",                  
              "testresult": "Pass"                             
            },                                                 
            {                                                  
              "test_id": 5,                                    
              "testname": "OBFL",                              
              "testresult": "Pass"                             
            },                                                 
            {                                                  
              "test_id": 6,                                    
              "testname": "ACT2",                              
              "testresult": "Untested"                         
            },                                                 
            {                                                  
              "test_id": 7,                                    
              "testname": "PortLoopback",                      
              "passed_ports": "none",                          
              "failed_ports": "none",                          
              "incomplete_ports": "none",                      
              "untested_ports": "1-90",                        
              "aborted_ports": "none",                         
              "err_disabled_ports": "none"                     
            },                                                 
            {                                                  
              "test_id": 8,                                    
              "testname": "RewriteEngineLoopback",             
              "passed_ports": "1",                             
              "failed_ports": "none",                          
              "incomplete_ports": "none",                      
              "untested_ports": "2-90",                        
              "aborted_ports": "none",                         
              "err_disabled_ports": "none"                     
            },                                                 
            {                                                  
              "test_id": 9,                                    
              "testname": "SnakeLoopback",                     
              "passed_ports": "none",                          
              "failed_ports": "none",                          
              "incomplete_ports": "none",                      
              "untested_ports": "1-90",                        
              "aborted_ports": "none",                         
              "err_disabled_ports": "none"                     
            },                                                 
            {                                                  
              "test_id": 10,                                   
              "testname": "IntPortLoopback",                   
              "passed_ports": "1,5,9-10,14,18-19,23,27-28,32,36-37,41,45-46,50,54-55,59,63-64,68,72-73,77,81-82,86,90", 
              "failed_ports": "none",                                                                                   
              "incomplete_ports": "none",                                                                               
              "untested_ports": "2-4,6-8,11-13,15-17,20-22,24-26,29-31,33-35,38-40,42-44,47-49,51-53,56-58,60-62,65-67,69-71,74-76,78-80,83-85,87-89", 
              "aborted_ports": "none",                                                                                                                 
              "err_disabled_ports": "none"                                                                                                             
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 11,                                                                                                                           
              "testname": "FIPS",                                                                                                                      
              "passed_ports": "none",                                                                                                                  
              "failed_ports": "none",                                                                                                                  
              "incomplete_ports": "none",                                                                                                              
              "untested_ports": "1-90",                                                                                                                
              "aborted_ports": "none",                                                                                                                 
              "err_disabled_ports": "none"                                                                                                             
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 12,                                                                                                                           
              "testname": "BootupPortLoopback",                                                                                                        
              "passed_ports": "1,5,9-10,14,18-19,23,27-28,32,36-37,41,45-46,50,54-55,59,63-64,68,72-73,77,81-82,86,90",                                
              "failed_ports": "none",                                                                                                                  
              "incomplete_ports": "none",                                                                                                              
              "untested_ports": "2-4,6-8,11-13,15-17,20-22,24-26,29-31,33-35,38-40,42-44,47-49,51-53,56-58,60-62,65-67,69-71,74-76,78-80,83-85,87-89", 
              "aborted_ports": "none",                                                                                                                 
              "err_disabled_ports": "none"                                                                                                             
            }                                                                                                                                          
          ]                                                                                                                                            
        }                                                                                                                                              
      },                                                                                                                                               
      {                                                                                                                                                
        "module_id": 8,                                                                                                                                
        "curr_diag_level": "complete",                                                                                                                 
        "module_name": "100 Gbps Ethernet Module",                                                                                                     
        "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": "EOBCPortLoopback",                                                                                                          
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 5,                                                                                                                            
              "testname": "OBFL",                                                                                                                      
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 6,                                                                                                                            
              "testname": "ACT2",                                                                                                                      
              "testresult": "Untested"                                                                                                                 
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 7,                                                                                                                            
              "testname": "PortLoopback",                                                                                                              
              "passed_ports": "none",                                                                                                                  
              "failed_ports": "none",                                                                                                                  
              "incomplete_ports": "none",                                                                                                              
              "untested_ports": "1-90",                                                                                                                
              "aborted_ports": "none",                                                                                                                 
              "err_disabled_ports": "none"                                                                                                             
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 8,                                                                                                                            
              "testname": "RewriteEngineLoopback",                                                                                                     
              "passed_ports": "1",                                                                                                                     
              "failed_ports": "none",                                                                                                                  
              "incomplete_ports": "none",                                                                                                              
              "untested_ports": "2-90",                                                                                                                
              "aborted_ports": "none",                                                                                                                 
              "err_disabled_ports": "none"                                                                                                             
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 9,                                                                                                                            
              "testname": "SnakeLoopback",                                                                                                             
              "passed_ports": "none",                                                                                                                  
              "failed_ports": "none",                                                                                                                  
              "incomplete_ports": "none",                                                                                                              
              "untested_ports": "1-90",                                                                                                                
              "aborted_ports": "none",                                                                                                                 
              "err_disabled_ports": "none"                                                                                                             
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 10,                                                                                                                           
              "testname": "IntPortLoopback",                                                                                                           
              "passed_ports": "1,5,9-10,14,18-19,23,27-28,32,36-37,41,45-46,50,54-55,59,63-64,68,72-73,77,81-82,86,90",                                
              "failed_ports": "none",                                                                                                                  
              "incomplete_ports": "none",                                                                                                              
              "untested_ports": "2-4,6-8,11-13,15-17,20-22,24-26,29-31,33-35,38-40,42-44,47-49,51-53,56-58,60-62,65-67,69-71,74-76,78-80,83-85,87-89", 
              "aborted_ports": "none",                                                                                                                 
              "err_disabled_ports": "none"                                                                                                             
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 11,                                                                                                                           
              "testname": "FIPS",                                                                                                                      
              "passed_ports": "none",                                                                                                                  
              "failed_ports": "none",                                                                                                                  
              "incomplete_ports": "none",                                                                                                              
              "untested_ports": "1-90",                                                                                                                
              "aborted_ports": "none",                                                                                                                 
              "err_disabled_ports": "none"                                                                                                             
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 12,                                                                                                                           
              "testname": "BootupPortLoopback",                                                                                                        
              "passed_ports": "1,5,9-10,14,18-19,23,27-28,32,36-37,41,45-46,50,54-55,59,63-64,68,72-73,77,81-82,86,90",                                
              "failed_ports": "none",                                                                                                                  
              "incomplete_ports": "none",                                                                                                              
              "untested_ports": "2-4,6-8,11-13,15-17,20-22,24-26,29-31,33-35,38-40,42-44,47-49,51-53,56-58,60-62,65-67,69-71,74-76,78-80,83-85,87-89", 
              "aborted_ports": "none",                                                                                                                 
              "err_disabled_ports": "none"                                                                                                             
            }                                                                                                                                          
          ]                                                                                                                                            
        }                                                                                                                                              
      },                                                                                                                                               
      {                                                                                                                                                
        "module_id": 9,                                                                                                                                
        "curr_diag_level": "complete",                                                                                                                 
        "module_name": "Supervisor Module-2 (Active)",                                                                                                 
        "TABLE_Test": {                                                                                                                                
          "ROW_Test": [                                                                                                                                
            {                                                                                                                                          
              "test_id": 1,                                                                                                                            
              "testname": "ASICRegisterCheck",                                                                                                         
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 2,                                                                                                                            
              "testname": "USB",                                                                                                                       
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 3,                                                                                                                            
              "testname": "NVRAM",                                                                                                                     
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 4,                                                                                                                            
              "testname": "RealTimeClock",                                                                                                             
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 5,                                                                                                                            
              "testname": "PrimaryBootROM",                                                                                                            
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 6,                                                                                                                            
              "testname": "SecondaryBootROM",                                                                                                          
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 7,                                                                                                                            
              "testname": "CompactFlash",                                                                                                              
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 8,                                                                                                                            
              "testname": "ExternalCompactFlash",                                                                                                      
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 9,                                                                                                                            
              "testname": "PwrMgmtBus",                                                                                                                
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 10,                                                                                                                           
              "testname": "SystemMgmtBus",                                                                                                             
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 11,                                                                                                                           
              "testname": "StatusBus",                                                                                                                 
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 12,                                                                                                                           
              "testname": "PCIeBus",                                                                                                                   
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 13,                                                                                                                           
              "testname": "StandbyFabricLoopback",                                                                                                     
              "testresult": "Untested"                                                                                                                 
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 14,                                                                                                                           
              "testname": "ManagementPortLoopback",                                                                                                    
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 15,                                                                                                                           
              "testname": "EOBCPortLoopback",                                                                                                          
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 16,                                                                                                                           
              "testname": "OBFL",                                                                                                                      
              "testresult": "Pass"                                                                                                                     
            }                                                                                                                                          
          ]                                                                                                                                            
        }                                                                                                                                              
      },                                                                                                                                               
      {                                                                                                                                                
        "module_id": 10,                                                                                                                               
        "curr_diag_level": "complete",                                                                                                                 
        "module_name": "Supervisor Module-2 (Standby)",                                                                                                
        "TABLE_Test": {                                                                                                                                
          "ROW_Test": [                                                                                                                                
            {                                                                                                                                          
              "test_id": 1,                                                                                                                            
              "testname": "ASICRegisterCheck",                                                                                                         
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 2,                                                                                                                            
              "testname": "USB",                                                                                                                       
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 3,                                                                                                                            
              "testname": "NVRAM",                                                                                                                     
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 4,                                                                                                                            
              "testname": "RealTimeClock",                                                                                                             
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 5,                                                                                                                            
              "testname": "PrimaryBootROM",                                                                                                            
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 6,                                                                                                                            
              "testname": "SecondaryBootROM",                                                                                                          
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 7,                                                                                                                            
              "testname": "CompactFlash",                                                                                                              
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 8,                                                                                                                            
              "testname": "ExternalCompactFlash",                                                                                                      
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 9,                                                                                                                            
              "testname": "PwrMgmtBus",                                                                                                                
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 10,                                                                                                                           
              "testname": "SystemMgmtBus",                                                                                                             
              "testresult": "Untested"                                                                                                                 
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 11,                                                                                                                           
              "testname": "StatusBus",                                                                                                                 
              "testresult": "Untested"                                                                                                                 
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 12,                                                                                                                           
              "testname": "PCIeBus",                                                                                                                   
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 13,                                                                                                                           
              "testname": "StandbyFabricLoopback",                                                                                                     
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 14,                                                                                                                           
              "testname": "ManagementPortLoopback",                                                                                                    
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 15,                                                                                                                           
              "testname": "EOBCPortLoopback",                                                                                                          
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 16,                                                                                                                           
              "testname": "OBFL",                                                                                                                      
              "testresult": "Pass"                                                                                                                     
            }                                                                                                                                          
          ]                                                                                                                                            
        }                                                                                                                                              
      },                                                                                                                                               
      {                                                                                                                                                
        "module_id": 15,                                                                                                                               
        "curr_diag_level": "complete",                                                                                                                 
        "module_name": "100 Gbps Ethernet Module",                                                                                                     
        "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": "EOBCPortLoopback",                                                                                                          
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 5,                                                                                                                            
              "testname": "OBFL",                                                                                                                      
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 6,                                                                                                                            
              "testname": "ACT2",                                                                                                                      
              "testresult": "Pass"                                                                                                                     
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 7,                                                                                                                            
              "testname": "PortLoopback",                                                                                                              
              "passed_ports": "1,5,9-10,14,18-19,23,27-28,32,36-37,41,45-46,50,54-55,59,63-64,68,72-73,77,81-82,86,90",                                
              "failed_ports": "none",                                                                                                                  
              "incomplete_ports": "none",                                                                                                              
              "untested_ports": "2-4,6-8,11-13,15-17,20-22,24-26,29-31,33-35,38-40,42-44,47-49,51-53,56-58,60-62,65-67,69-71,74-76,78-80,83-85,87-89", 
              "aborted_ports": "none",                                                                                                                 
              "err_disabled_ports": "none"                                                                                                             
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 8,                                                                                                                            
              "testname": "RewriteEngineLoopback",                                                                                                     
              "passed_ports": "1",                                                                                                                     
              "failed_ports": "none",                                                                                                                  
              "incomplete_ports": "none",                                                                                                              
              "untested_ports": "2-90",                                                                                                                
              "aborted_ports": "none",                                                                                                                 
              "err_disabled_ports": "none"                                                                                                             
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 9,                                                                                                                            
              "testname": "SnakeLoopback",                                                                                                             
              "passed_ports": "none",                                                                                                                  
              "failed_ports": "none",                                                                                                                  
              "incomplete_ports": "none",                                                                                                              
              "untested_ports": "1-90",                                                                                                                
              "aborted_ports": "none",                                                                                                                 
              "err_disabled_ports": "none"                                                                                                             
            },                                                                                                                                         
            {                                                                                                                                          
              "test_id": 10,                                                                                                                           
              "testname": "IntPortLoopback",                                                                                                           
              "passed_ports": "none",                                                                                                                  
              "failed_ports": "none",                                                                                                                  
              "incomplete_ports": "none",                                                                                                              
              "untested_ports": "1-90",
              "aborted_ports": "none",
              "err_disabled_ports": "none"
            },
            {
              "test_id": 11,
              "testname": "FIPS",
              "passed_ports": "none",
              "failed_ports": "none",
              "incomplete_ports": "none",
              "untested_ports": "1-90",
              "aborted_ports": "none",
              "err_disabled_ports": "none"
            },
            {
              "test_id": 12,
              "testname": "BootupPortLoopback",
              "passed_ports": "1,5,9-10,14,18-19,23,27-28,32,36-37,41,45-46,50,54-55,59,63-64,68,72-73,77,81-82,86,90",
              "failed_ports": "none",
              "incomplete_ports": "none",
              "untested_ports": "2-4,6-8,11-13,15-17,20-22,24-26,29-31,33-35,38-40,42-44,47-49,51-53,56-58,60-62,65-67,69-71,74-76,78-80,83-85,87-89",
              "aborted_ports": "none",
              "err_disabled_ports": "none"
            }
          ]
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                  
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                        
  <show>                                                                                                          
   <diagnostic>                                                                                                   
    <result>                                                                                                      
     <module>                                                                                                     
      <all>                                                                                                       
       <__readonly__>                                                                                             
        <TABLE_Module>                                                                                            
         <ROW_Module>                                                                                             
          <module_id>6</module_id>                                                                                
          <curr_diag_level>complete</curr_diag_level>                                                             
          <module_name>1/10 Gbps Ethernet Module </module_name>                                                   
          <TABLE_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>1</test_id>                                                                                  
            <testname>ASICRegisterCheck</testname>                                                                
            <testresult>Pass</testresult>                                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>2</test_id>                                                                                  
            <testname>PrimaryBootROM</testname>                                                                   
            <testresult>Pass</testresult>                                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>3</test_id>                                                                                  
            <testname>SecondaryBootROM</testname>                                                                 
            <testresult>Pass</testresult>                                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>4</test_id>                                                                                  
            <testname>EOBCPortLoopback</testname>                                                                 
            <testresult>Pass</testresult>                                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>5</test_id>                                                                                  
            <testname>OBFL</testname>                                                                             
            <testresult>Pass</testresult>                                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>6</test_id>                                                                                  
            <testname>PortLoopback</testname>                                                                     
            <passed_ports>1-18</passed_ports>                                                                     
            <failed_ports>none</failed_ports>                                                                     
            <incomplete_ports>none</incomplete_ports>                                                             
            <untested_ports>19-48</untested_ports>                                                                
            <aborted_ports>none</aborted_ports>                                                                   
            <err_disabled_ports>none</err_disabled_ports>                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>7</test_id>                                                                                  
            <testname>RewriteEngineLoopback</testname>                                                            
            <passed_ports>1</passed_ports>                                                                        
            <failed_ports>none</failed_ports>                                                                     
            <incomplete_ports>none</incomplete_ports>                                                             
            <untested_ports>2-48</untested_ports>                                                                 
            <aborted_ports>none</aborted_ports>                                                                   
            <err_disabled_ports>none</err_disabled_ports>                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>8</test_id>                                                                                  
            <testname>SnakeLoopback</testname>                                                                    
            <passed_ports>none</passed_ports>                                                                     
            <failed_ports>none</failed_ports>                                                                     
            <incomplete_ports>none</incomplete_ports>                                                             
            <untested_ports>1-48</untested_ports>                                                                 
            <aborted_ports>none</aborted_ports>                                                                   
            <err_disabled_ports>none</err_disabled_ports>                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>9</test_id>                                                                                  
            <testname>IntPortLoopback</testname>                                                                  
            <passed_ports>19,23-24</passed_ports>                                                                 
            <failed_ports>none</failed_ports>                                                                     
            <incomplete_ports>none</incomplete_ports>                                                             
            <untested_ports>1-18,20-22,25-48</untested_ports>                                                     
            <aborted_ports>none</aborted_ports>                                                                   
            <err_disabled_ports>none</err_disabled_ports>                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>10</test_id>                                                                                 
            <testname>FIPS</testname>                                                                             
            <passed_ports>none</passed_ports>                                                                     
            <failed_ports>none</failed_ports>                                                                     
            <incomplete_ports>none</incomplete_ports>                                                             
            <untested_ports>1-48</untested_ports>                                                                 
            <aborted_ports>none</aborted_ports>                                                                   
            <err_disabled_ports>none</err_disabled_ports>                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>11</test_id>                                                                                 
            <testname>BootupPortLoopback</testname>                                                               
            <passed_ports>1-48</passed_ports>                                                                     
            <failed_ports>none</failed_ports>                                                                     
            <incomplete_ports>none</incomplete_ports>                                                             
            <untested_ports>none</untested_ports>                                                                 
            <aborted_ports>none</aborted_ports>                                                                   
            <err_disabled_ports>none</err_disabled_ports>                                                         
           </ROW_Test>                                                                                            
          </TABLE_Test>                                                                                           
         </ROW_Module>                                                                                            
         <ROW_Module>                                                                                             
          <module_id>7</module_id>                                                                                
          <curr_diag_level>complete</curr_diag_level>                                                             
          <module_name>100 Gbps Ethernet Module </module_name>                                                    
          <TABLE_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>1</test_id>                                                                                  
            <testname>ASICRegisterCheck</testname>                                                                
            <testresult>Pass</testresult>                                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>2</test_id>                                                                                  
            <testname>PrimaryBootROM</testname>                                                                   
            <testresult>Pass</testresult>                                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>3</test_id>                                                                                  
            <testname>SecondaryBootROM</testname>                                                                 
            <testresult>Pass</testresult>                                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>4</test_id>                                                                                  
            <testname>EOBCPortLoopback</testname>                                                                 
            <testresult>Pass</testresult>                                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>5</test_id>                                                                                  
            <testname>OBFL</testname>                                                                             
            <testresult>Pass</testresult>                                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>6</test_id>                                                                                  
            <testname>ACT2</testname>                                                                             
            <testresult>Untested</testresult>                                                                     
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>7</test_id>                                                                                  
            <testname>PortLoopback</testname>                                                                     
            <passed_ports>none</passed_ports>                                                                     
            <failed_ports>none</failed_ports>                                                                     
            <incomplete_ports>none</incomplete_ports>                                                             
            <untested_ports>1-90</untested_ports>                                                                 
            <aborted_ports>none</aborted_ports>                                                                   
            <err_disabled_ports>none</err_disabled_ports>                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>8</test_id>                                                                                  
            <testname>RewriteEngineLoopback</testname>                                                            
            <passed_ports>1</passed_ports>                                                                        
            <failed_ports>none</failed_ports>                                                                     
            <incomplete_ports>none</incomplete_ports>                                                             
            <untested_ports>2-90</untested_ports>                                                                 
            <aborted_ports>none</aborted_ports>                                                                   
            <err_disabled_ports>none</err_disabled_ports>                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>9</test_id>                                                                                  
            <testname>SnakeLoopback</testname>                                                                    
            <passed_ports>none</passed_ports>                                                                     
            <failed_ports>none</failed_ports>                                                                     
            <incomplete_ports>none</incomplete_ports>                                                             
            <untested_ports>1-90</untested_ports>                                                                 
            <aborted_ports>none</aborted_ports>                                                                   
            <err_disabled_ports>none</err_disabled_ports>                                                         
           </ROW_Test>                                                                                            
           <ROW_Test>                                                                                             
            <test_id>10</test_id>                                                                                 
            <testname>IntPortLoopback</testname>                                                                  
            <passed_ports>1,5,9-10,14,18-19,23,27-28,32,36-37,41,45-46,50,54-55,59,63-64,68,72-73,77,81-82,86,90</passed_ports>
            <failed_ports>none</failed_ports>                                                                                  
            <incomplete_ports>none</incomplete_ports>                                                                          
            <untested_ports>2-4,6-8,11-13,15-17,20-22,24-26,29-31,33-35,38-40,42-44,47-49,51-53,56-58,60-62,65-67,69-71,74-76,78-80,83-85,87-89</untested_ports>                                                                                                                                                      
            <aborted_ports>none</aborted_ports>                                                                                                            
            <err_disabled_ports>none</err_disabled_ports>                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>11</test_id>                                                                                                                          
            <testname>FIPS</testname>                                                                                                                      
            <passed_ports>none</passed_ports>                                                                                                              
            <failed_ports>none</failed_ports>                                                                                                              
            <incomplete_ports>none</incomplete_ports>                                                                                                      
            <untested_ports>1-90</untested_ports>                                                                                                          
            <aborted_ports>none</aborted_ports>                                                                                                            
            <err_disabled_ports>none</err_disabled_ports>                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>12</test_id>                                                                                                                          
            <testname>BootupPortLoopback</testname>                                                                                                        
            <passed_ports>1,5,9-10,14,18-19,23,27-28,32,36-37,41,45-46,50,54-55,59,63-64,68,72-73,77,81-82,86,90</passed_ports>                            
            <failed_ports>none</failed_ports>                                                                                                              
            <incomplete_ports>none</incomplete_ports>                                                                                                      
            <untested_ports>2-4,6-8,11-13,15-17,20-22,24-26,29-31,33-35,38-40,42-44,47-49,51-53,56-58,60-62,65-67,69-71,74-76,78-80,83-85,87-89</untested_ports>                                                                                                                                                      
            <aborted_ports>none</aborted_ports>                                                                                                            
            <err_disabled_ports>none</err_disabled_ports>                                                                                                  
           </ROW_Test>                                                                                                                                     
          </TABLE_Test>                                                                                                                                    
         </ROW_Module>                                                                                                                                     
         <ROW_Module>                                                                                                                                      
          <module_id>8</module_id>                                                                                                                         
          <curr_diag_level>complete</curr_diag_level>                                                                                                      
          <module_name>100 Gbps Ethernet Module </module_name>                                                                                             
          <TABLE_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>1</test_id>                                                                                                                           
            <testname>ASICRegisterCheck</testname>                                                                                                         
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>2</test_id>                                                                                                                           
            <testname>PrimaryBootROM</testname>                                                                                                            
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>3</test_id>                                                                                                                           
            <testname>SecondaryBootROM</testname>                                                                                                          
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>4</test_id>                                                                                                                           
            <testname>EOBCPortLoopback</testname>                                                                                                          
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>5</test_id>                                                                                                                           
            <testname>OBFL</testname>                                                                                                                      
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>6</test_id>                                                                                                                           
            <testname>ACT2</testname>                                                                                                                      
            <testresult>Untested</testresult>                                                                                                              
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>7</test_id>                                                                                                                           
            <testname>PortLoopback</testname>                                                                                                              
            <passed_ports>none</passed_ports>                                                                                                              
            <failed_ports>none</failed_ports>                                                                                                              
            <incomplete_ports>none</incomplete_ports>                                                                                                      
            <untested_ports>1-90</untested_ports>                                                                                                          
            <aborted_ports>none</aborted_ports>                                                                                                            
            <err_disabled_ports>none</err_disabled_ports>                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>8</test_id>                                                                                                                           
            <testname>RewriteEngineLoopback</testname>                                                                                                     
            <passed_ports>1</passed_ports>                                                                                                                 
            <failed_ports>none</failed_ports>                                                                                                              
            <incomplete_ports>none</incomplete_ports>                                                                                                      
            <untested_ports>2-90</untested_ports>                                                                                                          
            <aborted_ports>none</aborted_ports>                                                                                                            
            <err_disabled_ports>none</err_disabled_ports>                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>9</test_id>                                                                                                                           
            <testname>SnakeLoopback</testname>                                                                                                             
            <passed_ports>none</passed_ports>                                                                                                              
            <failed_ports>none</failed_ports>                                                                                                              
            <incomplete_ports>none</incomplete_ports>                                                                                                      
            <untested_ports>1-90</untested_ports>                                                                                                          
            <aborted_ports>none</aborted_ports>                                                                                                            
            <err_disabled_ports>none</err_disabled_ports>                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>10</test_id>                                                                                                                          
            <testname>IntPortLoopback</testname>                                                                                                           
            <passed_ports>1,5,9-10,14,18-19,23,27-28,32,36-37,41,45-46,50,54-55,59,63-64,68,72-73,77,81-82,86,90</passed_ports>                            
            <failed_ports>none</failed_ports>                                                                                                              
            <incomplete_ports>none</incomplete_ports>                                                                                                      
            <untested_ports>2-4,6-8,11-13,15-17,20-22,24-26,29-31,33-35,38-40,42-44,47-49,51-53,56-58,60-62,65-67,69-71,74-76,78-80,83-85,87-89</untested_ports>                                                                                                                                                      
            <aborted_ports>none</aborted_ports>                                                                                                            
            <err_disabled_ports>none</err_disabled_ports>                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>11</test_id>                                                                                                                          
            <testname>FIPS</testname>                                                                                                                      
            <passed_ports>none</passed_ports>                                                                                                              
            <failed_ports>none</failed_ports>                                                                                                              
            <incomplete_ports>none</incomplete_ports>                                                                                                      
            <untested_ports>1-90</untested_ports>                                                                                                          
            <aborted_ports>none</aborted_ports>                                                                                                            
            <err_disabled_ports>none</err_disabled_ports>                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>12</test_id>                                                                                                                          
            <testname>BootupPortLoopback</testname>                                                                                                        
            <passed_ports>1,5,9-10,14,18-19,23,27-28,32,36-37,41,45-46,50,54-55,59,63-64,68,72-73,77,81-82,86,90</passed_ports>                            
            <failed_ports>none</failed_ports>                                                                                                              
            <incomplete_ports>none</incomplete_ports>                                                                                                      
            <untested_ports>2-4,6-8,11-13,15-17,20-22,24-26,29-31,33-35,38-40,42-44,47-49,51-53,56-58,60-62,65-67,69-71,74-76,78-80,83-85,87-89</untested_ports>                                                                                                                                                      
            <aborted_ports>none</aborted_ports>                                                                                                            
            <err_disabled_ports>none</err_disabled_ports>                                                                                                  
           </ROW_Test>                                                                                                                                     
          </TABLE_Test>                                                                                                                                    
         </ROW_Module>                                                                                                                                     
         <ROW_Module>                                                                                                                                      
          <module_id>9</module_id>                                                                                                                         
          <curr_diag_level>complete</curr_diag_level>                                                                                                      
          <module_name>Supervisor Module-2 (Active)</module_name>                                                                                          
          <TABLE_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>1</test_id>                                                                                                                           
            <testname>ASICRegisterCheck</testname>                                                                                                         
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>2</test_id>                                                                                                                           
            <testname>USB</testname>                                                                                                                       
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>3</test_id>                                                                                                                           
            <testname>NVRAM</testname>                                                                                                                     
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>4</test_id>                                                                                                                           
            <testname>RealTimeClock</testname>                                                                                                             
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>5</test_id>                                                                                                                           
            <testname>PrimaryBootROM</testname>                                                                                                            
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>6</test_id>                                                                                                                           
            <testname>SecondaryBootROM</testname>                                                                                                          
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>7</test_id>                                                                                                                           
            <testname>CompactFlash</testname>                                                                                                              
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>8</test_id>                                                                                                                           
            <testname>ExternalCompactFlash</testname>                                                                                                      
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>9</test_id>                                                                                                                           
            <testname>PwrMgmtBus</testname>                                                                                                                
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>10</test_id>                                                                                                                          
            <testname>SystemMgmtBus</testname>                                                                                                             
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>11</test_id>                                                                                                                          
            <testname>StatusBus</testname>                                                                                                                 
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>12</test_id>                                                                                                                          
            <testname>PCIeBus</testname>                                                                                                                   
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>13</test_id>                                                                                                                          
            <testname>StandbyFabricLoopback</testname>                                                                                                     
            <testresult>Untested</testresult>                                                                                                              
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>14</test_id>                                                                                                                          
            <testname>ManagementPortLoopback</testname>                                                                                                    
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>15</test_id>                                                                                                                          
            <testname>EOBCPortLoopback</testname>                                                                                                          
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>16</test_id>                                                                                                                          
            <testname>OBFL</testname>                                                                                                                      
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
          </TABLE_Test>                                                                                                                                    
         </ROW_Module>                                                                                                                                     
         <ROW_Module>                                                                                                                                      
          <module_id>10</module_id>                                                                                                                        
          <curr_diag_level>complete</curr_diag_level>                                                                                                      
          <module_name>Supervisor Module-2 (Standby)</module_name>                                                                                         
          <TABLE_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>1</test_id>                                                                                                                           
            <testname>ASICRegisterCheck</testname>                                                                                                         
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>2</test_id>                                                                                                                           
            <testname>USB</testname>                                                                                                                       
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>3</test_id>                                                                                                                           
            <testname>NVRAM</testname>                                                                                                                     
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>4</test_id>                                                                                                                           
            <testname>RealTimeClock</testname>                                                                                                             
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>5</test_id>                                                                                                                           
            <testname>PrimaryBootROM</testname>                                                                                                            
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>6</test_id>                                                                                                                           
            <testname>SecondaryBootROM</testname>                                                                                                          
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>7</test_id>                                                                                                                           
            <testname>CompactFlash</testname>                                                                                                              
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>8</test_id>                                                                                                                           
            <testname>ExternalCompactFlash</testname>                                                                                                      
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>9</test_id>                                                                                                                           
            <testname>PwrMgmtBus</testname>                                                                                                                
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>10</test_id>                                                                                                                          
            <testname>SystemMgmtBus</testname>                                                                                                             
            <testresult>Untested</testresult>                                                                                                              
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>11</test_id>                                                                                                                          
            <testname>StatusBus</testname>                                                                                                                 
            <testresult>Untested</testresult>                                                                                                              
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>12</test_id>                                                                                                                          
            <testname>PCIeBus</testname>                                                                                                                   
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>13</test_id>                                                                                                                          
            <testname>StandbyFabricLoopback</testname>                                                                                                     
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>14</test_id>                                                                                                                          
            <testname>ManagementPortLoopback</testname>                                                                                                    
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>15</test_id>                                                                                                                          
            <testname>EOBCPortLoopback</testname>                                                                                                          
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>16</test_id>                                                                                                                          
            <testname>OBFL</testname>                                                                                                                      
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
          </TABLE_Test>                                                                                                                                    
         </ROW_Module>                                                                                                                                     
         <ROW_Module>                                                                                                                                      
          <module_id>15</module_id>                                                                                                                        
          <curr_diag_level>complete</curr_diag_level>                                                                                                      
          <module_name>100 Gbps Ethernet Module </module_name>                                                                                             
          <TABLE_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>1</test_id>                                                                                                                           
            <testname>ASICRegisterCheck</testname>                                                                                                         
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>2</test_id>                                                                                                                           
            <testname>PrimaryBootROM</testname>                                                                                                            
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>3</test_id>                                                                                                                           
            <testname>SecondaryBootROM</testname>                                                                                                          
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>4</test_id>                                                                                                                           
            <testname>EOBCPortLoopback</testname>                                                                                                          
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>5</test_id>                                                                                                                           
            <testname>OBFL</testname>                                                                                                                      
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>6</test_id>                                                                                                                           
            <testname>ACT2</testname>                                                                                                                      
            <testresult>Pass</testresult>                                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>7</test_id>                                                                                                                           
            <testname>PortLoopback</testname>                                                                                                              
            <passed_ports>1,5,9-10,14,18-19,23,27-28,32,36-37,41,45-46,50,54-55,59,63-64,68,72-73,77,81-82,86,90</passed_ports>                            
            <failed_ports>none</failed_ports>                                                                                                              
            <incomplete_ports>none</incomplete_ports>                                                                                                      
            <untested_ports>2-4,6-8,11-13,15-17,20-22,24-26,29-31,33-35,38-40,42-44,47-49,51-53,56-58,60-62,65-67,69-71,74-76,78-80,83-85,87-89</untested_ports>                                                                                                                                                      
            <aborted_ports>none</aborted_ports>                                                                                                            
            <err_disabled_ports>none</err_disabled_ports>                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>8</test_id>                                                                                                                           
            <testname>RewriteEngineLoopback</testname>                                                                                                     
            <passed_ports>1</passed_ports>                                                                                                                 
            <failed_ports>none</failed_ports>                                                                                                              
            <incomplete_ports>none</incomplete_ports>                                                                                                      
            <untested_ports>2-90</untested_ports>                                                                                                          
            <aborted_ports>none</aborted_ports>                                                                                                            
            <err_disabled_ports>none</err_disabled_ports>                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>9</test_id>                                                                                                                           
            <testname>SnakeLoopback</testname>                                                                                                             
            <passed_ports>none</passed_ports>                                                                                                              
            <failed_ports>none</failed_ports>                                                                                                              
            <incomplete_ports>none</incomplete_ports>                                                                                                      
            <untested_ports>1-90</untested_ports>                                                                                                          
            <aborted_ports>none</aborted_ports>                                                                                                            
            <err_disabled_ports>none</err_disabled_ports>                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>10</test_id>                                                                                                                          
            <testname>IntPortLoopback</testname>                                                                                                           
            <passed_ports>none</passed_ports>                                                                                                              
            <failed_ports>none</failed_ports>                                                                                                              
            <incomplete_ports>none</incomplete_ports>                                                                                                      
            <untested_ports>1-90</untested_ports>                                                                                                          
            <aborted_ports>none</aborted_ports>                                                                                                            
            <err_disabled_ports>none</err_disabled_ports>                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>11</test_id>                                                                                                                          
            <testname>FIPS</testname>                                                                                                                      
            <passed_ports>none</passed_ports>                                                                                                              
            <failed_ports>none</failed_ports>                                                                                                              
            <incomplete_ports>none</incomplete_ports>                                                                                                      
            <untested_ports>1-90</untested_ports>                                                                                                          
            <aborted_ports>none</aborted_ports>                                                                                                            
            <err_disabled_ports>none</err_disabled_ports>                                                                                                  
           </ROW_Test>                                                                                                                                     
           <ROW_Test>                                                                                                                                      
            <test_id>12</test_id>                                                                                                                          
            <testname>BootupPortLoopback</testname>                                                                                                        
            <passed_ports>1,5,9-10,14,18-19,23,27-28,32,36-37,41,45-46,50,54-55,59,63-64,68,72-73,77,81-82,86,90</passed_ports>                            
            <failed_ports>none</failed_ports>                                                                                                              
            <incomplete_ports>none</incomplete_ports>                                                                                                      
            <untested_ports>2-4,6-8,11-13,15-17,20-22,24-26,29-31,33-35,38-40,42-44,47-49,51-53,56-58,60-62,65-67,69-71,74-76,78-80,83-85,87-89</untested_ports>                                                                                                                                                      
            <aborted_ports>none</aborted_ports>                                                                                                            
            <err_disabled_ports>none</err_disabled_ports>                                                                                                  
           </ROW_Test>                                                                                                                                     
          </TABLE_Test>                                                                                                                                    
         </ROW_Module>                                                                                                                                     
        </TABLE_Module>                                                                                                                                    
       </__readonly__>                                                                                                                                     
      </all>                                                                                                                                               
     </module>                                                                                                                                             
    </result>                                                                                                                                              
   </diagnostic>                                                                                                                                           
  </show>                                                                                                                                                  
 </nf:data>                                                                                                                                                
</nf:rpc-reply>   

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show diagnostic result module all**

Current bootup diagnostic level: complete
Module 6: 1/10 Gbps Ethernet Module      

    Test results: (. = Pass, F = Fail, I = Incomplete,
    U = Untested, A = Abort, E = Error disabled)      

     1) ASICRegisterCheck-------------> .
     2) PrimaryBootROM----------------> .
     3) SecondaryBootROM--------------> .
     4) EOBCPortLoopback--------------> .
     5) OBFL--------------------------> .
     6) PortLoopback:                    

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             .  .  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  


     7) RewriteEngineLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             .  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  


     8) SnakeLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  


     9) IntPortLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  .  U  U  U  .  .  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  


    10) FIPS:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  


    11) BootupPortLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  

Current bootup diagnostic level: complete Module 7: 100 Gbps Ethernet Module

    Test results: (. = Pass, F = Fail, I = Incomplete,
    U = Untested, A = Abort, E = Error disabled)      

     1) ASICRegisterCheck-------------> .
     2) PrimaryBootROM----------------> .
     3) SecondaryBootROM--------------> .
     4) EOBCPortLoopback--------------> .
     5) OBFL--------------------------> .
     6) ACT2--------------------------> U
     7) PortLoopback:                    

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             U  U  U  U  U  U  U  U  U  U  


     8) RewriteEngineLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             .  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             U  U  U  U  U  U  U  U  U  U  


     9) SnakeLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             U  U  U  U  U  U  U  U  U  U  


    10) IntPortLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             .  U  U  U  .  U  U  U  .  .  U  U  U  .  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  .  .  U  U  U  .  U  U  U  .  .  U  U  U  .  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  .  .  U  U  U  .  U  U  U  .  .  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  .  U  U  U  .  .  U  U  U  .  U  U  U  .  .  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  .  U  U  U  .  .  U  U  U  .  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             .  .  U  U  U  .  U  U  U  .  


    11) FIPS:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             U  U  U  U  U  U  U  U  U  U  


    12) BootupPortLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             .  U  U  U  .  U  U  U  .  .  U  U  U  .  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  .  .  U  U  U  .  U  U  U  .  .  U  U  U  .  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  .  .  U  U  U  .  U  U  U  .  .  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  .  U  U  U  .  .  U  U  U  .  U  U  U  .  .  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  .  U  U  U  .  .  U  U  U  .  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             .  .  U  U  U  .  U  U  U  .  

Current bootup diagnostic level: complete Module 8: 100 Gbps Ethernet Module

    Test results: (. = Pass, F = Fail, I = Incomplete,
    U = Untested, A = Abort, E = Error disabled)      

     1) ASICRegisterCheck-------------> .
     2) PrimaryBootROM----------------> .
     3) SecondaryBootROM--------------> .
     4) EOBCPortLoopback--------------> .
     5) OBFL--------------------------> .
     6) ACT2--------------------------> U
     7) PortLoopback:                    

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             U  U  U  U  U  U  U  U  U  U  


     8) RewriteEngineLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             .  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             U  U  U  U  U  U  U  U  U  U  


     9) SnakeLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             U  U  U  U  U  U  U  U  U  U  


    10) IntPortLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             .  U  U  U  .  U  U  U  .  .  U  U  U  .  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  .  .  U  U  U  .  U  U  U  .  .  U  U  U  .  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  .  .  U  U  U  .  U  U  U  .  .  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  .  U  U  U  .  .  U  U  U  .  U  U  U  .  .  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  .  U  U  U  .  .  U  U  U  .  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             .  .  U  U  U  .  U  U  U  .  


    11) FIPS:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             U  U  U  U  U  U  U  U  U  U  


    12) BootupPortLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             .  U  U  U  .  U  U  U  .  .  U  U  U  .  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  .  .  U  U  U  .  U  U  U  .  .  U  U  U  .  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  .  .  U  U  U  .  U  U  U  .  .  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  .  U  U  U  .  .  U  U  U  .  U  U  U  .  .  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  .  U  U  U  .  .  U  U  U  .  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             .  .  U  U  U  .  U  U  U  .  

Current bootup diagnostic level: complete Module 9: Supervisor Module-2 (Active)

    Test results: (. = Pass, F = Fail, I = Incomplete,
    U = Untested, A = Abort, E = Error disabled)      

     1) ASICRegisterCheck-------------> .
     2) USB---------------------------> .
     3) NVRAM-------------------------> .
     4) RealTimeClock-----------------> .
     5) PrimaryBootROM----------------> .
     6) SecondaryBootROM--------------> .
     7) CompactFlash------------------> .
     8) ExternalCompactFlash----------> .
     9) PwrMgmtBus--------------------> .
    10) SystemMgmtBus-----------------> .
    11) StatusBus---------------------> .
    12) PCIeBus-----------------------> .
    13) StandbyFabricLoopback---------> U
    14) ManagementPortLoopback--------> .
    15) EOBCPortLoopback--------------> .
    16) OBFL--------------------------> .

Current bootup diagnostic level: complete Module 10: Supervisor Module-2 (Standby)

    Test results: (. = Pass, F = Fail, I = Incomplete,
    U = Untested, A = Abort, E = Error disabled)      

     1) ASICRegisterCheck-------------> .
     2) USB---------------------------> .
     3) NVRAM-------------------------> .
     4) RealTimeClock-----------------> .
     5) PrimaryBootROM----------------> .
     6) SecondaryBootROM--------------> .
     7) CompactFlash------------------> .
     8) ExternalCompactFlash----------> .
     9) PwrMgmtBus--------------------> .
    10) SystemMgmtBus-----------------> U
    11) StatusBus---------------------> U
    12) PCIeBus-----------------------> .
    13) StandbyFabricLoopback---------> .
    14) ManagementPortLoopback--------> .
    15) EOBCPortLoopback--------------> .
    16) OBFL--------------------------> .

Current bootup diagnostic level: complete Module 15: 100 Gbps Ethernet Module

    Test results: (. = Pass, F = Fail, I = Incomplete,
    U = Untested, A = Abort, E = Error disabled)      

     1) ASICRegisterCheck-------------> .
     2) PrimaryBootROM----------------> .
     3) SecondaryBootROM--------------> .
     4) EOBCPortLoopback--------------> .
     5) OBFL--------------------------> .
     6) ACT2--------------------------> .
     7) PortLoopback:                    

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             .  U  U  U  .  U  U  U  .  .  U  U  U  .  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  .  .  U  U  U  .  U  U  U  .  .  U  U  U  .  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  .  .  U  U  U  .  U  U  U  .  .  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  .  U  U  U  .  .  U  U  U  .  U  U  U  .  .  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  .  U  U  U  .  .  U  U  U  .  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             .  .  U  U  U  .  U  U  U  .  


     8) RewriteEngineLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             .  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             U  U  U  U  U  U  U  U  U  U  


     9) SnakeLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             U  U  U  U  U  U  U  U  U  U  


    10) IntPortLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             U  U  U  U  U  U  U  U  U  U  


    11) FIPS:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             U  U  U  U  U  U  U  U  U  U  


    12) BootupPortLoopback:

      Port   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 
      ----------------------------------------------------- 
             .  U  U  U  .  U  U  U  .  .  U  U  U  .  U  U  

      Port  17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 
      ----------------------------------------------------- 
             U  .  .  U  U  U  .  U  U  U  .  .  U  U  U  .  

      Port  33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 
      ----------------------------------------------------- 
             U  U  U  .  .  U  U  U  .  U  U  U  .  .  U  U  

      Port  49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 
      ----------------------------------------------------- 
             U  .  U  U  U  .  .  U  U  U  .  U  U  U  .  .  

      Port  65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
      ----------------------------------------------------- 
             U  U  U  .  U  U  U  .  .  U  U  U  .  U  U  U  

      Port  81 82 83 84 85 86 87 88 89 90 
      ----------------------------------- 
             .  .  U  U  U  .  U  U  U  .  

show diagnostic simulation module 7

show  diagnostic simulation module 7 
 
import requests
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 simulation module 7”,
  "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)
{                                                                
  "module_id": 7,                                                
  "module_name": "100 Gbps Ethernet Module"                      
}        
<?xml version="1.0" encoding="ISO-8859-1"?>                    
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                        
  <show>                                                                                                          
   <diagnostic>                                                                                                   
    <simulation>                                                                                                  
     <module>                                                                                                     
      <__XML__PARAM__module>                                                                                      
       <__XML__value>7</__XML__value>                                                                             
       <__readonly__>                                                                                             
        <module_id>7</module_id>                                                                                  
        <module_name>100 Gbps Ethernet Module</module_name>                                                       
       </__readonly__>                                                                                            
      </__XML__PARAM__module>                                                                                     
     </module>                                                                                                    
    </simulation>                                                                                                 
   </diagnostic>                                                                                                  
  </show>                                                                                                         
 </nf:data>                                                                                                       
</nf:rpc-reply>     

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show diagnostic simulation module 7**

Card(7): 100 Gbps Ethernet Module
__________________________________________________
    -NA-        

show diagnostic status module 7

show diagnostic status module 7
 
import requests
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 status module 7”,
  "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)
{
  "test_runby_mapping": "<BU>-Bootup Diagnostics, <HM>-Health Monitoring Diagnostics<OD>-OnDemand Diagnostics, <SCH>-Scheduled Diagnostics",
  "module_id": 7,
  "module_name": "100 Gbps Ethernet Module",
  "TABLE_current": {
    "ROW_current": {
      "cur_test_name": "-NA-",
      "cur_run_by": "-NA-"
    }
  },
  "TABLE_enqued": {
    "ROW_enqued": {
      "enq_test_name": "-NA-",
      "enq_run_by": "-NA-"
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:diagmgr" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                        
  <show>                                                                                                          
   <diagnostic>                                                                                                   
    <status>                                                                                                      
     <module>                                                                                                     
      <__XML__PARAM__module>                                                                                      
       <__XML__value>7</__XML__value>                                                                             
       <__readonly__>                                                                                             
        <test_runby_mapping>&lt;BU&gt;-Bootup Diagnostics, &lt;HM&gt;-Health Monitoring Diagnostics&lt;OD&gt;-OnDemand Diagnostics, &lt;SCH&gt;-Scheduled Diagnostics</test_runby_mapping>                                                                                                                            
        <module_id>7</module_id>                                                                                                                           
        <module_name>100 Gbps Ethernet Module</module_name>                                                                                                
        <TABLE_current>                                                                                                                                    
         <ROW_current>                                                                                                                                     
          <cur_test_name>-NA-</cur_test_name>                                                                                                              
          <cur_run_by>-NA-</cur_run_by>                                                                                                                    
         </ROW_current>                                                                                                                                    
        </TABLE_current>                                                                                                                                   
        <TABLE_enqued>                                                                                                                                     
         <ROW_enqued>                                                                                                                                      
          <enq_test_name>-NA-</enq_test_name>
          <enq_run_by>-NA-</enq_run_by>
         </ROW_enqued>
        </TABLE_enqued>
       </__readonly__>
      </__XML__PARAM__module>
     </module>
    </status>
   </diagnostic>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show diagnostic status module 7**

                -Bootup Diagnostics, -Health Monitoring Diagnostics
                -OnDemand Diagnostics, -Scheduled Diagnostics     

============================================== Card:(7) 100 Gbps Ethernet Module

Current running test Run by
-NA- -NA-
Currently Enqueued Test Run by
-NA- -NA-

show ecp

show eep
 
import requests
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 ecp”,
  "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)
{                                     
  "ecp_rte": 14,                      
  "ecp_retries": 3,                   
  "ecp_mode": "Native (Point-to-Point)", 
  "ecp_cnt_rx_pkt": 0,                   
  "ecp_cnt_tx_pkt": 0,                   
  "TABLE_ecp_plugin": {                  
    "ROW_ecp_plugin": {                  
      "plugin_id": 1,                    
      "plugin_desc": "VDP Plugin",       
      "plugin_status": "Enabled"         
    }                                    
  }                                      
}           
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:ecp" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <ecp>                                                                                                      
    <__readonly__>                                                                                            
     <ecp_rte>14</ecp_rte>                                                                                    
     <ecp_retries>3</ecp_retries>                                                                             
     <ecp_mode>Native (Point-to-Point)</ecp_mode>                                                             
     <ecp_cnt_rx_pkt>0</ecp_cnt_rx_pkt>                                                                       
     <ecp_cnt_tx_pkt>0</ecp_cnt_tx_pkt>                                                                       
     <TABLE_ecp_plugin>                                                                                       
      <ROW_ecp_plugin>                                                                                        
       <plugin_id>1</plugin_id>                                                                               
       <plugin_desc>VDP Plugin</plugin_desc>                                                                  
       <plugin_status>Enabled</plugin_status>                                                                 
      </ROW_ecp_plugin>                                                                                       
     </TABLE_ecp_plugin>                                                                                      
    </__readonly__>                                                                                           
   </ecp>                                                                                                     
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>   

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show ecp**

ECP (Edge Control Protocol)

Retrans timer init : 14 Max retries : 3 Mode : Native (Point-to-Point) No. rx packet : 0
No. tx packet : 0

1 Plugin(s): ULP ID Description Status


1 VDP Plugin Enabled

0 Session(s): Interface S-Vlan Peer MAC Sess ID RxSeq TxSeq


show ecp detail

show ecp detail
 
import requests
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 ecp detail”,
  "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)
{
  "ecp_rte": 14,
  "ecp_retries": 3,
  "ecp_mode": "Native (Point-to-Point)",
  "ecp_cnt_rx_pkt": 0,
  "ecp_cnt_tx_pkt": 0,
  "TABLE_ecp_plugin": {
    "ROW_ecp_plugin": {
      "plugin_id": 1,
      "plugin_desc": "VDP Plugin",
      "plugin_status": "Enabled"
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:ecp" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <ecp>                                                                                                      
    <detail>                                                                                                  
     <__readonly__>                                                                                           
      <ecp_rte>14</ecp_rte>                                                                                   
      <ecp_retries>3</ecp_retries>                                                                            
      <ecp_mode>Native (Point-to-Point)</ecp_mode>                                                            
      <ecp_cnt_rx_pkt>0</ecp_cnt_rx_pkt>                                                                      
      <ecp_cnt_tx_pkt>0</ecp_cnt_tx_pkt>                                                                      
      <TABLE_ecp_plugin>
       <ROW_ecp_plugin>
        <plugin_id>1</plugin_id>
        <plugin_desc>VDP Plugin</plugin_desc>
        <plugin_status>Enabled</plugin_status>
       </ROW_ecp_plugin>
      </TABLE_ecp_plugin>
     </__readonly__>
    </detail>
   </ecp>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show ecp detail**

ECP (Edge Control Protocol)

Retrans timer init : 14 Max retries : 3 Mode : Native (Point-to-Point) No. rx packet : 0
No. tx packet : 0

1 Plugin(s): ULP ID Description Status


1 VDP Plugin Enabled

0 Session(s): Interface S-Vlan Peer MAC Sess ID RxSeq TxSeq


show install all failed-standby

show install all failed-standby
 
import requests
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 install all failed-standby”,
  "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)
{                                                           
  "TABLE_installFailStandby": {                             
    "ROW_installFailStandby": {                             
      "Str1": "Failed to uncompress the log file"           
    }                                                       
  }                                                         
}          
<?xml version="1.0" encoding="ISO-8859-1"?>                
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:install" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                        
  <show>                                                                                                          
   <install>                                                                                                      
    <all>                                                                                                         
     <failed-standby>                                                                                             
      <__readonly__>                                                                                              
       <TABLE_installFailStandby>                                                                                 
        <ROW_installFailStandby>                                                                                  
         <Str1>Failed to uncompress the log file                                                                  
</Str1>                                                                                                           
        </ROW_installFailStandby>                                                                                 
       </TABLE_installFailStandby>                                                                                
      </__readonly__>                                                                                             
     </failed-standby>                                                                                            
    </all>                                                                                                        
   </install>                                                                                                     
  </show>                                                                                                         
 </nf:data>                                                                                                       
</nf:rpc-reply>        

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show install all failed-standby**

Failed to uncompress the log file                     

show install all failure-reason

show  install all failure-reason 
 
import requests
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  install all failure-reason”,
  "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)
{
  "TABLE_installFailReason": {
    "ROW_installFailReason": {
      "installFailReasonStr": "No install all failure-reason"
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:install" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <install>
    <all>
     <failure-reason>
      <__readonly__>
       <TABLE_installFailReason>
        <ROW_installFailReason>
         <installFailReasonStr>No install all failure-reason
</installFailReasonStr>
        </ROW_installFailReason>
       </TABLE_installFailReason>
      </__readonly__>
     </failure-reason>
    </all>
   </install>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show install all failure-reason**

No install all failure-reason                         

show hardware proxy layer-3 counters brief

show  hardware proxy layer-3 counters brief
 
import requests
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  hardware proxy layer-3 counters brief”,
  "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)
{                                                                       
  "TABLE_mod_cntrs": {                                                  
    "ROW_mod_cntrs": {                                                  
      "d_mod_num": 0,                                                   
      "is_total_of_all_mod": 1,                                         
      "TABLE_memb_cntrs": {                                             
        "ROW_memb_cntrs": {                                             
          "member_str": null,                                           
          "pkts": 0,                                                    
          "rate": 0,                                                    
          "is_aggregate": 1                                             
        }                                                               
      }                                                                 
    }                                                                   
  }                                                                     
}                                                                       
<?xml version="1.0" encoding="ISO-8859-1"?>                                 
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:mcm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <hardware>                                                                                                 
    <proxy>                                                                                                   
     <layer-3>                                                                                                
      <counters>                                                                                              
       <brief>                                                                                                
        <__readonly__>                                                                                        
         <TABLE_mod_cntrs>                                                                                    
          <ROW_mod_cntrs>                                                                                     
           <d_mod_num>0</d_mod_num>                                                                           
           <is_total_of_all_mod>1</is_total_of_all_mod>                                                       
           <TABLE_memb_cntrs>                                                                                 
            <ROW_memb_cntrs>                                                                                  
             <member_str></member_str>                                                                        
             <pkts>0</pkts>                                                                                   
             <rate>0</rate>                                                                                   
             <is_aggregate>1</is_aggregate>                                                                   
            </ROW_memb_cntrs>                                                                                 
           </TABLE_memb_cntrs>                                                                                
          </ROW_mod_cntrs>                                                                                    
         </TABLE_mod_cntrs>                                                                                   
        </__readonly__>                                                                                       
       </brief>                                                                                               
      </counters>                                                                                             
     </layer-3>                                                                                               
    </proxy>                                                                                                  
   </hardware>                                                                                                
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>     

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show hardware proxy layer-3 counters brief

Summary:

Proxy packets sent by all F-series module:

Router Interfaces1 Tx-Pkts Tx-Rate (pkts/sec approx.)

show hardware proxy layer-3 counters detail

show hardware proxy layer-3 counters detail 
 
import requests
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 hardware proxy layer-3 counters detail”,
  "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)
{                                                                        
  "TABLE_mod_cntrs": {                                                   
    "ROW_mod_cntrs": [                                                   
      {                                                                  
        "d_mod_num": 15,                                                 
        "is_total_of_all_mod": 0,                                        
        "TABLE_memb_cntrs": {                                            
          "ROW_memb_cntrs": {                                            
            "member_str": null,                                          
            "pkts": 0,                                                   
            "rate": 0,                                                   
            "is_aggregate": 1                                            
          }                                                              
        }                                                                
      },                                                                 
      {                                                                  
        "d_mod_num": 7,                                                  
        "is_total_of_all_mod": 0,                                        
        "TABLE_memb_cntrs": {                                            
          "ROW_memb_cntrs": {                                            
            "member_str": null,                                          
            "pkts": 0,                                                   
            "rate": 0,                                                   
            "is_aggregate": 1                                            
          }
        }
      },
      {
        "d_mod_num": 8,
        "is_total_of_all_mod": 0,
        "TABLE_memb_cntrs": {
          "ROW_memb_cntrs": {
            "member_str": null,
            "pkts": 0,
            "rate": 0,
            "is_aggregate": 1
          }
        }
      },
      {
        "d_mod_num": 0,
        "is_total_of_all_mod": 1,
        "TABLE_memb_cntrs": {
          "ROW_memb_cntrs": {
            "member_str": null,
            "pkts": 0,
            "rate": 0,
            "is_aggregate": 1
          }
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                            
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:mcm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <hardware>                                                                                                 
    <proxy>                                                                                                   
     <layer-3>                                                                                                
      <counters>                                                                                              
       <detail>                                                                                               
        <__readonly__>                                                                                        
         <TABLE_mod_cntrs>                                                                                    
          <ROW_mod_cntrs>                                                                                     
           <d_mod_num>15</d_mod_num>                                                                          
           <is_total_of_all_mod>0</is_total_of_all_mod>                                                       
           <TABLE_memb_cntrs>                                                                                 
            <ROW_memb_cntrs>                                                                                  
             <member_str></member_str>                                                                        
             <pkts>0</pkts>                                                                                   
             <rate>0</rate>                                                                                   
             <is_aggregate>1</is_aggregate>                                                                   
            </ROW_memb_cntrs>                                                                                 
           </TABLE_memb_cntrs>                                                                                
          </ROW_mod_cntrs>                                                                                    
          <ROW_mod_cntrs>                                                                                     
           <d_mod_num>7</d_mod_num>                                                                           
           <is_total_of_all_mod>0</is_total_of_all_mod>                                                       
           <TABLE_memb_cntrs>                                                                                 
            <ROW_memb_cntrs>                                                                                  
             <member_str></member_str>                                                                        
             <pkts>0</pkts>                                                                                   
             <rate>0</rate>                                                                                   
             <is_aggregate>1</is_aggregate>                                                                   
            </ROW_memb_cntrs>                                                                                 
           </TABLE_memb_cntrs>                                                                                
          </ROW_mod_cntrs>                                                                                    
          <ROW_mod_cntrs>                                                                                     
           <d_mod_num>8</d_mod_num>                                                                           
           <is_total_of_all_mod>0</is_total_of_all_mod>                                                       
           <TABLE_memb_cntrs>                                                                                 
            <ROW_memb_cntrs>                                                                                  
             <member_str></member_str>                                                                        
             <pkts>0</pkts>                                                                                   
             <rate>0</rate>                                                                                   
             <is_aggregate>1</is_aggregate>                                                                   
            </ROW_memb_cntrs>                                                                                 
           </TABLE_memb_cntrs>                                                                                
          </ROW_mod_cntrs>                                                                                    
          <ROW_mod_cntrs>                                                                                     
           <d_mod_num>0</d_mod_num>                                                                           
           <is_total_of_all_mod>1</is_total_of_all_mod>                                                       
           <TABLE_memb_cntrs>                                                                                 
            <ROW_memb_cntrs>                                                                                  
             <member_str></member_str>                                                                        
             <pkts>0</pkts>                                                                                   
             <rate>0</rate>                                                                                   
             <is_aggregate>1</is_aggregate>                                                                   
            </ROW_memb_cntrs>                                                                                 
           </TABLE_memb_cntrs>                                                                                
          </ROW_mod_cntrs>                                                                                    
         </TABLE_mod_cntrs>                                                                                   
        </__readonly__>                                                                                       
       </detail>                                                                                              
      </counters>                                                                                             
     </layer-3>                                                                                               
    </proxy>                                                                                                  
   </hardware>                                                                                                
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>  

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show hardware proxy layer-3 counters detail

Proxy packets sent by F-series module: 7

Router Interfaces1 Tx-Pkts Tx-Rate (pkts/sec approx.)

Proxy packets sent by F-series module: 15

Router Interfaces1 Tx-Pkts Tx-Rate (pkts/sec approx.)

Proxy packets sent by F-series module: 8

Router Interfaces1 Tx-Pkts Tx-Rate (pkts/sec approx.)

Summary:

Proxy packets sent by all F-series module:

Router Interfaces1 Tx-Pkts Tx-Rate (pkts/sec approx.)

show hardware proxy layer-3 detail

show hardware proxy layer-3 detail
 
import requests
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 hardware proxy layer-3 detail”,
  "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)
{
  "info_type": 2,
  "print_header": 1,
  "global_information": {
    "num_l2_only_modules": 0,
    "l2_only_modules_str": null,
    "num_proxy_l3_modules": 0,
    "proxy_l3_modules_str": null,
    "num_forwarders": 0,
    "num_replicators": 0,
    "repl_rebal_mode": "Manual"
  },
  "eor": 1
}
<?xml version="1.0" encoding="ISO-8859-1"?>                   
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:mcm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <hardware>                                                                                                 
    <proxy>                                                                                                   
     <layer-3>                                                                                                
      <detail>                                                                                                
       <__readonly__>                                                                                         
        <info_type>2</info_type>                                                                              
        <print_header>1</print_header>                                                                        
        <global_information>                                                                                  
         <num_l2_only_modules>0</num_l2_only_modules>                                                         
         <l2_only_modules_str></l2_only_modules_str>                                                          
         <num_proxy_l3_modules>0</num_proxy_l3_modules>                                                       
         <proxy_l3_modules_str></proxy_l3_modules_str>
         <num_forwarders>0</num_forwarders>
         <num_replicators>0</num_replicators>
         <repl_rebal_mode>Manual</repl_rebal_mode>
        </global_information>
        <eor>1</eor>
       </__readonly__>
      </detail>
     </layer-3>
    </proxy>
   </hardware>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware proxy layer-3 detail**

Global Information:
        Layer-2 only Modules: Count: 0, Slot: 
        Layer-3 Modules supporting proxy layer-3: Count: 0, Slot: 

    Replication Rebalance Mode:             Manual
    Number of proxy layer-3 forwarders:     0     
    Number of proxy layer-3 replicators:    0     

show environment clock

show environment clock 
 
import requests
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 environment clock”,
  "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)
{                                                  
  "TABLE_clockinfo": {                             
    "ROW_clockinfo": [                             
      {                                            
        "clockname": "A",                          
        "clkmodel": "Clock Module",                
        "clkhwver": "--",                          
        "clkstatus": "NotSupported",               
        "act_standby": "None"                      
      },                                           
      {                                            
        "clockname": "B",                          
        "clkmodel": "Clock Module",                
        "clkhwver": "--",                          
        "clkstatus": "NotSupported",               
        "act_standby": "None"                      
      }                                            
    ]                                              
  }                                                
}              
<?xml version="1.0" encoding="ISO-8859-1"?>                      
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <environment>                                                                                              
    <clock>                                                                                                   
     <__readonly__>                                                                                           
      <TABLE_clockinfo>                                                                                       
       <ROW_clockinfo>                                                                                        
        <clockname>A</clockname>                                                                              
        <clkmodel>Clock Module</clkmodel>                                                                     
        <clkhwver>--</clkhwver>                                                                               
        <clkstatus>NotSupported</clkstatus>                                                                   
        <act_standby>None</act_standby>                                                                       
       </ROW_clockinfo>                                                                                       
       <ROW_clockinfo>                                                                                        
        <clockname>B</clockname>                                                                              
        <clkmodel>Clock Module</clkmodel>                                                                     
        <clkhwver>--</clkhwver>                                                                               
        <clkstatus>NotSupported</clkstatus>                                                                   
        <act_standby>None</act_standby>                                                                       
       </ROW_clockinfo>                                                                                       
      </TABLE_clockinfo>                                                                                      
     </__readonly__>                                                                                          
    </clock>                                                                                                  
   </environment>                                                                                             
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>   

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show environment clock

Clock:                                       

Clock Model Hw Status

A Clock Module -- NotSupported/None B Clock Module -- NotSupported/None

show environment fan

show environment fan
 
import requests
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 environment fan”,
  "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)
{                                                
  "fandetails": {                                
    "TABLE_faninfo": {                           
      "ROW_faninfo": [                           
        {                                        
          "fanname": "Fan1(sys_fan1)",           
          "fanmodel": "N77-C7718-FAN-2",         
          "fanhwver": "0.100",                   
          "fanstatus": "Ok",                     
          "failfanlet": null                     
        },                                       
        {                                        
          "fanname": "Fan2(sys_fan2)",           
          "fanmodel": "N77-C7718-FAN-2",         
          "fanhwver": "0.100",                   
          "fanstatus": "Ok",                     
          "failfanlet": null                     
        },                                       
        {                                        
          "fanname": "Fan3(sys_fan3)",           
          "fanmodel": "N77-C7718-FAN-2",         
          "fanhwver": "0.100",                   
          "fanstatus": "Ok",                     
          "failfanlet": null                     
        },                                       
        {                                        
          "fanname": "Fan_in_PS1",               
          "fanmodel": "--",                      
          "fanhwver": "--",                      
          "fanstatus": "Absent"                  
        },                                       
        {                                        
          "fanname": "Fan_in_PS2",               
          "fanmodel": "--",                      
          "fanhwver": "--",                      
          "fanstatus": "Ok"                      
        },                                       
        {                                        
          "fanname": "Fan_in_PS3",               
          "fanmodel": "--",                      
          "fanhwver": "--",                      
          "fanstatus": "Ok"                      
        },                                       
        {                                        
          "fanname": "Fan_in_PS4",               
          "fanmodel": "--",                      
          "fanhwver": "--",                      
          "fanstatus": "Absent"                  
        },                                       
        {                                        
          "fanname": "Fan_in_PS5",               
          "fanmodel": "--",                      
          "fanhwver": "--",                      
          "fanstatus": "Absent"                  
        },                                       
        {                                        
          "fanname": "Fan_in_PS6",               
          "fanmodel": "--",                      
          "fanhwver": "--",                      
          "fanstatus": "Ok"                      
        },                                       
        {                                        
          "fanname": "Fan_in_PS7",               
          "fanmodel": "--",                      
          "fanhwver": "--",                      
          "fanstatus": "Absent"                  
        },                                       
        {                                        
          "fanname": "Fan_in_PS8",               
          "fanmodel": "--",                      
          "fanhwver": "--",                      
          "fanstatus": "Absent"                  
        },                                       
        {                                        
          "fanname": "Fan_in_PS9",               
          "fanmodel": "--",                      
          "fanhwver": "--",                      
          "fanstatus": "Absent"                  
        },                                       
        {                                        
          "fanname": "Fan_in_PS10",              
          "fanmodel": "--",                      
          "fanhwver": "--",                      
          "fanstatus": "Absent"                  
        },                                       
        {                                        
          "fanname": "Fan_in_PS11",              
          "fanmodel": "--",                      
          "fanhwver": "--",                      
          "fanstatus": "Absent"                  
        },                                       
        {                                        
          "fanname": "Fan_in_PS12",              
          "fanmodel": "--",                      
          "fanhwver": "--",                      
          "fanstatus": "Absent"                  
        },                                       
        {                                        
          "fanname": "Fan_in_PS13",              
          "fanmodel": "--",                      
          "fanhwver": "--",                      
          "fanstatus": "Shutdown"                
        },                                       
        {                                        
          "fanname": "Fan_in_PS14",              
          "fanmodel": "--",                      
          "fanhwver": "--",                      
          "fanstatus": "Shutdown"                
        },                                       
        {                                        
          "fanname": "Fan_in_PS15",              
          "fanmodel": "--",                      
          "fanhwver": "--",                      
          "fanstatus": "Shutdown"                
        },                                       
        {                                        
          "fanname": "Fan_in_PS16",              
          "fanmodel": "--",                      
          "fanhwver": "--",                      
          "fanstatus": "Absent"                  
        }                                        
      ]                                          
    },                                           
    "TABLE_fan_zone_speed": {                    
      "ROW_fan_zone_speed": {                    
        "zone": "1",                             
        "speed": "40.78(0x68)"                   
      }                                          
    }                                            
  }                                              
}       
<?xml version="1.0" encoding="ISO-8859-1"?>                    
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <environment>                                                                                              
    <fan>                                                                                                     
     <__readonly__>                                                                                           
      <fandetails>                                                                                            
       <TABLE_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan1(sys_fan1)</fanname>                                                                    
         <fanmodel>N77-C7718-FAN-2</fanmodel>                                                                 
         <fanhwver>0.100</fanhwver>                                                                           
         <fanstatus>Ok</fanstatus>                                                                            
         <failfanlet> </failfanlet>                                                                           
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan2(sys_fan2)</fanname>                                                                    
         <fanmodel>N77-C7718-FAN-2</fanmodel>                                                                 
         <fanhwver>0.100</fanhwver>                                                                           
         <fanstatus>Ok</fanstatus>                                                                            
         <failfanlet> </failfanlet>                                                                           
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan3(sys_fan3)</fanname>                                                                    
         <fanmodel>N77-C7718-FAN-2</fanmodel>                                                                 
         <fanhwver>0.100</fanhwver>                                                                           
         <fanstatus>Ok</fanstatus>                                                                            
         <failfanlet> </failfanlet>                                                                           
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan_in_PS1</fanname>                                                                        
         <fanmodel>--</fanmodel>                                                                              
         <fanhwver>--</fanhwver>                                                                              
         <fanstatus>Absent</fanstatus>                                                                        
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan_in_PS2</fanname>                                                                        
         <fanmodel>--</fanmodel>                                                                              
         <fanhwver>--</fanhwver>                                                                              
         <fanstatus>Ok</fanstatus>                                                                            
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan_in_PS3</fanname>                                                                        
         <fanmodel>--</fanmodel>                                                                              
         <fanhwver>--</fanhwver>                                                                              
         <fanstatus>Ok</fanstatus>                                                                            
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan_in_PS4</fanname>                                                                        
         <fanmodel>--</fanmodel>                                                                              
         <fanhwver>--</fanhwver>                                                                              
         <fanstatus>Absent</fanstatus>                                                                        
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan_in_PS5</fanname>                                                                        
         <fanmodel>--</fanmodel>                                                                              
         <fanhwver>--</fanhwver>                                                                              
         <fanstatus>Absent</fanstatus>                                                                        
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan_in_PS6</fanname>                                                                        
         <fanmodel>--</fanmodel>                                                                              
         <fanhwver>--</fanhwver>                                                                              
         <fanstatus>Ok</fanstatus>                                                                            
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan_in_PS7</fanname>                                                                        
         <fanmodel>--</fanmodel>                                                                              
         <fanhwver>--</fanhwver>                                                                              
         <fanstatus>Absent</fanstatus>                                                                        
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan_in_PS8</fanname>                                                                        
         <fanmodel>--</fanmodel>                                                                              
         <fanhwver>--</fanhwver>                                                                              
         <fanstatus>Absent</fanstatus>                                                                        
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan_in_PS9</fanname>                                                                        
         <fanmodel>--</fanmodel>                                                                              
         <fanhwver>--</fanhwver>                                                                              
         <fanstatus>Absent</fanstatus>                                                                        
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan_in_PS10</fanname>                                                                       
         <fanmodel>--</fanmodel>                                                                              
         <fanhwver>--</fanhwver>                                                                              
         <fanstatus>Absent</fanstatus>                                                                        
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan_in_PS11</fanname>                                                                       
         <fanmodel>--</fanmodel>                                                                              
         <fanhwver>--</fanhwver>                                                                              
         <fanstatus>Absent</fanstatus>                                                                        
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan_in_PS12</fanname>                                                                       
         <fanmodel>--</fanmodel>                                                                              
         <fanhwver>--</fanhwver>                                                                              
         <fanstatus>Absent</fanstatus>                                                                        
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan_in_PS13</fanname>                                                                       
         <fanmodel>--</fanmodel>                                                                              
         <fanhwver>--</fanhwver>                                                                              
         <fanstatus>Shutdown</fanstatus>                                                                      
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan_in_PS14</fanname>                                                                       
         <fanmodel>--</fanmodel>                                                                              
         <fanhwver>--</fanhwver>                                                                              
         <fanstatus>Shutdown</fanstatus>                                                                      
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan_in_PS15</fanname>                                                                       
         <fanmodel>--</fanmodel>                                                                              
         <fanhwver>--</fanhwver>                                                                              
         <fanstatus>Shutdown</fanstatus>                                                                      
        </ROW_faninfo>                                                                                        
        <ROW_faninfo>                                                                                         
         <fanname>Fan_in_PS16</fanname>                                                                       
         <fanmodel>--</fanmodel>                                                                              
         <fanhwver>--</fanhwver>                                                                              
         <fanstatus>Absent</fanstatus>                                                                        
        </ROW_faninfo>                                                                                        
       </TABLE_faninfo>                                                                                       
       <TABLE_fan_zone_speed>                                                                                 
        <ROW_fan_zone_speed>                                                                                  
         <zone>1</zone>                                                                                       
         <speed>40.78(0x68)</speed>                                                                           
        </ROW_fan_zone_speed>                                                                                 
       </TABLE_fan_zone_speed>                                                                                
      </fandetails>                                                                                           
     </__readonly__>                                                                                          
    </fan>                                                                                                    
   </environment>                                                                                             
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>      

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show environment fan

Fan:                                       

Fan Model Hw Status

Fan1(sys_fan1) N77-C7718-FAN-2 0.100 Ok
Fan2(sys_fan2) N77-C7718-FAN-2 0.100 Ok
Fan3(sys_fan3) N77-C7718-FAN-2 0.100 Ok
Fan_in_PS1 -- -- Absent
Fan_in_PS2 -- -- Ok
Fan_in_PS3 -- -- Ok
Fan_in_PS4 -- -- Absent
Fan_in_PS5 -- -- Absent
Fan_in_PS6 -- -- Ok
Fan_in_PS7 -- -- Absent
Fan_in_PS8 -- -- Absent
Fan_in_PS9 -- -- Absent
Fan_in_PS10 -- -- Absent
Fan_in_PS11 -- -- Absent
Fan_in_PS12 -- -- Absent
Fan_in_PS13 -- -- Shutdown
Fan_in_PS14 -- -- Shutdown
Fan_in_PS15 -- -- Shutdown
Fan_in_PS16 -- -- Absent
Fan Zone Speed %(Hex): Zone 1: 40.78(0x68)

show environment power

show environment power
 
import requests
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 environment power”,
  "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)
{                                                  
  "powersup": {                                    
    "voltage_level": 50,                           
    "TABLE_psinfo": {                              
      "ROW_psinfo": [                              
        {                                          
          "psnum": 1,                              
          "psmodel": "------------",               
          "actual_out": "0 W",                     
          "tot_capa": "0 W",                       
          "ps_status": "Absent"                    
        },                                         
        {                                          
          "psnum": 2,                              
          "psmodel": "N7K-AC-3KW",                 
          "actual_out": "1314 W",                  
          "tot_capa": "3000 W",                    
          "ps_status": "Ok"                        
        },                                         
        {                                          
          "psnum": 3,                              
          "psmodel": "N7K-AC-3KW",                 
          "actual_out": "1300 W",                  
          "tot_capa": "3000 W",                    
          "ps_status": "Ok"                        
        },                                         
        {                                          
          "psnum": 4,                              
          "psmodel": "------------",               
          "actual_out": "0 W",                     
          "tot_capa": "0 W",                       
          "ps_status": "Absent"                    
        },                                         
        {                                          
          "psnum": 5,                              
          "psmodel": "------------",               
          "actual_out": "0 W",                     
          "tot_capa": "0 W",                       
          "ps_status": "Absent"                    
        },                                         
        {                                          
          "psnum": 6,                              
          "psmodel": "N7K-AC-3KW",                 
          "actual_out": "1290 W",                  
          "tot_capa": "3000 W",                    
          "ps_status": "Ok"                        
        },                                         
        {                                          
          "psnum": 7,                              
          "psmodel": "------------",               
          "actual_out": "0 W",                     
          "tot_capa": "0 W",                       
          "ps_status": "Absent"                    
        },                                         
        {                                          
          "psnum": 8,                              
          "psmodel": "------------",               
          "actual_out": "0 W",                     
          "tot_capa": "0 W",                       
          "ps_status": "Absent"                    
        },                                         
        {                                          
          "psnum": 9,                              
          "psmodel": "------------",               
          "actual_out": "0 W",                     
          "tot_capa": "0 W",                       
          "ps_status": "Absent"                    
        },                                         
        {                                          
          "psnum": 10,                             
          "psmodel": "------------",               
          "actual_out": "0 W",                     
          "tot_capa": "0 W",                       
          "ps_status": "Absent"                    
        },                                         
        {                                          
          "psnum": 11,                             
          "psmodel": "------------",               
          "actual_out": "0 W",                     
          "tot_capa": "0 W",                       
          "ps_status": "Absent"                    
        },                                         
        {                                          
          "psnum": 12,                             
          "psmodel": "------------",               
          "actual_out": "0 W",                     
          "tot_capa": "0 W",                       
          "ps_status": "Absent"                    
        },                                         
        {                                          
          "psnum": 13,                             
          "psmodel": "N77-AC-3KW",                 
          "actual_out": "0 W",                     
          "tot_capa": "0 W",                       
          "ps_status": "Shutdown"                  
        },                                         
        {                                          
          "psnum": 14,                             
          "psmodel": "N77-AC-3KW",                 
          "actual_out": "0 W",                     
          "tot_capa": "0 W",                       
          "ps_status": "Shutdown"                  
        },                                         
        {                                          
          "psnum": 15,                             
          "psmodel": "N77-AC-3KW",                 
          "actual_out": "0 W",                     
          "tot_capa": "0 W",                       
          "ps_status": "Shutdown"                  
        },                                         
        {                                          
          "psnum": 16,                             
          "psmodel": "------------",               
          "actual_out": "0 W",                     
          "tot_capa": "0 W",                       
          "ps_status": "Absent"                    
        }                                          
      ]                                            
    },                                             
    "TABLE_mod_pow_info": {                        
      "ROW_mod_pow_info": [                        
        {                                          
          "modnum": "1",                           
          "mod_model": "N77-F248XP-23E",           
          "actual_draw": "N/A",                    
          "allocated": "0 W",                      
          "modstatus": "Powered-Dn"                
        },                                         
        {                                          
          "modnum": "3",                           
          "mod_model": "N77-F436FQ-33",            
          "actual_draw": "N/A",                    
          "allocated": "0 W",                      
          "modstatus": "Powered-Dn"                
        },                                         
        {                                          
          "modnum": "4",                           
          "mod_model": "N77-F324FQ-25",            
          "actual_draw": "N/A",                    
          "allocated": "0 W",                      
          "modstatus": "Powered-Dn"                
        },                                         
        {                                          
          "modnum": "5",                           
          "mod_model": "N77-F348XP-23",            
          "actual_draw": "N/A",                    
          "allocated": "0 W",                      
          "modstatus": "Powered-Dn"                
        },                                         
        {                                          
          "modnum": "6",                           
          "mod_model": "N77-M348XP-32L",           
          "actual_draw": "336 W",                  
          "allocated": "750 W",                    
          "modstatus": "Powered-Up"                
        },                                         
        {                                          
          "modnum": "7",                           
          "mod_model": "N77-F430CQ-36",            
          "actual_draw": "760 W",                  
          "allocated": "850 W",                    
          "modstatus": "Powered-Up"                
        },                                         
        {                                          
          "modnum": "8",                           
          "mod_model": "N77-F430CQ-36",            
          "actual_draw": "778 W",                  
          "allocated": "850 W",                    
          "modstatus": "Powered-Up"                
        },                                         
        {                                          
          "modnum": "9",                           
          "mod_model": "N77-SUP2E",                
          "actual_draw": "139 W",                  
          "allocated": "265 W",                    
          "modstatus": "Powered-Up"                
        },                                         
        {                                          
          "modnum": "10",                          
          "mod_model": "N77-SUP2E",                
          "actual_draw": "142 W",                  
          "allocated": "265 W",                    
          "modstatus": "Powered-Up"                
        },                                         
        {                                          
          "modnum": "11",                          
          "mod_model": "N77-M324FQ-25L",           
          "actual_draw": "N/A",                    
          "allocated": "0 W",                      
          "modstatus": "Powered-Dn"                
        },                                         
        {                                          
          "modnum": "14",                          
          "mod_model": "N77-F324FQ-25",            
          "actual_draw": "N/A",                    
          "allocated": "0 W",                      
          "modstatus": "Powered-Dn"                
        },                                         
        {                                          
          "modnum": "15",                          
          "mod_model": "N77-F430CQ-36",            
          "actual_draw": "601 W",                  
          "allocated": "1000 W",                   
          "modstatus": "Powered-Up"                
        },                                         
        {                                          
          "modnum": "16",                          
          "mod_model": "N77-F430CQ-36",            
          "actual_draw": "N/A",                    
          "allocated": "0 W",                      
          "modstatus": "Pwr-Denied"                
        },                                         
        {                                          
          "modnum": "17",                          
          "mod_model": "N77-F312CK-26",            
          "actual_draw": "N/A",                    
          "allocated": "0 W",                      
          "modstatus": "Powered-Dn"                
        },                                         
        {                                          
          "modnum": "Xb1",                         
          "mod_model": "N77-C7718-FAB-2",          
          "actual_draw": "162 W",                  
          "allocated": "300 W",                    
          "modstatus": "Powered-Up"                
        },                                         
        {                                          
          "modnum": "Xb2",                         
          "mod_model": "N7F-C7018-FAB-2",          
          "actual_draw": "178 W",                  
          "allocated": "300 W",                    
          "modstatus": "Powered-Up"                
        },                                         
        {                                          
          "modnum": "Xb3",                         
          "mod_model": "N77-C7718-FAB-2",          
          "actual_draw": "163 W",                  
          "allocated": "300 W",                    
          "modstatus": "Powered-Up"                
        },                                         
        {                                          
          "modnum": "Xb4",                         
          "mod_model": "N77-C7718-FAB-2",          
          "actual_draw": "159 W",                  
          "allocated": "300 W",                    
          "modstatus": "Powered-Up"                
        },                                         
        {                                          
          "modnum": "Xb5",                         
          "mod_model": "N7F-C7018-FAB-2",          
          "actual_draw": "160 W",                  
          "allocated": "300 W",                    
          "modstatus": "Powered-Up"                
        },                                         
        {                                          
          "modnum": "Xb6",                         
          "mod_model": "N77-C7718-FAB-2",          
          "actual_draw": "152 W",                  
          "allocated": "300 W",                    
          "modstatus": "Powered-Up"                
        },                                         
        {                                          
          "modnum": "fan1",                        
          "mod_model": "N77-C7718-FAN-2",          
          "actual_draw": "82 W",                   
          "allocated": "900 W",
          "modstatus": "Powered-Up"
        },
        {
          "modnum": "fan2",
          "mod_model": "N77-C7718-FAN-2",
          "actual_draw": "82 W",
          "allocated": "900 W",
          "modstatus": "Powered-Up"
        },
        {
          "modnum": "fan3",
          "mod_model": "N77-C7718-FAN-2",
          "actual_draw": "82 W",
          "allocated": "900 W",
          "modstatus": "Powered-Up"
        }
      ]
    },
    "power_summary": {
      "ps_redun_mode": "Non-Redundant(combined)",
      "ps_oper_mode": "Non-Redundant(combined)",
      "tot_pow_capacity": "9000 W",
      "cumulative_power": "9000 W",
      "tot_pow_out_actual_draw": "3904 W",
      "tot_pow_alloc_budgeted": "8480 W",
      "available_pow": "520 W"
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>       
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <environment>                                                                                              
    <power>                                                                                                   
     <__readonly__>                                                                                           
      <powersup>                                                                                              
       <voltage_level>50</voltage_level>                                                                      
       <TABLE_psinfo>                                                                                         
        <ROW_psinfo>                                                                                          
         <psnum>1</psnum>                                                                                     
         <psmodel>------------</psmodel>                                                                      
         <actual_out>    0 W</actual_out>                                                                     
         <tot_capa>    0 W</tot_capa>                                                                         
         <ps_status>Absent</ps_status>                                                                        
        </ROW_psinfo>                                                                                         
        <ROW_psinfo>                                                                                          
         <psnum>2</psnum>                                                                                     
         <psmodel>N7K-AC-3KW</psmodel>                                                                        
         <actual_out> 1312 W</actual_out>                                                                     
         <tot_capa> 3000 W</tot_capa>                                                                         
         <ps_status>Ok</ps_status>                                                                            
        </ROW_psinfo>                                                                                         
        <ROW_psinfo>                                                                                          
         <psnum>3</psnum>                                                                                     
         <psmodel>N7K-AC-3KW</psmodel>                                                                        
         <actual_out> 1297 W</actual_out>                                                                     
         <tot_capa> 3000 W</tot_capa>                                                                         
         <ps_status>Ok</ps_status>                                                                            
        </ROW_psinfo>                                                                                         
        <ROW_psinfo>                                                                                          
         <psnum>4</psnum>                                                                                     
         <psmodel>------------</psmodel>                                                                      
         <actual_out>    0 W</actual_out>                                                                     
         <tot_capa>    0 W</tot_capa>                                                                         
         <ps_status>Absent</ps_status>                                                                        
        </ROW_psinfo>                                                                                         
        <ROW_psinfo>                                                                                          
         <psnum>5</psnum>                                                                                     
         <psmodel>------------</psmodel>                                                                      
         <actual_out>    0 W</actual_out>                                                                     
         <tot_capa>    0 W</tot_capa>                                                                         
         <ps_status>Absent</ps_status>                                                                        
        </ROW_psinfo>                                                                                         
        <ROW_psinfo>                                                                                          
         <psnum>6</psnum>                                                                                     
         <psmodel>N7K-AC-3KW</psmodel>                                                                        
         <actual_out> 1290 W</actual_out>                                                                     
         <tot_capa> 3000 W</tot_capa>                                                                         
         <ps_status>Ok</ps_status>                                                                            
        </ROW_psinfo>                                                                                         
        <ROW_psinfo>                                                                                          
         <psnum>7</psnum>                                                                                     
         <psmodel>------------</psmodel>                                                                      
         <actual_out>    0 W</actual_out>                                                                     
         <tot_capa>    0 W</tot_capa>                                                                         
         <ps_status>Absent</ps_status>                                                                        
        </ROW_psinfo>                                                                                         
        <ROW_psinfo>                                                                                          
         <psnum>8</psnum>                                                                                     
         <psmodel>------------</psmodel>                                                                      
         <actual_out>    0 W</actual_out>                                                                     
         <tot_capa>    0 W</tot_capa>                                                                         
         <ps_status>Absent</ps_status>                                                                        
        </ROW_psinfo>                                                                                         
        <ROW_psinfo>                                                                                          
         <psnum>9</psnum>                                                                                     
         <psmodel>------------</psmodel>                                                                      
         <actual_out>    0 W</actual_out>                                                                     
         <tot_capa>    0 W</tot_capa>                                                                         
         <ps_status>Absent</ps_status>                                                                        
        </ROW_psinfo>                                                                                         
        <ROW_psinfo>                                                                                          
         <psnum>10</psnum>                                                                                    
         <psmodel>------------</psmodel>                                                                      
         <actual_out>    0 W</actual_out>                                                                     
         <tot_capa>    0 W</tot_capa>                                                                         
         <ps_status>Absent</ps_status>                                                                        
        </ROW_psinfo>                                                                                         
        <ROW_psinfo>                                                                                          
         <psnum>11</psnum>                                                                                    
         <psmodel>------------</psmodel>                                                                      
         <actual_out>    0 W</actual_out>                                                                     
         <tot_capa>    0 W</tot_capa>                                                                         
         <ps_status>Absent</ps_status>                                                                        
        </ROW_psinfo>                                                                                         
        <ROW_psinfo>                                                                                          
         <psnum>12</psnum>                                                                                    
         <psmodel>------------</psmodel>                                                                      
         <actual_out>    0 W</actual_out>                                                                     
         <tot_capa>    0 W</tot_capa>                                                                         
         <ps_status>Absent</ps_status>                                                                        
        </ROW_psinfo>                                                                                         
        <ROW_psinfo>                                                                                          
         <psnum>13</psnum>                                                                                    
         <psmodel>N77-AC-3KW</psmodel>                                                                        
         <actual_out>    0 W</actual_out>                                                                     
         <tot_capa>    0 W</tot_capa>                                                                         
         <ps_status>Shutdown</ps_status>                                                                      
        </ROW_psinfo>                                                                                         
        <ROW_psinfo>                                                                                          
         <psnum>14</psnum>                                                                                    
         <psmodel>N77-AC-3KW</psmodel>                                                                        
         <actual_out>    0 W</actual_out>                                                                     
         <tot_capa>    0 W</tot_capa>                                                                         
         <ps_status>Shutdown</ps_status>                                                                      
        </ROW_psinfo>                                                                                         
        <ROW_psinfo>                                                                                          
         <psnum>15</psnum>                                                                                    
         <psmodel>N77-AC-3KW</psmodel>                                                                        
         <actual_out>    0 W</actual_out>                                                                     
         <tot_capa>    0 W</tot_capa>                                                                         
         <ps_status>Shutdown</ps_status>                                                                      
        </ROW_psinfo>                                                                                         
        <ROW_psinfo>                                                                                          
         <psnum>16</psnum>                                                                                    
         <psmodel>------------</psmodel>                                                                      
         <actual_out>    0 W</actual_out>                                                                     
         <tot_capa>    0 W</tot_capa>                                                                         
         <ps_status>Absent</ps_status>                                                                        
        </ROW_psinfo>                                                                                         
       </TABLE_psinfo>                                                                                        
       <TABLE_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>1    </modnum>                                                                               
         <mod_model>N77-F248XP-23E      </mod_model>                                                          
         <actual_draw>  N/A  </actual_draw>                                                                   
         <allocated>    0 W</allocated>                                                                       
         <modstatus>Powered-Dn</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>3    </modnum>                                                                               
         <mod_model>N77-F436FQ-33       </mod_model>                                                          
         <actual_draw>  N/A  </actual_draw>                                                                   
         <allocated>    0 W</allocated>                                                                       
         <modstatus>Powered-Dn</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>4    </modnum>                                                                               
         <mod_model>N77-F324FQ-25       </mod_model>                                                          
         <actual_draw>  N/A  </actual_draw>                                                                   
         <allocated>    0 W</allocated>                                                                       
         <modstatus>Powered-Dn</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>5    </modnum>                                                                               
         <mod_model>N77-F348XP-23       </mod_model>                                                          
         <actual_draw>  N/A  </actual_draw>                                                                   
         <allocated>    0 W</allocated>                                                                       
         <modstatus>Powered-Dn</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>6    </modnum>                                                                               
         <mod_model>N77-M348XP-32L      </mod_model>                                                          
         <actual_draw>  336 W</actual_draw>                                                                   
         <allocated>  750 W</allocated>                                                                       
         <modstatus>Powered-Up</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>7    </modnum>                                                                               
         <mod_model>N77-F430CQ-36       </mod_model>                                                          
         <actual_draw>  760 W</actual_draw>                                                                   
         <allocated>  850 W</allocated>                                                                       
         <modstatus>Powered-Up</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>8    </modnum>                                                                               
         <mod_model>N77-F430CQ-36       </mod_model>                                                          
         <actual_draw>  778 W</actual_draw>                                                                   
         <allocated>  850 W</allocated>                                                                       
         <modstatus>Powered-Up</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>9    </modnum>                                                                               
         <mod_model>N77-SUP2E           </mod_model>                                                          
         <actual_draw>  143 W</actual_draw>                                                                   
         <allocated>  265 W</allocated>                                                                       
         <modstatus>Powered-Up</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>10   </modnum>                                                                               
         <mod_model>N77-SUP2E           </mod_model>                                                          
         <actual_draw>  141 W</actual_draw>                                                                   
         <allocated>  265 W</allocated>                                                                       
         <modstatus>Powered-Up</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>11   </modnum>                                                                               
         <mod_model>N77-M324FQ-25L      </mod_model>                                                          
         <actual_draw>  N/A  </actual_draw>                                                                   
         <allocated>    0 W</allocated>                                                                       
         <modstatus>Powered-Dn</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>14   </modnum>                                                                               
         <mod_model>N77-F324FQ-25       </mod_model>                                                          
         <actual_draw>  N/A  </actual_draw>                                                                   
         <allocated>    0 W</allocated>                                                                       
         <modstatus>Powered-Dn</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>15   </modnum>                                                                               
         <mod_model>N77-F430CQ-36       </mod_model>                                                          
         <actual_draw>  600 W</actual_draw>                                                                   
         <allocated> 1000 W</allocated>                                                                       
         <modstatus>Powered-Up</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>16   </modnum>                                                                               
         <mod_model>N77-F430CQ-36       </mod_model>                                                          
         <actual_draw>  N/A  </actual_draw>                                                                   
         <allocated>    0 W</allocated>                                                                       
         <modstatus>Pwr-Denied</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>17   </modnum>                                                                               
         <mod_model>N77-F312CK-26       </mod_model>                                                          
         <actual_draw>  N/A  </actual_draw>                                                                   
         <allocated>    0 W</allocated>                                                                       
         <modstatus>Powered-Dn</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>Xb1  </modnum>                                                                               
         <mod_model>N77-C7718-FAB-2     </mod_model>                                                          
         <actual_draw>  162 W</actual_draw>                                                                   
         <allocated>  300 W</allocated>                                                                       
         <modstatus>Powered-Up</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>Xb2  </modnum>                                                                               
         <mod_model>N7F-C7018-FAB-2     </mod_model>                                                          
         <actual_draw>  178 W</actual_draw>                                                                   
         <allocated>  300 W</allocated>                                                                       
         <modstatus>Powered-Up</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>Xb3  </modnum>                                                                               
         <mod_model>N77-C7718-FAB-2     </mod_model>                                                          
         <actual_draw>  163 W</actual_draw>                                                                   
         <allocated>  300 W</allocated>                                                                       
         <modstatus>Powered-Up</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>Xb4  </modnum>                                                                               
         <mod_model>N77-C7718-FAB-2     </mod_model>                                                          
         <actual_draw>  159 W</actual_draw>                                                                   
         <allocated>  300 W</allocated>                                                                       
         <modstatus>Powered-Up</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>Xb5  </modnum>                                                                               
         <mod_model>N7F-C7018-FAB-2     </mod_model>                                                          
         <actual_draw>  160 W</actual_draw>                                                                   
         <allocated>  300 W</allocated>                                                                       
         <modstatus>Powered-Up</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>Xb6  </modnum>                                                                               
         <mod_model>N77-C7718-FAB-2     </mod_model>                                                          
         <actual_draw>  152 W</actual_draw>                                                                   
         <allocated>  300 W</allocated>                                                                       
         <modstatus>Powered-Up</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>fan1 </modnum>                                                                               
         <mod_model>N77-C7718-FAN-2     </mod_model>                                                          
         <actual_draw>   82 W</actual_draw>                                                                   
         <allocated>  900 W</allocated>                                                                       
         <modstatus>Powered-Up</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>fan2 </modnum>                                                                               
         <mod_model>N77-C7718-FAN-2     </mod_model>                                                          
         <actual_draw>   82 W</actual_draw>                                                                   
         <allocated>  900 W</allocated>                                                                       
         <modstatus>Powered-Up</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
        <ROW_mod_pow_info>                                                                                    
         <modnum>fan3 </modnum>                                                                               
         <mod_model>N77-C7718-FAN-2     </mod_model>                                                          
         <actual_draw>   82 W</actual_draw>                                                                   
         <allocated>  900 W</allocated>                                                                       
         <modstatus>Powered-Up</modstatus>                                                                    
        </ROW_mod_pow_info>                                                                                   
       </TABLE_mod_pow_info>                                                                                  
       <power_summary>                                                                                        
        <ps_redun_mode>Non-Redundant(combined)</ps_redun_mode>                                                
        <ps_oper_mode>Non-Redundant(combined)</ps_oper_mode>                                                  
        <tot_pow_capacity>   9000 W</tot_pow_capacity>                                                        
        <cumulative_power>   9000 W</cumulative_power>                                                        
        <tot_pow_out_actual_draw>   3899 W</tot_pow_out_actual_draw>                                          
        <tot_pow_alloc_budgeted>   8480 W</tot_pow_alloc_budgeted>                                            
        <available_pow>    520 W</available_pow>                                                              
       </power_summary>                                                                                       
      </powersup>                                                                                             
     </__readonly__>                                                                                          
    </power>                                                                                                  
   </environment>                                                                                             
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>    

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show environment power**

Power Supply:                                
Voltage: 50 Volts                            
Power                              Actual        Total
Supply    Model                    Output     Capacity    Status
                                 (Watts )     (Watts )          
-------  -------------------  -----------  -----------  --------------
1        ------------                 0 W          0 W     Absent     
2        N7K-AC-3KW                1310 W       3000 W     Ok         
3        N7K-AC-3KW                1296 W       3000 W     Ok         
4        ------------                 0 W          0 W     Absent     
5        ------------                 0 W          0 W     Absent     
6        N7K-AC-3KW                1290 W       3000 W     Ok         
7        ------------                 0 W          0 W     Absent     
8        ------------                 0 W          0 W     Absent     
9        ------------                 0 W          0 W     Absent     
10        ------------                 0 W          0 W     Absent    
11        ------------                 0 W          0 W     Absent    
12        ------------                 0 W          0 W     Absent    
13        N77-AC-3KW                   0 W          0 W     Shutdown  
14        N77-AC-3KW                   0 W          0 W     Shutdown  
15        N77-AC-3KW                   0 W          0 W     Shutdown  
16        ------------                 0 W          0 W     Absent    


                              Actual        Power      

Module Model Draw Allocated Status (Watts ) (Watts )


1 N77-F248XP-23E N/A 0 W Powered-Dn
3 N77-F436FQ-33 N/A 0 W Powered-Dn
4 N77-F324FQ-25 N/A 0 W Powered-Dn
5 N77-F348XP-23 N/A 0 W Powered-Dn
6 N77-M348XP-32L 336 W 750 W Powered-Up
7 N77-F430CQ-36 760 W 850 W Powered-Up
8 N77-F430CQ-36 778 W 850 W Powered-Up
9 N77-SUP2E 139 W 265 W Powered-Up
10 N77-SUP2E 141 W 265 W Powered-Up
11 N77-M324FQ-25L N/A 0 W Powered-Dn
14 N77-F324FQ-25 N/A 0 W Powered-Dn
15 N77-F430CQ-36 601 W 1000 W Powered-Up
16 N77-F430CQ-36 N/A 0 W Pwr-Denied
17 N77-F312CK-26 N/A 0 W Powered-Dn
Xb1 N77-C7718-FAB-2 162 W 300 W Powered-Up
Xb2 N7F-C7018-FAB-2 178 W 300 W Powered-Up
Xb3 N77-C7718-FAB-2 163 W 300 W Powered-Up
Xb4 N77-C7718-FAB-2 159 W 300 W Powered-Up
Xb5 N7F-C7018-FAB-2 160 W 300 W Powered-Up
Xb6 N77-C7718-FAB-2 152 W 300 W Powered-Up
fan1 N77-C7718-FAN-2 82 W 900 W Powered-Up
fan2 N77-C7718-FAN-2 82 W 900 W Powered-Up
fan3 N77-C7718-FAN-2 82 W 900 W Powered-Up

N/A - Per module power not available

Power Usage Summary:

Power Supply redundancy mode (configured) Non-Redundant(combined) Power Supply redundancy mode (operational) Non-Redundant(combined)

Total Power Capacity (based on configured mode) 9000 W Total Power of all Inputs (cumulative) 9000 W Total Power Output (actual draw) 3896 W Total Power Allocated (budget) 8480 W Total Power Available for additional modules 520 W

show environment power detail

show environment power detail
 
import requests
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 environment power detail”,
  "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)
{                                                         
  "powersup": {                                           
    "voltage_level": 50,                                  
    "TABLE_psinfo": {                                     
      "ROW_psinfo": [                                     
        {                                                 
          "psnum": 1,                                     
          "psmodel": "------------",                      
          "actual_out": "0 W",                            
          "tot_capa": "0 W",                              
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 2,                                     
          "psmodel": "N7K-AC-3KW",                        
          "actual_out": "1318 W",                         
          "tot_capa": "3000 W",                           
          "ps_status": "Ok"                               
        },                                                
        {                                                 
          "psnum": 3,                                     
          "psmodel": "N7K-AC-3KW",                        
          "actual_out": "1303 W",                         
          "tot_capa": "3000 W",                           
          "ps_status": "Ok"                               
        },                                                
        {                                                 
          "psnum": 4,                                     
          "psmodel": "------------",                      
          "actual_out": "0 W",                            
          "tot_capa": "0 W",                              
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 5,                                     
          "psmodel": "------------",                      
          "actual_out": "0 W",                            
          "tot_capa": "0 W",                              
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 6,                                     
          "psmodel": "N7K-AC-3KW",                        
          "actual_out": "1290 W",                         
          "tot_capa": "3000 W",                           
          "ps_status": "Ok"                               
        },                                                
        {                                                 
          "psnum": 7,                                     
          "psmodel": "------------",                      
          "actual_out": "0 W",                            
          "tot_capa": "0 W",                              
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 8,                                     
          "psmodel": "------------",                      
          "actual_out": "0 W",                            
          "tot_capa": "0 W",                              
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 9,                                     
          "psmodel": "------------",                      
          "actual_out": "0 W",                            
          "tot_capa": "0 W",                              
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 10,                                    
          "psmodel": "------------",                      
          "actual_out": "0 W",                            
          "tot_capa": "0 W",                              
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 11,                                    
          "psmodel": "------------",                      
          "actual_out": "0 W",                            
          "tot_capa": "0 W",                              
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 12,                                    
          "psmodel": "------------",                      
          "actual_out": "0 W",                            
          "tot_capa": "0 W",                              
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 13,                                    
          "psmodel": "N77-AC-3KW",                        
          "actual_out": "0 W",                            
          "tot_capa": "0 W",                              
          "ps_status": "Shutdown"                         
        },                                                
        {                                                 
          "psnum": 14,                                    
          "psmodel": "N77-AC-3KW",                        
          "actual_out": "0 W",                            
          "tot_capa": "0 W",                              
          "ps_status": "Shutdown"                         
        },                                                
        {                                                 
          "psnum": 15,                                    
          "psmodel": "N77-AC-3KW",                        
          "actual_out": "0 W",                            
          "tot_capa": "0 W",                              
          "ps_status": "Shutdown"                         
        },                                                
        {                                                 
          "psnum": 16,                                    
          "psmodel": "------------",                      
          "actual_out": "0 W",                            
          "tot_capa": "0 W",                              
          "ps_status": "Absent"                           
        }                                                 
      ]                                                   
    },                                                    
    "TABLE_mod_pow_info": {                               
      "ROW_mod_pow_info": [                               
        {                                                 
          "modnum": "1",                                  
          "mod_model": "N77-F248XP-23E",                  
          "actual_draw": "N/A",                           
          "allocated": "0 W",                             
          "modstatus": "Powered-Dn"                       
        },                                                
        {                                                 
          "modnum": "3",                                  
          "mod_model": "N77-F436FQ-33",                   
          "actual_draw": "N/A",                           
          "allocated": "0 W",                             
          "modstatus": "Powered-Dn"                       
        },                                                
        {                                                 
          "modnum": "4",                                  
          "mod_model": "N77-F324FQ-25",                   
          "actual_draw": "N/A",                           
          "allocated": "0 W",                             
          "modstatus": "Powered-Dn"                       
        },                                                
        {                                                 
          "modnum": "5",                                  
          "mod_model": "N77-F348XP-23",                   
          "actual_draw": "N/A",                           
          "allocated": "0 W",                             
          "modstatus": "Powered-Dn"                       
        },                                                
        {                                                 
          "modnum": "6",                                  
          "mod_model": "N77-M348XP-32L",                  
          "actual_draw": "336 W",                         
          "allocated": "750 W",                           
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "7",                                  
          "mod_model": "N77-F430CQ-36",                   
          "actual_draw": "761 W",                         
          "allocated": "850 W",                           
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "8",                                  
          "mod_model": "N77-F430CQ-36",                   
          "actual_draw": "778 W",                         
          "allocated": "850 W",                           
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "9",                                  
          "mod_model": "N77-SUP2E",                       
          "actual_draw": "140 W",                         
          "allocated": "265 W",                           
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "10",                                 
          "mod_model": "N77-SUP2E",                       
          "actual_draw": "141 W",                         
          "allocated": "265 W",                           
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "11",                                 
          "mod_model": "N77-M324FQ-25L",                  
          "actual_draw": "N/A",                           
          "allocated": "0 W",                             
          "modstatus": "Powered-Dn"                       
        },                                                
        {                                                 
          "modnum": "14",                                 
          "mod_model": "N77-F324FQ-25",                   
          "actual_draw": "N/A",                           
          "allocated": "0 W",                             
          "modstatus": "Powered-Dn"                       
        },                                                
        {                                                 
          "modnum": "15",                                 
          "mod_model": "N77-F430CQ-36",                   
          "actual_draw": "601 W",                         
          "allocated": "1000 W",                          
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "16",                                 
          "mod_model": "N77-F430CQ-36",                   
          "actual_draw": "N/A",                           
          "allocated": "0 W",                             
          "modstatus": "Pwr-Denied"                       
        },                                                
        {                                                 
          "modnum": "17",                                 
          "mod_model": "N77-F312CK-26",                   
          "actual_draw": "N/A",                           
          "allocated": "0 W",                             
          "modstatus": "Powered-Dn"                       
        },                                                
        {                                                 
          "modnum": "Xb1",                                
          "mod_model": "N77-C7718-FAB-2",                 
          "actual_draw": "162 W",                         
          "allocated": "300 W",                           
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "Xb2",                                
          "mod_model": "N7F-C7018-FAB-2",                 
          "actual_draw": "178 W",                         
          "allocated": "300 W",                           
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "Xb3",                                
          "mod_model": "N77-C7718-FAB-2",                 
          "actual_draw": "163 W",                         
          "allocated": "300 W",                           
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "Xb4",                                
          "mod_model": "N77-C7718-FAB-2",                 
          "actual_draw": "159 W",                         
          "allocated": "300 W",                           
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "Xb5",                                
          "mod_model": "N7F-C7018-FAB-2",                 
          "actual_draw": "160 W",                         
          "allocated": "300 W",                           
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "Xb6",                                
          "mod_model": "N77-C7718-FAB-2",                 
          "actual_draw": "152 W",                         
          "allocated": "300 W",                           
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "fan1",                               
          "mod_model": "N77-C7718-FAN-2",                 
          "actual_draw": "82 W",                          
          "allocated": "900 W",                           
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "fan2",                               
          "mod_model": "N77-C7718-FAN-2",                 
          "actual_draw": "82 W",                          
          "allocated": "900 W",                           
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "fan3",                               
          "mod_model": "N77-C7718-FAN-2",                 
          "actual_draw": "82 W",                          
          "allocated": "900 W",                           
          "modstatus": "Powered-Up"                       
        }                                                 
      ]                                                   
    },                                                    
    "power_summary": {                                    
      "ps_redun_mode": "Non-Redundant(combined)",         
      "ps_oper_mode": "Non-Redundant(combined)",          
      "tot_pow_capacity": "9000 W",                       
      "cumulative_power": "9000 W",                       
      "tot_pow_out_actual_draw": "3911 W",                
      "tot_pow_alloc_budgeted": "8480 W",                 
      "available_pow": "520 W"                            
    },                                                    
    "powersup_detail": {                                  
      "reserve_sup": "530 W",                             
      "reserve_xbar": "1800 W",                           
      "reserve_fan": "2700 W",                            
      "reserve_supxbarfan": "5030 W"                      
    }                                                     
  }                                                       
}   
<?xml version="1.0" encoding="ISO-8859-1"?>              
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <environment>                                                                                              
    <power>                                                                                                   
     <detail>                                                                                                 
      <__readonly__>                                                                                          
       <powersup>                                                                                             
        <voltage_level>50</voltage_level>                                                                     
        <TABLE_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>1</psnum>                                                                                    
          <psmodel>------------</psmodel>                                                                     
          <actual_out>    0 W</actual_out>                                                                    
          <tot_capa>    0 W</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>2</psnum>                                                                                    
          <psmodel>N7K-AC-3KW</psmodel>                                                                       
          <actual_out> 1310 W</actual_out>                                                                    
          <tot_capa> 3000 W</tot_capa>                                                                        
          <ps_status>Ok</ps_status>                                                                           
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>3</psnum>                                                                                    
          <psmodel>N7K-AC-3KW</psmodel>                                                                       
          <actual_out> 1296 W</actual_out>                                                                    
          <tot_capa> 3000 W</tot_capa>                                                                        
          <ps_status>Ok</ps_status>                                                                           
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>4</psnum>                                                                                    
          <psmodel>------------</psmodel>                                                                     
          <actual_out>    0 W</actual_out>                                                                    
          <tot_capa>    0 W</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>5</psnum>                                                                                    
          <psmodel>------------</psmodel>                                                                     
          <actual_out>    0 W</actual_out>                                                                    
          <tot_capa>    0 W</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>6</psnum>                                                                                    
          <psmodel>N7K-AC-3KW</psmodel>                                                                       
          <actual_out> 1290 W</actual_out>                                                                    
          <tot_capa> 3000 W</tot_capa>                                                                        
          <ps_status>Ok</ps_status>                                                                           
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>7</psnum>                                                                                    
          <psmodel>------------</psmodel>                                                                     
          <actual_out>    0 W</actual_out>                                                                    
          <tot_capa>    0 W</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>8</psnum>                                                                                    
          <psmodel>------------</psmodel>                                                                     
          <actual_out>    0 W</actual_out>                                                                    
          <tot_capa>    0 W</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>9</psnum>                                                                                    
          <psmodel>------------</psmodel>                                                                     
          <actual_out>    0 W</actual_out>                                                                    
          <tot_capa>    0 W</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>10</psnum>                                                                                   
          <psmodel>------------</psmodel>                                                                     
          <actual_out>    0 W</actual_out>                                                                    
          <tot_capa>    0 W</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>11</psnum>                                                                                   
          <psmodel>------------</psmodel>                                                                     
          <actual_out>    0 W</actual_out>                                                                    
          <tot_capa>    0 W</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>12</psnum>                                                                                   
          <psmodel>------------</psmodel>                                                                     
          <actual_out>    0 W</actual_out>                                                                    
          <tot_capa>    0 W</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>13</psnum>                                                                                   
          <psmodel>N77-AC-3KW</psmodel>                                                                       
          <actual_out>    0 W</actual_out>                                                                    
          <tot_capa>    0 W</tot_capa>                                                                        
          <ps_status>Shutdown</ps_status>                                                                     
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>14</psnum>                                                                                   
          <psmodel>N77-AC-3KW</psmodel>                                                                       
          <actual_out>    0 W</actual_out>                                                                    
          <tot_capa>    0 W</tot_capa>                                                                        
          <ps_status>Shutdown</ps_status>                                                                     
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>15</psnum>                                                                                   
          <psmodel>N77-AC-3KW</psmodel>                                                                       
          <actual_out>    0 W</actual_out>                                                                    
          <tot_capa>    0 W</tot_capa>                                                                        
          <ps_status>Shutdown</ps_status>                                                                     
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>16</psnum>                                                                                   
          <psmodel>------------</psmodel>                                                                     
          <actual_out>    0 W</actual_out>                                                                    
          <tot_capa>    0 W</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
        </TABLE_psinfo>                                                                                       
        <TABLE_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>1    </modnum>                                                                              
          <mod_model>N77-F248XP-23E      </mod_model>                                                         
          <actual_draw>  N/A  </actual_draw>                                                                  
          <allocated>    0 W</allocated>                                                                      
          <modstatus>Powered-Dn</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>3    </modnum>                                                                              
          <mod_model>N77-F436FQ-33       </mod_model>                                                         
          <actual_draw>  N/A  </actual_draw>                                                                  
          <allocated>    0 W</allocated>                                                                      
          <modstatus>Powered-Dn</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>4    </modnum>                                                                              
          <mod_model>N77-F324FQ-25       </mod_model>                                                         
          <actual_draw>  N/A  </actual_draw>                                                                  
          <allocated>    0 W</allocated>                                                                      
          <modstatus>Powered-Dn</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>5    </modnum>                                                                              
          <mod_model>N77-F348XP-23       </mod_model>                                                         
          <actual_draw>  N/A  </actual_draw>                                                                  
          <allocated>    0 W</allocated>                                                                      
          <modstatus>Powered-Dn</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>6    </modnum>                                                                              
          <mod_model>N77-M348XP-32L      </mod_model>                                                         
          <actual_draw>  336 W</actual_draw>                                                                  
          <allocated>  750 W</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>7    </modnum>                                                                              
          <mod_model>N77-F430CQ-36       </mod_model>                                                         
          <actual_draw>  761 W</actual_draw>                                                                  
          <allocated>  850 W</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>8    </modnum>                                                                              
          <mod_model>N77-F430CQ-36       </mod_model>                                                         
          <actual_draw>  779 W</actual_draw>                                                                  
          <allocated>  850 W</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>9    </modnum>                                                                              
          <mod_model>N77-SUP2E           </mod_model>                                                         
          <actual_draw>  140 W</actual_draw>                                                                  
          <allocated>  265 W</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>10   </modnum>                                                                              
          <mod_model>N77-SUP2E           </mod_model>                                                         
          <actual_draw>  142 W</actual_draw>                                                                  
          <allocated>  265 W</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>11   </modnum>                                                                              
          <mod_model>N77-M324FQ-25L      </mod_model>                                                         
          <actual_draw>  N/A  </actual_draw>                                                                  
          <allocated>    0 W</allocated>                                                                      
          <modstatus>Powered-Dn</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>14   </modnum>                                                                              
          <mod_model>N77-F324FQ-25       </mod_model>                                                         
          <actual_draw>  N/A  </actual_draw>                                                                  
          <allocated>    0 W</allocated>                                                                      
          <modstatus>Powered-Dn</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>15   </modnum>                                                                              
          <mod_model>N77-F430CQ-36       </mod_model>                                                         
          <actual_draw>  601 W</actual_draw>                                                                  
          <allocated> 1000 W</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>16   </modnum>                                                                              
          <mod_model>N77-F430CQ-36       </mod_model>                                                         
          <actual_draw>  N/A  </actual_draw>                                                                  
          <allocated>    0 W</allocated>                                                                      
          <modstatus>Pwr-Denied</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>17   </modnum>                                                                              
          <mod_model>N77-F312CK-26       </mod_model>                                                         
          <actual_draw>  N/A  </actual_draw>                                                                  
          <allocated>    0 W</allocated>                                                                      
          <modstatus>Powered-Dn</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>Xb1  </modnum>                                                                              
          <mod_model>N77-C7718-FAB-2     </mod_model>                                                         
          <actual_draw>  162 W</actual_draw>                                                                  
          <allocated>  300 W</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>Xb2  </modnum>                                                                              
          <mod_model>N7F-C7018-FAB-2     </mod_model>                                                         
          <actual_draw>  178 W</actual_draw>                                                                  
          <allocated>  300 W</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>Xb3  </modnum>                                                                              
          <mod_model>N77-C7718-FAB-2     </mod_model>                                                         
          <actual_draw>  163 W</actual_draw>                                                                  
          <allocated>  300 W</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>Xb4  </modnum>                                                                              
          <mod_model>N77-C7718-FAB-2     </mod_model>                                                         
          <actual_draw>  159 W</actual_draw>                                                                  
          <allocated>  300 W</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>Xb5  </modnum>                                                                              
          <mod_model>N7F-C7018-FAB-2     </mod_model>                                                         
          <actual_draw>  160 W</actual_draw>                                                                  
          <allocated>  300 W</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>Xb6  </modnum>                                                                              
          <mod_model>N77-C7718-FAB-2     </mod_model>                                                         
          <actual_draw>  152 W</actual_draw>                                                                  
          <allocated>  300 W</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>fan1 </modnum>                                                                              
          <mod_model>N77-C7718-FAN-2     </mod_model>                                                         
          <actual_draw>   82 W</actual_draw>                                                                  
          <allocated>  900 W</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>fan2 </modnum>                                                                              
          <mod_model>N77-C7718-FAN-2     </mod_model>                                                         
          <actual_draw>   82 W</actual_draw>                                                                  
          <allocated>  900 W</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>fan3 </modnum>                                                                              
          <mod_model>N77-C7718-FAN-2     </mod_model>                                                         
          <actual_draw>   82 W</actual_draw>                                                                  
          <allocated>  900 W</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
        </TABLE_mod_pow_info>                                                                                 
        <power_summary>                                                                                       
         <ps_redun_mode>Non-Redundant(combined)</ps_redun_mode>                                               
         <ps_oper_mode>Non-Redundant(combined)</ps_oper_mode>                                                 
         <tot_pow_capacity>   9000 W</tot_pow_capacity>                                                       
         <cumulative_power>   9000 W</cumulative_power>                                                       
         <tot_pow_out_actual_draw>   3896 W</tot_pow_out_actual_draw>                                         
         <tot_pow_alloc_budgeted>   8480 W</tot_pow_alloc_budgeted>                                           
         <available_pow>    520 W</available_pow>                                                             
        </power_summary>                                                                                      
        <powersup_detail>                                                                                     
         <reserve_sup>    530 W</reserve_sup>                                                                 
         <reserve_xbar>   1800 W</reserve_xbar>                                                               
         <reserve_fan>   2700 W</reserve_fan>                                                                 
         <reserve_supxbarfan>   5030 W</reserve_supxbarfan>                                                   
        </powersup_detail>                                                                                    
       </powersup>                                                                                            
      </__readonly__>                                                                                         
     </detail>                                                                                                
    </power>                                                                                                  
   </environment>                                                                                             
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>     

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show environment power detail**

Power Supply:                                       
Voltage: 50 Volts                                   
Power                              Actual        Total
Supply    Model                    Output     Capacity    Status
                                 (Watts )     (Watts )          
-------  -------------------  -----------  -----------  --------------
1        ------------                 0 W          0 W     Absent     
2        N7K-AC-3KW                1318 W       3000 W     Ok         
3        N7K-AC-3KW                1300 W       3000 W     Ok         
4        ------------                 0 W          0 W     Absent     
5        ------------                 0 W          0 W     Absent     
6        N7K-AC-3KW                1294 W       3000 W     Ok         
7        ------------                 0 W          0 W     Absent     
8        ------------                 0 W          0 W     Absent     
9        ------------                 0 W          0 W     Absent     
10        ------------                 0 W          0 W     Absent    
11        ------------                 0 W          0 W     Absent    
12        ------------                 0 W          0 W     Absent    
13        N77-AC-3KW                   0 W          0 W     Shutdown  
14        N77-AC-3KW                   0 W          0 W     Shutdown  
15        N77-AC-3KW                   0 W          0 W     Shutdown  
16        ------------                 0 W          0 W     Absent    


                              Actual        Power      

Module Model Draw Allocated Status (Watts ) (Watts )


1 N77-F248XP-23E N/A 0 W Powered-Dn
3 N77-F436FQ-33 N/A 0 W Powered-Dn
4 N77-F324FQ-25 N/A 0 W Powered-Dn
5 N77-F348XP-23 N/A 0 W Powered-Dn
6 N77-M348XP-32L 336 W 750 W Powered-Up
7 N77-F430CQ-36 761 W 850 W Powered-Up
8 N77-F430CQ-36 779 W 850 W Powered-Up
9 N77-SUP2E 147 W 265 W Powered-Up
10 N77-SUP2E 141 W 265 W Powered-Up
11 N77-M324FQ-25L N/A 0 W Powered-Dn
14 N77-F324FQ-25 N/A 0 W Powered-Dn
15 N77-F430CQ-36 600 W 1000 W Powered-Up
16 N77-F430CQ-36 N/A 0 W Pwr-Denied
17 N77-F312CK-26 N/A 0 W Powered-Dn
Xb1 N77-C7718-FAB-2 162 W 300 W Powered-Up
Xb2 N7F-C7018-FAB-2 178 W 300 W Powered-Up
Xb3 N77-C7718-FAB-2 163 W 300 W Powered-Up
Xb4 N77-C7718-FAB-2 159 W 300 W Powered-Up
Xb5 N7F-C7018-FAB-2 160 W 300 W Powered-Up
Xb6 N77-C7718-FAB-2 152 W 300 W Powered-Up
fan1 N77-C7718-FAN-2 82 W 900 W Powered-Up
fan2 N77-C7718-FAN-2 82 W 900 W Powered-Up
fan3 N77-C7718-FAN-2 82 W 900 W Powered-Up

N/A - Per module power not available

Power Usage Summary:

Power Supply redundancy mode (configured) Non-Redundant(combined) Power Supply redundancy mode (operational) Non-Redundant(combined)

Total Power Capacity (based on configured mode) 9000 W Total Power of all Inputs (cumulative) 9000 W Total Power Output (actual draw) 3912 W Total Power Allocated (budget) 8480 W Total Power Available for additional modules 520 W

Power Usage details:

Power reserved for Supervisor(s): 530 W Power reserved for Fabric Module(s): 1800 W Power reserved for Fan Module(s): 2700 W Total power reserved for Sups,Fabrics,Fans: 5030 W

Are all inlet cables connected: Yes

Power supply details:

PS_2 total capacity: 3000 W Voltage:50V Cable 1 capacity: 3000 W
Cable 1 connected to 220v AC
Software-Alarm: No
Hardware alarm_bits reg0: 2,
Reg0 bit1: restarted successfully

PS_3 total capacity: 3000 W Voltage:50V Cable 1 capacity: 3000 W
Cable 1 connected to 220v AC
Software-Alarm: No
Hardware alarm_bits reg0: 2,
Reg0 bit1: restarted successfully

PS_6 total capacity: 3000 W Voltage:50V Cable 1 capacity: 3000 W
Cable 1 connected to 220v AC
Software-Alarm: No
Hardware alarm_bits reg0: 2,
Reg0 bit1: restarted successfully

PS_13 total capacity: 0 W Voltage:50V Cable 1 capacity: 0 W
Cable 1 not connected
Software-Alarm: No
Hardware alarm_bits

PS_14 total capacity: 0 W Voltage:50V Cable 1 capacity: 0 W
Cable 1 connected to 220v AC
Software-Alarm: No
Hardware alarm_bits reg3:13,
Reg3 bit0: 3.4V output under voltage
Reg3 bit1: 50V output1 under voltage
Reg3 bit4: reserved

PS_15 total capacity: 0 W Voltage:50V Cable 1 capacity: 0 W
Cable 1 connected to 220v AC
Software-Alarm: No
Hardware alarm_bits reg3:13,
Reg3 bit0: 3.4V output under voltage
Reg3 bit1: 50V output1 under voltage
Reg3 bit4: reserved

show environment power ampere

show environment power ampere
 
import requests
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 environment power ampere”,
  "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)
{                                                         
  "powersup": {                                           
    "voltage_level": 50,                                  
    "TABLE_psinfo": {                                     
      "ROW_psinfo": [                                     
        {                                                 
          "psnum": 1,                                     
          "psmodel": "------------",                      
          "actual_out": "0.00 A",                         
          "tot_capa": "0.00 A",                           
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 2,                                     
          "psmodel": "N7K-AC-3KW",                        
          "actual_out": "26.36 A",                        
          "tot_capa": "60.00 A",                          
          "ps_status": "Ok"                               
        },                                                
        {                                                 
          "psnum": 3,                                     
          "psmodel": "N7K-AC-3KW",                        
          "actual_out": "26.06 A",                        
          "tot_capa": "60.00 A",                          
          "ps_status": "Ok"                               
        },                                                
        {                                                 
          "psnum": 4,                                     
          "psmodel": "------------",                      
          "actual_out": "0.00 A",                         
          "tot_capa": "0.00 A",                           
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 5,                                     
          "psmodel": "------------",                      
          "actual_out": "0.00 A",                         
          "tot_capa": "0.00 A",                           
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 6,                                     
          "psmodel": "N7K-AC-3KW",                        
          "actual_out": "25.96 A",                        
          "tot_capa": "60.00 A",                          
          "ps_status": "Ok"                               
        },                                                
        {                                                 
          "psnum": 7,                                     
          "psmodel": "------------",                      
          "actual_out": "0.00 A",                         
          "tot_capa": "0.00 A",                           
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 8,                                     
          "psmodel": "------------",                      
          "actual_out": "0.00 A",                         
          "tot_capa": "0.00 A",                           
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 9,                                     
          "psmodel": "------------",                      
          "actual_out": "0.00 A",                         
          "tot_capa": "0.00 A",                           
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 10,                                    
          "psmodel": "------------",                      
          "actual_out": "0.00 A",                         
          "tot_capa": "0.00 A",                           
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 11,                                    
          "psmodel": "------------",                      
          "actual_out": "0.00 A",                         
          "tot_capa": "0.00 A",                           
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 12,                                    
          "psmodel": "------------",                      
          "actual_out": "0.00 A",                         
          "tot_capa": "0.00 A",                           
          "ps_status": "Absent"                           
        },                                                
        {                                                 
          "psnum": 13,                                    
          "psmodel": "N77-AC-3KW",                        
          "actual_out": "0.00 A",                         
          "tot_capa": "0.00 A",                           
          "ps_status": "Shutdown"                         
        },                                                
        {                                                 
          "psnum": 14,                                    
          "psmodel": "N77-AC-3KW",                        
          "actual_out": "0.00 A",                         
          "tot_capa": "0.00 A",                           
          "ps_status": "Shutdown"                         
        },                                                
        {                                                 
          "psnum": 15,                                    
          "psmodel": "N77-AC-3KW",                        
          "actual_out": "0.00 A",                         
          "tot_capa": "0.00 A",                           
          "ps_status": "Shutdown"                         
        },                                                
        {                                                 
          "psnum": 16,                                    
          "psmodel": "------------",                      
          "actual_out": "0.00 A",                         
          "tot_capa": "0.00 A",                           
          "ps_status": "Absent"                           
        }                                                 
      ]                                                   
    },                                                    
    "TABLE_mod_pow_info": {                               
      "ROW_mod_pow_info": [                               
        {                                                 
          "modnum": "1",                                  
          "mod_model": "N77-F248XP-23E",                  
          "actual_draw": "N/A",                           
          "allocated": "0.00 A",                          
          "modstatus": "Powered-Dn"                       
        },                                                
        {                                                 
          "modnum": "3",                                  
          "mod_model": "N77-F436FQ-33",                   
          "actual_draw": "N/A",                           
          "allocated": "0.00 A",                          
          "modstatus": "Powered-Dn"                       
        },                                                
        {                                                 
          "modnum": "4",                                  
          "mod_model": "N77-F324FQ-25",                   
          "actual_draw": "N/A",                           
          "allocated": "0.00 A",                          
          "modstatus": "Powered-Dn"                       
        },                                                
        {                                                 
          "modnum": "5",                                  
          "mod_model": "N77-F348XP-23",                   
          "actual_draw": "N/A",                           
          "allocated": "0.00 A",                          
          "modstatus": "Powered-Dn"                       
        },                                                
        {                                                 
          "modnum": "6",                                  
          "mod_model": "N77-M348XP-32L",                  
          "actual_draw": "6.72 A",                        
          "allocated": "15.00 A",                         
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "7",                                  
          "mod_model": "N77-F430CQ-36",                   
          "actual_draw": "15.20 A",                       
          "allocated": "17.00 A",                         
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "8",                                  
          "mod_model": "N77-F430CQ-36",                   
          "actual_draw": "15.56 A",                       
          "allocated": "17.00 A",                         
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "9",                                  
          "mod_model": "N77-SUP2E",                       
          "actual_draw": "3.08 A",                        
          "allocated": "5.30 A",                          
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "10",                                 
          "mod_model": "N77-SUP2E",                       
          "actual_draw": "2.80 A",                        
          "allocated": "5.30 A",                          
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "11",                                 
          "mod_model": "N77-M324FQ-25L",                  
          "actual_draw": "N/A",                           
          "allocated": "0.00 A",                          
          "modstatus": "Powered-Dn"                       
        },                                                
        {                                                 
          "modnum": "14",                                 
          "mod_model": "N77-F324FQ-25",                   
          "actual_draw": "N/A",                           
          "allocated": "0.00 A",                          
          "modstatus": "Powered-Dn"                       
        },                                                
        {                                                 
          "modnum": "15",                                 
          "mod_model": "N77-F430CQ-36",                   
          "actual_draw": "12.02 A",                       
          "allocated": "20.00 A",                         
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "16",                                 
          "mod_model": "N77-F430CQ-36",                   
          "actual_draw": "N/A",                           
          "allocated": "0.00 A",                          
          "modstatus": "Pwr-Denied"                       
        },                                                
        {                                                 
          "modnum": "17",                                 
          "mod_model": "N77-F312CK-26",                   
          "actual_draw": "N/A",                           
          "allocated": "0.00 A",                          
          "modstatus": "Powered-Dn"                       
        },                                                
        {                                                 
          "modnum": "Xb1",                                
          "mod_model": "N77-C7718-FAB-2",                 
          "actual_draw": "3.24 A",                        
          "allocated": "6.00 A",                          
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "Xb2",                                
          "mod_model": "N7F-C7018-FAB-2",                 
          "actual_draw": "3.56 A",                        
          "allocated": "6.00 A",                          
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "Xb3",                                
          "mod_model": "N77-C7718-FAB-2",                 
          "actual_draw": "3.26 A",                        
          "allocated": "6.00 A",                          
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "Xb4",                                
          "mod_model": "N77-C7718-FAB-2",                 
          "actual_draw": "3.18 A",                        
          "allocated": "6.00 A",                          
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "Xb5",                                
          "mod_model": "N7F-C7018-FAB-2",                 
          "actual_draw": "3.20 A",                        
          "allocated": "6.00 A",                          
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "Xb6",                                
          "mod_model": "N77-C7718-FAB-2",                 
          "actual_draw": "3.04 A",                        
          "allocated": "6.00 A",                          
          "modstatus": "Powered-Up"                       
        },                                                
        {                                                 
          "modnum": "fan1",                               
          "mod_model": "N77-C7718-FAN-2",                 
          "actual_draw": "1.64 A",                        
          "allocated": "18.00 A",
          "modstatus": "Powered-Up"
        },
        {
          "modnum": "fan2",
          "mod_model": "N77-C7718-FAN-2",
          "actual_draw": "1.64 A",
          "allocated": "18.00 A",
          "modstatus": "Powered-Up"
        },
        {
          "modnum": "fan3",
          "mod_model": "N77-C7718-FAN-2",
          "actual_draw": "1.64 A",
          "allocated": "18.00 A",
          "modstatus": "Powered-Up"
        }
      ]
    },
    "power_summary": {
      "ps_redun_mode": "Non-Redundant(combined)",
      "ps_oper_mode": "Non-Redundant(combined)",
      "tot_pow_capacity": "180.00 A",
      "cumulative_power": "180.00 A",
      "tot_pow_out_actual_draw": "78.38 A",
      "tot_pow_alloc_budgeted": "169.60 A",
      "available_pow": "10.40 A"
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>              
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <environment>                                                                                              
    <power>                                                                                                   
     <ampere>                                                                                                 
      <__readonly__>                                                                                          
       <powersup>                                                                                             
        <voltage_level>50</voltage_level>                                                                     
        <TABLE_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>1</psnum>                                                                                    
          <psmodel>------------</psmodel>                                                                     
          <actual_out> 0.00 A</actual_out>                                                                    
          <tot_capa> 0.00 A</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>2</psnum>                                                                                    
          <psmodel>N7K-AC-3KW</psmodel>                                                                       
          <actual_out>26.28 A</actual_out>                                                                    
          <tot_capa>60.00 A</tot_capa>                                                                        
          <ps_status>Ok</ps_status>                                                                           
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>3</psnum>                                                                                    
          <psmodel>N7K-AC-3KW</psmodel>                                                                       
          <actual_out>26.00 A</actual_out>                                                                    
          <tot_capa>60.00 A</tot_capa>                                                                        
          <ps_status>Ok</ps_status>                                                                           
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>4</psnum>                                                                                    
          <psmodel>------------</psmodel>                                                                     
          <actual_out> 0.00 A</actual_out>                                                                    
          <tot_capa> 0.00 A</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>5</psnum>                                                                                    
          <psmodel>------------</psmodel>                                                                     
          <actual_out> 0.00 A</actual_out>                                                                    
          <tot_capa> 0.00 A</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>6</psnum>                                                                                    
          <psmodel>N7K-AC-3KW</psmodel>                                                                       
          <actual_out>25.80 A</actual_out>                                                                    
          <tot_capa>60.00 A</tot_capa>                                                                        
          <ps_status>Ok</ps_status>                                                                           
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>7</psnum>                                                                                    
          <psmodel>------------</psmodel>                                                                     
          <actual_out> 0.00 A</actual_out>                                                                    
          <tot_capa> 0.00 A</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>8</psnum>                                                                                    
          <psmodel>------------</psmodel>                                                                     
          <actual_out> 0.00 A</actual_out>                                                                    
          <tot_capa> 0.00 A</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>9</psnum>                                                                                    
          <psmodel>------------</psmodel>                                                                     
          <actual_out> 0.00 A</actual_out>                                                                    
          <tot_capa> 0.00 A</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>10</psnum>                                                                                   
          <psmodel>------------</psmodel>                                                                     
          <actual_out> 0.00 A</actual_out>                                                                    
          <tot_capa> 0.00 A</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>11</psnum>                                                                                   
          <psmodel>------------</psmodel>                                                                     
          <actual_out> 0.00 A</actual_out>                                                                    
          <tot_capa> 0.00 A</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>12</psnum>                                                                                   
          <psmodel>------------</psmodel>                                                                     
          <actual_out> 0.00 A</actual_out>                                                                    
          <tot_capa> 0.00 A</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>13</psnum>                                                                                   
          <psmodel>N77-AC-3KW</psmodel>                                                                       
          <actual_out> 0.00 A</actual_out>                                                                    
          <tot_capa> 0.00 A</tot_capa>                                                                        
          <ps_status>Shutdown</ps_status>                                                                     
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>14</psnum>                                                                                   
          <psmodel>N77-AC-3KW</psmodel>                                                                       
          <actual_out> 0.00 A</actual_out>                                                                    
          <tot_capa> 0.00 A</tot_capa>                                                                        
          <ps_status>Shutdown</ps_status>                                                                     
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>15</psnum>                                                                                   
          <psmodel>N77-AC-3KW</psmodel>                                                                       
          <actual_out> 0.00 A</actual_out>                                                                    
          <tot_capa> 0.00 A</tot_capa>                                                                        
          <ps_status>Shutdown</ps_status>                                                                     
         </ROW_psinfo>                                                                                        
         <ROW_psinfo>                                                                                         
          <psnum>16</psnum>                                                                                   
          <psmodel>------------</psmodel>                                                                     
          <actual_out> 0.00 A</actual_out>                                                                    
          <tot_capa> 0.00 A</tot_capa>                                                                        
          <ps_status>Absent</ps_status>                                                                       
         </ROW_psinfo>                                                                                        
        </TABLE_psinfo>                                                                                       
        <TABLE_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>1    </modnum>                                                                              
          <mod_model>N77-F248XP-23E      </mod_model>                                                         
          <actual_draw>  N/A  </actual_draw>                                                                  
          <allocated> 0.00 A</allocated>                                                                      
          <modstatus>Powered-Dn</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>3    </modnum>                                                                              
          <mod_model>N77-F436FQ-33       </mod_model>                                                         
          <actual_draw>  N/A  </actual_draw>                                                                  
          <allocated> 0.00 A</allocated>                                                                      
          <modstatus>Powered-Dn</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>4    </modnum>                                                                              
          <mod_model>N77-F324FQ-25       </mod_model>                                                         
          <actual_draw>  N/A  </actual_draw>                                                                  
          <allocated> 0.00 A</allocated>                                                                      
          <modstatus>Powered-Dn</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>5    </modnum>                                                                              
          <mod_model>N77-F348XP-23       </mod_model>                                                         
          <actual_draw>  N/A  </actual_draw>                                                                  
          <allocated> 0.00 A</allocated>                                                                      
          <modstatus>Powered-Dn</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>6    </modnum>                                                                              
          <mod_model>N77-M348XP-32L      </mod_model>                                                         
          <actual_draw> 6.72 A</actual_draw>                                                                  
          <allocated>15.00 A</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>7    </modnum>                                                                              
          <mod_model>N77-F430CQ-36       </mod_model>                                                         
          <actual_draw>15.20 A</actual_draw>                                                                  
          <allocated>17.00 A</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>8    </modnum>                                                                              
          <mod_model>N77-F430CQ-36       </mod_model>                                                         
          <actual_draw>15.58 A</actual_draw>                                                                  
          <allocated>17.00 A</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>9    </modnum>                                                                              
          <mod_model>N77-SUP2E           </mod_model>                                                         
          <actual_draw> 2.90 A</actual_draw>                                                                  
          <allocated> 5.30 A</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>10   </modnum>                                                                              
          <mod_model>N77-SUP2E           </mod_model>                                                         
          <actual_draw> 2.80 A</actual_draw>                                                                  
          <allocated> 5.30 A</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>11   </modnum>                                                                              
          <mod_model>N77-M324FQ-25L      </mod_model>                                                         
          <actual_draw>  N/A  </actual_draw>                                                                  
          <allocated> 0.00 A</allocated>                                                                      
          <modstatus>Powered-Dn</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>14   </modnum>                                                                              
          <mod_model>N77-F324FQ-25       </mod_model>                                                         
          <actual_draw>  N/A  </actual_draw>                                                                  
          <allocated> 0.00 A</allocated>                                                                      
          <modstatus>Powered-Dn</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>15   </modnum>                                                                              
          <mod_model>N77-F430CQ-36       </mod_model>                                                         
          <actual_draw>12.02 A</actual_draw>                                                                  
          <allocated>20.00 A</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>16   </modnum>                                                                              
          <mod_model>N77-F430CQ-36       </mod_model>                                                         
          <actual_draw>  N/A  </actual_draw>                                                                  
          <allocated> 0.00 A</allocated>                                                                      
          <modstatus>Pwr-Denied</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>17   </modnum>                                                                              
          <mod_model>N77-F312CK-26       </mod_model>                                                         
          <actual_draw>  N/A  </actual_draw>                                                                  
          <allocated> 0.00 A</allocated>                                                                      
          <modstatus>Powered-Dn</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>Xb1  </modnum>                                                                              
          <mod_model>N77-C7718-FAB-2     </mod_model>                                                         
          <actual_draw> 3.24 A</actual_draw>                                                                  
          <allocated> 6.00 A</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>Xb2  </modnum>                                                                              
          <mod_model>N7F-C7018-FAB-2     </mod_model>                                                         
          <actual_draw> 3.56 A</actual_draw>                                                                  
          <allocated> 6.00 A</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>Xb3  </modnum>                                                                              
          <mod_model>N77-C7718-FAB-2     </mod_model>                                                         
          <actual_draw> 3.26 A</actual_draw>                                                                  
          <allocated> 6.00 A</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>Xb4  </modnum>                                                                              
          <mod_model>N77-C7718-FAB-2     </mod_model>                                                         
          <actual_draw> 3.18 A</actual_draw>                                                                  
          <allocated> 6.00 A</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>Xb5  </modnum>                                                                              
          <mod_model>N7F-C7018-FAB-2     </mod_model>                                                         
          <actual_draw> 3.20 A</actual_draw>                                                                  
          <allocated> 6.00 A</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>Xb6  </modnum>                                                                              
          <mod_model>N77-C7718-FAB-2     </mod_model>                                                         
          <actual_draw> 3.04 A</actual_draw>                                                                  
          <allocated> 6.00 A</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>fan1 </modnum>                                                                              
          <mod_model>N77-C7718-FAN-2     </mod_model>                                                         
          <actual_draw> 1.64 A</actual_draw>                                                                  
          <allocated>18.00 A</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>fan2 </modnum>                                                                              
          <mod_model>N77-C7718-FAN-2     </mod_model>                                                         
          <actual_draw> 1.64 A</actual_draw>                                                                  
          <allocated>18.00 A</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
         <ROW_mod_pow_info>                                                                                   
          <modnum>fan3 </modnum>                                                                              
          <mod_model>N77-C7718-FAN-2     </mod_model>                                                         
          <actual_draw> 1.64 A</actual_draw>                                                                  
          <allocated>18.00 A</allocated>                                                                      
          <modstatus>Powered-Up</modstatus>                                                                   
         </ROW_mod_pow_info>                                                                                  
        </TABLE_mod_pow_info>                                                                                 
        <power_summary>                                                                                       
         <ps_redun_mode>Non-Redundant(combined)</ps_redun_mode>                                               
         <ps_oper_mode>Non-Redundant(combined)</ps_oper_mode>                                                 
         <tot_pow_capacity> 180.00 A</tot_pow_capacity>                                                       
         <cumulative_power> 180.00 A</cumulative_power>                                                       
         <tot_pow_out_actual_draw>  78.08 A</tot_pow_out_actual_draw>                                         
         <tot_pow_alloc_budgeted> 169.60 A</tot_pow_alloc_budgeted>                                           
         <available_pow>  10.40 A</available_pow>                                                             
        </power_summary>                                                                                      
       </powersup>                                                                                            
      </__readonly__>                                                                                         
     </ampere>                                                                                                
    </power>                                                                                                  
   </environment>                                                                                             
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>      

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch(config)# **show environment power ampere**

Power Supply:                                       
Voltage: 50 Volts                                   
Power                              Actual        Total
Supply    Model                    Output     Capacity    Status
                                 (Ampere)     (Ampere)          
-------  -------------------  -----------  -----------  --------------
1        ------------              0.00 A       0.00 A     Absent     
2        N7K-AC-3KW               26.30 A      60.00 A     Ok         
3        N7K-AC-3KW               25.92 A      60.00 A     Ok         
4        ------------              0.00 A       0.00 A     Absent     
5        ------------              0.00 A       0.00 A     Absent     
6        N7K-AC-3KW               25.80 A      60.00 A     Ok         
7        ------------              0.00 A       0.00 A     Absent     
8        ------------              0.00 A       0.00 A     Absent     
9        ------------              0.00 A       0.00 A     Absent     
10        ------------              0.00 A       0.00 A     Absent    
11        ------------              0.00 A       0.00 A     Absent    
12        ------------              0.00 A       0.00 A     Absent    
13        N77-AC-3KW                0.00 A       0.00 A     Shutdown  
14        N77-AC-3KW                0.00 A       0.00 A     Shutdown  
15        N77-AC-3KW                0.00 A       0.00 A     Shutdown  
16        ------------              0.00 A       0.00 A     Absent    


                              Actual        Power      

Module Model Draw Allocated Status (Ampere) (Ampere)


1 N77-F248XP-23E N/A 0.00 A Powered-Dn
3 N77-F436FQ-33 N/A 0.00 A Powered-Dn
4 N77-F324FQ-25 N/A 0.00 A Powered-Dn
5 N77-F348XP-23 N/A 0.00 A Powered-Dn
6 N77-M348XP-32L 6.72 A 15.00 A Powered-Up
7 N77-F430CQ-36 15.20 A 17.00 A Powered-Up
8 N77-F430CQ-36 15.56 A 17.00 A Powered-Up
9 N77-SUP2E 2.78 A 5.30 A Powered-Up
10 N77-SUP2E 2.80 A 5.30 A Powered-Up
11 N77-M324FQ-25L N/A 0.00 A Powered-Dn
14 N77-F324FQ-25 N/A 0.00 A Powered-Dn
15 N77-F430CQ-36 12.02 A 20.00 A Powered-Up
16 N77-F430CQ-36 N/A 0.00 A Pwr-Denied
17 N77-F312CK-26 N/A 0.00 A Powered-Dn
Xb1 N77-C7718-FAB-2 3.24 A 6.00 A Powered-Up
Xb2 N7F-C7018-FAB-2 3.56 A 6.00 A Powered-Up
Xb3 N77-C7718-FAB-2 3.26 A 6.00 A Powered-Up
Xb4 N77-C7718-FAB-2 3.18 A 6.00 A Powered-Up
Xb5 N7F-C7018-FAB-2 3.20 A 6.00 A Powered-Up
Xb6 N77-C7718-FAB-2 3.04 A 6.00 A Powered-Up
fan1 N77-C7718-FAN-2 1.64 A 18.00 A Powered-Up
fan2 N77-C7718-FAN-2 1.64 A 18.00 A Powered-Up
fan3 N77-C7718-FAN-2 1.64 A 18.00 A Powered-Up

N/A - Per module power not available

Power Usage Summary:

Power Supply redundancy mode (configured) Non-Redundant(combined) Power Supply redundancy mode (operational) Non-Redundant(combined)

Total Power Capacity (based on configured mode) 180.00 A Total Power of all Inputs (cumulative) 180.00 A Total Power Output (actual draw) 78.02 A Total Power Allocated (budget) 169.60 A Total Power Available for additional modules 10.40 A

show environment temperature

show environment temperature
 
import requests
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 environment temperature”,
  "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)
{                                                        
  "TABLE_tempinfo": {                                    
    "ROW_tempinfo": [                                    
      {                                                  
        "tempmod": "6",                                  
        "sensor": "Crossbar1(s1)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "47",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "6",                                  
        "sensor": "Crossbar2(s2)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "55",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "6",                                  
        "sensor": "Arb-muxSn0(s3)",                      
        "majthres": "125",                               
        "minthres": "105",                               
        "curtemp": "54",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "6",                                  
        "sensor": "Arb-muxSn1(s4)",                      
        "majthres": "125",                               
        "minthres": "105",                               
        "curtemp": "55",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "6",                                  
        "sensor": "CPU     (s5)",                        
        "majthres": "125",                               
        "minthres": "105",                               
        "curtemp": "47",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "6",                                  
        "sensor": "CPU     (s6)",                        
        "majthres": "125",                               
        "minthres": "105",                               
        "curtemp": "47",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "6",                                  
        "sensor": "PCISW   (s7)",                        
        "majthres": "110",                               
        "minthres": "100",                               
        "curtemp": "49",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "6",                                  
        "sensor": "L2L3Dev1Sn1(s8)",                     
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "50",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "6",                                  
        "sensor": "L2L3Dev1Sn2(s9)",                     
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "52",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "6",                                  
        "sensor": "L3Lkup1Sn1(s10)",                     
        "majthres": "125",                               
        "minthres": "105",                               
        "curtemp": "56",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "6",                                  
        "sensor": "L3Lkup1Sn2(s11)",                     
        "majthres": "125",                               
        "minthres": "105",                               
        "curtemp": "56",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "6",                                  
        "sensor": "L2L3Dev2Sn1(s12",                     
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "55",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "6",                                  
        "sensor": "L2L3Dev2Sn2(s13",                     
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "57",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "6",                                  
        "sensor": "L3Lkup2Sn1(s14)",                     
        "majthres": "125",                               
        "minthres": "105",                               
        "curtemp": "53",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "6",                                  
        "sensor": "L3Lkup2Sn2(s15)",                     
        "majthres": "125",                               
        "minthres": "105",                               
        "curtemp": "54",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "7",                                  
        "sensor": "Crossbar1(s1)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "72",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "7",                                  
        "sensor": "Crossbar2(s2)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "70",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "7",                                  
        "sensor": "Arb-muxSn0(s3)",                      
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "79",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "7",                                  
        "sensor": "Arb-muxSn1(s4)",                      
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "85",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "7",                                  
        "sensor": "CPU     (s5)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "0",                                  
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "7",                                  
        "sensor": "CPU     (s6)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "0",                                  
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "7",                                  
        "sensor": "L2L3Dev1(s7)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "75",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "7",                                  
        "sensor": "L2L3Dev2(s8)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "64",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "7",                                  
        "sensor": "L2L3Dev3(s9)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "75",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "7",                                  
        "sensor": "L2L3Dev4(s10)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "65",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "7",                                  
        "sensor": "L2L3Dev5(s11)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "50",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "7",                                  
        "sensor": "L2L3Dev6(s12)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "50",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "7",                                  
        "sensor": "L2L3Dev7(s13)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "67",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "7",                                  
        "sensor": "L2L3Dev8(s14)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "73",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "7",                                  
        "sensor": "L2L3Dev9(s15)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "70",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "7",                                  
        "sensor": "L2L3Dev10(s16)",                      
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "74",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "8",                                  
        "sensor": "Crossbar1(s1)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "76",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "8",                                  
        "sensor": "Crossbar2(s2)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "75",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "8",                                  
        "sensor": "Arb-muxSn0(s3)",                      
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "80",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "8",                                  
        "sensor": "Arb-muxSn1(s4)",                      
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "86",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "8",                                  
        "sensor": "CPU     (s5)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "0",                                  
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "8",                                  
        "sensor": "CPU     (s6)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "0",                                  
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "8",                                  
        "sensor": "L2L3Dev1(s7)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "77",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "8",                                  
        "sensor": "L2L3Dev2(s8)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "69",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "8",                                  
        "sensor": "L2L3Dev3(s9)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "78",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "8",                                  
        "sensor": "L2L3Dev4(s10)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "69",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "8",                                  
        "sensor": "L2L3Dev5(s11)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "53",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "8",                                  
        "sensor": "L2L3Dev6(s12)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "53",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "8",                                  
        "sensor": "L2L3Dev7(s13)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "70",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "8",                                  
        "sensor": "L2L3Dev8(s14)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "78",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "8",                                  
        "sensor": "L2L3Dev9(s15)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "71",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "8",                                  
        "sensor": "L2L3Dev10(s16)",                      
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "79",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "9",                                  
        "sensor": "Inlet  (s1)",                         
        "majthres": "60",                                
        "minthres": "42",                                
        "curtemp": "20",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "9",                                  
        "sensor": "Crossbar(s2)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "78",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "9",                                  
        "sensor": "L2L3Dev1(s3)",                        
        "majthres": "125",                               
        "minthres": "110",                               
        "curtemp": "47",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "9",                                  
        "sensor": "Arbiter (s4)",                        
        "majthres": "125",                               
        "minthres": "105",                               
        "curtemp": "58",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "9",                                  
        "sensor": "CPU1CORE1(s5)",                       
        "majthres": "85",                                
        "minthres": "75",                                
        "curtemp": "39",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "9",                                  
        "sensor": "CPU1CORE2(s6)",                       
        "majthres": "85",                                
        "minthres": "75",                                
        "curtemp": "36",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "9",                                  
        "sensor": "CPU1CORE3(s7)",                       
        "majthres": "85",                                
        "minthres": "75",                                
        "curtemp": "40",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "9",                                  
        "sensor": "CPU1CORE4(s8)",                       
        "majthres": "85",                                
        "minthres": "75",                                
        "curtemp": "35",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "9",                                  
        "sensor": "CPU2CORE1(s9)",                       
        "majthres": "85",                                
        "minthres": "75",                                
        "curtemp": "30",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "9",                                  
        "sensor": "CPU2CORE2(s10)",                      
        "majthres": "85",                                
        "minthres": "75",                                
        "curtemp": "26",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "9",                                  
        "sensor": "CPU2CORE3(s11)",                      
        "majthres": "85",                                
        "minthres": "75",                                
        "curtemp": "30",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "9",                                  
        "sensor": "CPU2CORE4(s12)",                      
        "majthres": "85",                                
        "minthres": "75",                                
        "curtemp": "29",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "9",                                  
        "sensor": "DDR3DIMM1(s13)",                      
        "majthres": "95",                                
        "minthres": "85",                                
        "curtemp": "35",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "9",                                  
        "sensor": "DDR3DIMM2(s14)",                      
        "majthres": "95",                                
        "minthres": "85",                                
        "curtemp": "32",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "9",                                  
        "sensor": "DDR3DIMM4(s16)",                      
        "majthres": "95",                                
        "minthres": "85",                                
        "curtemp": "27",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "9",                                  
        "sensor": "DDR3DIMM5(s17)",                      
        "majthres": "95",                                
        "minthres": "85",                                
        "curtemp": "27",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "10",                                 
        "sensor": "Inlet  (s1)",                         
        "majthres": "60",                                
        "minthres": "42",                                
        "curtemp": "24",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "10",                                 
        "sensor": "Crossbar(s2)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "81",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "10",                                 
        "sensor": "L2L3Dev1(s3)",                        
        "majthres": "125",                               
        "minthres": "110",                               
        "curtemp": "55",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "10",                                 
        "sensor": "Arbiter (s4)",                        
        "majthres": "125",                               
        "minthres": "105",                               
        "curtemp": "61",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "10",                                 
        "sensor": "CPU1CORE1(s5)",                       
        "majthres": "85",                                
        "minthres": "75",                                
        "curtemp": "39",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "10",                                 
        "sensor": "CPU1CORE2(s6)",                       
        "majthres": "85",                                
        "minthres": "75",                                
        "curtemp": "37",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "10",                                 
        "sensor": "CPU1CORE3(s7)",                       
        "majthres": "85",                                
        "minthres": "75",                                
        "curtemp": "37",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "10",                                 
        "sensor": "CPU1CORE4(s8)",                       
        "majthres": "85",                                
        "minthres": "75",                                
        "curtemp": "34",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "10",                                 
        "sensor": "CPU2CORE1(s9)",                       
        "majthres": "85",                                
        "minthres": "75",                                
        "curtemp": "26",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "10",                                 
        "sensor": "CPU2CORE2(s10)",                      
        "majthres": "85",                                
        "minthres": "75",                                
        "curtemp": "25",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "10",                                 
        "sensor": "CPU2CORE3(s11)",                      
        "majthres": "85",                                
        "minthres": "75",                                
        "curtemp": "28",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "10",                                 
        "sensor": "CPU2CORE4(s12)",                      
        "majthres": "85",                                
        "minthres": "75",                                
        "curtemp": "24",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "10",                                 
        "sensor": "DDR3DIMM1(s13)",                      
        "majthres": "95",                                
        "minthres": "85",                                
        "curtemp": "32",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "10",                                 
        "sensor": "DDR3DIMM2(s14)",                      
        "majthres": "95",                                
        "minthres": "85",                                
        "curtemp": "31",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "10",                                 
        "sensor": "DDR3DIMM4(s16)",                      
        "majthres": "95",                                
        "minthres": "85",                                
        "curtemp": "27",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "10",                                 
        "sensor": "DDR3DIMM5(s17)",                      
        "majthres": "95",                                
        "minthres": "85",                                
        "curtemp": "27",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "15",                                 
        "sensor": "Crossbar1(s1)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "67",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "15",                                 
        "sensor": "Crossbar2(s2)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "63",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "15",                                 
        "sensor": "Arb-muxSn0(s3)",                      
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "59",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "15",                                 
        "sensor": "Arb-muxSn1(s4)",                      
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "63",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "15",                                 
        "sensor": "CPU     (s5)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "50",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "15",                                 
        "sensor": "CPU     (s6)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "44",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "15",                                 
        "sensor": "L2L3Dev1(s7)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "62",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "15",                                 
        "sensor": "L2L3Dev2(s8)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "59",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "15",                                 
        "sensor": "L2L3Dev3(s9)",                        
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "63",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "15",                                 
        "sensor": "L2L3Dev4(s10)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "59",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "15",                                 
        "sensor": "L2L3Dev5(s11)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "46",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "15",                                 
        "sensor": "L2L3Dev6(s12)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "46",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "15",                                 
        "sensor": "L2L3Dev7(s13)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "59",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "15",                                 
        "sensor": "L2L3Dev8(s14)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "60",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "15",                                 
        "sensor": "L2L3Dev9(s15)",                       
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "59",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "15",                                 
        "sensor": "L2L3Dev10(s16)",                      
        "majthres": "125",                               
        "minthres": "115",                               
        "curtemp": "60",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-1",                             
        "sensor": "Crossbar1(s1)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "54",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-1",                             
        "sensor": "Crossbar2(s2)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "47",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-1",                             
        "sensor": "Crossbar3(s3)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "46",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-1",                             
        "sensor": "Crossbar4(s4)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "52",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-2",                             
        "sensor": "Crossbar1(s1)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "71",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-2",                             
        "sensor": "Crossbar2(s2)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "47",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-2",                             
        "sensor": "Crossbar3(s3)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "56",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-2",                             
        "sensor": "Crossbar4(s4)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "52",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-3",                             
        "sensor": "Crossbar1(s1)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "65",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-3",                             
        "sensor": "Crossbar2(s2)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "46",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-3",                             
        "sensor": "Crossbar3(s3)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "52",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-3",                             
        "sensor": "Crossbar4(s4)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "46",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-4",                             
        "sensor": "Crossbar1(s1)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "68",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-4",                             
        "sensor": "Crossbar2(s2)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "45",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-4",                             
        "sensor": "Crossbar3(s3)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "51",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-4",                             
        "sensor": "Crossbar4(s4)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "48",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-5",                             
        "sensor": "Crossbar1(s1)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "67",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-5",                             
        "sensor": "Crossbar2(s2)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "48",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-5",                             
        "sensor": "Crossbar3(s3)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "60",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-5",                             
        "sensor": "Crossbar4(s4)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "45",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-6",                             
        "sensor": "Crossbar1(s1)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "57",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-6",                             
        "sensor": "Crossbar2(s2)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "48",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-6",                             
        "sensor": "Crossbar3(s3)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "46",                                 
        "alarmstatus": "Ok"                              
      },                                                 
      {                                                  
        "tempmod": "xbar-6",                             
        "sensor": "Crossbar4(s4)",                       
        "majthres": "105",                               
        "minthres": "95",                                
        "curtemp": "51",                                 
        "alarmstatus": "Ok"                              
      }                                                  
    ]                                                    
  }                                                      
}       
<?xml version="1.0" encoding="ISO-8859-1"?>                                    
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <environment>                                                                                              
    <temperature>                                                                                             
     <__readonly__>                                                                                           
      <TABLE_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>6        </tempmod>                                                                          
        <sensor>Crossbar1(s1)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>47</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>6        </tempmod>                                                                          
        <sensor>Crossbar2(s2)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>55</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>6        </tempmod>                                                                          
        <sensor>Arb-muxSn0(s3)</sensor>                                                                       
        <majthres>125 </majthres>                                                                             
        <minthres>105 </minthres>                                                                             
        <curtemp>54</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>6        </tempmod>                                                                          
        <sensor>Arb-muxSn1(s4)</sensor>                                                                       
        <majthres>125 </majthres>                                                                             
        <minthres>105 </minthres>                                                                             
        <curtemp>55</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>6        </tempmod>                                                                          
        <sensor>CPU     (s5)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>105 </minthres>                                                                             
        <curtemp>47</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>6        </tempmod>                                                                          
        <sensor>CPU     (s6)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>105 </minthres>                                                                             
        <curtemp>47</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>6        </tempmod>                                                                          
        <sensor>PCISW   (s7)</sensor>                                                                         
        <majthres>110 </majthres>                                                                             
        <minthres>100 </minthres>                                                                             
        <curtemp>49</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>6        </tempmod>                                                                          
        <sensor>L2L3Dev1Sn1(s8)</sensor>                                                                      
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>50</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>6        </tempmod>                                                                          
        <sensor>L2L3Dev1Sn2(s9)</sensor>                                                                      
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>52</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>6        </tempmod>                                                                          
        <sensor>L3Lkup1Sn1(s10)</sensor>                                                                      
        <majthres>125 </majthres>                                                                             
        <minthres>105 </minthres>                                                                             
        <curtemp>56</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>6        </tempmod>                                                                          
        <sensor>L3Lkup1Sn2(s11)</sensor>                                                                      
        <majthres>125 </majthres>                                                                             
        <minthres>105 </minthres>                                                                             
        <curtemp>56</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>6        </tempmod>                                                                          
        <sensor>L2L3Dev2Sn1(s12</sensor>                                                                      
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>55</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>6        </tempmod>                                                                          
        <sensor>L2L3Dev2Sn2(s13</sensor>                                                                      
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>57</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>6        </tempmod>                                                                          
        <sensor>L3Lkup2Sn1(s14)</sensor>                                                                      
        <majthres>125 </majthres>                                                                             
        <minthres>105 </minthres>                                                                             
        <curtemp>53</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>6        </tempmod>                                                                          
        <sensor>L3Lkup2Sn2(s15)</sensor>                                                                      
        <majthres>125 </majthres>                                                                             
        <minthres>105 </minthres>                                                                             
        <curtemp>54</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>7        </tempmod>                                                                          
        <sensor>Crossbar1(s1)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>72</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>7        </tempmod>                                                                          
        <sensor>Crossbar2(s2)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>70</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>7        </tempmod>                                                                          
        <sensor>Arb-muxSn0(s3)</sensor>                                                                       
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>79</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>7        </tempmod>                                                                          
        <sensor>Arb-muxSn1(s4)</sensor>                                                                       
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>85</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>7        </tempmod>                                                                          
        <sensor>CPU     (s5)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>0 </curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>7        </tempmod>                                                                          
        <sensor>CPU     (s6)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>0 </curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>7        </tempmod>                                                                          
        <sensor>L2L3Dev1(s7)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>75</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>7        </tempmod>                                                                          
        <sensor>L2L3Dev2(s8)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>64</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>7        </tempmod>                                                                          
        <sensor>L2L3Dev3(s9)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>75</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>7        </tempmod>                                                                          
        <sensor>L2L3Dev4(s10)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>65</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>7        </tempmod>                                                                          
        <sensor>L2L3Dev5(s11)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>50</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>7        </tempmod>                                                                          
        <sensor>L2L3Dev6(s12)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>50</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>7        </tempmod>                                                                          
        <sensor>L2L3Dev7(s13)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>67</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>7        </tempmod>                                                                          
        <sensor>L2L3Dev8(s14)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>73</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>7        </tempmod>                                                                          
        <sensor>L2L3Dev9(s15)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>70</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>7        </tempmod>                                                                          
        <sensor>L2L3Dev10(s16)</sensor>                                                                       
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>74</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>8        </tempmod>                                                                          
        <sensor>Crossbar1(s1)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>76</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>8        </tempmod>                                                                          
        <sensor>Crossbar2(s2)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>75</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>8        </tempmod>                                                                          
        <sensor>Arb-muxSn0(s3)</sensor>                                                                       
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>80</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>8        </tempmod>                                                                          
        <sensor>Arb-muxSn1(s4)</sensor>                                                                       
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>86</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>8        </tempmod>                                                                          
        <sensor>CPU     (s5)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>0 </curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>8        </tempmod>                                                                          
        <sensor>CPU     (s6)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>0 </curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>8        </tempmod>                                                                          
        <sensor>L2L3Dev1(s7)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>77</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>8        </tempmod>                                                                          
        <sensor>L2L3Dev2(s8)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>69</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>8        </tempmod>                                                                          
        <sensor>L2L3Dev3(s9)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>78</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>8        </tempmod>                                                                          
        <sensor>L2L3Dev4(s10)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>69</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>8        </tempmod>                                                                          
        <sensor>L2L3Dev5(s11)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>53</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>8        </tempmod>                                                                          
        <sensor>L2L3Dev6(s12)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>53</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>8        </tempmod>                                                                          
        <sensor>L2L3Dev7(s13)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>70</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>8        </tempmod>                                                                          
        <sensor>L2L3Dev8(s14)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>78</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>8        </tempmod>                                                                          
        <sensor>L2L3Dev9(s15)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>71</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>8        </tempmod>                                                                          
        <sensor>L2L3Dev10(s16)</sensor>                                                                       
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>79</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>9        </tempmod>                                                                          
        <sensor>Inlet  (s1)</sensor>                                                                          
        <majthres>60  </majthres>                                                                             
        <minthres>42  </minthres>                                                                             
        <curtemp>20</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>9        </tempmod>                                                                          
        <sensor>Crossbar(s2)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>78</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>9        </tempmod>                                                                          
        <sensor>L2L3Dev1(s3)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>110 </minthres>                                                                             
        <curtemp>47</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>9        </tempmod>                                                                          
        <sensor>Arbiter (s4)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>105 </minthres>                                                                             
        <curtemp>58</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>9        </tempmod>                                                                          
        <sensor>CPU1CORE1(s5)</sensor>                                                                        
        <majthres>85  </majthres>                                                                             
        <minthres>75  </minthres>                                                                             
        <curtemp>39</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>9        </tempmod>                                                                          
        <sensor>CPU1CORE2(s6)</sensor>                                                                        
        <majthres>85  </majthres>                                                                             
        <minthres>75  </minthres>                                                                             
        <curtemp>36</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>9        </tempmod>                                                                          
        <sensor>CPU1CORE3(s7)</sensor>                                                                        
        <majthres>85  </majthres>                                                                             
        <minthres>75  </minthres>                                                                             
        <curtemp>40</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>9        </tempmod>                                                                          
        <sensor>CPU1CORE4(s8)</sensor>                                                                        
        <majthres>85  </majthres>                                                                             
        <minthres>75  </minthres>                                                                             
        <curtemp>35</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>9        </tempmod>                                                                          
        <sensor>CPU2CORE1(s9)</sensor>                                                                        
        <majthres>85  </majthres>                                                                             
        <minthres>75  </minthres>                                                                             
        <curtemp>30</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>9        </tempmod>                                                                          
        <sensor>CPU2CORE2(s10)</sensor>                                                                       
        <majthres>85  </majthres>                                                                             
        <minthres>75  </minthres>                                                                             
        <curtemp>26</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>9        </tempmod>                                                                          
        <sensor>CPU2CORE3(s11)</sensor>                                                                       
        <majthres>85  </majthres>                                                                             
        <minthres>75  </minthres>                                                                             
        <curtemp>30</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>9        </tempmod>                                                                          
        <sensor>CPU2CORE4(s12)</sensor>                                                                       
        <majthres>85  </majthres>                                                                             
        <minthres>75  </minthres>                                                                             
        <curtemp>29</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>9        </tempmod>                                                                          
        <sensor>DDR3DIMM1(s13)</sensor>                                                                       
        <majthres>95  </majthres>                                                                             
        <minthres>85  </minthres>                                                                             
        <curtemp>35</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>9        </tempmod>                                                                          
        <sensor>DDR3DIMM2(s14)</sensor>                                                                       
        <majthres>95  </majthres>                                                                             
        <minthres>85  </minthres>                                                                             
        <curtemp>32</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>9        </tempmod>                                                                          
        <sensor>DDR3DIMM4(s16)</sensor>                                                                       
        <majthres>95  </majthres>                                                                             
        <minthres>85  </minthres>                                                                             
        <curtemp>27</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>9        </tempmod>                                                                          
        <sensor>DDR3DIMM5(s17)</sensor>                                                                       
        <majthres>95  </majthres>                                                                             
        <minthres>85  </minthres>                                                                             
        <curtemp>27</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>10       </tempmod>                                                                          
        <sensor>Inlet  (s1)</sensor>                                                                          
        <majthres>60  </majthres>                                                                             
        <minthres>42  </minthres>                                                                             
        <curtemp>24</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>10       </tempmod>                                                                          
        <sensor>Crossbar(s2)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>81</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>10       </tempmod>                                                                          
        <sensor>L2L3Dev1(s3)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>110 </minthres>                                                                             
        <curtemp>55</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>10       </tempmod>                                                                          
        <sensor>Arbiter (s4)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>105 </minthres>                                                                             
        <curtemp>61</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>10       </tempmod>                                                                          
        <sensor>CPU1CORE1(s5)</sensor>                                                                        
        <majthres>85  </majthres>                                                                             
        <minthres>75  </minthres>                                                                             
        <curtemp>39</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>10       </tempmod>                                                                          
        <sensor>CPU1CORE2(s6)</sensor>                                                                        
        <majthres>85  </majthres>                                                                             
        <minthres>75  </minthres>                                                                             
        <curtemp>37</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>10       </tempmod>                                                                          
        <sensor>CPU1CORE3(s7)</sensor>                                                                        
        <majthres>85  </majthres>                                                                             
        <minthres>75  </minthres>                                                                             
        <curtemp>37</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>10       </tempmod>                                                                          
        <sensor>CPU1CORE4(s8)</sensor>                                                                        
        <majthres>85  </majthres>                                                                             
        <minthres>75  </minthres>                                                                             
        <curtemp>34</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>10       </tempmod>                                                                          
        <sensor>CPU2CORE1(s9)</sensor>                                                                        
        <majthres>85  </majthres>                                                                             
        <minthres>75  </minthres>                                                                             
        <curtemp>26</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>10       </tempmod>                                                                          
        <sensor>CPU2CORE2(s10)</sensor>                                                                       
        <majthres>85  </majthres>                                                                             
        <minthres>75  </minthres>                                                                             
        <curtemp>25</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>10       </tempmod>                                                                          
        <sensor>CPU2CORE3(s11)</sensor>                                                                       
        <majthres>85  </majthres>                                                                             
        <minthres>75  </minthres>                                                                             
        <curtemp>28</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>10       </tempmod>                                                                          
        <sensor>CPU2CORE4(s12)</sensor>                                                                       
        <majthres>85  </majthres>                                                                             
        <minthres>75  </minthres>                                                                             
        <curtemp>24</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>10       </tempmod>                                                                          
        <sensor>DDR3DIMM1(s13)</sensor>                                                                       
        <majthres>95  </majthres>                                                                             
        <minthres>85  </minthres>                                                                             
        <curtemp>32</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>10       </tempmod>                                                                          
        <sensor>DDR3DIMM2(s14)</sensor>                                                                       
        <majthres>95  </majthres>                                                                             
        <minthres>85  </minthres>                                                                             
        <curtemp>31</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>10       </tempmod>                                                                          
        <sensor>DDR3DIMM4(s16)</sensor>                                                                       
        <majthres>95  </majthres>                                                                             
        <minthres>85  </minthres>                                                                             
        <curtemp>27</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>10       </tempmod>                                                                          
        <sensor>DDR3DIMM5(s17)</sensor>                                                                       
        <majthres>95  </majthres>                                                                             
        <minthres>85  </minthres>                                                                             
        <curtemp>27</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>15       </tempmod>                                                                          
        <sensor>Crossbar1(s1)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>67</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>15       </tempmod>                                                                          
        <sensor>Crossbar2(s2)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>63</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>15       </tempmod>                                                                          
        <sensor>Arb-muxSn0(s3)</sensor>                                                                       
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>59</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>15       </tempmod>                                                                          
        <sensor>Arb-muxSn1(s4)</sensor>                                                                       
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>63</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>15       </tempmod>                                                                          
        <sensor>CPU     (s5)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>50</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>15       </tempmod>                                                                          
        <sensor>CPU     (s6)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>44</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>15       </tempmod>                                                                          
        <sensor>L2L3Dev1(s7)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>62</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>15       </tempmod>                                                                          
        <sensor>L2L3Dev2(s8)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>59</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>15       </tempmod>                                                                          
        <sensor>L2L3Dev3(s9)</sensor>                                                                         
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>63</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>15       </tempmod>                                                                          
        <sensor>L2L3Dev4(s10)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>59</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>15       </tempmod>                                                                          
        <sensor>L2L3Dev5(s11)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>46</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>15       </tempmod>                                                                          
        <sensor>L2L3Dev6(s12)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>46</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>15       </tempmod>                                                                          
        <sensor>L2L3Dev7(s13)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>59</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>15       </tempmod>                                                                          
        <sensor>L2L3Dev8(s14)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>60</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>15       </tempmod>                                                                          
        <sensor>L2L3Dev9(s15)</sensor>                                                                        
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>59</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>15       </tempmod>                                                                          
        <sensor>L2L3Dev10(s16)</sensor>                                                                       
        <majthres>125 </majthres>                                                                             
        <minthres>115 </minthres>                                                                             
        <curtemp>60</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-1   </tempmod>                                                                          
        <sensor>Crossbar1(s1)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>54</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-1   </tempmod>                                                                          
        <sensor>Crossbar2(s2)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>47</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-1   </tempmod>                                                                          
        <sensor>Crossbar3(s3)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>46</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-1   </tempmod>                                                                          
        <sensor>Crossbar4(s4)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>52</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-2   </tempmod>                                                                          
        <sensor>Crossbar1(s1)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>71</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-2   </tempmod>                                                                          
        <sensor>Crossbar2(s2)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>47</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-2   </tempmod>                                                                          
        <sensor>Crossbar3(s3)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>56</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-2   </tempmod>                                                                          
        <sensor>Crossbar4(s4)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>52</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-3   </tempmod>                                                                          
        <sensor>Crossbar1(s1)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>65</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-3   </tempmod>                                                                          
        <sensor>Crossbar2(s2)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>46</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-3   </tempmod>                                                                          
        <sensor>Crossbar3(s3)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>52</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-3   </tempmod>                                                                          
        <sensor>Crossbar4(s4)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>46</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-4   </tempmod>                                                                          
        <sensor>Crossbar1(s1)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>68</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-4   </tempmod>                                                                          
        <sensor>Crossbar2(s2)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>45</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-4   </tempmod>                                                                          
        <sensor>Crossbar3(s3)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>51</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-4   </tempmod>                                                                          
        <sensor>Crossbar4(s4)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>48</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-5   </tempmod>                                                                          
        <sensor>Crossbar1(s1)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>67</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-5   </tempmod>                                                                          
        <sensor>Crossbar2(s2)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>48</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-5   </tempmod>                                                                          
        <sensor>Crossbar3(s3)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>60</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-5   </tempmod>                                                                          
        <sensor>Crossbar4(s4)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>45</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-6   </tempmod>                                                                          
        <sensor>Crossbar1(s1)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>57</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-6   </tempmod>                                                                          
        <sensor>Crossbar2(s2)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>48</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-6   </tempmod>                                                                          
        <sensor>Crossbar3(s3)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>46</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
       <ROW_tempinfo>                                                                                         
        <tempmod>xbar-6   </tempmod>                                                                          
        <sensor>Crossbar4(s4)</sensor>                                                                        
        <majthres>105 </majthres>                                                                             
        <minthres>95  </minthres>                                                                             
        <curtemp>51</curtemp>                                                                                 
        <alarmstatus>Ok</alarmstatus>                                                                         
       </ROW_tempinfo>                                                                                        
      </TABLE_tempinfo>                                                                                       
     </__readonly__>                                                                                          
    </temperature>                                                                                            
   </environment>                                                                                             
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>     

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show environment temperature

Temperature:                                              

Module Sensor MajorThresh MinorThres CurTemp Status (Celsius) (Celsius) (Celsius)

6 Crossbar1(s1) 125 115 47 Ok
6 Crossbar2(s2) 125 115 55 Ok
6 Arb-muxSn0(s3) 125 105 54 Ok
6 Arb-muxSn1(s4) 125 105 55 Ok
6 CPU (s5) 125 105 47 Ok
6 CPU (s6) 125 105 47 Ok
6 PCISW (s7) 110 100 49 Ok
6 L2L3Dev1Sn1(s8) 125 115 50 Ok
6 L2L3Dev1Sn2(s9) 125 115 52 Ok
6 L3Lkup1Sn1(s10) 125 105 56 Ok
6 L3Lkup1Sn2(s11) 125 105 56 Ok
6 L2L3Dev2Sn1(s12 125 115 55 Ok
6 L2L3Dev2Sn2(s13 125 115 57 Ok
6 L3Lkup2Sn1(s14) 125 105 53 Ok
6 L3Lkup2Sn2(s15) 125 105 54 Ok
7 Crossbar1(s1) 125 115 72 Ok
7 Crossbar2(s2) 125 115 70 Ok
7 Arb-muxSn0(s3) 125 115 79 Ok
7 Arb-muxSn1(s4) 125 115 85 Ok
7 CPU (s5) 125 115 0 Ok
7 CPU (s6) 125 115 0 Ok
7 L2L3Dev1(s7) 125 115 75 Ok
7 L2L3Dev2(s8) 125 115 64 Ok
7 L2L3Dev3(s9) 125 115 75 Ok
7 L2L3Dev4(s10) 125 115 65 Ok
7 L2L3Dev5(s11) 125 115 50 Ok
7 L2L3Dev6(s12) 125 115 50 Ok
7 L2L3Dev7(s13) 125 115 67 Ok
7 L2L3Dev8(s14) 125 115 73 Ok
7 L2L3Dev9(s15) 125 115 70 Ok
7 L2L3Dev10(s16) 125 115 74 Ok
8 Crossbar1(s1) 125 115 76 Ok
8 Crossbar2(s2) 125 115 75 Ok
8 Arb-muxSn0(s3) 125 115 80 Ok
8 Arb-muxSn1(s4) 125 115 86 Ok
8 CPU (s5) 125 115 0 Ok
8 CPU (s6) 125 115 0 Ok
8 L2L3Dev1(s7) 125 115 77 Ok
8 L2L3Dev2(s8) 125 115 69 Ok
8 L2L3Dev3(s9) 125 115 78 Ok
8 L2L3Dev4(s10) 125 115 69 Ok
8 L2L3Dev5(s11) 125 115 53 Ok
8 L2L3Dev6(s12) 125 115 53 Ok
8 L2L3Dev7(s13) 125 115 70 Ok
8 L2L3Dev8(s14) 125 115 78 Ok
8 L2L3Dev9(s15) 125 115 71 Ok
8 L2L3Dev10(s16) 125 115 79 Ok
9 Inlet (s1) 60 42 20 Ok
9 Crossbar(s2) 125 115 78 Ok
9 L2L3Dev1(s3) 125 110 47 Ok
9 Arbiter (s4) 125 105 58 Ok
9 CPU1CORE1(s5) 85 75 39 Ok
9 CPU1CORE2(s6) 85 75 36 Ok
9 CPU1CORE3(s7) 85 75 40 Ok
9 CPU1CORE4(s8) 85 75 35 Ok
9 CPU2CORE1(s9) 85 75 30 Ok
9 CPU2CORE2(s10) 85 75 26 Ok
9 CPU2CORE3(s11) 85 75 30 Ok
9 CPU2CORE4(s12) 85 75 29 Ok
9 DDR3DIMM1(s13) 95 85 35 Ok
9 DDR3DIMM2(s14) 95 85 32 Ok
9 DDR3DIMM4(s16) 95 85 27 Ok
9 DDR3DIMM5(s17) 95 85 27 Ok
10 Inlet (s1) 60 42 24 Ok
10 Crossbar(s2) 125 115 81 Ok
10 L2L3Dev1(s3) 125 110 55 Ok
10 Arbiter (s4) 125 105 61 Ok
10 CPU1CORE1(s5) 85 75 39 Ok
10 CPU1CORE2(s6) 85 75 37 Ok
10 CPU1CORE3(s7) 85 75 37 Ok
10 CPU1CORE4(s8) 85 75 34 Ok
10 CPU2CORE1(s9) 85 75 26 Ok
10 CPU2CORE2(s10) 85 75 25 Ok
10 CPU2CORE3(s11) 85 75 28 Ok
10 CPU2CORE4(s12) 85 75 24 Ok
10 DDR3DIMM1(s13) 95 85 32 Ok
10 DDR3DIMM2(s14) 95 85 31 Ok
10 DDR3DIMM4(s16) 95 85 27 Ok
10 DDR3DIMM5(s17) 95 85 27 Ok
15 Crossbar1(s1) 125 115 67 Ok
15 Crossbar2(s2) 125 115 63 Ok
15 Arb-muxSn0(s3) 125 115 59 Ok
15 Arb-muxSn1(s4) 125 115 63 Ok
15 CPU (s5) 125 115 50 Ok
15 CPU (s6) 125 115 44 Ok
15 L2L3Dev1(s7) 125 115 62 Ok
15 L2L3Dev2(s8) 125 115 59 Ok
15 L2L3Dev3(s9) 125 115 63 Ok
15 L2L3Dev4(s10) 125 115 59 Ok
15 L2L3Dev5(s11) 125 115 46 Ok
15 L2L3Dev6(s12) 125 115 46 Ok
15 L2L3Dev7(s13) 125 115 59 Ok
15 L2L3Dev8(s14) 125 115 60 Ok
15 L2L3Dev9(s15) 125 115 59 Ok
15 L2L3Dev10(s16) 125 115 60 Ok
xbar-1 Crossbar1(s1) 105 95 54 Ok
xbar-1 Crossbar2(s2) 105 95 47 Ok
xbar-1 Crossbar3(s3) 105 95 46 Ok
xbar-1 Crossbar4(s4) 105 95 52 Ok
xbar-2 Crossbar1(s1) 105 95 71 Ok
xbar-2 Crossbar2(s2) 105 95 47 Ok
xbar-2 Crossbar3(s3) 105 95 56 Ok
xbar-2 Crossbar4(s4) 105 95 52 Ok
xbar-3 Crossbar1(s1) 105 95 65 Ok
xbar-3 Crossbar2(s2) 105 95 46 Ok
xbar-3 Crossbar3(s3) 105 95 52 Ok
xbar-3 Crossbar4(s4) 105 95 46 Ok
xbar-4 Crossbar1(s1) 105 95 68 Ok
xbar-4 Crossbar2(s2) 105 95 45 Ok
xbar-4 Crossbar3(s3) 105 95 51 Ok
xbar-4 Crossbar4(s4) 105 95 48 Ok
xbar-5 Crossbar1(s1) 105 95 67 Ok
xbar-5 Crossbar2(s2) 105 95 48 Ok
xbar-5 Crossbar3(s3) 105 95 60 Ok
xbar-5 Crossbar4(s4) 105 95 45 Ok
xbar-6 Crossbar1(s1) 105 95 57 Ok
xbar-6 Crossbar2(s2) 105 95 48 Ok
xbar-6 Crossbar3(s3) 105 95 46 Ok
xbar-6 Crossbar4(s4) 105 95 51 Ok

show environment temperature module 7

show environment temperature module 7 
 
import requests
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 environment temperature module 7”,
  "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)
{                                                                 
  "TABLE_tempinfo": {                                             
    "ROW_tempinfo": [                                             
      {                                                           
        "tempmod": "7",                                           
        "sensor": "Crossbar1(s1)",                                
        "majthres": "125",                                        
        "minthres": "115",                                        
        "curtemp": "72",                                          
        "alarmstatus": "Ok"                                       
      },                                                          
      {                                                           
        "tempmod": "7",                                           
        "sensor": "Crossbar2(s2)",                                
        "majthres": "125",                                        
        "minthres": "115",                                        
        "curtemp": "70",                                          
        "alarmstatus": "Ok"                                       
      },                                                          
      {                                                           
        "tempmod": "7",                                           
        "sensor": "Arb-muxSn0(s3)",                               
        "majthres": "125",                                        
        "minthres": "115",                                        
        "curtemp": "79",                                          
        "alarmstatus": "Ok"                                       
      },                                                          
      {                                                           
        "tempmod": "7",                                           
        "sensor": "Arb-muxSn1(s4)",                               
        "majthres": "125",                                        
        "minthres": "115",                                        
        "curtemp": "85",                                          
        "alarmstatus": "Ok"                                       
      },                                                          
      {                                                           
        "tempmod": "7",                                           
        "sensor": "CPU     (s5)",                                 
        "majthres": "125",                                        
        "minthres": "115",                                        
        "curtemp": "0",                                           
        "alarmstatus": "Ok"                                       
      },                                                          
      {                                                           
        "tempmod": "7",                                           
        "sensor": "CPU     (s6)",                                 
        "majthres": "125",                                        
        "minthres": "115",                                        
        "curtemp": "0",                                           
        "alarmstatus": "Ok"                                       
      },                                                          
      {                                                           
        "tempmod": "7",                                           
        "sensor": "L2L3Dev1(s7)",                                 
        "majthres": "125",                                        
        "minthres": "115",                                        
        "curtemp": "75",                                          
        "alarmstatus": "Ok"                                       
      },                                                          
      {                                                           
        "tempmod": "7",                                           
        "sensor": "L2L3Dev2(s8)",                                 
        "majthres": "125",                                        
        "minthres": "115",                                        
        "curtemp": "64",                                          
        "alarmstatus": "Ok"                                       
      },                                                          
      {                                                           
        "tempmod": "7",                                           
        "sensor": "L2L3Dev3(s9)",                                 
        "majthres": "125",                                        
        "minthres": "115",                                        
        "curtemp": "75",                                          
        "alarmstatus": "Ok"                                       
      },                                                          
      {                                                           
        "tempmod": "7",                                           
        "sensor": "L2L3Dev4(s10)",                                
        "majthres": "125",                                        
        "minthres": "115",                                        
        "curtemp": "65",                                          
        "alarmstatus": "Ok"                                       
      },                                                          
      {                                                           
        "tempmod": "7",                                           
        "sensor": "L2L3Dev5(s11)",                                
        "majthres": "125",                                        
        "minthres": "115",                                        
        "curtemp": "50",                                          
        "alarmstatus": "Ok"                                       
      },                                                          
      {                                                           
        "tempmod": "7",                                           
        "sensor": "L2L3Dev6(s12)",                                
        "majthres": "125",                                        
        "minthres": "115",                                        
        "curtemp": "50",                                          
        "alarmstatus": "Ok"                                       
      },                                                          
      {                                                           
        "tempmod": "7",                                           
        "sensor": "L2L3Dev7(s13)",                                
        "majthres": "125",                                        
        "minthres": "115",                                        
        "curtemp": "67",
        "alarmstatus": "Ok"
      },
      {
        "tempmod": "7",
        "sensor": "L2L3Dev8(s14)",
        "majthres": "125",
        "minthres": "115",
        "curtemp": "73",
        "alarmstatus": "Ok"
      },
      {
        "tempmod": "7",
        "sensor": "L2L3Dev9(s15)",
        "majthres": "125",
        "minthres": "115",
        "curtemp": "70",
        "alarmstatus": "Ok"
      },
      {
        "tempmod": "7",
        "sensor": "L2L3Dev10(s16)",
        "majthres": "125",
        "minthres": "115",
        "curtemp": "74",
        "alarmstatus": "Ok"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                      
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <environment>                                                                                              
    <temperature>                                                                                             
     <module>                                                                                                 
      <__XML__PARAM__module>                                                                                  
       <__XML__value>7</__XML__value>                                                                         
       <__readonly__>                                                                                         
        <TABLE_tempinfo>                                                                                      
         <ROW_tempinfo>                                                                                       
          <tempmod>7        </tempmod>                                                                        
          <sensor>Crossbar1(s1)</sensor>                                                                      
          <majthres>125 </majthres>                                                                           
          <minthres>115 </minthres>                                                                           
          <curtemp>72</curtemp>                                                                               
          <alarmstatus>Ok</alarmstatus>                                                                       
         </ROW_tempinfo>                                                                                      
         <ROW_tempinfo>                                                                                       
          <tempmod>7        </tempmod>                                                                        
          <sensor>Crossbar2(s2)</sensor>                                                                      
          <majthres>125 </majthres>                                                                           
          <minthres>115 </minthres>                                                                           
          <curtemp>70</curtemp>                                                                               
          <alarmstatus>Ok</alarmstatus>                                                                       
         </ROW_tempinfo>                                                                                      
         <ROW_tempinfo>                                                                                       
          <tempmod>7        </tempmod>                                                                        
          <sensor>Arb-muxSn0(s3)</sensor>                                                                     
          <majthres>125 </majthres>                                                                           
          <minthres>115 </minthres>                                                                           
          <curtemp>79</curtemp>                                                                               
          <alarmstatus>Ok</alarmstatus>                                                                       
         </ROW_tempinfo>                                                                                      
         <ROW_tempinfo>                                                                                       
          <tempmod>7        </tempmod>                                                                        
          <sensor>Arb-muxSn1(s4)</sensor>                                                                     
          <majthres>125 </majthres>                                                                           
          <minthres>115 </minthres>                                                                           
          <curtemp>85</curtemp>                                                                               
          <alarmstatus>Ok</alarmstatus>                                                                       
         </ROW_tempinfo>                                                                                      
         <ROW_tempinfo>                                                                                       
          <tempmod>7        </tempmod>                                                                        
          <sensor>CPU     (s5)</sensor>                                                                       
          <majthres>125 </majthres>                                                                           
          <minthres>115 </minthres>                                                                           
          <curtemp>0 </curtemp>                                                                               
          <alarmstatus>Ok</alarmstatus>                                                                       
         </ROW_tempinfo>                                                                                      
         <ROW_tempinfo>                                                                                       
          <tempmod>7        </tempmod>                                                                        
          <sensor>CPU     (s6)</sensor>                                                                       
          <majthres>125 </majthres>                                                                           
          <minthres>115 </minthres>                                                                           
          <curtemp>0 </curtemp>                                                                               
          <alarmstatus>Ok</alarmstatus>                                                                       
         </ROW_tempinfo>                                                                                      
         <ROW_tempinfo>                                                                                       
          <tempmod>7        </tempmod>                                                                        
          <sensor>L2L3Dev1(s7)</sensor>                                                                       
          <majthres>125 </majthres>                                                                           
          <minthres>115 </minthres>                                                                           
          <curtemp>75</curtemp>                                                                               
          <alarmstatus>Ok</alarmstatus>                                                                       
         </ROW_tempinfo>                                                                                      
         <ROW_tempinfo>                                                                                       
          <tempmod>7        </tempmod>                                                                        
          <sensor>L2L3Dev2(s8)</sensor>                                                                       
          <majthres>125 </majthres>                                                                           
          <minthres>115 </minthres>                                                                           
          <curtemp>64</curtemp>                                                                               
          <alarmstatus>Ok</alarmstatus>                                                                       
         </ROW_tempinfo>                                                                                      
         <ROW_tempinfo>                                                                                       
          <tempmod>7        </tempmod>                                                                        
          <sensor>L2L3Dev3(s9)</sensor>                                                                       
          <majthres>125 </majthres>                                                                           
          <minthres>115 </minthres>                                                                           
          <curtemp>75</curtemp>                                                                               
          <alarmstatus>Ok</alarmstatus>                                                                       
         </ROW_tempinfo>                                                                                      
         <ROW_tempinfo>                                                                                       
          <tempmod>7        </tempmod>                                                                        
          <sensor>L2L3Dev4(s10)</sensor>                                                                      
          <majthres>125 </majthres>                                                                           
          <minthres>115 </minthres>                                                                           
          <curtemp>65</curtemp>                                                                               
          <alarmstatus>Ok</alarmstatus>                                                                       
         </ROW_tempinfo>                                                                                      
         <ROW_tempinfo>                                                                                       
          <tempmod>7        </tempmod>                                                                        
          <sensor>L2L3Dev5(s11)</sensor>                                                                      
          <majthres>125 </majthres>                                                                           
          <minthres>115 </minthres>                                                                           
          <curtemp>50</curtemp>                                                                               
          <alarmstatus>Ok</alarmstatus>                                                                       
         </ROW_tempinfo>                                                                                      
         <ROW_tempinfo>                                                                                       
          <tempmod>7        </tempmod>                                                                        
          <sensor>L2L3Dev6(s12)</sensor>                                                                      
          <majthres>125 </majthres>                                                                           
          <minthres>115 </minthres>                                                                           
          <curtemp>50</curtemp>                                                                               
          <alarmstatus>Ok</alarmstatus>                                                                       
         </ROW_tempinfo>                                                                                      
         <ROW_tempinfo>                                                                                       
          <tempmod>7        </tempmod>                                                                        
          <sensor>L2L3Dev7(s13)</sensor>                                                                      
          <majthres>125 </majthres>                                                                           
          <minthres>115 </minthres>                                                                           
          <curtemp>67</curtemp>                                                                               
          <alarmstatus>Ok</alarmstatus>                                                                       
         </ROW_tempinfo>                                                                                      
         <ROW_tempinfo>                                                                                       
          <tempmod>7        </tempmod>                                                                        
          <sensor>L2L3Dev8(s14)</sensor>                                                                      
          <majthres>125 </majthres>                                                                           
          <minthres>115 </minthres>                                                                           
          <curtemp>73</curtemp>                                                                               
          <alarmstatus>Ok</alarmstatus>                                                                       
         </ROW_tempinfo>                                                                                      
         <ROW_tempinfo>                                                                                       
          <tempmod>7        </tempmod>                                                                        
          <sensor>L2L3Dev9(s15)</sensor>                                                                      
          <majthres>125 </majthres>                                                                           
          <minthres>115 </minthres>                                                                           
          <curtemp>70</curtemp>                                                                               
          <alarmstatus>Ok</alarmstatus>                                                                       
         </ROW_tempinfo>                                                                                      
         <ROW_tempinfo>                                                                                       
          <tempmod>7        </tempmod>                                                                        
          <sensor>L2L3Dev10(s16)</sensor>                                                                     
          <majthres>125 </majthres>                                                                           
          <minthres>115 </minthres>                                                                           
          <curtemp>74</curtemp>                                                                               
          <alarmstatus>Ok</alarmstatus>                                                                       
         </ROW_tempinfo>                                                                                      
        </TABLE_tempinfo>                                                                                     
       </__readonly__>                                                                                        
      </__XML__PARAM__module>                                                                                 
     </module>                                                                                                
    </temperature>                                                                                            
   </environment>                                                                                             
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>    

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# **show environment temperature module 7 **

Temperature:                                                

Module Sensor MajorThresh MinorThres CurTemp Status (Celsius) (Celsius) (Celsius)

7 Crossbar1(s1) 125 115 72 Ok
7 Crossbar2(s2) 125 115 70 Ok
7 Arb-muxSn0(s3) 125 115 79 Ok
7 Arb-muxSn1(s4) 125 115 85 Ok
7 CPU (s5) 125 115 0 Ok
7 CPU (s6) 125 115 0 Ok
7 L2L3Dev1(s7) 125 115 75 Ok
7 L2L3Dev2(s8) 125 115 64 Ok
7 L2L3Dev3(s9) 125 115 75 Ok
7 L2L3Dev4(s10) 125 115 65 Ok
7 L2L3Dev5(s11) 125 115 50 Ok
7 L2L3Dev6(s12) 125 115 50 Ok
7 L2L3Dev7(s13) 125 115 67 Ok
7 L2L3Dev8(s14) 125 115 73 Ok
7 L2L3Dev9(s15) 125 115 70 Ok
7 L2L3Dev10(s16) 125 115 74 Ok

show environment shutdown temperature

show environment shutdown temperature
 
import requests
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 environment shutdown temperature”,
  "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)
{
  "shut_tempinfo": {
    "status": "not set",
    "major_temp": "60 Celsius",
    "minor_temp": "42 Celsius"
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <environment>
    <shutdown>
     <temperature>
      <__readonly__>
       <shut_tempinfo>
        <status>not set</status>
        <major_temp>60 Celsius</major_temp>
        <minor_temp>42 Celsius</minor_temp>
       </shut_tempinfo>
      </__readonly__>
     </temperature>
    </shutdown>
   </environment>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show environment shutdown temperature**

environment shutdown temperature is: not set                      
Default shutdown threshold is: 60 Celsius                         
(Minor threshold is: 42 Celsius)          

show hardware

show hardware
 
import requests
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 hardware”,
  "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)
{                                         
  "header_str": "Cisco Nexus Operating System (NX-OS) Software\nTAC support: http://www.cisco.com/tac\nDocuments: http://www.cisco.com/en/US/products/ps9372/tsd_products_support_series_home.html\nCopyright (c) 2002-2018, Cisco Systems, Inc. All rights reserved.\nThe copyrights to certain works contained in this software are\nowned by other third parties and used and distributed under\nlicense. Certain components of this software are licensed under\nthe GNU General Public License (GPL) version 2.0 or the GNU\nLesser General Public License (LGPL) Version 2.1. A copy of each\nsuch license is available at\nhttp://www.opensource.org/licenses/gpl-2.0.php and\nhttp://www.opensource.org/licenses/lgpl-2.1.php",                                                                
  "bios_ver_str": "3.1.0",                                                                                                                                 
  "kickstart_ver_str": "8.3(1)",                                                                                                                           
  "sys_ver_str": "8.3(1)",                                                                                                                                 
  "bios_cmpl_time": "02/27/2013",                                                                                                                          
  "kick_file_name": "bootflash:///n7700-s2-kickstart.8.3.1.bin",                                                                                           
  "kick_cmpl_time": "7/30/2018 12:00:00",                                                                                                                  
  "kick_tmstmp": "07/01/2018 16:49:53",                                                                                                                    
  "isan_file_name": "bootflash:///n7700-s2-dk9.8.3.1.bin",                                                                                                 
  "isan_cmpl_time": "7/30/2018 12:00:00",                                                                                                                  
  "isan_tmstmp": "07/01/2018 19:19:39",                                                                                                                    
  "chassis_id": "Nexus7700 C7718 (18 Slot) Chassis",                                                                                                       
  "module_id": "Supervisor Module-2",                                                                                                                      
  "cpu_name": "Intel(R) Xeon(R) CPU",                                                                                                                      
  "memory": 32939156,                                                                                                                                      
  "mem_type": "kB",                                                                                                                                        
  "proc_board_id": "JAE17280TTC",                                                                                                                          
  "host_name": "SUP2E-APEX18",                                                                                                                             
  "bootflash_size": 4014080,                                                                                                                               
  "slot0_size": 0,                                                                                                                                         
  "kern_uptm_days": 0,                                                                                                                                     
  "kern_uptm_hrs": 5,                                                                                                                                      
  "kern_uptm_mins": 37,                                                                                                                                    
  "kern_uptm_secs": 25,                                                                                                                                    
  "rr_reason": "Unknown",                                                                                                                                  
  "rr_sys_ver": "8.3(1)",                                                                                                                                  
  "rr_service": null,                                                                                                                                      
  "manufacturer": "Cisco Systems, Inc.",                                                                                                                   
  "TABLE_slot_info": [                                                                                                                                     
    {                                                                                                                                                      
      "ROW_slot_info": {                                                                                                                                   
        "type": "Nexus7700 C7718 (18 Slot) Chassis",                                                                                                       
        "model_num": "N7F-C7018",                                                                                                                          
        "hw_ver": "0.100",                                                                                                                                 
        "part_num": "73-14605-02",                                                                                                                         
        "part_revision": "04",                                                                                                                             
        "manuf_date": "Year 16 Week 45",                                                                                                                   
        "serial_num": "JAF1645ALJF",                                                                                                                       
        "CLEI_code": null                                                                                                                                  
      }                                                                                                                                                    
    },                                                                                                                                                     
    {                                                                                                                                                      
      "ROW_slot_info": [                                                                                                                                   
        {                                                                                                                                                  
          "status_ok_empty": "Module1  powered-dn",                                                                                                        
          "type": "1/10 Gbps Ethernet Module",                                                                                                             
          "num_submods": "0",                                                                                                                              
          "model_num": "N77-F248XP-23E",                                                                                                                   
          "hw_ver": "1.3",                                                                                                                                 
          "part_num": "73-14545-07",                                                                                                                       
          "part_revision": "B0",                                                                                                                           
          "manuf_date": "Year 18 Week 51",                                                                                                                 
          "serial_num": "JAE185101F9",                                                                                                                     
          "CLEI_code": "CMUCAD5BAA"                                                                                                                        
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module2  empty"                                                                                                              
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module3  powered-dn",                                                                                                        
          "type": "100 Gbps Ethernet Module",                                                                                                              
          "num_submods": "0",                                                                                                                              
          "model_num": "N77-F436FQ-33",                                                                                                                    
          "hw_ver": "0.103",                                                                                                                               
          "part_num": "73-17777-01",                                                                                                                       
          "part_revision": "12",                                                                                                                           
          "manuf_date": "Year 21 Week 1",                                                                                                                  
          "serial_num": "JAE210102SZ",                                                                                                                     
          "CLEI_code": null                                                                                                                                
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module4  powered-dn",                                                                                                        
          "type": "10/40 Gbps Ethernet Module",                                                                                                            
          "num_submods": "0",                                                                                                                              
          "model_num": "N77-F324FQ-25",                                                                                                                    
          "hw_ver": "0.401",                                                                                                                               
          "part_num": "73-15003-04",                                                                                                                       
          "part_revision": "03",                                                                                                                           
          "manuf_date": "Year 17 Week 22",                                                                                                                 
          "serial_num": "JAE172205GE",                                                                                                                     
          "CLEI_code": "TBD"                                                                                                                               
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module5  powered-dn",                                                                                                        
          "type": "1/10 Gbps Ethernet Module",                                                                                                             
          "num_submods": "0",                                                                                                                              
          "model_num": "N77-F348XP-23",                                                                                                                    
          "hw_ver": "1.3",                                                                                                                                 
          "part_num": "73-15670-04",                                                                                                                       
          "part_revision": "B0",                                                                                                                           
          "manuf_date": "Year 18 Week 36",                                                                                                                 
          "serial_num": "JAE183602MZ",                                                                                                                     
          "CLEI_code": "CMUIAJNCAA"                                                                                                                        
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module6  ok",                                                                                                                
          "type": "1/10 Gbps Ethernet Module",                                                                                                             
          "num_submods": "0",                                                                                                                              
          "model_num": "N77-M348XP-32L",                                                                                                                   
          "hw_ver": "0.701",                                                                                                                               
          "part_num": "73-16085-07",                                                                                                                       
          "part_revision": "05",                                                                                                                           
          "manuf_date": "Year 19 Week 44",                                                                                                                 
          "serial_num": "JAE194401UE",                                                                                                                     
          "CLEI_code": null                                                                                                                                
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module7  ok",                                                                                                                
          "type": "100 Gbps Ethernet Module",                                                                                                              
          "num_submods": "0",                                                                                                                              
          "model_num": "N77-F430CQ-36",                                                                                                                    
          "hw_ver": "0.203",                                                                                                                               
          "part_num": "73-101350-02",                                                                                                                      
          "part_revision": "05",                                                                                                                           
          "manuf_date": "Year 21 Week 43",                                                                                                                 
          "serial_num": "JAE214303LZ",                                                                                                                     
          "CLEI_code": null                                                                                                                                
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module8  ok",                                                                                                                
          "type": "100 Gbps Ethernet Module",                                                                                                              
          "num_submods": "0",                                                                                                                              
          "model_num": "N77-F430CQ-36",                                                                                                                    
          "hw_ver": "0.203",                                                                                                                               
          "part_num": "73-101350-02",                                                                                                                      
          "part_revision": "05",                                                                                                                           
          "manuf_date": "Year 21 Week 35",                                                                                                                 
          "serial_num": "JAE2135030E",                                                                                                                     
          "CLEI_code": null                                                                                                                                
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module9  ok",                                                                                                                
          "type": "Supervisor Module-2",                                                                                                                   
          "num_submods": "1",                                                                                                                              
          "model_num": "N77-SUP2E",                                                                                                                        
          "hw_ver": "1.0",                                                                                                                                 
          "part_num": "73-14544-05",                                                                                                                       
          "part_revision": "A0",                                                                                                                           
          "manuf_date": "Year 17 Week 28",                                                                                                                 
          "serial_num": "JAE17280TTC",                                                                                                                     
          "CLEI_code": "CMUCAECBAA"                                                                                                                        
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module10  ok",                                                                                                               
          "type": "Supervisor Module-2",                                                                                                                   
          "num_submods": "1",                                                                                                                              
          "model_num": "N77-SUP2E",                                                                                                                        
          "hw_ver": "1.4",                                                                                                                                 
          "part_num": "73-14544-08",                                                                                                                       
          "part_revision": "B0",                                                                                                                           
          "manuf_date": "Year 21 Week 8",                                                                                                                  
          "serial_num": "JAE2108095N",                                                                                                                     
          "CLEI_code": "CMUCAJFBAA"                                                                                                                        
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module11  powered-dn",                                                                                                       
          "type": "10/40 Gbps Ethernet Module",                                                                                                            
          "num_submods": "0",                                                                                                                              
          "model_num": "N77-M324FQ-25L",                                                                                                                   
          "hw_ver": "0.4",                                                                                                                                 
          "part_num": "73-17257-05",                                                                                                                       
          "part_revision": "07",                                                                                                                           
          "manuf_date": "Year 19 Week 45",                                                                                                                 
          "serial_num": "JAE194507M7",                                                                                                                     
          "CLEI_code": null                                                                                                                                
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module12  empty"                                                                                                             
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module13  empty"                                                                                                             
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module14  powered-dn",                                                                                                       
          "type": "10/40 Gbps Ethernet Module",                                                                                                            
          "num_submods": "0",                                                                                                                              
          "model_num": "N77-F324FQ-25",                                                                                                                    
          "hw_ver": "1.3",                                                                                                                                 
          "part_num": "73-15003-08",                                                                                                                       
          "part_revision": "A0",                                                                                                                           
          "manuf_date": "Year 20 Week 4",                                                                                                                  
          "serial_num": "JAE200401NH",                                                                                                                     
          "CLEI_code": "CMUIAJVCAC"                                                                                                                        
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module15  ok",                                                                                                               
          "type": "100 Gbps Ethernet Module",                                                                                                              
          "num_submods": "0",                                                                                                                              
          "model_num": "N77-F430CQ-36",                                                                                                                    
          "hw_ver": "0.502",                                                                                                                               
          "part_num": "73-101350-05",                                                                                                                      
          "part_revision": "02",                                                                                                                           
          "manuf_date": "Year 22 Week 13",                                                                                                                 
          "serial_num": "JAE221308RC",                                                                                                                     
          "CLEI_code": null                                                                                                                                
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module16  powered-dn",                                                                                                       
          "type": "100 Gbps Ethernet Module",                                                                                                              
          "num_submods": "0",                                                                                                                              
          "model_num": "N77-F430CQ-36",                                                                                                                    
          "hw_ver": "0.502",                                                                                                                               
          "part_num": "73-101350-05",                                                                                                                      
          "part_revision": "02",                                                                                                                           
          "manuf_date": "Year 22 Week 13",                                                                                                                 
          "serial_num": "JAE221308RQ",                                                                                                                     
          "CLEI_code": null                                                                                                                                
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module17  powered-dn",                                                                                                       
          "type": "100 Gbps Ethernet Module",                                                                                                              
          "num_submods": "0",                                                                                                                              
          "model_num": "N77-F312CK-26",                                                                                                                    
          "hw_ver": "0.201",                                                                                                                               
          "part_num": "73-15192-02",                                                                                                                       
          "part_revision": "01",                                                                                                                           
          "manuf_date": "Year 17 Week 25",                                                                                                                 
          "serial_num": "JAE17250DTE",                                                                                                                     
          "CLEI_code": "TBD"                                                                                                                               
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Module18  empty"                                                                                                             
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Xbar1  ok",                                                                                                                  
          "type": "Fabric card module",                                                                                                                    
          "num_submods": "0",                                                                                                                              
          "model_num": "N77-C7718-FAB-2",                                                                                                                  
          "hw_ver": "0.201",                                                                                                                               
          "part_num": "73-14158-01",                                                                                                                       
          "part_revision": "28",                                                                                                                           
          "manuf_date": "Year 16 Week 41",                                                                                                                 
          "serial_num": "JAF1641BKFL",                                                                                                                     
          "CLEI_code": "0"                                                                                                                                 
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Xbar2  ok",                                                                                                                  
          "type": "Fabric card module",                                                                                                                    
          "num_submods": "0",                                                                                                                              
          "model_num": "N7F-C7018-FAB-2",                                                                                                                  
          "hw_ver": "0.100",                                                                                                                               
          "part_num": "73-14158-01",                                                                                                                       
          "part_revision": "22",                                                                                                                           
          "manuf_date": "Year 16 Week 10",                                                                                                                 
          "serial_num": "JAF1610ADQK",                                                                                                                     
          "CLEI_code": "TBD"                                                                                                                               
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Xbar3  ok",                                                                                                                  
          "type": "Fabric card module",                                                                                                                    
          "num_submods": "0",                                                                                                                              
          "model_num": "N77-C7718-FAB-2",                                                                                                                  
          "hw_ver": "0.201",                                                                                                                               
          "part_num": "73-14158-01",                                                                                                                       
          "part_revision": "28",                                                                                                                           
          "manuf_date": "Year 16 Week 41",                                                                                                                 
          "serial_num": "JAF1641BKGS",                                                                                                                     
          "CLEI_code": "0"                                                                                                                                 
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Xbar4  ok",                                                                                                                  
          "type": "Fabric card module",                                                                                                                    
          "num_submods": "0",                                                                                                                              
          "model_num": "N77-C7718-FAB-2",                                                                                                                  
          "hw_ver": "0.201",                                                                                                                               
          "part_num": "73-14158-01",                                                                                                                       
          "part_revision": "28",                                                                                                                           
          "manuf_date": "Year 16 Week 38",                                                                                                                 
          "serial_num": "JAF1638BCRB",                                                                                                                     
          "CLEI_code": "0"                                                                                                                                 
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Xbar5  ok",                                                                                                                  
          "type": "Fabric card module",                                                                                                                    
          "num_submods": "0",                                                                                                                              
          "model_num": "N7F-C7018-FAB-2",                                                                                                                  
          "hw_ver": "0.201",                                                                                                                               
          "part_num": "73-14158-01",                                                                                                                       
          "part_revision": "28",                                                                                                                           
          "manuf_date": "Year 16 Week 38",                                                                                                                 
          "serial_num": "JAF1638ASCR",                                                                                                                     
          "CLEI_code": null                                                                                                                                
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "Xbar6  ok",                                                                                                                  
          "type": "Fabric card module",                                                                                                                    
          "num_submods": "0",                                                                                                                              
          "model_num": "N77-C7718-FAB-2",                                                                                                                  
          "hw_ver": "0.201",                                                                                                                               
          "part_num": "73-14158-01",                                                                                                                       
          "part_revision": "28",                                                                                                                           
          "manuf_date": "Year 16 Week 35",                                                                                                                 
          "serial_num": "JAF1635APBK",                                                                                                                     
          "CLEI_code": "0"                                                                                                                                 
        }                                                                                                                                                  
      ]                                                                                                                                                    
    },                                                                                                                                                     
    {                                                                                                                                                      
      "ROW_slot_info": [                                                                                                                                   
        {                                                                                                                                                  
          "status_ok_empty": "PS1 absent"                                                                                                                  
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "PS2 ok",                                                                                                                     
          "type": "3000.00W 220v AC",                                                                                                                      
          "model_num": "N7K-AC-3KW",                                                                                                                       
          "hw_ver": "1.0",                                                                                                                                 
          "part_num": "341-0428-01",                                                                                                                       
          "part_revision": "A0",                                                                                                                           
          "manuf_date": "Year 16 Week 49",                                                                                                                 
          "serial_num": "DTM1649029N",                                                                                                                     
          "CLEI_code": "CMUPABRCAA"                                                                                                                        
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "PS3 ok",                                                                                                                     
          "type": "3000.00W 220v AC",                                                                                                                      
          "model_num": "N7K-AC-3KW",                                                                                                                       
          "hw_ver": "1.0",                                                                                                                                 
          "part_num": "341-0428-01",                                                                                                                       
          "part_revision": "A0",                                                                                                                           
          "manuf_date": "Year 16 Week 48",                                                                                                                 
          "serial_num": "DTM164800LU",                                                                                                                     
          "CLEI_code": "CMUPABRCAA"                                                                                                                        
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "PS4 absent"                                                                                                                  
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "PS5 absent"                                                                                                                  
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "PS6 ok",                                                                                                                     
          "type": "3000.00W 220v AC",                                                                                                                      
          "model_num": "N7K-AC-3KW",                                                                                                                       
          "hw_ver": "1.0",                                                                                                                                 
          "part_num": "341-0428-01",                                                                                                                       
          "part_revision": "A0",                                                                                                                           
          "manuf_date": "Year 16 Week 48",                                                                                                                 
          "serial_num": "DTM164800L2",                                                                                                                     
          "CLEI_code": "CMUPABRCAA"                                                                                                                        
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "PS7 absent"                                                                                                                  
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "PS8 absent"                                                                                                                  
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "PS9 absent"                                                                                                                  
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "PS10 absent"                                                                                                                 
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "PS11 absent"                                                                                                                 
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "PS12 absent"                                                                                                                 
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "PS13 fail/shutdown",                                                                                                         
          "type": "3000.00W 220v AC",                                                                                                                      
          "model_num": "N77-AC-3KW",                                                                                                                       
          "hw_ver": "1.0",                                                                                                                                 
          "part_num": "341-0600-01",                                                                                                                       
          "part_revision": "01",                                                                                                                           
          "manuf_date": "Year 17 Week 12",                                                                                                                 
          "serial_num": "DTM1712000C",                                                                                                                     
          "CLEI_code": "CMUPAB4CAA"                                                                                                                        
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "PS14 fail/shutdown",                                                                                                         
          "type": "3000.00W 220v AC",                                                                                                                      
          "model_num": "N77-AC-3KW",                                                                                                                       
          "hw_ver": "1.1",                                                                                                                                 
          "part_num": "341-0600-01",                                                                                                                       
          "part_revision": "A1",                                                                                                                           
          "manuf_date": "Year 17 Week 21",                                                                                                                 
          "serial_num": "DTM172102WY",                                                                                                                     
          "CLEI_code": "CMUPAB4CAA"                                                                                                                        
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "PS15 fail/shutdown",                                                                                                         
          "type": "3000.00W 220v AC",                                                                                                                      
          "model_num": "N77-AC-3KW",                                                                                                                       
          "hw_ver": "1.1",                                                                                                                                 
          "part_num": "341-0600-01",                                                                                                                       
          "part_revision": "A1",                                                                                                                           
          "manuf_date": "Year 17 Week 21",                                                                                                                 
          "serial_num": "DTM1721031T",                                                                                                                     
          "CLEI_code": "CMUPAB4CAA"                                                                                                                        
        },                                                                                                                                                 
        {                                                                                                                                                  
          "status_ok_empty": "PS16 absent"                                                                                                                 
        }                                                                                                                                                  
      ]                                                                                                                                                    
    },                                                                                                                                                     
    {                                                                                                                                                      
      "ROW_slot_info": [                                                                                                                                   
        {                                                                                                                                                  
          "status_ok_empty": "Fan1(sys_fan1) ok",                                                                                                          
          "model_num": "N77-C7718-FAN-2",                                                                                                                  
          "hw_ver": "0.100",                                                                                                                               
          "part_num": "73-101408-01",                                                                                                                      
          "part_revision": "01",                                                                                                                           
          "manuf_date": "Year 20 Week 51",                                                                                                                 
          "serial_num": "NCV2051T02B",                                                                                                                     
          "CLEI_code": "NOCLEICODE"                                                                                                                        
        },                                                                                                                                                 
        {
          "status_ok_empty": "Fan2(sys_fan2) ok",
          "model_num": "N77-C7718-FAN-2",
          "hw_ver": "0.100",
          "part_num": "73-101408-01",
          "part_revision": "01",
          "manuf_date": "Year 20 Week 51",
          "serial_num": "NCV2051T02Y",
          "CLEI_code": "NOCLEICODE"
        },
        {
          "status_ok_empty": "Fan3(sys_fan3) ok",
          "model_num": "N77-C7718-FAN-2",
          "hw_ver": "0.100",
          "part_num": "73-101408-01",
          "part_revision": "01",
          "manuf_date": "Year 20 Week 51",
          "serial_num": "NCV2051T027",
          "CLEI_code": "NOCLEICODE"
        }
      ]
    }
  ],
  "num_slot_str": [
    "18 Module slots",
    "6 Fabric slots",
    "16 PowerSupply Slots",
    "3 Fan slots"
  ]
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <hardware>                                                                                                 
    <__readonly__>                                                                                            
     <header_str>Cisco Nexus Operating System (NX-OS) Software                                                
TAC support: http://www.cisco.com/tac                                                                         
Documents: http://www.cisco.com/en/US/products/ps9372/tsd_products_support_series_home.html                   
Copyright (c) 2002-2018, Cisco Systems, Inc. All rights reserved.                                             
The copyrights to certain works contained in this software are                                                
owned by other third parties and used and distributed under                                                   
license. Certain components of this software are licensed under                                               
the GNU General Public License (GPL) version 2.0 or the GNU                                                   
Lesser General Public License (LGPL) Version 2.1. A copy of each                                              
such license is available at                                                                                  
http://www.opensource.org/licenses/gpl-2.0.php and                                                            
http://www.opensource.org/licenses/lgpl-2.1.php                                                               
</header_str>                                                                                                 
     <bios_ver_str>3.1.0</bios_ver_str>                                                                       
     <kickstart_ver_str>8.3(1)</kickstart_ver_str>                                                            
     <sys_ver_str>8.3(1)</sys_ver_str>                                                                        
     <bios_cmpl_time>02/27/2013</bios_cmpl_time>                                                              
     <kick_file_name>bootflash:///n7700-s2-kickstart.8.3.1.bin</kick_file_name>                               
     <kick_cmpl_time> 7/30/2018 12:00:00</kick_cmpl_time>                                                     
     <kick_tmstmp>07/01/2018 16:49:53</kick_tmstmp>                                                           
     <isan_file_name>bootflash:///n7700-s2-dk9.8.3.1.bin</isan_file_name>                                     
     <isan_cmpl_time> 7/30/2018 12:00:00</isan_cmpl_time>                                                     
     <isan_tmstmp>07/01/2018 19:19:39</isan_tmstmp>                                                           
     <chassis_id>Nexus7700 C7718 (18 Slot) Chassis</chassis_id>                                               
     <module_id>Supervisor Module-2</module_id>                                                               
     <cpu_name>Intel(R) Xeon(R) CPU        </cpu_name>                                                        
     <memory>32939156</memory>                                                                                
     <mem_type>kB</mem_type>                                                                                  
     <proc_board_id>JAE17280TTC</proc_board_id>                                                               
     <host_name>SUP2E-APEX18</host_name>                                                                      
     <bootflash_size>4014080</bootflash_size>                                                                 
     <slot0_size>0</slot0_size>                                                                               
     <kern_uptm_days>0</kern_uptm_days>                                                                       
     <kern_uptm_hrs>5</kern_uptm_hrs>                                                                         
     <kern_uptm_mins>37</kern_uptm_mins>                                                                      
     <kern_uptm_secs>19</kern_uptm_secs>                                                                      
     <rr_reason>Unknown</rr_reason>                                                                           
     <rr_sys_ver>8.3(1)</rr_sys_ver>                                                                          
     <rr_service></rr_service>                                                                                
     <manufacturer>Cisco Systems, Inc.</manufacturer>                                                         
     <TABLE_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <type>Nexus7700 C7718 (18 Slot) Chassis</type>                                                         
       <model_num>N7F-C7018</model_num>                                                                       
       <hw_ver>0.100</hw_ver>                                                                                 
       <part_num>73-14605-02</part_num>                                                                       
       <part_revision>04</part_revision>                                                                      
       <manuf_date>Year 16 Week 45</manuf_date>                                                               
       <serial_num>JAF1645ALJF</serial_num>                                                                   
       <CLEI_code></CLEI_code>                                                                                
      </ROW_slot_info>                                                                                        
     </TABLE_slot_info>                                                                                       
     <num_slot_str>18 Module slots</num_slot_str>                                                             
     <num_slot_str>6 Fabric slots</num_slot_str>                                                              
     <TABLE_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module1  powered-dn</status_ok_empty>                                                 
       <type>1/10 Gbps Ethernet Module</type>                                                                 
       <num_submods>0</num_submods>                                                                           
       <model_num>N77-F248XP-23E</model_num>                                                                  
       <hw_ver>1.3</hw_ver>                                                                                   
       <part_num>73-14545-07</part_num>                                                                       
       <part_revision>B0</part_revision>                                                                      
       <manuf_date>Year 18 Week 51</manuf_date>                                                               
       <serial_num>JAE185101F9</serial_num>                                                                   
       <CLEI_code>CMUCAD5BAA</CLEI_code>                                                                      
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module2  empty</status_ok_empty>                                                      
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module3  powered-dn</status_ok_empty>                                                 
       <type>100 Gbps Ethernet Module</type>                                                                  
       <num_submods>0</num_submods>                                                                           
       <model_num>N77-F436FQ-33</model_num>                                                                   
       <hw_ver>0.103</hw_ver>                                                                                 
       <part_num>73-17777-01</part_num>                                                                       
       <part_revision>12</part_revision>                                                                      
       <manuf_date>Year 21 Week 1</manuf_date>                                                                
       <serial_num>JAE210102SZ</serial_num>                                                                   
       <CLEI_code></CLEI_code>                                                                                
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module4  powered-dn</status_ok_empty>                                                 
       <type>10/40 Gbps Ethernet Module</type>                                                                
       <num_submods>0</num_submods>                                                                           
       <model_num>N77-F324FQ-25</model_num>                                                                   
       <hw_ver>0.401</hw_ver>                                                                                 
       <part_num>73-15003-04</part_num>                                                                       
       <part_revision>03</part_revision>                                                                      
       <manuf_date>Year 17 Week 22</manuf_date>                                                               
       <serial_num>JAE172205GE</serial_num>                                                                   
       <CLEI_code>TBD</CLEI_code>                                                                             
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module5  powered-dn</status_ok_empty>                                                 
       <type>1/10 Gbps Ethernet Module</type>                                                                 
       <num_submods>0</num_submods>                                                                           
       <model_num>N77-F348XP-23</model_num>                                                                   
       <hw_ver>1.3</hw_ver>                                                                                   
       <part_num>73-15670-04</part_num>                                                                       
       <part_revision>B0</part_revision>                                                                      
       <manuf_date>Year 18 Week 36</manuf_date>                                                               
       <serial_num>JAE183602MZ</serial_num>                                                                   
       <CLEI_code>CMUIAJNCAA</CLEI_code>                                                                      
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module6  ok</status_ok_empty>                                                         
       <type>1/10 Gbps Ethernet Module</type>                                                                 
       <num_submods>0</num_submods>                                                                           
       <model_num>N77-M348XP-32L</model_num>                                                                  
       <hw_ver>0.701</hw_ver>                                                                                 
       <part_num>73-16085-07</part_num>                                                                       
       <part_revision>05</part_revision>                                                                      
       <manuf_date>Year 19 Week 44</manuf_date>                                                               
       <serial_num>JAE194401UE</serial_num>                                                                   
       <CLEI_code></CLEI_code>                                                                                
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module7  ok</status_ok_empty>                                                         
       <type>100 Gbps Ethernet Module</type>                                                                  
       <num_submods>0</num_submods>                                                                           
       <model_num>N77-F430CQ-36</model_num>                                                                   
       <hw_ver>0.203</hw_ver>                                                                                 
       <part_num>73-101350-02</part_num>                                                                      
       <part_revision>05</part_revision>                                                                      
       <manuf_date>Year 21 Week 43</manuf_date>                                                               
       <serial_num>JAE214303LZ</serial_num>                                                                   
       <CLEI_code></CLEI_code>                                                                                
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module8  ok</status_ok_empty>                                                         
       <type>100 Gbps Ethernet Module</type>                                                                  
       <num_submods>0</num_submods>                                                                           
       <model_num>N77-F430CQ-36</model_num>                                                                   
       <hw_ver>0.203</hw_ver>                                                                                 
       <part_num>73-101350-02</part_num>                                                                      
       <part_revision>05</part_revision>                                                                      
       <manuf_date>Year 21 Week 35</manuf_date>                                                               
       <serial_num>JAE2135030E</serial_num>                                                                   
       <CLEI_code></CLEI_code>                                                                                
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module9  ok</status_ok_empty>                                                         
       <type>Supervisor Module-2</type>                                                                       
       <num_submods>1</num_submods>                                                                           
       <model_num>N77-SUP2E</model_num>                                                                       
       <hw_ver>1.0</hw_ver>                                                                                   
       <part_num>73-14544-05</part_num>                                                                       
       <part_revision>A0</part_revision>                                                                      
       <manuf_date>Year 17 Week 28</manuf_date>                                                               
       <serial_num>JAE17280TTC</serial_num>                                                                   
       <CLEI_code>CMUCAECBAA</CLEI_code>                                                                      
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module10  ok</status_ok_empty>                                                        
       <type>Supervisor Module-2</type>                                                                       
       <num_submods>1</num_submods>                                                                           
       <model_num>N77-SUP2E</model_num>                                                                       
       <hw_ver>1.4</hw_ver>                                                                                   
       <part_num>73-14544-08</part_num>                                                                       
       <part_revision>B0</part_revision>                                                                      
       <manuf_date>Year 21 Week 8</manuf_date>                                                                
       <serial_num>JAE2108095N</serial_num>                                                                   
       <CLEI_code>CMUCAJFBAA</CLEI_code>                                                                      
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module11  powered-dn</status_ok_empty>                                                
       <type>10/40 Gbps Ethernet Module</type>                                                                
       <num_submods>0</num_submods>                                                                           
       <model_num>N77-M324FQ-25L</model_num>                                                                  
       <hw_ver>0.4</hw_ver>                                                                                   
       <part_num>73-17257-05</part_num>                                                                       
       <part_revision>07</part_revision>                                                                      
       <manuf_date>Year 19 Week 45</manuf_date>                                                               
       <serial_num>JAE194507M7</serial_num>                                                                   
       <CLEI_code></CLEI_code>                                                                                
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module12  empty</status_ok_empty>                                                     
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module13  empty</status_ok_empty>                                                     
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module14  powered-dn</status_ok_empty>                                                
       <type>10/40 Gbps Ethernet Module</type>                                                                
       <num_submods>0</num_submods>                                                                           
       <model_num>N77-F324FQ-25</model_num>                                                                   
       <hw_ver>1.3</hw_ver>                                                                                   
       <part_num>73-15003-08</part_num>                                                                       
       <part_revision>A0</part_revision>                                                                      
       <manuf_date>Year 20 Week 4</manuf_date>                                                                
       <serial_num>JAE200401NH</serial_num>                                                                   
       <CLEI_code>CMUIAJVCAC</CLEI_code>                                                                      
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module15  ok</status_ok_empty>                                                        
       <type>100 Gbps Ethernet Module</type>                                                                  
       <num_submods>0</num_submods>                                                                           
       <model_num>N77-F430CQ-36</model_num>                                                                   
       <hw_ver>0.502</hw_ver>                                                                                 
       <part_num>73-101350-05</part_num>                                                                      
       <part_revision>02</part_revision>                                                                      
       <manuf_date>Year 22 Week 13</manuf_date>                                                               
       <serial_num>JAE221308RC</serial_num>                                                                   
       <CLEI_code></CLEI_code>                                                                                
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module16  powered-dn</status_ok_empty>                                                
       <type>100 Gbps Ethernet Module</type>                                                                  
       <num_submods>0</num_submods>                                                                           
       <model_num>N77-F430CQ-36</model_num>                                                                   
       <hw_ver>0.502</hw_ver>                                                                                 
       <part_num>73-101350-05</part_num>                                                                      
       <part_revision>02</part_revision>                                                                      
       <manuf_date>Year 22 Week 13</manuf_date>                                                               
       <serial_num>JAE221308RQ</serial_num>                                                                   
       <CLEI_code></CLEI_code>                                                                                
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module17  powered-dn</status_ok_empty>                                                
       <type>100 Gbps Ethernet Module</type>                                                                  
       <num_submods>0</num_submods>                                                                           
       <model_num>N77-F312CK-26</model_num>                                                                   
       <hw_ver>0.201</hw_ver>                                                                                 
       <part_num>73-15192-02</part_num>                                                                       
       <part_revision>01</part_revision>                                                                      
       <manuf_date>Year 17 Week 25</manuf_date>                                                               
       <serial_num>JAE17250DTE</serial_num>                                                                   
       <CLEI_code>TBD</CLEI_code>                                                                             
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Module18  empty</status_ok_empty>                                                     
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Xbar1  ok</status_ok_empty>                                                           
       <type>Fabric card module</type>                                                                        
       <num_submods>0</num_submods>                                                                           
       <model_num>N77-C7718-FAB-2</model_num>                                                                 
       <hw_ver>0.201</hw_ver>                                                                                 
       <part_num>73-14158-01</part_num>                                                                       
       <part_revision>28</part_revision>                                                                      
       <manuf_date>Year 16 Week 41</manuf_date>                                                               
       <serial_num>JAF1641BKFL</serial_num>                                                                   
       <CLEI_code>0</CLEI_code>                                                                               
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Xbar2  ok</status_ok_empty>                                                           
       <type>Fabric card module</type>                                                                        
       <num_submods>0</num_submods>                                                                           
       <model_num>N7F-C7018-FAB-2</model_num>                                                                 
       <hw_ver>0.100</hw_ver>                                                                                 
       <part_num>73-14158-01</part_num>                                                                       
       <part_revision>22</part_revision>                                                                      
       <manuf_date>Year 16 Week 10</manuf_date>                                                               
       <serial_num>JAF1610ADQK</serial_num>                                                                   
       <CLEI_code>TBD</CLEI_code>                                                                             
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Xbar3  ok</status_ok_empty>                                                           
       <type>Fabric card module</type>                                                                        
       <num_submods>0</num_submods>                                                                           
       <model_num>N77-C7718-FAB-2</model_num>                                                                 
       <hw_ver>0.201</hw_ver>                                                                                 
       <part_num>73-14158-01</part_num>                                                                       
       <part_revision>28</part_revision>                                                                      
       <manuf_date>Year 16 Week 41</manuf_date>                                                               
       <serial_num>JAF1641BKGS</serial_num>                                                                   
       <CLEI_code>0</CLEI_code>                                                                               
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Xbar4  ok</status_ok_empty>                                                           
       <type>Fabric card module</type>                                                                        
       <num_submods>0</num_submods>                                                                           
       <model_num>N77-C7718-FAB-2</model_num>                                                                 
       <hw_ver>0.201</hw_ver>                                                                                 
       <part_num>73-14158-01</part_num>                                                                       
       <part_revision>28</part_revision>                                                                      
       <manuf_date>Year 16 Week 38</manuf_date>                                                               
       <serial_num>JAF1638BCRB</serial_num>                                                                   
       <CLEI_code>0</CLEI_code>                                                                               
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Xbar5  ok</status_ok_empty>                                                           
       <type>Fabric card module</type>                                                                        
       <num_submods>0</num_submods>                                                                           
       <model_num>N7F-C7018-FAB-2</model_num>                                                                 
       <hw_ver>0.201</hw_ver>                                                                                 
       <part_num>73-14158-01</part_num>                                                                       
       <part_revision>28</part_revision>                                                                      
       <manuf_date>Year 16 Week 38</manuf_date>                                                               
       <serial_num>JAF1638ASCR</serial_num>                                                                   
       <CLEI_code></CLEI_code>                                                                                
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Xbar6  ok</status_ok_empty>                                                           
       <type>Fabric card module</type>                                                                        
       <num_submods>0</num_submods>                                                                           
       <model_num>N77-C7718-FAB-2</model_num>                                                                 
       <hw_ver>0.201</hw_ver>                                                                                 
       <part_num>73-14158-01</part_num>                                                                       
       <part_revision>28</part_revision>                                                                      
       <manuf_date>Year 16 Week 35</manuf_date>                                                               
       <serial_num>JAF1635APBK</serial_num>                                                                   
       <CLEI_code>0</CLEI_code>                                                                               
      </ROW_slot_info>                                                                                        
     </TABLE_slot_info>                                                                                       
     <num_slot_str>16 PowerSupply Slots</num_slot_str>                                                        
     <TABLE_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>PS1 absent</status_ok_empty>                                                          
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>PS2 ok</status_ok_empty>                                                              
       <type>3000.00W 220v AC</type>                                                                          
       <model_num>N7K-AC-3KW</model_num>                                                                      
       <hw_ver>1.0</hw_ver>                                                                                   
       <part_num>341-0428-01</part_num>                                                                       
       <part_revision>A0 </part_revision>                                                                     
       <manuf_date>Year 16 Week 49</manuf_date>                                                               
       <serial_num>DTM1649029N</serial_num>                                                                   
       <CLEI_code>CMUPABRCAA</CLEI_code>                                                                      
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>PS3 ok</status_ok_empty>                                                              
       <type>3000.00W 220v AC</type>                                                                          
       <model_num>N7K-AC-3KW</model_num>                                                                      
       <hw_ver>1.0</hw_ver>                                                                                   
       <part_num>341-0428-01</part_num>                                                                       
       <part_revision>A0 </part_revision>                                                                     
       <manuf_date>Year 16 Week 48</manuf_date>                                                               
       <serial_num>DTM164800LU</serial_num>                                                                   
       <CLEI_code>CMUPABRCAA</CLEI_code>                                                                      
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>PS4 absent</status_ok_empty>                                                          
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>PS5 absent</status_ok_empty>                                                          
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>PS6 ok</status_ok_empty>                                                              
       <type>3000.00W 220v AC</type>                                                                          
       <model_num>N7K-AC-3KW</model_num>                                                                      
       <hw_ver>1.0</hw_ver>                                                                                   
       <part_num>341-0428-01</part_num>                                                                       
       <part_revision>A0 </part_revision>                                                                     
       <manuf_date>Year 16 Week 48</manuf_date>                                                               
       <serial_num>DTM164800L2</serial_num>                                                                   
       <CLEI_code>CMUPABRCAA</CLEI_code>                                                                      
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>PS7 absent</status_ok_empty>                                                          
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>PS8 absent</status_ok_empty>                                                          
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>PS9 absent</status_ok_empty>                                                          
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>PS10 absent</status_ok_empty>                                                         
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>PS11 absent</status_ok_empty>                                                         
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>PS12 absent</status_ok_empty>                                                         
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>PS13 fail/shutdown</status_ok_empty>                                                  
       <type>3000.00W 220v AC</type>                                                                          
       <model_num>N77-AC-3KW</model_num>                                                                      
       <hw_ver>1.0</hw_ver>                                                                                   
       <part_num>341-0600-01</part_num>                                                                       
       <part_revision>01 </part_revision>                                                                     
       <manuf_date>Year 17 Week 12</manuf_date>                                                               
       <serial_num>DTM1712000C</serial_num>                                                                   
       <CLEI_code>CMUPAB4CAA</CLEI_code>                                                                      
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>PS14 fail/shutdown</status_ok_empty>                                                  
       <type>3000.00W 220v AC</type>                                                                          
       <model_num>N77-AC-3KW</model_num>                                                                      
       <hw_ver>1.1</hw_ver>                                                                                   
       <part_num>341-0600-01</part_num>                                                                       
       <part_revision>A1 </part_revision>                                                                     
       <manuf_date>Year 17 Week 21</manuf_date>                                                               
       <serial_num>DTM172102WY</serial_num>                                                                   
       <CLEI_code>CMUPAB4CAA</CLEI_code>                                                                      
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>PS15 fail/shutdown</status_ok_empty>                                                  
       <type>3000.00W 220v AC</type>                                                                          
       <model_num>N77-AC-3KW</model_num>                                                                      
       <hw_ver>1.1</hw_ver>                                                                                   
       <part_num>341-0600-01</part_num>                                                                       
       <part_revision>A1 </part_revision>                                                                     
       <manuf_date>Year 17 Week 21</manuf_date>                                                               
       <serial_num>DTM1721031T</serial_num>                                                                   
       <CLEI_code>CMUPAB4CAA</CLEI_code>                                                                      
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>PS16 absent</status_ok_empty>                                                         
      </ROW_slot_info>                                                                                        
     </TABLE_slot_info>                                                                                       
     <num_slot_str>3 Fan slots</num_slot_str>                                                                 
     <TABLE_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Fan1(sys_fan1) ok</status_ok_empty>                                                   
       <model_num>N77-C7718-FAN-2</model_num>                                                                 
       <hw_ver>0.100</hw_ver>                                                                                 
       <part_num>73-101408-01</part_num>                                                                      
       <part_revision>01</part_revision>                                                                      
       <manuf_date>Year 20 Week 51</manuf_date>                                                               
       <serial_num>NCV2051T02B</serial_num>                                                                   
       <CLEI_code>NOCLEICODE</CLEI_code>                                                                      
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Fan2(sys_fan2) ok</status_ok_empty>                                                   
       <model_num>N77-C7718-FAN-2</model_num>                                                                 
       <hw_ver>0.100</hw_ver>                                                                                 
       <part_num>73-101408-01</part_num>                                                                      
       <part_revision>01</part_revision>                                                                      
       <manuf_date>Year 20 Week 51</manuf_date>                                                               
       <serial_num>NCV2051T02Y</serial_num>                                                                   
       <CLEI_code>NOCLEICODE</CLEI_code>                                                                      
      </ROW_slot_info>                                                                                        
      <ROW_slot_info>                                                                                         
       <status_ok_empty>Fan3(sys_fan3) ok</status_ok_empty>                                                   
       <model_num>N77-C7718-FAN-2</model_num>                                                                 
       <hw_ver>0.100</hw_ver>                                                                                 
       <part_num>73-101408-01</part_num>                                                                      
       <part_revision>01</part_revision>                                                                      
       <manuf_date>Year 20 Week 51</manuf_date>                                                               
       <serial_num>NCV2051T027</serial_num>                                                                   
       <CLEI_code>NOCLEICODE</CLEI_code>                                                                      
      </ROW_slot_info>                                                                                        
     </TABLE_slot_info>                                                                                       
    </__readonly__>                                                                                           
   </hardware>                                                                                                
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>           

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware**

Cisco Nexus Operating System (NX-OS) Software
TAC support: http://www.cisco.com/tac        
Documents: http://www.cisco.com/en/US/products/ps9372/tsd_products_support_series_home.html
Copyright (c) 2002-2018, Cisco Systems, Inc. All rights reserved.                          
The copyrights to certain works contained in this software are                             
owned by other third parties and used and distributed under                                
license. Certain components of this software are licensed under                            
the GNU General Public License (GPL) version 2.0 or the GNU                                
Lesser General Public License (LGPL) Version 2.1. A copy of each                           
such license is available at                                                               
http://www.opensource.org/licenses/gpl-2.0.php and                                         
http://www.opensource.org/licenses/lgpl-2.1.php                                            

Software BIOS: version 3.1.0 kickstart: version 8.3(1) system: version 8.3(1) BIOS compile time: 02/27/2013 kickstart image file is: bootflash:///n7700-s2-kickstart.8.3.1.bin kickstart compile time: 7/30/2018 12:00:00 [07/01/2018 16:49:53] system image file is: bootflash:///n7700-s2-dk9.8.3.1.bin
system compile time: 7/30/2018 12:00:00 [07/01/2018 19:19:39]

Hardware cisco Nexus7700 C7718 (18 Slot) Chassis ("Supervisor Module-2") Intel(R) Xeon(R) CPU with 32939156 kB of memory.
Processor Board ID JAE17280TTC

Device name: SUP2E-APEX18 bootflash: 4014080 kB slot0: 0 kB (expansion flash)

Kernel uptime is 0 day(s), 5 hour(s), 37 minute(s), 14 second(s)

Last reset Reason: Unknown System version: 8.3(1) Service:

plugin Core Plugin, Ethernet Plugin

Switch hardware ID information

Switch is booted up Switch type is : Nexus7700 C7718 (18 Slot) Chassis Model number is N7F-C7018
H/W version is 0.100
Part Number is 73-14605-02
Part Revision is 04
Manufacture Date is Year 16 Week 45
Serial number is JAF1645ALJF
CLEI code is


Chassis has 18 Module slots and 6 Fabric slots

Module1 powered-dn Module type is : 1/10 Gbps Ethernet Module 0 submodules are present
Model number is N77-F248XP-23E
H/W version is 1.3
Part Number is 73-14545-07
Part Revision is B0
Manufacture Date is Year 18 Week 51
Serial number is JAE185101F9
CLEI code is CMUCAD5BAA

Module2 empty

Module3 powered-dn Module type is : 100 Gbps Ethernet Module 0 submodules are present
Model number is N77-F436FQ-33
H/W version is 0.103
Part Number is 73-17777-01
Part Revision is 12
Manufacture Date is Year 21 Week 1
Serial number is JAE210102SZ
CLEI code is

Module4 powered-dn Module type is : 10/40 Gbps Ethernet Module 0 submodules are present
Model number is N77-F324FQ-25
H/W version is 0.401
Part Number is 73-15003-04
Part Revision is 03
Manufacture Date is Year 17 Week 22
Serial number is JAE172205GE
CLEI code is TBD

Module5 powered-dn Module type is : 1/10 Gbps Ethernet Module 0 submodules are present
Model number is N77-F348XP-23
H/W version is 1.3
Part Number is 73-15670-04
Part Revision is B0
Manufacture Date is Year 18 Week 36
Serial number is JAE183602MZ
CLEI code is CMUIAJNCAA

Module6 ok Module type is : 1/10 Gbps Ethernet Module 0 submodules are present
Model number is N77-M348XP-32L
H/W version is 0.701
Part Number is 73-16085-07
Part Revision is 05
Manufacture Date is Year 19 Week 44
Serial number is JAE194401UE
CLEI code is

Module7 ok Module type is : 100 Gbps Ethernet Module 0 submodules are present
Model number is N77-F430CQ-36
H/W version is 0.203
Part Number is 73-101350-02
Part Revision is 05
Manufacture Date is Year 21 Week 43
Serial number is JAE214303LZ
CLEI code is

Module8 ok Module type is : 100 Gbps Ethernet Module 0 submodules are present
Model number is N77-F430CQ-36
H/W version is 0.203
Part Number is 73-101350-02
Part Revision is 05
Manufacture Date is Year 21 Week 35
Serial number is JAE2135030E
CLEI code is

Module9 ok Module type is : Supervisor Module-2 1 submodules are present
Model number is N77-SUP2E
H/W version is 1.0
Part Number is 73-14544-05
Part Revision is A0
Manufacture Date is Year 17 Week 28 Serial number is JAE17280TTC
CLEI code is CMUCAECBAA

Module10 ok Module type is : Supervisor Module-2 1 submodules are present
Model number is N77-SUP2E
H/W version is 1.4
Part Number is 73-14544-08
Part Revision is B0
Manufacture Date is Year 21 Week 8
Serial number is JAE2108095N
CLEI code is CMUCAJFBAA

Module11 powered-dn Module type is : 10/40 Gbps Ethernet Module 0 submodules are present
Model number is N77-M324FQ-25L
H/W version is 0.4
Part Number is 73-17257-05
Part Revision is 07
Manufacture Date is Year 19 Week 45
Serial number is JAE194507M7
CLEI code is

Module12 empty

Module13 empty

Module14 powered-dn Module type is : 10/40 Gbps Ethernet Module 0 submodules are present
Model number is N77-F324FQ-25
H/W version is 1.3
Part Number is 73-15003-08
Part Revision is A0
Manufacture Date is Year 20 Week 4
Serial number is JAE200401NH
CLEI code is CMUIAJVCAC

Module15 ok Module type is : 100 Gbps Ethernet Module 0 submodules are present
Model number is N77-F430CQ-36
H/W version is 0.502
Part Number is 73-101350-05
Part Revision is 02
Manufacture Date is Year 22 Week 13
Serial number is JAE221308RC
CLEI code is

Module16 powered-dn Module type is : 100 Gbps Ethernet Module 0 submodules are present
Model number is N77-F430CQ-36
H/W version is 0.502
Part Number is 73-101350-05
Part Revision is 02
Manufacture Date is Year 22 Week 13
Serial number is JAE221308RQ
CLEI code is

Module17 powered-dn Module type is : 100 Gbps Ethernet Module 0 submodules are present
Model number is N77-F312CK-26
H/W version is 0.201
Part Number is 73-15192-02
Part Revision is 01
Manufacture Date is Year 17 Week 25
Serial number is JAE17250DTE
CLEI code is TBD

Module18 empty

Xbar1 ok Module type is : Fabric card module 0 submodules are present
Model number is N77-C7718-FAB-2
H/W version is 0.201
Part Number is 73-14158-01
Part Revision is 28
Manufacture Date is Year 16 Week 41 Serial number is JAF1641BKFL
CLEI code is 0

Xbar2 ok Module type is : Fabric card module 0 submodules are present
Model number is N7F-C7018-FAB-2
H/W version is 0.100
Part Number is 73-14158-01
Part Revision is 22
Manufacture Date is Year 16 Week 10 Serial number is JAF1610ADQK
CLEI code is TBD

Xbar3 ok Module type is : Fabric card module 0 submodules are present
Model number is N77-C7718-FAB-2
H/W version is 0.201
Part Number is 73-14158-01
Part Revision is 28
Manufacture Date is Year 16 Week 41 Serial number is JAF1641BKGS
CLEI code is 0

Xbar4 ok Module type is : Fabric card module 0 submodules are present
Model number is N77-C7718-FAB-2
H/W version is 0.201
Part Number is 73-14158-01
Part Revision is 28
Manufacture Date is Year 16 Week 38 Serial number is JAF1638BCRB
CLEI code is 0

Xbar5 ok Module type is : Fabric card module 0 submodules are present
Model number is N7F-C7018-FAB-2
H/W version is 0.201
Part Number is 73-14158-01
Part Revision is 28
Manufacture Date is Year 16 Week 38 Serial number is JAF1638ASCR
CLEI code is

Xbar6 ok Module type is : Fabric card module 0 submodules are present
Model number is N77-C7718-FAB-2
H/W version is 0.201
Part Number is 73-14158-01
Part Revision is 28
Manufacture Date is Year 16 Week 35 Serial number is JAF1635APBK
CLEI code is 0


Chassis has 16 PowerSupply Slots

PS1 absent

PS2 ok Power supply type is: 3000.00W 220v AC Model number is N7K-AC-3KW
H/W version is 1.0
Part Number is 341-0428-01
Part Revision is A0
Manufacture Date is Year 16 Week 49
Serial number is DTM1649029N
CLEI code is CMUPABRCAA

PS3 ok Power supply type is: 3000.00W 220v AC Model number is N7K-AC-3KW
H/W version is 1.0
Part Number is 341-0428-01
Part Revision is A0
Manufacture Date is Year 16 Week 48
Serial number is DTM164800LU
CLEI code is CMUPABRCAA

PS4 absent

PS5 absent

PS6 ok Power supply type is: 3000.00W 220v AC Model number is N7K-AC-3KW
H/W version is 1.0
Part Number is 341-0428-01
Part Revision is A0
Manufacture Date is Year 16 Week 48
Serial number is DTM164800L2
CLEI code is CMUPABRCAA

PS7 absent

PS8 absent

PS9 absent

PS10 absent

PS11 absent

PS12 absent

PS13 fail/shutdown Power supply type is: 3000.00W 220v AC Model number is N77-AC-3KW
H/W version is 1.0
Part Number is 341-0600-01
Part Revision is 01
Manufacture Date is Year 17 Week 12
Serial number is DTM1712000C
CLEI code is CMUPAB4CAA

PS14 fail/shutdown Power supply type is: 3000.00W 220v AC Model number is N77-AC-3KW
H/W version is 1.1
Part Number is 341-0600-01
Part Revision is A1
Manufacture Date is Year 17 Week 21
Serial number is DTM172102WY
CLEI code is CMUPAB4CAA

PS15 fail/shutdown Power supply type is: 3000.00W 220v AC Model number is N77-AC-3KW
H/W version is 1.1
Part Number is 341-0600-01
Part Revision is A1
Manufacture Date is Year 17 Week 21
Serial number is DTM1721031T
CLEI code is CMUPAB4CAA

PS16 absent


Chassis has 3 Fan slots

Fan1(sys_fan1) ok Model number is N77-C7718-FAN-2 H/W version is 0.100
Part Number is 73-101408-01
Part Revision is 01
Manufacture Date is Year 20 Week 51 Serial number is NCV2051T02B
CLEI code is NOCLEICODE

Fan2(sys_fan2) ok Model number is N77-C7718-FAN-2 H/W version is 0.100
Part Number is 73-101408-01
Part Revision is 01
Manufacture Date is Year 20 Week 51 Serial number is NCV2051T02Y
CLEI code is NOCLEICODE

Fan3(sys_fan3) ok Model number is N77-C7718-FAN-2 H/W version is 0.100
Part Number is 73-101408-01
Part Revision is 01
Manufacture Date is Year 20 Week 51 Serial number is NCV2051T027
CLEI code is NOCLEICODE

show hardware capacity eobc

show hardware capacity eobc
 
import requests
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 hardware capacity eobc”,
  "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)
{
  "eobc_usage": {
    "eobc_tx_pps": 40,
    "eobc_tx_packets": 2360153,
    "eobc_tx_dropped": 0,
    "eobc_rx_pps": 187,
    "eobc_rx_packets": 4662342,
    "eobc_rx_dropped": 5
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>            
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <hardware>
    <capacity>
     <eobc>
      <__readonly__>
       <eobc_usage>
        <eobc_tx_pps>88</eobc_tx_pps>
        <eobc_tx_packets>2359963</eobc_tx_packets>
        <eobc_tx_dropped>0</eobc_tx_dropped>
        <eobc_rx_pps>210</eobc_rx_pps>
        <eobc_rx_packets>4661616</eobc_rx_packets>
        <eobc_rx_dropped>5</eobc_rx_dropped>
       </eobc_usage>
      </__readonly__>
     </eobc>
    </capacity>
   </hardware>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware capacity eobc**

EOBC Resources:
      Packets/sec        Total packets      Dropped packets
  Tx:         127              2359649                    0
  Rx:         286              4660792                    5

show hardware capacity module

show hardware capacity module
 
import requests
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 hardware capacity module”,
  "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)
{                                                       
  "sup_ha_status": {                                    
    "dual_sup_hw_state": "Enabled",                     
    "redundancy_state": "Active with HA standby"        
  },                                                    
  "switch_resouces": {                                  
    "TABLE_lcinfo": {                                   
      "ROW_lcinfo": [                                   
        {                                               
          "mod_num": 1,                                 
          "model_num": "N77-F248XP-23E",                
          "part_num": "73-14545-07",                    
          "serial_num": "JAE185101F9"                   
        },                                              
        {                                               
          "mod_num": 3,                                 
          "model_num": "N77-F436FQ-33",                 
          "part_num": "73-17777-01",                    
          "serial_num": "JAE210102SZ"                   
        },                                              
        {                                               
          "mod_num": 4,                                 
          "model_num": "N77-F324FQ-25",                 
          "part_num": "73-15003-04",                    
          "serial_num": "JAE172205GE"                   
        },                                              
        {                                               
          "mod_num": 5,                                 
          "model_num": "N77-F348XP-23",                 
          "part_num": "73-15670-04",                    
          "serial_num": "JAE183602MZ"                   
        },                                              
        {                                               
          "mod_num": 6,                                 
          "model_num": "N77-M348XP-32L",                
          "part_num": "73-16085-07",                    
          "serial_num": "JAE194401UE"                   
        },                                              
        {                                               
          "mod_num": 7,                                 
          "model_num": "N77-F430CQ-36",                 
          "part_num": "73-101350-02",                   
          "serial_num": "JAE214303LZ"                   
        },                                              
        {                                               
          "mod_num": 8,                                 
          "model_num": "N77-F430CQ-36",                 
          "part_num": "73-101350-02",                   
          "serial_num": "JAE2135030E"                   
        },                                              
        {                                               
          "mod_num": 9,                                 
          "model_num": "N77-SUP2E",                     
          "part_num": "73-14544-05",                    
          "serial_num": "JAE17280TTC"                   
        },                                              
        {                                               
          "mod_num": 10,                                
          "model_num": "N77-SUP2E",                     
          "part_num": "73-14544-08",                    
          "serial_num": "JAE2108095N"                   
        },                                              
        {                                               
          "mod_num": 11,                                
          "model_num": "N77-M324FQ-25L",                
          "part_num": "73-17257-05",                    
          "serial_num": "JAE194507M7"                   
        },                                              
        {                                               
          "mod_num": 14,                                
          "model_num": "N77-F324FQ-25",                 
          "part_num": "73-15003-08",                    
          "serial_num": "JAE200401NH"                   
        },                                              
        {                                               
          "mod_num": 15,                                
          "model_num": "N77-F430CQ-36",                 
          "part_num": "73-101350-05",                   
          "serial_num": "JAE221308RC"                   
        },                                              
        {                                               
          "mod_num": 16,                                
          "model_num": "N77-F430CQ-36",                 
          "part_num": "73-101350-05",                   
          "serial_num": "JAE221308RQ"                   
        },                                              
        {                                               
          "mod_num": 17,                                
          "model_num": "N77-F312CK-26",                 
          "part_num": "73-15192-02",                    
          "serial_num": "JAE17250DTE"                   
        }                                               
      ]                                                 
    },                                                  
    "TABLE_xbarinfo": {                                 
      "ROW_xbarinfo": [                                 
        {                                               
          "mod_num1": 1,                                
          "model_num1": "N77-C7718-FAB-2",              
          "part_num1": "73-14158-01",                   
          "serial_num1": "JAF1641BKFL"                  
        },                                              
        {                                               
          "mod_num1": 2,                                
          "model_num1": "N7F-C7018-FAB-2",              
          "part_num1": "73-14158-01",                   
          "serial_num1": "JAF1610ADQK"                  
        },                                              
        {                                               
          "mod_num1": 3,                                
          "model_num1": "N77-C7718-FAB-2",              
          "part_num1": "73-14158-01",                   
          "serial_num1": "JAF1641BKGS"                  
        },                                              
        {                                               
          "mod_num1": 4,                                
          "model_num1": "N77-C7718-FAB-2",              
          "part_num1": "73-14158-01",                   
          "serial_num1": "JAF1638BCRB"                  
        },                                              
        {                                               
          "mod_num1": 5,                                
          "model_num1": "N7F-C7018-FAB-2",              
          "part_num1": "73-14158-01",                   
          "serial_num1": "JAF1638ASCR"                  
        },                                              
        {                                               
          "mod_num1": 6,                                
          "model_num1": "N77-C7718-FAB-2",              
          "part_num1": "73-14158-01",                   
          "serial_num1": "JAF1635APBK"                  
        }                                               
      ]                                                 
    }                                                   
  },                                                    
  "TABLE_flash_nvram_info": {                           
    "ROW_flash_nvram_info": [                           
      {                                                 
        "mod_num2": 9,
        "dev_name": "bootflash",
        "total_bytes": "3705856",
        "free_bytes": "657692",
        "percent_used": "82"
      },
      {
        "mod_num2": 10,
        "dev_name": "bootflash",
        "total_bytes": "3626968",
        "free_bytes": "591080",
        "percent_used": "83"
      },
      {
        "mod_num2": 9,
        "dev_name": "logflash",
        "total_bytes": "15261600",
        "free_bytes": "13146168",
        "percent_used": "13"
      },
      {
        "mod_num2": 10,
        "dev_name": "logflash",
        "total_bytes": "15972760",
        "free_bytes": "12989688",
        "percent_used": "18"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>            
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <hardware>                                                                                                 
    <capacity>                                                                                                
     <module>                                                                                                 
      <__readonly__>                                                                                          
       <sup_ha_status>                                                                                        
        <dual_sup_hw_state>Enabled</dual_sup_hw_state>                                                        
        <redundancy_state>Active with HA standby</redundancy_state>                                           
       </sup_ha_status>                                                                                       
       <switch_resouces>                                                                                      
        <TABLE_lcinfo>                                                                                        
         <ROW_lcinfo>                                                                                         
          <mod_num>1</mod_num>                                                                                
          <model_num>N77-F248XP-23E   </model_num>                                                            
          <part_num>73-14545-07      </part_num>                                                              
          <serial_num>JAE185101F9      </serial_num>                                                          
         </ROW_lcinfo>                                                                                        
         <ROW_lcinfo>                                                                                         
          <mod_num>3</mod_num>                                                                                
          <model_num>N77-F436FQ-33    </model_num>                                                            
          <part_num>73-17777-01      </part_num>                                                              
          <serial_num>JAE210102SZ      </serial_num>                                                          
         </ROW_lcinfo>                                                                                        
         <ROW_lcinfo>                                                                                         
          <mod_num>4</mod_num>                                                                                
          <model_num>N77-F324FQ-25    </model_num>                                                            
          <part_num>73-15003-04      </part_num>                                                              
          <serial_num>JAE172205GE      </serial_num>                                                          
         </ROW_lcinfo>                                                                                        
         <ROW_lcinfo>                                                                                         
          <mod_num>5</mod_num>                                                                                
          <model_num>N77-F348XP-23    </model_num>                                                            
          <part_num>73-15670-04      </part_num>                                                              
          <serial_num>JAE183602MZ      </serial_num>                                                          
         </ROW_lcinfo>                                                                                        
         <ROW_lcinfo>                                                                                         
          <mod_num>6</mod_num>                                                                                
          <model_num>N77-M348XP-32L   </model_num>                                                            
          <part_num>73-16085-07      </part_num>                                                              
          <serial_num>JAE194401UE      </serial_num>                                                          
         </ROW_lcinfo>                                                                                        
         <ROW_lcinfo>                                                                                         
          <mod_num>7</mod_num>                                                                                
          <model_num>N77-F430CQ-36    </model_num>                                                            
          <part_num>73-101350-02     </part_num>                                                              
          <serial_num>JAE214303LZ      </serial_num>                                                          
         </ROW_lcinfo>                                                                                        
         <ROW_lcinfo>                                                                                         
          <mod_num>8</mod_num>                                                                                
          <model_num>N77-F430CQ-36    </model_num>                                                            
          <part_num>73-101350-02     </part_num>                                                              
          <serial_num>JAE2135030E      </serial_num>                                                          
         </ROW_lcinfo>                                                                                        
         <ROW_lcinfo>                                                                                         
          <mod_num>9</mod_num>                                                                                
          <model_num>N77-SUP2E        </model_num>                                                            
          <part_num>73-14544-05      </part_num>                                                              
          <serial_num>JAE17280TTC      </serial_num>                                                          
         </ROW_lcinfo>                                                                                        
         <ROW_lcinfo>                                                                                         
          <mod_num>10</mod_num>                                                                               
          <model_num>N77-SUP2E        </model_num>                                                            
          <part_num>73-14544-08      </part_num>                                                              
          <serial_num>JAE2108095N      </serial_num>                                                          
         </ROW_lcinfo>                                                                                        
         <ROW_lcinfo>                                                                                         
          <mod_num>11</mod_num>                                                                               
          <model_num>N77-M324FQ-25L   </model_num>                                                            
          <part_num>73-17257-05      </part_num>                                                              
          <serial_num>JAE194507M7      </serial_num>                                                          
         </ROW_lcinfo>                                                                                        
         <ROW_lcinfo>                                                                                         
          <mod_num>14</mod_num>                                                                               
          <model_num>N77-F324FQ-25    </model_num>                                                            
          <part_num>73-15003-08      </part_num>                                                              
          <serial_num>JAE200401NH      </serial_num>                                                          
         </ROW_lcinfo>                                                                                        
         <ROW_lcinfo>                                                                                         
          <mod_num>15</mod_num>                                                                               
          <model_num>N77-F430CQ-36    </model_num>                                                            
          <part_num>73-101350-05     </part_num>                                                              
          <serial_num>JAE221308RC      </serial_num>                                                          
         </ROW_lcinfo>                                                                                        
         <ROW_lcinfo>                                                                                         
          <mod_num>16</mod_num>                                                                               
          <model_num>N77-F430CQ-36    </model_num>                                                            
          <part_num>73-101350-05     </part_num>                                                              
          <serial_num>JAE221308RQ      </serial_num>                                                          
         </ROW_lcinfo>                                                                                        
         <ROW_lcinfo>                                                                                         
          <mod_num>17</mod_num>                                                                               
          <model_num>N77-F312CK-26    </model_num>                                                            
          <part_num>73-15192-02      </part_num>                                                              
          <serial_num>JAE17250DTE      </serial_num>                                                          
         </ROW_lcinfo>                                                                                        
        </TABLE_lcinfo>                                                                                       
        <TABLE_xbarinfo>                                                                                      
         <ROW_xbarinfo>                                                                                       
          <mod_num1>1</mod_num1>                                                                              
          <model_num1>N77-C7718-FAB-2  </model_num1>                                                          
          <part_num1>73-14158-01      </part_num1>                                                            
          <serial_num1>JAF1641BKFL      </serial_num1>                                                        
         </ROW_xbarinfo>                                                                                      
         <ROW_xbarinfo>                                                                                       
          <mod_num1>2</mod_num1>                                                                              
          <model_num1>N7F-C7018-FAB-2  </model_num1>                                                          
          <part_num1>73-14158-01      </part_num1>                                                            
          <serial_num1>JAF1610ADQK      </serial_num1>                                                        
         </ROW_xbarinfo>                                                                                      
         <ROW_xbarinfo>                                                                                       
          <mod_num1>3</mod_num1>                                                                              
          <model_num1>N77-C7718-FAB-2  </model_num1>                                                          
          <part_num1>73-14158-01      </part_num1>                                                            
          <serial_num1>JAF1641BKGS      </serial_num1>                                                        
         </ROW_xbarinfo>                                                                                      
         <ROW_xbarinfo>                                                                                       
          <mod_num1>4</mod_num1>                                                                              
          <model_num1>N77-C7718-FAB-2  </model_num1>                                                          
          <part_num1>73-14158-01      </part_num1>                                                            
          <serial_num1>JAF1638BCRB      </serial_num1>                                                        
         </ROW_xbarinfo>                                                                                      
         <ROW_xbarinfo>                                                                                       
          <mod_num1>5</mod_num1>                                                                              
          <model_num1>N7F-C7018-FAB-2  </model_num1>                                                          
          <part_num1>73-14158-01      </part_num1>                                                            
          <serial_num1>JAF1638ASCR      </serial_num1>                                                        
         </ROW_xbarinfo>                                                                                      
         <ROW_xbarinfo>                                                                                       
          <mod_num1>6</mod_num1>                                                                              
          <model_num1>N77-C7718-FAB-2  </model_num1>                                                          
          <part_num1>73-14158-01      </part_num1>                                                            
          <serial_num1>JAF1635APBK      </serial_num1>                                                        
         </ROW_xbarinfo>                                                                                      
        </TABLE_xbarinfo>                                                                                     
       </switch_resouces>                                                                                     
       <TABLE_flash_nvram_info>                                                                               
        <ROW_flash_nvram_info>                                                                                
         <mod_num2>9</mod_num2>                                                                               
         <dev_name>bootflash </dev_name>                                                                      
         <total_bytes>  3705856</total_bytes>                                                                 
         <free_bytes>   657692</free_bytes>                                                                   
         <percent_used> 82</percent_used>                                                                     
        </ROW_flash_nvram_info>                                                                               
        <ROW_flash_nvram_info>                                                                                
         <mod_num2>10</mod_num2>                                                                              
         <dev_name>bootflash </dev_name>                                                                      
         <total_bytes>  3626968</total_bytes>                                                                 
         <free_bytes>   591080</free_bytes>                                                                   
         <percent_used> 83</percent_used>                                                                     
        </ROW_flash_nvram_info>                                                                               
        <ROW_flash_nvram_info>                                                                                
         <mod_num2>9</mod_num2>                                                                               
         <dev_name>logflash  </dev_name>                                                                      
         <total_bytes> 15261600</total_bytes>                                                                 
         <free_bytes> 13146168</free_bytes>                                                                   
         <percent_used> 13</percent_used>                                                                     
        </ROW_flash_nvram_info>                                                                               
        <ROW_flash_nvram_info>                                                                                
         <mod_num2>10</mod_num2>                                                                              
         <dev_name>logflash  </dev_name>                                                                      
         <total_bytes> 15972760</total_bytes>                                                                 
         <free_bytes> 12989688</free_bytes>                                                                   
         <percent_used> 18</percent_used>                                                                     
        </ROW_flash_nvram_info>                                                                               
       </TABLE_flash_nvram_info>                                                                              
      </__readonly__>                                                                                         
     </module>                                                                                                
    </capacity>                                                                                               
   </hardware>                                                                                                
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>    

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware capacity module**

Supervisor Redundancy HW State(Dual-SUPs):   Enabled
Redundancy state: Active with HA standby            

Switching Resources:

Module Model Number Part Number Serial Number

1 N77-F248XP-23E 73-14545-07 JAE185101F9
3 N77-F436FQ-33 73-17777-01 JAE210102SZ
4 N77-F324FQ-25 73-15003-04 JAE172205GE
5 N77-F348XP-23 73-15670-04 JAE183602MZ
6 N77-M348XP-32L 73-16085-07 JAE194401UE
7 N77-F430CQ-36 73-101350-02 JAE214303LZ
8 N77-F430CQ-36 73-101350-02 JAE2135030E
9 N77-SUP2E 73-14544-05 JAE17280TTC
10 N77-SUP2E 73-14544-08 JAE2108095N
11 N77-M324FQ-25L 73-17257-05 JAE194507M7
14 N77-F324FQ-25 73-15003-08 JAE200401NH
15 N77-F430CQ-36 73-101350-05 JAE221308RC
16 N77-F430CQ-36 73-101350-05 JAE221308RQ
17 N77-F312CK-26 73-15192-02 JAE17250DTE

XBAR Resources:

XbarNum Model Number Part Number Serial Number

1 N77-C7718-FAB-2 73-14158-01 JAF1641BKFL
2 N7F-C7018-FAB-2 73-14158-01 JAF1610ADQK
3 N77-C7718-FAB-2 73-14158-01 JAF1641BKGS
4 N77-C7718-FAB-2 73-14158-01 JAF1638BCRB
5 N7F-C7018-FAB-2 73-14158-01 JAF1638ASCR
6 N77-C7718-FAB-2 73-14158-01 JAF1635APBK

Flash/NVRAM Resources:

Usage: Module Device Total(KB) Free(KB) %Used

       9      bootflash     3705856      657692     82   
      10      bootflash     3626968      591080     83   
       9      logflash     15261600    13146168     13   
      10      logflash     15972760    12989688     18   

show hardware capacity power

show hardware capacity power
 
import requests
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 hardware capacity power”,
  "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)
{
  "power_summary": {
    "ps_redun_mode_admin": "Non-Redundant(combined)",
    "ps_redun_mode_oper": "Non-Redundant(combined)",
    "power_total": "9000.00 W",
    "power_rsvd": "5030.00 W",
    "power_rsvd_percent": "( 55.89 % )",
    "power_given_mod": "3450.00 W",
    "power_given_mod_percent": "( 38.33 % )",
    "power_avail": "520.00 W",
    "power_avail_percent": "( 5.78 % )",
    "power_out_actual_draw": "3900.00 W"
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>           
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <hardware>                                                                                                 
    <capacity>                                                                                                
     <power>                                                                                                  
      <__readonly__>                                                                                          
       <power_summary>                                                                                        
        <ps_redun_mode_admin>Non-Redundant(combined)</ps_redun_mode_admin>                                    
        <ps_redun_mode_oper>Non-Redundant(combined)</ps_redun_mode_oper>                                      
        <power_total> 9000.00 W</power_total>                                                                 
        <power_rsvd> 5030.00 W</power_rsvd>
        <power_rsvd_percent> ( 55.89 % )</power_rsvd_percent>
        <power_given_mod> 3450.00 W</power_given_mod>
        <power_given_mod_percent> ( 38.33 % )</power_given_mod_percent>
        <power_avail>  520.00 W</power_avail>
        <power_avail_percent> ( 5.78 % )</power_avail_percent>
        <power_out_actual_draw> 3900.00 W</power_out_actual_draw>
       </power_summary>
      </__readonly__>
     </power>
    </capacity>
   </hardware>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show hardware capacity power

Power Resources Summary:

Power Supply redundancy mode(administratively): Non-Redundant(combined) Power Supply redundancy mode(operationally): Non-Redundant(combined) Total Power Capacity 9000.00 W
Power reserved for SUP,Fabric,and Fan Module(s) 5030.00 W ( 55.89 % )
Power currently used by Modules 3450.00 W ( 38.33 % )
Total Power Available 520.00 W ( 5.78 % )
Total Power Output (actual draw) 3900.00 W

show inventory

show inventory
 
import requests
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 inventory”,
  "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)
{                                          
  "TABLE_inv": {                           
    "ROW_inv": [                           
      {                                    
        "name": "\"Chassis\"",             
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis \"", 
        "productid": "N7F-C7018",                         
        "vendorid": "V01",                                
        "serialnum": "JAF1645ALJF"                        
      },                                                  
      {                                                   
        "name": "\"Slot 1\"",                             
        "desc": "\"1/10 Gbps Ethernet Module\"",          
        "productid": "N77-F248XP-23E",                    
        "vendorid": "V01",                                
        "serialnum": "JAE185101F9"                        
      },                                                  
      {                                                   
        "name": "\"Slot 3\"",                             
        "desc": "\"100 Gbps Ethernet Module\"",           
        "productid": "N77-F436FQ-33",                     
        "vendorid": "V00",                                
        "serialnum": "JAE210102SZ"                        
      },                                                  
      {                                                   
        "name": "\"Slot 4\"",                             
        "desc": "\"10/40 Gbps Ethernet Module\"",         
        "productid": "N77-F324FQ-25",                     
        "vendorid": "TBD",                                
        "serialnum": "JAE172205GE"                        
      },                                                  
      {                                                   
        "name": "\"Slot 5\"",                             
        "desc": "\"1/10 Gbps Ethernet Module\"",          
        "productid": "N77-F348XP-23",                     
        "vendorid": "V01",                                
        "serialnum": "JAE183602MZ"                        
      },                                                  
      {                                                   
        "name": "\"Slot 6\"",                             
        "desc": "\"1/10 Gbps Ethernet Module\"",          
        "productid": "N77-M348XP-32L",                    
        "vendorid": "V00",                                
        "serialnum": "JAE194401UE"                        
      },                                                  
      {                                                   
        "name": "\"Slot 7\"",                             
        "desc": "\"100 Gbps Ethernet Module\"",           
        "productid": "N77-F430CQ-36",                     
        "vendorid": "V00",                                
        "serialnum": "JAE214303LZ"                        
      },                                                  
      {                                                   
        "name": "\"Slot 8\"",                             
        "desc": "\"100 Gbps Ethernet Module\"",           
        "productid": "N77-F430CQ-36",                     
        "vendorid": "V00",                                
        "serialnum": "JAE2135030E"                        
      },                                                  
      {                                                   
        "name": "\"Slot 9\"",                             
        "desc": "\"Supervisor Module-2\"",                
        "productid": "N77-SUP2E",                         
        "vendorid": "V01",                                
        "serialnum": "JAE17280TTC"                        
      },                                                  
      {                                                   
        "name": "\"Slot 10\"",                            
        "desc": "\"Supervisor Module-2\"",                
        "productid": "N77-SUP2E",                         
        "vendorid": "V04",                                
        "serialnum": "JAE2108095N"                        
      },                                                  
      {                                                   
        "name": "\"Slot 11\"",                            
        "desc": "\"10/40 Gbps Ethernet Module\"",         
        "productid": "N77-M324FQ-25L",                    
        "vendorid": "V00",                                
        "serialnum": "JAE194507M7"                        
      },                                                  
      {                                                   
        "name": "\"Slot 14\"",                            
        "desc": "\"10/40 Gbps Ethernet Module\"",         
        "productid": "N77-F324FQ-25",                     
        "vendorid": "V03",                                
        "serialnum": "JAE200401NH"                        
      },                                                  
      {                                                   
        "name": "\"Slot 15\"",                            
        "desc": "\"100 Gbps Ethernet Module\"",           
        "productid": "N77-F430CQ-36",                     
        "vendorid": "V00",                                
        "serialnum": "JAE221308RC"                        
      },                                                  
      {                                                   
        "name": "\"Slot 16\"",                            
        "desc": "\"100 Gbps Ethernet Module\"",           
        "productid": "N77-F430CQ-36",                     
        "vendorid": "V00",                                
        "serialnum": "JAE221308RQ"                        
      },                                                  
      {                                                   
        "name": "\"Slot 17\"",                            
        "desc": "\"100 Gbps Ethernet Module\"",           
        "productid": "N77-F312CK-26",                     
        "vendorid": "V00",                                
        "serialnum": "JAE17250DTE"                        
      },                                                  
      {                                                   
        "name": "\"Slot 19\"",                            
        "desc": "\"Fabric card module\"",                 
        "productid": "N77-C7718-FAB-2",                   
        "vendorid": "V01",                                
        "serialnum": "JAF1641BKFL"                        
      },                                                  
      {                                                   
        "name": "\"Slot 20\"",                            
        "desc": "\"Fabric card module\"",                 
        "productid": "N7F-C7018-FAB-2",                   
        "vendorid": "V01",                                
        "serialnum": "JAF1610ADQK"                        
      },                                                  
      {                                                   
        "name": "\"Slot 21\"",                            
        "desc": "\"Fabric card module\"",                 
        "productid": "N77-C7718-FAB-2",                   
        "vendorid": "V01",                                
        "serialnum": "JAF1641BKGS"                        
      },                                                  
      {                                                   
        "name": "\"Slot 22\"",                            
        "desc": "\"Fabric card module\"",                 
        "productid": "N77-C7718-FAB-2",                   
        "vendorid": "V01",                                
        "serialnum": "JAF1638BCRB"                        
      },                                                  
      {                                                   
        "name": "\"Slot 23\"",                            
        "desc": "\"Fabric card module\"",                 
        "productid": "N7F-C7018-FAB-2",                   
        "vendorid": "V01",                                
        "serialnum": "JAF1638ASCR"                        
      },                                                  
      {                                                   
        "name": "\"Slot 24\"",                            
        "desc": "\"Fabric card module\"",                 
        "productid": "N77-C7718-FAB-2",                   
        "vendorid": "V01",                                
        "serialnum": "JAF1635APBK"                        
      },                                                  
      {                                                   
        "name": "\"Slot 34\"",                            
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Power Supply\"", 
        "productid": "N7K-AC-3KW",                                    
        "vendorid": "V01",                                            
        "serialnum": "DTM1649029N"                                    
      },                                                              
      {                                                               
        "name": "\"Slot 35\"",                                        
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Power Supply\"", 
        "productid": "N7K-AC-3KW",                                    
        "vendorid": "V01",                                            
        "serialnum": "DTM164800LU"                                    
      },                                                              
      {                                                               
        "name": "\"Slot 38\"",                                        
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Power Supply\"", 
        "productid": "N7K-AC-3KW",                                    
        "vendorid": "V01",                                            
        "serialnum": "DTM164800L2"                                    
      },                                                              
      {                                                               
        "name": "\"Slot 45\"",                                        
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Power Supply\"", 
        "productid": "N77-AC-3KW",                                    
        "vendorid": "V00",                                            
        "serialnum": "DTM1712000C"                                    
      },                                                              
      {                                                               
        "name": "\"Slot 46\"",                                        
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Power Supply\"", 
        "productid": "N77-AC-3KW",                                    
        "vendorid": "V01",                                            
        "serialnum": "DTM172102WY"                                    
      },                                                              
      {                                                               
        "name": "\"Slot 47\"",                                        
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Power Supply\"", 
        "productid": "N77-AC-3KW",                                    
        "vendorid": "V01",                                            
        "serialnum": "DTM1721031T"                                    
      },
      {
        "name": "\"Slot 49\"",
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Fan Module\"",
        "productid": "N77-C7718-FAN-2",
        "vendorid": "V01",
        "serialnum": "NCV2051T02B"
      },
      {
        "name": "\"Slot 50\"",
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Fan Module\"",
        "productid": "N77-C7718-FAN-2",
        "vendorid": "V01",
        "serialnum": "NCV2051T02Y"
      },
      {
        "name": "\"Slot 51\"",
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Fan Module\"",
        "productid": "N77-C7718-FAN-2",
        "vendorid": "V01",
        "serialnum": "NCV2051T027"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <inventory>                                                                                                
    <__readonly__>                                                                                            
     <TABLE_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Chassis&quot;</name>                                                                       
       <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis &quot;</desc>                                            
       <productid>N7F-C7018</productid>                                                                       
       <vendorid>V01</vendorid>                                                                               
       <serialnum>JAF1645ALJF</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 1&quot;</name>                                                                        
       <desc>&quot;1/10 Gbps Ethernet Module&quot;</desc>                                                     
       <productid>N77-F248XP-23E</productid>                                                                  
       <vendorid>V01</vendorid>                                                                               
       <serialnum>JAE185101F9</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 3&quot;</name>                                                                        
       <desc>&quot;100 Gbps Ethernet Module&quot;</desc>                                                      
       <productid>N77-F436FQ-33</productid>                                                                   
       <vendorid>V00</vendorid>                                                                               
       <serialnum>JAE210102SZ</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 4&quot;</name>                                                                        
       <desc>&quot;10/40 Gbps Ethernet Module&quot;</desc>                                                    
       <productid>N77-F324FQ-25</productid>                                                                   
       <vendorid>TBD</vendorid>                                                                               
       <serialnum>JAE172205GE</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 5&quot;</name>                                                                        
       <desc>&quot;1/10 Gbps Ethernet Module&quot;</desc>                                                     
       <productid>N77-F348XP-23</productid>                                                                   
       <vendorid>V01</vendorid>                                                                               
       <serialnum>JAE183602MZ</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 6&quot;</name>                                                                        
       <desc>&quot;1/10 Gbps Ethernet Module&quot;</desc>                                                     
       <productid>N77-M348XP-32L</productid>                                                                  
       <vendorid>V00</vendorid>                                                                               
       <serialnum>JAE194401UE</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 7&quot;</name>                                                                        
       <desc>&quot;100 Gbps Ethernet Module&quot;</desc>                                                      
       <productid>N77-F430CQ-36</productid>                                                                   
       <vendorid>V00</vendorid>                                                                               
       <serialnum>JAE214303LZ</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 8&quot;</name>                                                                        
       <desc>&quot;100 Gbps Ethernet Module&quot;</desc>                                                      
       <productid>N77-F430CQ-36</productid>                                                                   
       <vendorid>V00</vendorid>                                                                               
       <serialnum>JAE2135030E</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 9&quot;</name>                                                                        
       <desc>&quot;Supervisor Module-2&quot;</desc>                                                           
       <productid>N77-SUP2E</productid>                                                                       
       <vendorid>V01</vendorid>                                                                               
       <serialnum>JAE17280TTC</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 10&quot;</name>                                                                       
       <desc>&quot;Supervisor Module-2&quot;</desc>                                                           
       <productid>N77-SUP2E</productid>                                                                       
       <vendorid>V04</vendorid>                                                                               
       <serialnum>JAE2108095N</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 11&quot;</name>                                                                       
       <desc>&quot;10/40 Gbps Ethernet Module&quot;</desc>                                                    
       <productid>N77-M324FQ-25L</productid>                                                                  
       <vendorid>V00</vendorid>                                                                               
       <serialnum>JAE194507M7</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 14&quot;</name>                                                                       
       <desc>&quot;10/40 Gbps Ethernet Module&quot;</desc>                                                    
       <productid>N77-F324FQ-25</productid>                                                                   
       <vendorid>V03</vendorid>                                                                               
       <serialnum>JAE200401NH</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 15&quot;</name>                                                                       
       <desc>&quot;100 Gbps Ethernet Module&quot;</desc>                                                      
       <productid>N77-F430CQ-36</productid>                                                                   
       <vendorid>V00</vendorid>                                                                               
       <serialnum>JAE221308RC</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 16&quot;</name>                                                                       
       <desc>&quot;100 Gbps Ethernet Module&quot;</desc>                                                      
       <productid>N77-F430CQ-36</productid>                                                                   
       <vendorid>V00</vendorid>                                                                               
       <serialnum>JAE221308RQ</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 17&quot;</name>                                                                       
       <desc>&quot;100 Gbps Ethernet Module&quot;</desc>                                                      
       <productid>N77-F312CK-26</productid>                                                                   
       <vendorid>V00</vendorid>                                                                               
       <serialnum>JAE17250DTE</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 19&quot;</name>                                                                       
       <desc>&quot;Fabric card module&quot;</desc>                                                            
       <productid>N77-C7718-FAB-2</productid>                                                                 
       <vendorid>V01</vendorid>                                                                               
       <serialnum>JAF1641BKFL</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 20&quot;</name>                                                                       
       <desc>&quot;Fabric card module&quot;</desc>                                                            
       <productid>N7F-C7018-FAB-2</productid>                                                                 
       <vendorid>V01</vendorid>                                                                               
       <serialnum>JAF1610ADQK</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 21&quot;</name>                                                                       
       <desc>&quot;Fabric card module&quot;</desc>                                                            
       <productid>N77-C7718-FAB-2</productid>                                                                 
       <vendorid>V01</vendorid>                                                                               
       <serialnum>JAF1641BKGS</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 22&quot;</name>                                                                       
       <desc>&quot;Fabric card module&quot;</desc>                                                            
       <productid>N77-C7718-FAB-2</productid>                                                                 
       <vendorid>V01</vendorid>                                                                               
       <serialnum>JAF1638BCRB</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 23&quot;</name>                                                                       
       <desc>&quot;Fabric card module&quot;</desc>                                                            
       <productid>N7F-C7018-FAB-2</productid>                                                                 
       <vendorid>V01</vendorid>                                                                               
       <serialnum>JAF1638ASCR</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 24&quot;</name>                                                                       
       <desc>&quot;Fabric card module&quot;</desc>                                                            
       <productid>N77-C7718-FAB-2</productid>                                                                 
       <vendorid>V01</vendorid>                                                                               
       <serialnum>JAF1635APBK</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 34&quot;</name>                                                                       
       <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Power Supply&quot;</desc>                                
       <productid>N7K-AC-3KW</productid>                                                                      
       <vendorid>V01</vendorid>                                                                               
       <serialnum>DTM1649029N</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 35&quot;</name>                                                                       
       <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Power Supply&quot;</desc>                                
       <productid>N7K-AC-3KW</productid>                                                                      
       <vendorid>V01</vendorid>                                                                               
       <serialnum>DTM164800LU</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 38&quot;</name>                                                                       
       <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Power Supply&quot;</desc>                                
       <productid>N7K-AC-3KW</productid>                                                                      
       <vendorid>V01</vendorid>                                                                               
       <serialnum>DTM164800L2</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 45&quot;</name>                                                                       
       <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Power Supply&quot;</desc>                                
       <productid>N77-AC-3KW</productid>                                                                      
       <vendorid>V00</vendorid>                                                                               
       <serialnum>DTM1712000C</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 46&quot;</name>                                                                       
       <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Power Supply&quot;</desc>                                
       <productid>N77-AC-3KW</productid>                                                                      
       <vendorid>V01</vendorid>                                                                               
       <serialnum>DTM172102WY</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 47&quot;</name>                                                                       
       <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Power Supply&quot;</desc>                                
       <productid>N77-AC-3KW</productid>                                                                      
       <vendorid>V01</vendorid>                                                                               
       <serialnum>DTM1721031T</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 49&quot;</name>                                                                       
       <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Fan Module&quot;</desc>                                  
       <productid>N77-C7718-FAN-2</productid>                                                                 
       <vendorid>V01</vendorid>                                                                               
       <serialnum>NCV2051T02B</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 50&quot;</name>                                                                       
       <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Fan Module&quot;</desc>                                  
       <productid>N77-C7718-FAN-2</productid>                                                                 
       <vendorid>V01</vendorid>                                                                               
       <serialnum>NCV2051T02Y</serialnum>                                                                     
      </ROW_inv>                                                                                              
      <ROW_inv>                                                                                               
       <name>&quot;Slot 51&quot;</name>                                                                       
       <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Fan Module&quot;</desc>                                  
       <productid>N77-C7718-FAN-2</productid>                                                                 
       <vendorid>V01</vendorid>                                                                               
       <serialnum>NCV2051T027</serialnum>                                                                     
      </ROW_inv>                                                                                              
     </TABLE_inv>                                                                                             
    </__readonly__>                                                                                           
   </inventory>                                                                                               
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>      

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show inventory**

NAME: "Chassis",  DESCR: "Nexus7700 C7718 (18 Slot) Chassis "    
PID: N7F-C7018           ,  VID: V01 ,  SN: JAF1645ALJF          

NAME: "Slot 1", DESCR: "1/10 Gbps Ethernet Module"
PID: N77-F248XP-23E , VID: V01 , SN: JAE185101F9

NAME: "Slot 3", DESCR: "100 Gbps Ethernet Module"
PID: N77-F436FQ-33 , VID: V00 , SN: JAE210102SZ

NAME: "Slot 4", DESCR: "10/40 Gbps Ethernet Module"
PID: N77-F324FQ-25 , VID: TBD , SN: JAE172205GE

NAME: "Slot 5", DESCR: "1/10 Gbps Ethernet Module"
PID: N77-F348XP-23 , VID: V01 , SN: JAE183602MZ

NAME: "Slot 6", DESCR: "1/10 Gbps Ethernet Module"
PID: N77-M348XP-32L , VID: V00 , SN: JAE194401UE

NAME: "Slot 7", DESCR: "100 Gbps Ethernet Module"
PID: N77-F430CQ-36 , VID: V00 , SN: JAE214303LZ

NAME: "Slot 8", DESCR: "100 Gbps Ethernet Module"
PID: N77-F430CQ-36 , VID: V00 , SN: JAE2135030E

NAME: "Slot 9", DESCR: "Supervisor Module-2"
PID: N77-SUP2E , VID: V01 , SN: JAE17280TTC

NAME: "Slot 10", DESCR: "Supervisor Module-2"
PID: N77-SUP2E , VID: V04 , SN: JAE2108095N

NAME: "Slot 11", DESCR: "10/40 Gbps Ethernet Module"
PID: N77-M324FQ-25L , VID: V00 , SN: JAE194507M7

NAME: "Slot 14", DESCR: "10/40 Gbps Ethernet Module"
PID: N77-F324FQ-25 , VID: V03 , SN: JAE200401NH

NAME: "Slot 15", DESCR: "100 Gbps Ethernet Module"
PID: N77-F430CQ-36 , VID: V00 , SN: JAE221308RC

NAME: "Slot 16", DESCR: "100 Gbps Ethernet Module"
PID: N77-F430CQ-36 , VID: V00 , SN: JAE221308RQ

NAME: "Slot 17", DESCR: "100 Gbps Ethernet Module"
PID: N77-F312CK-26 , VID: V00 , SN: JAE17250DTE

NAME: "Slot 19", DESCR: "Fabric card module"
PID: N77-C7718-FAB-2 , VID: V01 , SN: JAF1641BKFL

NAME: "Slot 20", DESCR: "Fabric card module"
PID: N7F-C7018-FAB-2 , VID: V01 , SN: JAF1610ADQK

NAME: "Slot 21", DESCR: "Fabric card module"
PID: N77-C7718-FAB-2 , VID: V01 , SN: JAF1641BKGS

NAME: "Slot 22", DESCR: "Fabric card module"
PID: N77-C7718-FAB-2 , VID: V01 , SN: JAF1638BCRB

NAME: "Slot 23", DESCR: "Fabric card module"
PID: N7F-C7018-FAB-2 , VID: V01 , SN: JAF1638ASCR

NAME: "Slot 24", DESCR: "Fabric card module"
PID: N77-C7718-FAB-2 , VID: V01 , SN: JAF1635APBK

NAME: "Slot 34", DESCR: "Nexus7700 C7718 (18 Slot) Chassis Power Supply" PID: N7K-AC-3KW , VID: V01 , SN: DTM1649029N

NAME: "Slot 35", DESCR: "Nexus7700 C7718 (18 Slot) Chassis Power Supply" PID: N7K-AC-3KW , VID: V01 , SN: DTM164800LU

NAME: "Slot 38", DESCR: "Nexus7700 C7718 (18 Slot) Chassis Power Supply" PID: N7K-AC-3KW , VID: V01 , SN: DTM164800L2

NAME: "Slot 45", DESCR: "Nexus7700 C7718 (18 Slot) Chassis Power Supply" PID: N77-AC-3KW , VID: V00 , SN: DTM1712000C

NAME: "Slot 46", DESCR: "Nexus7700 C7718 (18 Slot) Chassis Power Supply" PID: N77-AC-3KW , VID: V01 , SN: DTM172102WY

NAME: "Slot 47", DESCR: "Nexus7700 C7718 (18 Slot) Chassis Power Supply" PID: N77-AC-3KW , VID: V01 , SN: DTM1721031T

NAME: "Slot 49", DESCR: "Nexus7700 C7718 (18 Slot) Chassis Fan Module" PID: N77-C7718-FAN-2 , VID: V01 , SN: NCV2051T02B

NAME: "Slot 50", DESCR: "Nexus7700 C7718 (18 Slot) Chassis Fan Module" PID: N77-C7718-FAN-2 , VID: V01 , SN: NCV2051T02Y

NAME: "Slot 51", DESCR: "Nexus7700 C7718 (18 Slot) Chassis Fan Module" PID: N77-C7718-FAN-2 , VID: V01 , SN: NCV2051T027

show inventory chassis

show inventory chassis
 
import requests
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 inventory chassis”,
  "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)
{                                                  
  "TABLE_inv": {                                   
    "ROW_inv": {                                   
      "name": "\"Chassis\"",                       
      "desc": "\"Nexus7700 C7718 (18 Slot) Chassis \"", 
      "productid": "N7F-C7018",                         
      "vendorid": "V01",                                
      "serialnum": "JAF1645ALJF"                        
    }                                                   
  }                                                     
}    
<?xml version="1.0" encoding="ISO-8859-1"?>       
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <inventory>                                                                                                
    <chassis>                                                                                                 
     <__readonly__>                                                                                           
      <TABLE_inv>                                                                                             
       <ROW_inv>                                                                                              
        <name>&quot;Chassis&quot;</name>                                                                      
        <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis &quot;</desc>                                           
        <productid>N7F-C7018</productid>                                                                      
        <vendorid>V01</vendorid>                                                                              
        <serialnum>JAF1645ALJF</serialnum>                                                                    
       </ROW_inv>                                                                                             
      </TABLE_inv>                                                                                            
     </__readonly__>                                                                                          
    </chassis>                                                                                                
   </inventory>                                                                                               
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>       

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show inventory chassis**

NAME: "Chassis",  DESCR: "Nexus7700 C7718 (18 Slot) Chassis "    
PID: N7F-C7018           ,  VID: V01 ,  SN: JAF1645ALJF          

show inventory fans

show inventory fans
 
import requests
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 inventory fans”,
  "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)
{                                               
  "TABLE_inv": {                                
    "ROW_inv": [                                
      {                                         
        "name": "\"Slot 49\"",                  
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Fan Module\"", 
        "productid": "N77-C7718-FAN-2",                             
        "vendorid": "V01",                                          
        "serialnum": "NCV2051T02B"                                  
      },                                                            
      {                                                             
        "name": "\"Slot 50\"",                                      
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Fan Module\"", 
        "productid": "N77-C7718-FAN-2",                             
        "vendorid": "V01",                                          
        "serialnum": "NCV2051T02Y"                                  
      },                                                            
      {                                                             
        "name": "\"Slot 51\"",                                      
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Fan Module\"", 
        "productid": "N77-C7718-FAN-2",                             
        "vendorid": "V01",                                          
        "serialnum": "NCV2051T027"                                  
      }                                                             
    ]                                                               
  }                                                                 
}          
<?xml version="1.0" encoding="ISO-8859-1"?>    
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <inventory>                                                                                                
    <fans>                                                                                                    
     <__readonly__>                                                                                           
      <TABLE_inv>                                                                                             
       <ROW_inv>                                                                                              
        <name>&quot;Slot 49&quot;</name>                                                                      
        <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Fan Module&quot;</desc>                                 
        <productid>N77-C7718-FAN-2</productid>                                                                
        <vendorid>V01</vendorid>                                                                              
        <serialnum>NCV2051T02B</serialnum>                                                                    
       </ROW_inv>                                                                                             
       <ROW_inv>                                                                                              
        <name>&quot;Slot 50&quot;</name>                                                                      
        <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Fan Module&quot;</desc>                                 
        <productid>N77-C7718-FAN-2</productid>                                                                
        <vendorid>V01</vendorid>                                                                              
        <serialnum>NCV2051T02Y</serialnum>                                                                    
       </ROW_inv>                                                                                             
       <ROW_inv>                                                                                              
        <name>&quot;Slot 51&quot;</name>                                                                      
        <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Fan Module&quot;</desc>                                 
        <productid>N77-C7718-FAN-2</productid>                                                                
        <vendorid>V01</vendorid>                                                                              
        <serialnum>NCV2051T027</serialnum>                                                                    
       </ROW_inv>                                                                                             
      </TABLE_inv>                                                                                            
     </__readonly__>                                                                                          
    </fans>                                                                                                   
   </inventory>                                                                                               
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>       

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch(config)# **show inventory fans**

NAME: "Slot 49",  DESCR: "Nexus7700 C7718 (18 Slot) Chassis Fan Module"
PID: N77-C7718-FAN-2     ,  VID: V01 ,  SN: NCV2051T02B                

NAME: "Slot 50", DESCR: "Nexus7700 C7718 (18 Slot) Chassis Fan Module" PID: N77-C7718-FAN-2 , VID: V01 , SN: NCV2051T02Y

NAME: "Slot 51", DESCR: "Nexus7700 C7718 (18 Slot) Chassis Fan Module" PID: N77-C7718-FAN-2 , VID: V01 , SN: NCV2051T027

show inventory power_supply

show inventory power_supply
 
import requests
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 inventory power_supply”,
  "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)
{                                                       
  "TABLE_inv": {                                        
    "ROW_inv": [                                        
      {                                                 
        "name": "\"Slot 34\"",                          
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Power Supply\"", 
        "productid": "N7K-AC-3KW",                                    
        "vendorid": "V01",                                            
        "serialnum": "DTM1649029N"                                    
      },                                                              
      {                                                               
        "name": "\"Slot 35\"",                                        
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Power Supply\"", 
        "productid": "N7K-AC-3KW",                                    
        "vendorid": "V01",                                            
        "serialnum": "DTM164800LU"                                    
      },                                                              
      {                                                               
        "name": "\"Slot 38\"",                                        
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Power Supply\"", 
        "productid": "N7K-AC-3KW",                                    
        "vendorid": "V01",                                            
        "serialnum": "DTM164800L2"                                    
      },                                                              
      {                                                               
        "name": "\"Slot 45\"",                                        
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Power Supply\"", 
        "productid": "N77-AC-3KW",                                    
        "vendorid": "V00",                                            
        "serialnum": "DTM1712000C"                                    
      },                                                              
      {                                                               
        "name": "\"Slot 46\"",                                        
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Power Supply\"", 
        "productid": "N77-AC-3KW",                                    
        "vendorid": "V01",                                            
        "serialnum": "DTM172102WY"                                    
      },                                                              
      {                                                               
        "name": "\"Slot 47\"",                                        
        "desc": "\"Nexus7700 C7718 (18 Slot) Chassis Power Supply\"", 
        "productid": "N77-AC-3KW",                                    
        "vendorid": "V01",                                            
        "serialnum": "DTM1721031T"                                    
      }                                                               
    ]                                                                 
  }                                                                   
}      
<?xml version="1.0" encoding="ISO-8859-1"?>            
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <inventory>                                                                                                
    <power_supply>                                                                                            
     <__readonly__>                                                                                           
      <TABLE_inv>                                                                                             
       <ROW_inv>                                                                                              
        <name>&quot;Slot 34&quot;</name>                                                                      
        <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Power Supply&quot;</desc>                               
        <productid>N7K-AC-3KW</productid>                                                                     
        <vendorid>V01</vendorid>                                                                              
        <serialnum>DTM1649029N</serialnum>                                                                    
       </ROW_inv>                                                                                             
       <ROW_inv>                                                                                              
        <name>&quot;Slot 35&quot;</name>                                                                      
        <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Power Supply&quot;</desc>                               
        <productid>N7K-AC-3KW</productid>                                                                     
        <vendorid>V01</vendorid>                                                                              
        <serialnum>DTM164800LU</serialnum>                                                                    
       </ROW_inv>                                                                                             
       <ROW_inv>                                                                                              
        <name>&quot;Slot 38&quot;</name>                                                                      
        <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Power Supply&quot;</desc>                               
        <productid>N7K-AC-3KW</productid>                                                                     
        <vendorid>V01</vendorid>                                                                              
        <serialnum>DTM164800L2</serialnum>                                                                    
       </ROW_inv>                                                                                             
       <ROW_inv>                                                                                              
        <name>&quot;Slot 45&quot;</name>                                                                      
        <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Power Supply&quot;</desc>                               
        <productid>N77-AC-3KW</productid>                                                                     
        <vendorid>V00</vendorid>                                                                              
        <serialnum>DTM1712000C</serialnum>                                                                    
       </ROW_inv>                                                                                             
       <ROW_inv>                                                                                              
        <name>&quot;Slot 46&quot;</name>                                                                      
        <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Power Supply&quot;</desc>                               
        <productid>N77-AC-3KW</productid>                                                                     
        <vendorid>V01</vendorid>                                                                              
        <serialnum>DTM172102WY</serialnum>                                                                    
       </ROW_inv>                                                                                             
       <ROW_inv>                                                                                              
        <name>&quot;Slot 47&quot;</name>                                                                      
        <desc>&quot;Nexus7700 C7718 (18 Slot) Chassis Power Supply&quot;</desc>                               
        <productid>N77-AC-3KW</productid>                                                                     
        <vendorid>V01</vendorid>                                                                              
        <serialnum>DTM1721031T</serialnum>                                                                    
       </ROW_inv>                                                                                             
      </TABLE_inv>                                                                                            
     </__readonly__>                                                                                          
    </power_supply>                                                                                           
   </inventory>                                                                                               
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>     

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show inventory power_supply**

NAME: "Slot 34",  DESCR: "Nexus7700 C7718 (18 Slot) Chassis Power Supply"
PID: N7K-AC-3KW          ,  VID: V01 ,  SN: DTM1649029N                  

NAME: "Slot 35", DESCR: "Nexus7700 C7718 (18 Slot) Chassis Power Supply" PID: N7K-AC-3KW , VID: V01 , SN: DTM164800LU

NAME: "Slot 38", DESCR: "Nexus7700 C7718 (18 Slot) Chassis Power Supply" PID: N7K-AC-3KW , VID: V01 , SN: DTM164800L2

NAME: "Slot 45", DESCR: "Nexus7700 C7718 (18 Slot) Chassis Power Supply" PID: N77-AC-3KW , VID: V00 , SN: DTM1712000C

NAME: "Slot 46", DESCR: "Nexus7700 C7718 (18 Slot) Chassis Power Supply" PID: N77-AC-3KW , VID: V01 , SN: DTM172102WY

NAME: "Slot 47", DESCR: "Nexus7700 C7718 (18 Slot) Chassis Power Supply" PID: N77-AC-3KW , VID: V01 , SN: DTM1721031T

show inventory module 7

show inventory module 7 
 
import requests
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 inventory module 7”,
  "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)
{
  "TABLE_inv": {
    "ROW_inv": {
      "name": "\"Slot 7\"",
      "desc": "\"100 Gbps Ethernet Module\"",
      "productid": "N77-F430CQ-36",
      "vendorid": "V00",
      "serialnum": "JAE214303LZ"
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>        
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <inventory>                                                                                                
    <module>                                                                                                  
     <__XML__PARAM__module>                                                                                   
      <__XML__value>7</__XML__value>
      <__readonly__>
       <TABLE_inv>
        <ROW_inv>
         <name>&quot;Slot 7&quot;</name>
         <desc>&quot;100 Gbps Ethernet Module&quot;</desc>
         <productid>N77-F430CQ-36</productid>
         <vendorid>V00</vendorid>
         <serialnum>JAE214303LZ</serialnum>
        </ROW_inv>
       </TABLE_inv>
      </__readonly__>
     </__XML__PARAM__module>
    </module>
   </inventory>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show inventory module 7**

NAME: "Slot 7",  DESCR: "100 Gbps Ethernet Module"              
PID: N77-F430CQ-36       ,  VID: V00 ,  SN: JAE214303LZ          

show locator-led status

show locator-led status
 
import requests
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 locator-led status”,
  "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)
{                                                   
  "TABLE_loc_led_stat": {                           
    "ROW_loc_led_stat": [                           
      {                                             
        "component": "Chassis",                     
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Module  1",                   
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Module  3",                   
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Module  4",                   
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Module  5",                   
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Module  6",                   
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Module  7",                   
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Module  8",                   
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Module  9",                   
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Module 10",                   
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Module 11",                   
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Module 14",                   
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Module 15",                   
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Module 16",                   
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Module 17",                   
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Xbar  1",                     
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Xbar  2",                     
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Xbar  3",                     
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Xbar  4",                     
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Xbar  5",                     
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "Xbar  6",                     
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "PowerSupply  2",              
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "PowerSupply  3",              
        "status": "OFF"                             
      },                                            
      {                                             
        "component": "PowerSupply  6",
        "status": "OFF"
      },
      {
        "component": "PowerSupply 13",
        "status": "OFF"
      },
      {
        "component": "PowerSupply 14",
        "status": "OFF"
      },
      {
        "component": "PowerSupply 15",
        "status": "OFF"
      },
      {
        "component": "Fan  1",
        "status": "OFF"
      },
      {
        "component": "Fan  2",
        "status": "OFF"
      },
      {
        "component": "Fan  3",
        "status": "OFF"
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>        
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <locator-led>                                                                                              
    <status>                                                                                                  
     <__readonly__>                                                                                           
      <TABLE_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Chassis</component>                                                                        
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Module  1</component>                                                                      
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Module  3</component>                                                                      
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Module  4</component>                                                                      
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Module  5</component>                                                                      
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Module  6</component>                                                                      
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Module  7</component>                                                                      
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Module  8</component>                                                                      
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Module  9</component>                                                                      
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Module 10</component>                                                                      
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Module 11</component>                                                                      
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Module 14</component>                                                                      
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Module 15</component>                                                                      
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Module 16</component>                                                                      
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Module 17</component>                                                                      
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Xbar  1</component>                                                                        
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Xbar  2</component>                                                                        
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Xbar  3</component>                                                                        
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Xbar  4</component>                                                                        
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Xbar  5</component>                                                                        
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Xbar  6</component>                                                                        
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>PowerSupply  2</component>                                                                 
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>PowerSupply  3</component>                                                                 
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>PowerSupply  6</component>                                                                 
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>PowerSupply 13</component>                                                                 
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>PowerSupply 14</component>                                                                 
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>PowerSupply 15</component>                                                                 
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Fan  1</component>                                                                         
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Fan  2</component>                                                                         
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
       <ROW_loc_led_stat>                                                                                     
        <component>Fan  3</component>                                                                         
        <status>OFF</status>                                                                                  
       </ROW_loc_led_stat>                                                                                    
      </TABLE_loc_led_stat>                                                                                   
     </__readonly__>                                                                                          
    </status>                                                                                                 
   </locator-led>                                                                                             
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>               

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  
CLI Output

switch# show locator-led status

Component        Locator LED Status                 

Chassis OFF
Module 1 OFF
Module 3 OFF
Module 4 OFF
Module 5 OFF
Module 6 OFF
Module 7 OFF
Module 8 OFF
Module 9 OFF
Module 10 OFF
Module 11 OFF
Module 14 OFF
Module 15 OFF
Module 16 OFF
Module 17 OFF
Xbar 1 OFF
Xbar 2 OFF
Xbar 3 OFF
Xbar 4 OFF
Xbar 5 OFF
Xbar 6 OFF
PowerSupply 2 OFF
PowerSupply 3 OFF
PowerSupply 6 OFF
PowerSupply 13 OFF
PowerSupply 14 OFF
PowerSupply 15 OFF
Fan 1 OFF
Fan 2 OFF
Fan 3 OFF

show sprom backplane 1

show sprom backplane 1
 
import requests
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 sprom backplane 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)
{                                                  
  "TABLE_sprom": {                                 
    "ROW_sprom": [                                 
      {                                            
        "block": "DISPLAY backplane sprom contents:"
      },                                            
      {                                             
        "block": "Common block :",                  
        "cmn_block": {                              
          "blk_sig_cb": "0xabab",                   
          "blk_ver_cb": "3",                        
          "blk_length_cb": "160",                   
          "blk_checksum_cb": "0x13c3",              
          "eeprom_size": "65535",                   
          "blk_count": "5",                         
          "fru_major_type": "0x6001",               
          "fru_minor_type": "0x0",                  
          "oem_string": "Cisco Systems, Inc.",      
          "prd_num": "N7F-C7018",                   
          "serial_num": "JAF1645ALJF",              
          "part_num": "73-14605-02",                
          "part_rev": "04",                         
          "mfg_dev": null,                          
          "hw_rev": "0.100",                        
          "mfg_bits": "0",                          
          "eng_use": "0",                           
          "snmp_oid": "9.12.3.1.4.62.0.0",          
          "power_consump": "0",                     
          "rma_code": "0-0-0-0",                    
          "clei_code": null,                        
          "vid": "V01"                              
        }                                           
      },                                            
      {                                             
        "block": "Chassis specific block:",         
        "ch_specific_block": {                      
          "blk_sig_csb": "0x6001",                  
          "blk_ver_csb": "3",                       
          "blk_length_csb": "39",                   
          "blk_checksum_csb": "0x4d5",              
          "feature_bits": "0",                      
          "hw_changes_bits": "0",                   
          "stackmib_oid": "0",                      
          "mac_addresses": "d8-67-d9-6f-b5-80",     
          "no_of_macs": "128",                      
          "oem_enterprise": "9",                    
          "oem_mib_offset": "5",                    
          "max_connector_power": "0"                
        }                                           
      },                                            
      {                                             
        "block": "WWN software-module specific block:", 
        "wwn_specific_block": {                         
          "blk_sig_wwnb": "0x6005",                     
          "blk_ver_wwnb": "1",                          
          "blk_length_wwnb": "0",                       
          "blk_checksum_wwnb": "0x266",                 
          "TABLE_wwn_bits": {                           
            "ROW_wwn_bits": [                           
              {                                         
                "wwn_usage_bits": "wwn usage bits:"     
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "01"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "01"                  
              },                                        
              {                                         
                "wwn_usage_bits": "ff"                  
              },                                        
              {                                         
                "wwn_usage_bits": "ff"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              },                                        
              {                                         
                "wwn_usage_bits": "00"                  
              }                                         
            ]                                           
          }                                             
        }                                               
      },                                                
      {                                                 
        "block": "License software-module specific block:", 
        "lic_specific_block": {                             
          "blk_sig_licb": "0x6006",                         
          "blk_ver_licb": "1",                              
          "blk_length_licb": "16",                          
          "blk_checksum_licb": "0x177",                     
          "TABLE_lic_bits": {                               
            "ROW_lic_bits": [                               
              {                                             
                "lic_usage_bits": "lic usage bits:"         
              },                                            
              {                                             
                "lic_usage_bits": "80"                      
              },                                            
              {                                             
                "lic_usage_bits": "80"                      
              },                                            
              {                                             
                "lic_usage_bits": "00"                      
              },                                            
              {                                             
                "lic_usage_bits": "00"                      
              },                                            
              {                                             
                "lic_usage_bits": "00"                      
              },                                            
              {                                             
                "lic_usage_bits": "00"                      
              },                                            
              {
                "lic_usage_bits": "00"
              },
              {
                "lic_usage_bits": "00"
              }
            ]
          }
        }
      },
      {
        "block": "Second Serial number specific block:",
        "second_serial_block": {
          "blk_sig_sn2b": "0x6007",
          "blk_ver_sn2b": "1",
          "blk_length_sn2b": "28",
          "blk_checksum_sn2b": "0x34d",
          "serial_num_sn2b": "JAF1644ACTQ"
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>       
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <sprom>                                                                                                    
    <backplane>                                                                                               
     <__XML__PARAM__i0>                                                                                       
      <__XML__value>1</__XML__value>                                                                          
      <__readonly__>                                                                                          
       <TABLE_sprom>                                                                                          
        <ROW_sprom>                                                                                           
         <block>DISPLAY backplane sprom contents:                                                             
</block>                                                                                                      
        </ROW_sprom>                                                                                          
        <ROW_sprom>                                                                                           
         <block>Common block :                                                                                
</block>                                                                                                      
         <cmn_block>                                                                                          
          <blk_sig_cb>0xabab</blk_sig_cb>                                                                     
          <blk_ver_cb>3</blk_ver_cb>                                                                          
          <blk_length_cb>160</blk_length_cb>                                                                  
          <blk_checksum_cb>0x13c3</blk_checksum_cb>                                                           
          <eeprom_size>65535</eeprom_size>                                                                    
          <blk_count>5</blk_count>                                                                            
          <fru_major_type>0x6001</fru_major_type>                                                             
          <fru_minor_type>0x0</fru_minor_type>                                                                
          <oem_string>Cisco Systems, Inc.</oem_string>                                                        
          <prd_num>N7F-C7018</prd_num>                                                                        
          <serial_num>JAF1645ALJF</serial_num>                                                                
          <part_num>73-14605-02</part_num>                                                                    
          <part_rev>04</part_rev>                                                                             
          <mfg_dev></mfg_dev>                                                                                 
          <hw_rev>0.100</hw_rev>                                                                              
          <mfg_bits>0</mfg_bits>                                                                              
          <eng_use>0</eng_use>                                                                                
          <snmp_oid>9.12.3.1.4.62.0.0</snmp_oid>                                                              
          <power_consump>0</power_consump>                                                                    
          <rma_code>0-0-0-0</rma_code>                                                                        
          <clei_code></clei_code>                                                                             
          <vid>V01</vid>                                                                                      
         </cmn_block>                                                                                         
        </ROW_sprom>                                                                                          
        <ROW_sprom>                                                                                           
         <block>Chassis specific block:                                                                       
</block>                                                                                                      
         <ch_specific_block>                                                                                  
          <blk_sig_csb>0x6001</blk_sig_csb>                                                                   
          <blk_ver_csb>3</blk_ver_csb>                                                                        
          <blk_length_csb>39</blk_length_csb>                                                                 
          <blk_checksum_csb>0x4d5</blk_checksum_csb>                                                          
          <feature_bits>0</feature_bits>                                                                      
          <hw_changes_bits>0</hw_changes_bits>                                                                
          <stackmib_oid>0</stackmib_oid>                                                                      
          <mac_addresses>d8-67-d9-6f-b5-80</mac_addresses>                                                    
          <no_of_macs>128</no_of_macs>                                                                        
          <oem_enterprise>9</oem_enterprise>                                                                  
          <oem_mib_offset>5</oem_mib_offset>                                                                  
          <max_connector_power>0</max_connector_power>                                                        
         </ch_specific_block>                                                                                 
        </ROW_sprom>                                                                                          
        <ROW_sprom>                                                                                           
         <block>WWN software-module specific block:                                                           
</block>                                                                                                      
         <wwn_specific_block>                                                                                 
          <blk_sig_wwnb>0x6005</blk_sig_wwnb>                                                                 
          <blk_ver_wwnb>1</blk_ver_wwnb>                                                                      
          <blk_length_wwnb>0</blk_length_wwnb>                                                                
          <blk_checksum_wwnb>0x266</blk_checksum_wwnb>                                                        
          <TABLE_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>wwn usage bits:                                                                   
</wwn_usage_bits>                                                                                             
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>01</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>01</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>ff</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>ff</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
           <ROW_wwn_bits>                                                                                     
            <wwn_usage_bits>00</wwn_usage_bits>                                                               
           </ROW_wwn_bits>                                                                                    
          </TABLE_wwn_bits>                                                                                   
         </wwn_specific_block>                                                                                
        </ROW_sprom>                                                                                          
        <ROW_sprom>                                                                                           
         <block>License software-module specific block:                                                       
</block>                                                                                                      
         <lic_specific_block>                                                                                 
          <blk_sig_licb>0x6006</blk_sig_licb>                                                                 
          <blk_ver_licb>1</blk_ver_licb>                                                                      
          <blk_length_licb>16</blk_length_licb>                                                               
          <blk_checksum_licb>0x177</blk_checksum_licb>                                                        
          <TABLE_lic_bits>                                                                                    
           <ROW_lic_bits>                                                                                     
            <lic_usage_bits>lic usage bits:                                                                   
</lic_usage_bits>                                                                                             
           </ROW_lic_bits>                                                                                    
           <ROW_lic_bits>                                                                                     
            <lic_usage_bits>80</lic_usage_bits>                                                               
           </ROW_lic_bits>                                                                                    
           <ROW_lic_bits>                                                                                     
            <lic_usage_bits>80</lic_usage_bits>                                                               
           </ROW_lic_bits>                                                                                    
           <ROW_lic_bits>                                                                                     
            <lic_usage_bits>00</lic_usage_bits>                                                               
           </ROW_lic_bits>                                                                                    
           <ROW_lic_bits>                                                                                     
            <lic_usage_bits>00</lic_usage_bits>                                                               
           </ROW_lic_bits>                                                                                    
           <ROW_lic_bits>                                                                                     
            <lic_usage_bits>00</lic_usage_bits>                                                               
           </ROW_lic_bits>                                                                                    
           <ROW_lic_bits>                                                                                     
            <lic_usage_bits>00</lic_usage_bits>                                                               
           </ROW_lic_bits>                                                                                    
           <ROW_lic_bits>                                                                                     
            <lic_usage_bits>00</lic_usage_bits>                                                               
           </ROW_lic_bits>                                                                                    
           <ROW_lic_bits>                                                                                     
            <lic_usage_bits>00</lic_usage_bits>                                                               
           </ROW_lic_bits>                                                                                    
          </TABLE_lic_bits>                                                                                   
         </lic_specific_block>                                                                                
        </ROW_sprom>                                                                                          
        <ROW_sprom>                                                                                           
         <block>Second Serial number specific block:                                                          
</block>                                                                                                      
         <second_serial_block>                                                                                
          <blk_sig_sn2b>0x6007</blk_sig_sn2b>                                                                 
          <blk_ver_sn2b>1</blk_ver_sn2b>                                                                      
          <blk_length_sn2b>28</blk_length_sn2b>                                                               
          <blk_checksum_sn2b>0x34d</blk_checksum_sn2b>                                                        
          <serial_num_sn2b>JAF1644ACTQ</serial_num_sn2b>                                                      
         </second_serial_block>                                                                               
        </ROW_sprom>                                                                                          
       </TABLE_sprom>                                                                                         
      </__readonly__>                                                                                         
     </__XML__PARAM__i0>                                                                                      
    </backplane>                                                                                              
   </sprom>                                                                                                   
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>    

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show sprom backplane 1**

DISPLAY backplane sprom contents:            
Common block :                               
 Block Signature : 0xabab                    
 Block Version   : 3                         
 Block Length    : 160                       
 Block Checksum  : 0x13c3                    
 EEPROM Size     : 65535                     
 Block Count     : 5                         
 FRU Major Type  : 0x6001                    
 FRU Minor Type  : 0x0                       
 OEM String      : Cisco Systems, Inc.       
 Product Number  : N7F-C7018                 
 Serial Number   : JAF1645ALJF               
 Part Number     : 73-14605-02               
 Part Revision   : 04                        
 Mfg Deviation   :                           
 H/W Version     : 0.100                     
 Mfg Bits        : 0                         
 Engineer Use    : 0                         
 snmpOID         : 9.12.3.1.4.62.0.0         
 Power Consump   : 0                         
 RMA Code        : 0-0-0-0                   
 CLEI Code       :                           
 VID             : V01                       
Chassis specific block:                      
 Block Signature : 0x6001                    
 Block Version   : 3                         
 Block Length    : 39                        
 Block Checksum  : 0x4d5                     
 Feature Bits    : 0x0                       
 HW Changes Bits : 0x0                       
 Stackmib OID    : 0                         
 MAC Addresses   : d8-67-d9-6f-b5-80         
 Number of MACs  : 128                       
 OEM Enterprise  : 9                         
 OEM MIB Offset  : 5                         
 MAX Connector Power: 0                      
WWN software-module specific block:          
 Block Signature : 0x6005                    
 Block Version   : 1                         
 Block Length    : 0                         
 Block Checksum  : 0x266                     
wwn usage bits:                              
 00 00 00 00 00 00 00 00                     
 01 00 01 ff ff 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00 00 00 00 00 00 00                     
 00 00                                       
License software-module specific block:      
 Block Signature : 0x6006                    
 Block Version   : 1                         
 Block Length    : 16                        
 Block Checksum  : 0x177                     
lic usage bits:                              
 80 80 00 00 00 00 00 00                     
Second Serial number specific block:         
 Block Signature : 0x6007                    
 Block Version   : 1                         
 Block Length    : 28                        
 Block Checksum  : 0x34d                     
 Serial Number   : JAF1644ACTQ      

show sprom fan 1

show sprom fan 1
 
import requests
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 sprom fan 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)
{                                            
  "TABLE_sprom": {                           
    "ROW_sprom": [                           
      {                                      
        "block": "DISPLAY fan sprom contents:"
      },                                      
      {                                       
        "block": "Common block :",            
        "cmn_block": {                        
          "blk_sig_cb": "0xabab",             
          "blk_ver_cb": "3",                  
          "blk_length_cb": "160",             
          "blk_checksum_cb": "0x19e5",        
          "eeprom_size": "65535",             
          "blk_count": "3",                   
          "fru_major_type": "0xab04",         
          "fru_minor_type": "0x0",            
          "oem_string": "Cisco Systems, Inc.", 
          "prd_num": "N77-C7718-FAN-2",        
          "serial_num": "NCV2051T02B",         
          "part_num": "73-101408-01",          
          "part_rev": "01",                    
          "mfg_dev": null,                     
          "hw_rev": "0.100",                   
          "mfg_bits": "0",                     
          "eng_use": "0",                      
          "snmp_oid": "0.0.0.0.0.0.0.0",       
          "power_consump": "-1800",            
          "rma_code": "0-0-0-0",               
          "clei_code": "NOCLEICODE",           
          "vid": "V01"
        }
      },
      {
        "block": "Fan Module specific block:",
        "fan_specific_block": {
          "blk_sig_fsb": "0xab04",
          "blk_ver_fsb": "3",
          "blk_length_fsb": "32",
          "blk_checksum_fsb": "0x109",
          "feature_bits": "0",
          "hw_change_bits": "0",
          "stackmib_oid": "0",
          "cooling_capacity": "0",
          "amb_temp": "55"
        }
      },
      {
        "block": "Second Serial number specific block:",
        "second_serial_block": {
          "blk_sig_sn2b": "0x6007",
          "blk_ver_sn2b": "1",
          "blk_length_sn2b": "28",
          "blk_checksum_sn2b": "0x32b",
          "serial_num_sn2b": "NCV2051T02B"
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?> 
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <sprom>                                                                                                    
    <fan>                                                                                                     
     <__XML__PARAM__fan-range>                                                                                
      <__XML__value>1</__XML__value>                                                                          
      <__readonly__>                                                                                          
       <TABLE_sprom>                                                                                          
        <ROW_sprom>                                                                                           
         <block>DISPLAY fan sprom contents:                                                                   
</block>                                                                                                      
        </ROW_sprom>                                                                                          
        <ROW_sprom>                                                                                           
         <block>Common block :                                                                                
</block>                                                                                                      
         <cmn_block>                                                                                          
          <blk_sig_cb>0xabab</blk_sig_cb>                                                                     
          <blk_ver_cb>3</blk_ver_cb>                                                                          
          <blk_length_cb>160</blk_length_cb>                                                                  
          <blk_checksum_cb>0x19e5</blk_checksum_cb>                                                           
          <eeprom_size>65535</eeprom_size>                                                                    
          <blk_count>3</blk_count>                                                                            
          <fru_major_type>0xab04</fru_major_type>                                                             
          <fru_minor_type>0x0</fru_minor_type>                                                                
          <oem_string>Cisco Systems, Inc.</oem_string>                                                        
          <prd_num>N77-C7718-FAN-2</prd_num>                                                                  
          <serial_num>NCV2051T02B</serial_num>                                                                
          <part_num>73-101408-01</part_num>                                                                   
          <part_rev>01</part_rev>                                                                             
          <mfg_dev></mfg_dev>                                                                                 
          <hw_rev>0.100</hw_rev>                                                                              
          <mfg_bits>0</mfg_bits>                                                                              
          <eng_use>0</eng_use>                                                                                
          <snmp_oid>0.0.0.0.0.0.0.0</snmp_oid>                                                                
          <power_consump>-1800</power_consump>                                                                
          <rma_code>0-0-0-0</rma_code>                                                                        
          <clei_code>NOCLEICODE</clei_code>                                                                   
          <vid>V01</vid>                                                                                      
         </cmn_block>                                                                                         
        </ROW_sprom>                                                                                          
        <ROW_sprom>                                                                                           
         <block>Fan Module specific block:                                                                    
</block>                                                                                                      
         <fan_specific_block>                                                                                 
          <blk_sig_fsb>0xab04</blk_sig_fsb>                                                                   
          <blk_ver_fsb>3</blk_ver_fsb>                                                                        
          <blk_length_fsb>32</blk_length_fsb>                                                                 
          <blk_checksum_fsb>0x109</blk_checksum_fsb>                                                          
          <feature_bits>0</feature_bits>                                                                      
          <hw_change_bits>0</hw_change_bits>                                                                  
          <stackmib_oid>0</stackmib_oid>                                                                      
          <cooling_capacity>0</cooling_capacity>                                                              
          <amb_temp>55</amb_temp>                                                                             
         </fan_specific_block>                                                                                
        </ROW_sprom>                                                                                          
        <ROW_sprom>                                                                                           
         <block>Second Serial number specific block:                                                          
</block>                                                                                                      
         <second_serial_block>                                                                                
          <blk_sig_sn2b>0x6007</blk_sig_sn2b>                                                                 
          <blk_ver_sn2b>1</blk_ver_sn2b>                                                                      
          <blk_length_sn2b>28</blk_length_sn2b>                                                               
          <blk_checksum_sn2b>0x32b</blk_checksum_sn2b>                                                        
          <serial_num_sn2b>NCV2051T02B</serial_num_sn2b>                                                      
         </second_serial_block>                                                                               
        </ROW_sprom>                                                                                          
       </TABLE_sprom>                                                                                         
      </__readonly__>                                                                                         
     </__XML__PARAM__fan-range>                                                                               
    </fan>                                                                                                    
   </sprom>                                                                                                   
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>            

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show sprom fan 1**

DISPLAY fan sprom contents:            
Common block :                         
 Block Signature : 0xabab              
 Block Version   : 3                   
 Block Length    : 160                 
 Block Checksum  : 0x19e5              
 EEPROM Size     : 65535               
 Block Count     : 3                   
 FRU Major Type  : 0xab04              
 FRU Minor Type  : 0x0                 
 OEM String      : Cisco Systems, Inc. 
 Product Number  : N77-C7718-FAN-2     
 Serial Number   : NCV2051T02B         
 Part Number     : 73-101408-01        
 Part Revision   : 01                  
 Mfg Deviation   :                     
 H/W Version     : 0.100               
 Mfg Bits        : 0                   
 Engineer Use    : 0                   
 snmpOID         : 0.0.0.0.0.0.0.0     
 Power Consump   : -1800               
 RMA Code        : 0-0-0-0             
 CLEI Code       : NOCLEICODE          
 VID             : V01                 
Fan Module specific block:             
 Block Signature : 0xab04              
 Block Version   : 3                   
 Block Length    : 32                  
 Block Checksum  : 0x109               
 Feature Bits    : 0x0                 
 HW Changes Bits : 0x0                 
 Stackmib OID    : 0                   
 Cooling Capacity    : 0               
 Ambient Temperature : 55              
Second Serial number specific block:   
 Block Signature : 0x6007              
 Block Version   : 1                   
 Block Length    : 28                  
 Block Checksum  : 0x32b               
 Serial Number   : NCV2051T02B     

show sprom module 7 1

show sprom module 7 1 
 
import requests
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 sprom module 7 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)
{                                                 
  "TABLE_sprom": {                                
    "ROW_sprom": [                                
      {                                           
        "block": "DISPLAY linecard sprom contents of module 7:"
      },                                                       
      {                                                        
        "block": "Common block :",                             
        "cmn_block": {                                         
          "blk_sig_cb": "0xabab",                              
          "blk_ver_cb": "3",                                   
          "blk_length_cb": "160",                              
          "blk_checksum_cb": "0x1618",                         
          "eeprom_size": "65535",                              
          "blk_count": "3",                                    
          "fru_major_type": "0x6003",                          
          "fru_minor_type": "0x0",                             
          "oem_string": "Cisco Systems, Inc.",                 
          "prd_num": "N77-F430CQ-36",                          
          "serial_num": "JAE214303LZ",                         
          "part_num": "73-101350-02",                          
          "part_rev": "05",                                    
          "mfg_dev": null,                                     
          "hw_rev": "0.203",                                   
          "mfg_bits": "0",                                     
          "eng_use": "0",                                      
          "snmp_oid": "0.0.0.0.0.0.0.0",                       
          "power_consump": "-1700",                            
          "rma_code": "0-0-0-0",                               
          "clei_code": null,                                   
          "vid": "V00"                                         
        }                                                      
      },                                                       
      {                                                        
        "block": "Linecard Module specific block:",            
        "lc_specific_block": {                                 
          "blk_sig_lc": "0x6003",                              
          "blk_ver_lc": "2",                                   
          "blk_length_lc": "103",                              
          "blk_checksum_lc": "0xd5a",                          
          "feature_bits": "0",                                 
          "hw_changes_bits": "0",                              
          "card_index": "18110",                               
          "mac_addresses": "00-27-90-a1-50-4c",                
          "no_of_macs": "100",                                 
          "no_of_eobc_links": "2",                             
          "no_of_epld": "3",                                   
          "TABLE_epld": {                                      
            "ROW_epld": [                                      
              {                                                
                "epld_name": "A",                              
                "epld_ver": "0x0"                              
              },                                               
              {                                                
                "epld_name": "B",                              
                "epld_ver": "0x0"                              
              },                                               
              {                                                
                "epld_name": "C",                              
                "epld_ver": "0x0"                              
              }                                                
            ]                                                  
          },                                                   
          "port_type_num": "2-90;7-2",                         
          "TABLE_sensor_lc": {                                 
            "ROW_sensor_lc": [                                 
              {                                                
                "sensor_num_lc": "#1",                         
                "maj_thres_lc": "125",                         
                "min_thres_lc": "115"                          
              },                                               
              {                                                
                "sensor_num_lc": "#2",                         
                "maj_thres_lc": "125",                         
                "min_thres_lc": "115"                          
              },                                               
              {                                                
                "sensor_num_lc": "#3",                         
                "maj_thres_lc": "125",                         
                "min_thres_lc": "115"                          
              },                                               
              {                                                
                "sensor_num_lc": "#4",                         
                "maj_thres_lc": "125",                         
                "min_thres_lc": "115"                          
              },                                               
              {                                                
                "sensor_num_lc": "#5",                         
                "maj_thres_lc": "125",                         
                "min_thres_lc": "115"                          
              },                                               
              {                                                
                "sensor_num_lc": "#6",                         
                "maj_thres_lc": "125",                         
                "min_thres_lc": "115"                          
              },                                               
              {                                                
                "sensor_num_lc": "#7",                         
                "maj_thres_lc": "125",                         
                "min_thres_lc": "115"                          
              },                                               
              {                                                
                "sensor_num_lc": "#8",                         
                "maj_thres_lc": "125",                         
                "min_thres_lc": "115"                          
              }                                                
            ]                                                  
          },                                                   
          "max_connector_power": "2400",                       
          "cooling_reqt": "135",                               
          "amb_temp": "55"                                     
        }                                                      
      },                                                       
      {                                                        
        "block": "Temperature Sensor block:",                  
        "temp_sensor_block": {                                 
          "blk_sig_tsb": "0x6008",                             
          "blk_ver_tsb": "1",                                  
          "blk_length_tsb": "71",                              
          "blk_checksum_tsb": "0x201a",                        
          "no_of_sensors": "10",                               
          "TABLE_sensor_tsb": {                                
            "ROW_sensor_tsb": [                                
              {                                                
                "sensor_num_tsb": "#9",                        
                "maj_thres_tsb": "125",                        
                "min_thres_tsb": "115"                         
              },                                               
              {                                                
                "sensor_num_tsb": "#10",                       
                "maj_thres_tsb": "125",                        
                "min_thres_tsb": "115"                         
              },                                               
              {                                                
                "sensor_num_tsb": "#11",                       
                "maj_thres_tsb": "125",                        
                "min_thres_tsb": "115"                         
              },                                               
              {                                                
                "sensor_num_tsb": "#12",                       
                "maj_thres_tsb": "125",                        
                "min_thres_tsb": "115"                         
              },                                               
              {                                                
                "sensor_num_tsb": "#13",                       
                "maj_thres_tsb": "125",                        
                "min_thres_tsb": "115"                         
              },                                               
              {                                                
                "sensor_num_tsb": "#14",                       
                "maj_thres_tsb": "125",                        
                "min_thres_tsb": "115"                         
              },                                               
              {                                                
                "sensor_num_tsb": "#15",                       
                "maj_thres_tsb": "125",                        
                "min_thres_tsb": "115"                         
              },                                               
              {                                                
                "sensor_num_tsb": "#16",                       
                "maj_thres_tsb": "125",                        
                "min_thres_tsb": "115"                         
              },                                               
              {                                                
                "sensor_num_tsb": "#17",                       
                "maj_thres_tsb": "125",                        
                "min_thres_tsb": "115"                         
              },                                               
              {                                                
                "sensor_num_tsb": "#18",                       
                "maj_thres_tsb": "125",                        
                "min_thres_tsb": "115"                         
              },                                               
              {                                                
                "sensor_num_tsb": "#19",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#20",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#21",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#22",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#23",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#24",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#25",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#26",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#27",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#28",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#29",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#30",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#31",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#32",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#33",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#34",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#35",                       
                "maj_thres_tsb": "-128",                       
                "min_thres_tsb": "-128"                        
              },                                               
              {                                                
                "sensor_num_tsb": "#36",                       
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              },
              {
                "sensor_num_tsb": "#37",
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              },
              {
                "sensor_num_tsb": "#38",
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              },
              {
                "sensor_num_tsb": "#39",
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              },
              {
                "sensor_num_tsb": "#40",
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              }
            ]
          }
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>      
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <sprom>                                                                                                    
    <module>                                                                                                  
     <__XML__PARAM__module>                                                                                   
      <__XML__value>7</__XML__value>                                                                          
      <__XML__PARAM__i3>                                                                                      
       <__XML__value>1</__XML__value>                                                                         
       <__readonly__>                                                                                         
        <TABLE_sprom>                                                                                         
         <ROW_sprom>                                                                                          
          <block>DISPLAY linecard sprom contents of module 7:                                                 
</block>                                                                                                      
         </ROW_sprom>                                                                                         
         <ROW_sprom>                                                                                          
          <block>Common block :                                                                               
</block>                                                                                                      
          <cmn_block>                                                                                         
           <blk_sig_cb>0xabab</blk_sig_cb>                                                                    
           <blk_ver_cb>3</blk_ver_cb>                                                                         
           <blk_length_cb>160</blk_length_cb>                                                                 
           <blk_checksum_cb>0x1618</blk_checksum_cb>                                                          
           <eeprom_size>65535</eeprom_size>                                                                   
           <blk_count>3</blk_count>                                                                           
           <fru_major_type>0x6003</fru_major_type>                                                            
           <fru_minor_type>0x0</fru_minor_type>                                                               
           <oem_string>Cisco Systems, Inc.</oem_string>                                                       
           <prd_num>N77-F430CQ-36</prd_num>                                                                   
           <serial_num>JAE214303LZ</serial_num>                                                               
           <part_num>73-101350-02</part_num>                                                                  
           <part_rev>05</part_rev>                                                                            
           <mfg_dev></mfg_dev>                                                                                
           <hw_rev>0.203</hw_rev>                                                                             
           <mfg_bits>0</mfg_bits>                                                                             
           <eng_use>0</eng_use>                                                                               
           <snmp_oid>0.0.0.0.0.0.0.0</snmp_oid>                                                               
           <power_consump>-1700</power_consump>                                                               
           <rma_code>0-0-0-0</rma_code>                                                                       
           <clei_code></clei_code>                                                                            
           <vid>V00</vid>                                                                                     
          </cmn_block>                                                                                        
         </ROW_sprom>                                                                                         
         <ROW_sprom>                                                                                          
          <block>Linecard Module specific block:                                                              
</block>                                                                                                      
          <lc_specific_block>                                                                                 
           <blk_sig_lc>0x6003</blk_sig_lc>                                                                    
           <blk_ver_lc>2</blk_ver_lc>                                                                         
           <blk_length_lc>103</blk_length_lc>                                                                 
           <blk_checksum_lc>0xd5a</blk_checksum_lc>                                                           
           <feature_bits>0</feature_bits>                                                                     
           <hw_changes_bits>0</hw_changes_bits>                                                               
           <card_index>18110</card_index>                                                                     
           <mac_addresses>00-27-90-a1-50-4c</mac_addresses>                                                   
           <no_of_macs>100</no_of_macs>                                                                       
           <no_of_eobc_links>2</no_of_eobc_links>                                                             
           <no_of_epld>3</no_of_epld>                                                                         
           <TABLE_epld>                                                                                       
            <ROW_epld>                                                                                        
             <epld_name>A</epld_name>                                                                         
             <epld_ver>0x0</epld_ver>                                                                         
            </ROW_epld>                                                                                       
            <ROW_epld>                                                                                        
             <epld_name>B</epld_name>                                                                         
             <epld_ver>0x0</epld_ver>                                                                         
            </ROW_epld>                                                                                       
            <ROW_epld>                                                                                        
             <epld_name>C</epld_name>                                                                         
             <epld_ver>0x0</epld_ver>                                                                         
            </ROW_epld>                                                                                       
           </TABLE_epld>                                                                                      
           <port_type_num>2-90;7-2</port_type_num>                                                            
           <TABLE_sensor_lc>                                                                                  
            <ROW_sensor_lc>                                                                                   
             <sensor_num_lc>#1</sensor_num_lc>                                                                
             <maj_thres_lc>125</maj_thres_lc>                                                                 
             <min_thres_lc>115</min_thres_lc>                                                                 
            </ROW_sensor_lc>                                                                                  
            <ROW_sensor_lc>                                                                                   
             <sensor_num_lc>#2</sensor_num_lc>                                                                
             <maj_thres_lc>125</maj_thres_lc>                                                                 
             <min_thres_lc>115</min_thres_lc>                                                                 
            </ROW_sensor_lc>                                                                                  
            <ROW_sensor_lc>                                                                                   
             <sensor_num_lc>#3</sensor_num_lc>                                                                
             <maj_thres_lc>125</maj_thres_lc>                                                                 
             <min_thres_lc>115</min_thres_lc>                                                                 
            </ROW_sensor_lc>                                                                                  
            <ROW_sensor_lc>                                                                                   
             <sensor_num_lc>#4</sensor_num_lc>                                                                
             <maj_thres_lc>125</maj_thres_lc>                                                                 
             <min_thres_lc>115</min_thres_lc>                                                                 
            </ROW_sensor_lc>                                                                                  
            <ROW_sensor_lc>                                                                                   
             <sensor_num_lc>#5</sensor_num_lc>                                                                
             <maj_thres_lc>125</maj_thres_lc>                                                                 
             <min_thres_lc>115</min_thres_lc>                                                                 
            </ROW_sensor_lc>                                                                                  
            <ROW_sensor_lc>                                                                                   
             <sensor_num_lc>#6</sensor_num_lc>                                                                
             <maj_thres_lc>125</maj_thres_lc>                                                                 
             <min_thres_lc>115</min_thres_lc>                                                                 
            </ROW_sensor_lc>                                                                                  
            <ROW_sensor_lc>                                                                                   
             <sensor_num_lc>#7</sensor_num_lc>                                                                
             <maj_thres_lc>125</maj_thres_lc>                                                                 
             <min_thres_lc>115</min_thres_lc>                                                                 
            </ROW_sensor_lc>                                                                                  
            <ROW_sensor_lc>                                                                                   
             <sensor_num_lc>#8</sensor_num_lc>                                                                
             <maj_thres_lc>125</maj_thres_lc>                                                                 
             <min_thres_lc>115</min_thres_lc>                                                                 
            </ROW_sensor_lc>                                                                                  
           </TABLE_sensor_lc>                                                                                 
           <max_connector_power>2400</max_connector_power>                                                    
           <cooling_reqt>135</cooling_reqt>                                                                   
           <amb_temp>55</amb_temp>                                                                            
          </lc_specific_block>                                                                                
         </ROW_sprom>                                                                                         
         <ROW_sprom>                                                                                          
          <block>Temperature Sensor block:                                                                    
</block>                                                                                                      
          <temp_sensor_block>                                                                                 
           <blk_sig_tsb>0x6008</blk_sig_tsb>                                                                  
           <blk_ver_tsb>1</blk_ver_tsb>                                                                       
           <blk_length_tsb>71</blk_length_tsb>                                                                
           <blk_checksum_tsb>0x201a</blk_checksum_tsb>                                                        
           <no_of_sensors>10</no_of_sensors>                                                                  
           <TABLE_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#9</sensor_num_tsb>                                                              
             <maj_thres_tsb>125</maj_thres_tsb>                                                               
             <min_thres_tsb>115</min_thres_tsb>                                                               
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#10</sensor_num_tsb>                                                             
             <maj_thres_tsb>125</maj_thres_tsb>                                                               
             <min_thres_tsb>115</min_thres_tsb>                                                               
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#11</sensor_num_tsb>                                                             
             <maj_thres_tsb>125</maj_thres_tsb>                                                               
             <min_thres_tsb>115</min_thres_tsb>                                                               
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#12</sensor_num_tsb>                                                             
             <maj_thres_tsb>125</maj_thres_tsb>                                                               
             <min_thres_tsb>115</min_thres_tsb>                                                               
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#13</sensor_num_tsb>                                                             
             <maj_thres_tsb>125</maj_thres_tsb>                                                               
             <min_thres_tsb>115</min_thres_tsb>                                                               
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#14</sensor_num_tsb>                                                             
             <maj_thres_tsb>125</maj_thres_tsb>                                                               
             <min_thres_tsb>115</min_thres_tsb>                                                               
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#15</sensor_num_tsb>                                                             
             <maj_thres_tsb>125</maj_thres_tsb>                                                               
             <min_thres_tsb>115</min_thres_tsb>                                                               
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#16</sensor_num_tsb>                                                             
             <maj_thres_tsb>125</maj_thres_tsb>                                                               
             <min_thres_tsb>115</min_thres_tsb>                                                               
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#17</sensor_num_tsb>                                                             
             <maj_thres_tsb>125</maj_thres_tsb>                                                               
             <min_thres_tsb>115</min_thres_tsb>                                                               
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#18</sensor_num_tsb>                                                             
             <maj_thres_tsb>125</maj_thres_tsb>                                                               
             <min_thres_tsb>115</min_thres_tsb>                                                               
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#19</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#20</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#21</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#22</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#23</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#24</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#25</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#26</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#27</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#28</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#29</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#30</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#31</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#32</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#33</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#34</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#35</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#36</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#37</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#38</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#39</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#40</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
           </TABLE_sensor_tsb>                                                                                
          </temp_sensor_block>                                                                                
         </ROW_sprom>                                                                                         
        </TABLE_sprom>                                                                                        
       </__readonly__>                                                                                        
      </__XML__PARAM__i3>                                                                                     
     </__XML__PARAM__module>                                                                                  
    </module>                                                                                                 
   </sprom>                                                                                                   
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>  

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show sprom module 7 1**

DISPLAY linecard sprom contents of module 7:
Common block :                              
 Block Signature : 0xabab                   
 Block Version   : 3                        
 Block Length    : 160                      
 Block Checksum  : 0x1618                   
 EEPROM Size     : 65535                    
 Block Count     : 3                        
 FRU Major Type  : 0x6003                   
 FRU Minor Type  : 0x0                      
 OEM String      : Cisco Systems, Inc.      
 Product Number  : N77-F430CQ-36            
 Serial Number   : JAE214303LZ              
 Part Number     : 73-101350-02             
 Part Revision   : 05                       
 Mfg Deviation   :                          
 H/W Version     : 0.203                    
 Mfg Bits        : 0                        
 Engineer Use    : 0                        
 snmpOID         : 0.0.0.0.0.0.0.0          
 Power Consump   : -1700                    
 RMA Code        : 0-0-0-0                  
 CLEI Code       :                          
 VID             : V00                      
Linecard Module specific block:             
 Block Signature : 0x6003                   
 Block Version   : 2                        
 Block Length    : 103                      
 Block Checksum  : 0xd5a                    
 Feature Bits    : 0x0                      
 HW Changes Bits : 0x0                      
 Card Index      : 18110                    
 MAC Addresses   : 00-27-90-a1-50-4c        
 Number of MACs  : 100                      
 Number of EOBC links  : 2                  
 Number of EPLD  : 3                        
 EPLD A          : 0x0                      
 EPLD B          : 0x0                      
 EPLD C          : 0x0                      
 Port Type-Num   : 2-90;7-2                 
 Sensor #1       : 125,115                  
 Sensor #2       : 125,115                  
 Sensor #3       : 125,115                  
 Sensor #4       : 125,115                  
 Sensor #5       : 125,115                  
 Sensor #6       : 125,115                  
 Sensor #7       : 125,115                  
 Sensor #8       : 125,115                  
 Max Connector Power: 2400                  
 Cooling Requirement: 135                   
 Ambient Temperature: 55                    
Temperature Sensor block:                   
 Block Signature : 0x6008                   
 Block Version   : 1                        
 Block Length    : 71                       
 Block Checksum  : 0x201a                   
 Number of Valid Sensors : 10               
 Sensor #9       : 125,115                  
 Sensor #10       : 125,115                 
 Sensor #11       : 125,115                 
 Sensor #12       : 125,115                 
 Sensor #13       : 125,115                 
 Sensor #14       : 125,115                 
 Sensor #15       : 125,115                 
 Sensor #16       : 125,115                 
 Sensor #17       : 125,115                 
 Sensor #18       : 125,115                 
 Sensor #19       : -128,-128               
 Sensor #20       : -128,-128               
 Sensor #21       : -128,-128               
 Sensor #22       : -128,-128               
 Sensor #23       : -128,-128               
 Sensor #24       : -128,-128               
 Sensor #25       : -128,-128               
 Sensor #26       : -128,-128               
 Sensor #27       : -128,-128               
 Sensor #28       : -128,-128               
 Sensor #29       : -128,-128               
 Sensor #30       : -128,-128               
 Sensor #31       : -128,-128               
 Sensor #32       : -128,-128               
 Sensor #33       : -128,-128               
 Sensor #34       : -128,-128               
 Sensor #35       : -128,-128               
 Sensor #36       : -128,-128               
 Sensor #37       : -128,-128               
 Sensor #38       : -128,-128               
 Sensor #39       : -128,-128               
 Sensor #40       : -128,-128    

show sprom powersupply 2

show sprom powersupply 2
 
import requests
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 sprom powersupply 2”,
  "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)
{                                                    
  "TABLE_sprom": {                                   
    "ROW_sprom": [                                   
      {                                              
        "block": "DISPLAY power-supply sprom contents:"
      },                                               
      {                                                
        "block": "Common block :",                     
        "cmn_block": {                                 
          "blk_sig_cb": "0xabab",                      
          "blk_ver_cb": "3",                           
          "blk_length_cb": "160",                      
          "blk_checksum_cb": "0x1749",                 
          "eeprom_size": "65535",                      
          "blk_count": "2",                            
          "fru_major_type": "0xab01",                  
          "fru_minor_type": "0x0",                     
          "oem_string": "Cisco Systems, Inc.",         
          "prd_num": "N7K-AC-3KW",                     
          "serial_num": "DTM1649029N",                 
          "part_num": "341-0428-01",
          "part_rev": "A0",
          "mfg_dev": "0",
          "hw_rev": "1.0",
          "mfg_bits": "0",
          "eng_use": "0",
          "snmp_oid": "9.12.3.1.6.313.0.0",
          "power_consump": "0",
          "rma_code": "0-0-0-0",
          "clei_code": "CMUPABRCAA",
          "vid": "V01"
        }
      },
      {
        "block": "Power supply specific block:",
        "ps_specific_block": {
          "blk_sig_psb": "0xab01",
          "blk_ver_psb": "2",
          "blk_length_psb": "36",
          "blk_checksum_psb": "0x3d4",
          "feature_bits": "0",
          "current_110v": "2800",
          "current_220v": "6000",
          "current_227v": "0",
          "stackmib_oid": "0"
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>         
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <sprom>                                                                                                    
    <powersupply>                                                                                             
     <__XML__PARAM__ps-range>                                                                                 
      <__XML__value>2</__XML__value>                                                                          
      <__readonly__>                                                                                          
       <TABLE_sprom>                                                                                          
        <ROW_sprom>                                                                                           
         <block>DISPLAY power-supply sprom contents:                                                          
</block>                                                                                                      
        </ROW_sprom>                                                                                          
        <ROW_sprom>                                                                                           
         <block>Common block :                                                                                
</block>                                                                                                      
         <cmn_block>                                                                                          
          <blk_sig_cb>0xabab</blk_sig_cb>                                                                     
          <blk_ver_cb>3</blk_ver_cb>                                                                          
          <blk_length_cb>160</blk_length_cb>                                                                  
          <blk_checksum_cb>0x1749</blk_checksum_cb>                                                           
          <eeprom_size>65535</eeprom_size>                                                                    
          <blk_count>2</blk_count>                                                                            
          <fru_major_type>0xab01</fru_major_type>                                                             
          <fru_minor_type>0x0</fru_minor_type>                                                                
          <oem_string>Cisco Systems, Inc.</oem_string>                                                        
          <prd_num>N7K-AC-3KW</prd_num>                                                                       
          <serial_num>DTM1649029N</serial_num>                                                                
          <part_num>341-0428-01</part_num>                                                                    
          <part_rev>A0 </part_rev>                                                                            
          <mfg_dev>0</mfg_dev>                                                                                
          <hw_rev>1.0</hw_rev>                                                                                
          <mfg_bits>0</mfg_bits>                                                                              
          <eng_use>0</eng_use>                                                                                
          <snmp_oid>9.12.3.1.6.313.0.0</snmp_oid>                                                             
          <power_consump>0</power_consump>                                                                    
          <rma_code>0-0-0-0</rma_code>                                                                        
          <clei_code>CMUPABRCAA</clei_code>                                                                   
          <vid>V01</vid>                                                                                      
         </cmn_block>                                                                                         
        </ROW_sprom>                                                                                          
        <ROW_sprom>                                                                                           
         <block>Power supply specific block:                                                                  
</block>                                                                                                      
         <ps_specific_block>                                                                                  
          <blk_sig_psb>0xab01</blk_sig_psb>                                                                   
          <blk_ver_psb>2</blk_ver_psb>                                                                        
          <blk_length_psb>36</blk_length_psb>                                                                 
          <blk_checksum_psb>0x3d4</blk_checksum_psb>                                                          
          <feature_bits>0</feature_bits>                                                                      
          <current_110v>2800</current_110v>                                                                   
          <current_220v>6000</current_220v>                                                                   
          <current_227v>0</current_227v>                                                                      
          <stackmib_oid>0</stackmib_oid>                                                                      
         </ps_specific_block>                                                                                 
        </ROW_sprom>                                                                                          
       </TABLE_sprom>                                                                                         
      </__readonly__>                                                                                         
     </__XML__PARAM__ps-range>                                                                                
    </powersupply>                                                                                            
   </sprom>                                                                                                   
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>    

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show sprom powersupply 2**

DISPLAY power-supply sprom contents:          
Common block :                                
 Block Signature : 0xabab                     
 Block Version   : 3                          
 Block Length    : 160                        
 Block Checksum  : 0x1749                     
 EEPROM Size     : 65535                      
 Block Count     : 2                          
 FRU Major Type  : 0xab01                     
 FRU Minor Type  : 0x0                        
 OEM String      : Cisco Systems, Inc.        
 Product Number  : N7K-AC-3KW                 
 Serial Number   : DTM1649029N                
 Part Number     : 341-0428-01                
 Part Revision   : A0                         
 Mfg Deviation   : 0                          
 H/W Version     : 1.0                        
 Mfg Bits        : 0                          
 Engineer Use    : 0                          
 snmpOID         : 9.12.3.1.6.313.0.0         
 Power Consump   : 0                          
 RMA Code        : 0-0-0-0                    
 CLEI Code       : CMUPABRCAA                 
 VID             : V01                        
Power supply specific block:                  
 Block Signature : 0xab01                     
 Block Version   : 2                          
 Block Length    : 36                         
 Block Checksum  : 0x3d4                      
 Feature Bits    : 0x0                        
 Current 110v    : 2800                       
 Current 220v    : 6000                       
 Current 277v    : 0                          
 Stackmib OID    : 0      

show sprom sup

show sprom sup
 
import requests
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 sprom sup”,
  "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)
{                                          
  "TABLE_sprom": {                         
    "ROW_sprom": [                         
      {                                    
        "block": "DISPLAY supervisor sprom contents:"
      },                                             
      {                                              
        "block": "Common block :",                   
        "cmn_block": {                               
          "blk_sig_cb": "0xabab",                    
          "blk_ver_cb": "3",                         
          "blk_length_cb": "160",                    
          "blk_checksum_cb": "0x188a",               
          "eeprom_size": "65535",                    
          "blk_count": "3",                          
          "fru_major_type": "0x6002",                
          "fru_minor_type": "0x0",                   
          "oem_string": "Cisco Systems, Inc.",       
          "prd_num": "N77-SUP2E",                    
          "serial_num": "JAE17280TTC",               
          "part_num": "73-14544-05",                 
          "part_rev": "A0",                          
          "mfg_dev": null,                           
          "hw_rev": "1.0",                           
          "mfg_bits": "0",                           
          "eng_use": "0",                            
          "snmp_oid": "9.12.3.1.9.97.5.0",           
          "power_consump": "-530",                   
          "rma_code": "0-0-0-0",                     
          "clei_code": "CMUCAECBAA",                 
          "vid": "V01"                               
        }                                            
      },                                             
      {                                              
        "block": "Supervisor Module specific block:", 
        "sup_specific_block": {                       
          "blk_sig_ssb": "0x6002",                    
          "blk_ver_ssb": "2",                         
          "blk_length_ssb": "103",                    
          "blk_checksum_ssb": "0xc4b",                
          "feature_bits": "0",                        
          "hw_changes_bits": "5",                     
          "card_index": "18055",                      
          "mac_addresses": "0c-68-03-29-66-e1",       
          "no_of_macs": "19",                         
          "no_of_epld": "1",                          
          "TABLE_epld": {                             
            "ROW_epld": {                             
              "epld_name": "A",                       
              "epld_ver": "0x0"                       
            }                                         
          },                                          
          "port_type_num": "7-2",                     
          "TABLE_sensor_ssb": {                       
            "ROW_sensor_ssb": [                       
              {                                       
                "sensor_num_ssb": "#1",               
                "maj_thres_ssb": "60",                
                "min_thres_ssb": "42"                 
              },                                      
              {                                       
                "sensor_num_ssb": "#2",               
                "maj_thres_ssb": "125",               
                "min_thres_ssb": "115"                
              },                                      
              {                                       
                "sensor_num_ssb": "#3",               
                "maj_thres_ssb": "125",               
                "min_thres_ssb": "105"                
              },                                      
              {                                       
                "sensor_num_ssb": "#4",               
                "maj_thres_ssb": "-128",              
                "min_thres_ssb": "-128"               
              },                                      
              {                                       
                "sensor_num_ssb": "#5",               
                "maj_thres_ssb": "-128",              
                "min_thres_ssb": "-128"               
              },                                      
              {                                       
                "sensor_num_ssb": "#6",               
                "maj_thres_ssb": "-128",              
                "min_thres_ssb": "-128"               
              },                                      
              {                                       
                "sensor_num_ssb": "#7",               
                "maj_thres_ssb": "-128",              
                "min_thres_ssb": "-128"               
              },                                      
              {                                       
                "sensor_num_ssb": "#8",               
                "maj_thres_ssb": "-128",              
                "min_thres_ssb": "-128"               
              }                                       
            ]                                         
          },                                          
          "max_connector_power": "1000",              
          "cooling_reqt": "75",                       
          "amb_temp": "55"                            
        }                                             
      },                                              
      {                                               
        "block": "Temperature Sensor block:",         
        "temp_sensor_block": {                        
          "blk_sig_tsb": "0x6008",                    
          "blk_ver_tsb": "1",                         
          "blk_length_tsb": "71",                     
          "blk_checksum_tsb": "0x1bf6",               
          "no_of_sensors": "14",                      
          "TABLE_sensor_tsb": {                       
            "ROW_sensor_tsb": [                       
              {                                       
                "sensor_num_tsb": "#9",               
                "maj_thres_tsb": "85",                
                "min_thres_tsb": "75"                 
              },                                      
              {                                       
                "sensor_num_tsb": "#10",              
                "maj_thres_tsb": "85",                
                "min_thres_tsb": "75"                 
              },                                      
              {                                       
                "sensor_num_tsb": "#11",              
                "maj_thres_tsb": "85",                
                "min_thres_tsb": "75"                 
              },                                      
              {                                       
                "sensor_num_tsb": "#12",              
                "maj_thres_tsb": "85",                
                "min_thres_tsb": "75"                 
              },                                      
              {                                       
                "sensor_num_tsb": "#13",              
                "maj_thres_tsb": "85",                
                "min_thres_tsb": "75"                 
              },                                      
              {                                       
                "sensor_num_tsb": "#14",              
                "maj_thres_tsb": "85",                
                "min_thres_tsb": "75"                 
              },                                      
              {                                       
                "sensor_num_tsb": "#15",              
                "maj_thres_tsb": "85",                
                "min_thres_tsb": "75"                 
              },                                      
              {                                       
                "sensor_num_tsb": "#16",              
                "maj_thres_tsb": "85",                
                "min_thres_tsb": "75"                 
              },                                      
              {                                       
                "sensor_num_tsb": "#17",              
                "maj_thres_tsb": "95",                
                "min_thres_tsb": "85"                 
              },                                      
              {                                       
                "sensor_num_tsb": "#18",              
                "maj_thres_tsb": "95",                
                "min_thres_tsb": "85"                 
              },                                      
              {                                       
                "sensor_num_tsb": "#19",              
                "maj_thres_tsb": "95",                
                "min_thres_tsb": "85"                 
              },                                      
              {                                       
                "sensor_num_tsb": "#20",              
                "maj_thres_tsb": "95",                
                "min_thres_tsb": "85"                 
              },                                      
              {                                       
                "sensor_num_tsb": "#21",              
                "maj_thres_tsb": "95",                
                "min_thres_tsb": "85"                 
              },                                      
              {                                       
                "sensor_num_tsb": "#22",              
                "maj_thres_tsb": "95",                
                "min_thres_tsb": "85"                 
              },                                      
              {                                       
                "sensor_num_tsb": "#23",              
                "maj_thres_tsb": "-128",              
                "min_thres_tsb": "-128"               
              },                                      
              {                                       
                "sensor_num_tsb": "#24",              
                "maj_thres_tsb": "-128",              
                "min_thres_tsb": "-128"               
              },                                      
              {                                       
                "sensor_num_tsb": "#25",              
                "maj_thres_tsb": "-128",              
                "min_thres_tsb": "-128"               
              },                                      
              {                                       
                "sensor_num_tsb": "#26",              
                "maj_thres_tsb": "-128",              
                "min_thres_tsb": "-128"               
              },                                      
              {                                       
                "sensor_num_tsb": "#27",              
                "maj_thres_tsb": "-128",              
                "min_thres_tsb": "-128"               
              },                                      
              {                                       
                "sensor_num_tsb": "#28",              
                "maj_thres_tsb": "-128",              
                "min_thres_tsb": "-128"               
              },                                      
              {                                       
                "sensor_num_tsb": "#29",              
                "maj_thres_tsb": "-128",              
                "min_thres_tsb": "-128"               
              },                                      
              {                                       
                "sensor_num_tsb": "#30",              
                "maj_thres_tsb": "-128",              
                "min_thres_tsb": "-128"               
              },                                      
              {                                       
                "sensor_num_tsb": "#31",              
                "maj_thres_tsb": "-128",              
                "min_thres_tsb": "-128"               
              },                                      
              {                                       
                "sensor_num_tsb": "#32",              
                "maj_thres_tsb": "-128",              
                "min_thres_tsb": "-128"               
              },                                      
              {                                       
                "sensor_num_tsb": "#33",              
                "maj_thres_tsb": "-128",              
                "min_thres_tsb": "-128"               
              },                                      
              {                                       
                "sensor_num_tsb": "#34",              
                "maj_thres_tsb": "-128",              
                "min_thres_tsb": "-128"               
              },                                      
              {                                       
                "sensor_num_tsb": "#35",              
                "maj_thres_tsb": "-128",              
                "min_thres_tsb": "-128"               
              },                                      
              {                                       
                "sensor_num_tsb": "#36",              
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              },
              {
                "sensor_num_tsb": "#37",
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              },
              {
                "sensor_num_tsb": "#38",
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              },
              {
                "sensor_num_tsb": "#39",
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              },
              {
                "sensor_num_tsb": "#40",
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              }
            ]
          }
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <sprom>                                                                                                    
    <sup>                                                                                                     
     <__readonly__>                                                                                           
      <TABLE_sprom>                                                                                           
       <ROW_sprom>                                                                                            
        <block>DISPLAY supervisor sprom contents:                                                             
</block>                                                                                                      
       </ROW_sprom>                                                                                           
       <ROW_sprom>                                                                                            
        <block>Common block :                                                                                 
</block>                                                                                                      
        <cmn_block>                                                                                           
         <blk_sig_cb>0xabab</blk_sig_cb>                                                                      
         <blk_ver_cb>3</blk_ver_cb>                                                                           
         <blk_length_cb>160</blk_length_cb>                                                                   
         <blk_checksum_cb>0x188a</blk_checksum_cb>                                                            
         <eeprom_size>65535</eeprom_size>                                                                     
         <blk_count>3</blk_count>                                                                             
         <fru_major_type>0x6002</fru_major_type>                                                              
         <fru_minor_type>0x0</fru_minor_type>                                                                 
         <oem_string>Cisco Systems, Inc.</oem_string>                                                         
         <prd_num>N77-SUP2E</prd_num>                                                                         
         <serial_num>JAE17280TTC</serial_num>                                                                 
         <part_num>73-14544-05</part_num>                                                                     
         <part_rev>A0</part_rev>                                                                              
         <mfg_dev></mfg_dev>                                                                                  
         <hw_rev>1.0</hw_rev>                                                                                 
         <mfg_bits>0</mfg_bits>                                                                               
         <eng_use>0</eng_use>                                                                                 
         <snmp_oid>9.12.3.1.9.97.5.0</snmp_oid>                                                               
         <power_consump>-530</power_consump>                                                                  
         <rma_code>0-0-0-0</rma_code>                                                                         
         <clei_code>CMUCAECBAA</clei_code>                                                                    
         <vid>V01</vid>                                                                                       
        </cmn_block>                                                                                          
       </ROW_sprom>                                                                                           
       <ROW_sprom>                                                                                            
        <block>Supervisor Module specific block:                                                              
</block>                                                                                                      
        <sup_specific_block>                                                                                  
         <blk_sig_ssb>0x6002</blk_sig_ssb>                                                                    
         <blk_ver_ssb>2</blk_ver_ssb>                                                                         
         <blk_length_ssb>103</blk_length_ssb>                                                                 
         <blk_checksum_ssb>0xc4b</blk_checksum_ssb>                                                           
         <feature_bits>0</feature_bits>                                                                       
         <hw_changes_bits>5</hw_changes_bits>                                                                 
         <card_index>18055</card_index>                                                                       
         <mac_addresses>0c-68-03-29-66-e1</mac_addresses>                                                     
         <no_of_macs>19</no_of_macs>                                                                          
         <no_of_epld>1</no_of_epld>                                                                           
         <TABLE_epld>                                                                                         
          <ROW_epld>                                                                                          
           <epld_name>A</epld_name>                                                                           
           <epld_ver>0x0</epld_ver>                                                                           
          </ROW_epld>                                                                                         
         </TABLE_epld>                                                                                        
         <port_type_num>7-2</port_type_num>                                                                   
         <TABLE_sensor_ssb>                                                                                   
          <ROW_sensor_ssb>                                                                                    
           <sensor_num_ssb>#1</sensor_num_ssb>                                                                
           <maj_thres_ssb>60</maj_thres_ssb>                                                                  
           <min_thres_ssb>42</min_thres_ssb>                                                                  
          </ROW_sensor_ssb>                                                                                   
          <ROW_sensor_ssb>                                                                                    
           <sensor_num_ssb>#2</sensor_num_ssb>                                                                
           <maj_thres_ssb>125</maj_thres_ssb>                                                                 
           <min_thres_ssb>115</min_thres_ssb>                                                                 
          </ROW_sensor_ssb>                                                                                   
          <ROW_sensor_ssb>                                                                                    
           <sensor_num_ssb>#3</sensor_num_ssb>                                                                
           <maj_thres_ssb>125</maj_thres_ssb>                                                                 
           <min_thres_ssb>105</min_thres_ssb>                                                                 
          </ROW_sensor_ssb>                                                                                   
          <ROW_sensor_ssb>                                                                                    
           <sensor_num_ssb>#4</sensor_num_ssb>                                                                
           <maj_thres_ssb>-128</maj_thres_ssb>                                                                
           <min_thres_ssb>-128</min_thres_ssb>                                                                
          </ROW_sensor_ssb>                                                                                   
          <ROW_sensor_ssb>                                                                                    
           <sensor_num_ssb>#5</sensor_num_ssb>                                                                
           <maj_thres_ssb>-128</maj_thres_ssb>                                                                
           <min_thres_ssb>-128</min_thres_ssb>                                                                
          </ROW_sensor_ssb>                                                                                   
          <ROW_sensor_ssb>                                                                                    
           <sensor_num_ssb>#6</sensor_num_ssb>                                                                
           <maj_thres_ssb>-128</maj_thres_ssb>                                                                
           <min_thres_ssb>-128</min_thres_ssb>                                                                
          </ROW_sensor_ssb>                                                                                   
          <ROW_sensor_ssb>                                                                                    
           <sensor_num_ssb>#7</sensor_num_ssb>                                                                
           <maj_thres_ssb>-128</maj_thres_ssb>                                                                
           <min_thres_ssb>-128</min_thres_ssb>                                                                
          </ROW_sensor_ssb>                                                                                   
          <ROW_sensor_ssb>                                                                                    
           <sensor_num_ssb>#8</sensor_num_ssb>                                                                
           <maj_thres_ssb>-128</maj_thres_ssb>                                                                
           <min_thres_ssb>-128</min_thres_ssb>                                                                
          </ROW_sensor_ssb>                                                                                   
         </TABLE_sensor_ssb>                                                                                  
         <max_connector_power>1000</max_connector_power>                                                      
         <cooling_reqt>75</cooling_reqt>                                                                      
         <amb_temp>55</amb_temp>                                                                              
        </sup_specific_block>                                                                                 
       </ROW_sprom>                                                                                           
       <ROW_sprom>                                                                                            
        <block>Temperature Sensor block:                                                                      
</block>                                                                                                      
        <temp_sensor_block>                                                                                   
         <blk_sig_tsb>0x6008</blk_sig_tsb>                                                                    
         <blk_ver_tsb>1</blk_ver_tsb>                                                                         
         <blk_length_tsb>71</blk_length_tsb>                                                                  
         <blk_checksum_tsb>0x1bf6</blk_checksum_tsb>                                                          
         <no_of_sensors>14</no_of_sensors>                                                                    
         <TABLE_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#9</sensor_num_tsb>                                                                
           <maj_thres_tsb>85</maj_thres_tsb>                                                                  
           <min_thres_tsb>75</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#10</sensor_num_tsb>                                                               
           <maj_thres_tsb>85</maj_thres_tsb>                                                                  
           <min_thres_tsb>75</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#11</sensor_num_tsb>                                                               
           <maj_thres_tsb>85</maj_thres_tsb>                                                                  
           <min_thres_tsb>75</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#12</sensor_num_tsb>                                                               
           <maj_thres_tsb>85</maj_thres_tsb>                                                                  
           <min_thres_tsb>75</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#13</sensor_num_tsb>                                                               
           <maj_thres_tsb>85</maj_thres_tsb>                                                                  
           <min_thres_tsb>75</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#14</sensor_num_tsb>                                                               
           <maj_thres_tsb>85</maj_thres_tsb>                                                                  
           <min_thres_tsb>75</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#15</sensor_num_tsb>                                                               
           <maj_thres_tsb>85</maj_thres_tsb>                                                                  
           <min_thres_tsb>75</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#16</sensor_num_tsb>                                                               
           <maj_thres_tsb>85</maj_thres_tsb>                                                                  
           <min_thres_tsb>75</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#17</sensor_num_tsb>                                                               
           <maj_thres_tsb>95</maj_thres_tsb>                                                                  
           <min_thres_tsb>85</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#18</sensor_num_tsb>                                                               
           <maj_thres_tsb>95</maj_thres_tsb>                                                                  
           <min_thres_tsb>85</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#19</sensor_num_tsb>                                                               
           <maj_thres_tsb>95</maj_thres_tsb>                                                                  
           <min_thres_tsb>85</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#20</sensor_num_tsb>                                                               
           <maj_thres_tsb>95</maj_thres_tsb>                                                                  
           <min_thres_tsb>85</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#21</sensor_num_tsb>                                                               
           <maj_thres_tsb>95</maj_thres_tsb>                                                                  
           <min_thres_tsb>85</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#22</sensor_num_tsb>                                                               
           <maj_thres_tsb>95</maj_thres_tsb>                                                                  
           <min_thres_tsb>85</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#23</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#24</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#25</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#26</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#27</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#28</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#29</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#30</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#31</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#32</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#33</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#34</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#35</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#36</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#37</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#38</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#39</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#40</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
         </TABLE_sensor_tsb>                                                                                  
        </temp_sensor_block>                                                                                  
       </ROW_sprom>                                                                                           
      </TABLE_sprom>                                                                                          
     </__readonly__>                                                                                          
    </sup>                                                                                                    
   </sprom>                                                                                                   
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>   

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show sprom sup**

DISPLAY supervisor sprom contents:   
Common block :                       
 Block Signature : 0xabab            
 Block Version   : 3                 
 Block Length    : 160               
 Block Checksum  : 0x188a            
 EEPROM Size     : 65535             
 Block Count     : 3                 
 FRU Major Type  : 0x6002            
 FRU Minor Type  : 0x0               
 OEM String      : Cisco Systems, Inc.
 Product Number  : N77-SUP2E          
 Serial Number   : JAE17280TTC        
 Part Number     : 73-14544-05        
 Part Revision   : A0                 
 Mfg Deviation   :                    
 H/W Version     : 1.0                
 Mfg Bits        : 0                  
 Engineer Use    : 0                  
 snmpOID         : 9.12.3.1.9.97.5.0  
 Power Consump   : -530               
 RMA Code        : 0-0-0-0            
 CLEI Code       : CMUCAECBAA         
 VID             : V01                
Supervisor Module specific block:     
 Block Signature : 0x6002             
 Block Version   : 2                  
 Block Length    : 103                
 Block Checksum  : 0xc4b              
 Feature Bits    : 0x0                
 HW Changes Bits : 0x5                
 Card Index      : 18055              
 MAC Addresses   : 0c-68-03-29-66-e1  
 Number of MACs  : 19                 
 Number of EPLD  : 1                  
 EPLD A          : 0x0                
 Port Type-Num   : 7-2                
 Sensor #1       : 60,42              
 Sensor #2       : 125,115            
 Sensor #3       : 125,105            
 Sensor #4       : -128,-128          
 Sensor #5       : -128,-128          
 Sensor #6       : -128,-128          
 Sensor #7       : -128,-128          
 Sensor #8       : -128,-128          
 Max Connector Power: 1000            
 Cooling Requirement: 75              
 Ambient Temperature: 55              
Temperature Sensor block:             
 Block Signature : 0x6008             
 Block Version   : 1                  
 Block Length    : 71                 
 Block Checksum  : 0x1bf6             
 Number of Valid Sensors : 14         
 Sensor #9       : 85,75              
 Sensor #10       : 85,75             
 Sensor #11       : 85,75             
 Sensor #12       : 85,75             
 Sensor #13       : 85,75             
 Sensor #14       : 85,75             
 Sensor #15       : 85,75             
 Sensor #16       : 85,75             
 Sensor #17       : 95,85             
 Sensor #18       : 95,85             
 Sensor #19       : 95,85             
 Sensor #20       : 95,85             
 Sensor #21       : 95,85             
 Sensor #22       : 95,85             
 Sensor #23       : -128,-128         
 Sensor #24       : -128,-128         
 Sensor #25       : -128,-128         
 Sensor #26       : -128,-128         
 Sensor #27       : -128,-128         
 Sensor #28       : -128,-128         
 Sensor #29       : -128,-128         
 Sensor #30       : -128,-128         
 Sensor #31       : -128,-128         
 Sensor #32       : -128,-128         
 Sensor #33       : -128,-128         
 Sensor #34       : -128,-128         
 Sensor #35       : -128,-128         
 Sensor #36       : -128,-128         
 Sensor #37       : -128,-128         
 Sensor #38       : -128,-128         
 Sensor #39       : -128,-128         
 Sensor #40       : -128,-128        

show sprom stby-sup

show sprom stby-sup
 
import requests
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 sprom stby-sup”,
  "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)
{                                               
  "TABLE_sprom": {                              
    "ROW_sprom": [                              
      {                                         
        "block": "DISPLAY standby supervisor sprom contents:"
      },                                                     
      {                                                      
        "block": "Common block :",                           
        "cmn_block": {                                       
          "blk_sig_cb": "0xabab",                            
          "blk_ver_cb": "3",                                 
          "blk_length_cb": "160",                            
          "blk_checksum_cb": "0x1867",                       
          "eeprom_size": "65535",                            
          "blk_count": "3",                                  
          "fru_major_type": "0x6002",                        
          "fru_minor_type": "0x0",                           
          "oem_string": "Cisco Systems, Inc.",               
          "prd_num": "N77-SUP2E",                            
          "serial_num": "JAE2108095N",                       
          "part_num": "73-14544-08",                         
          "part_rev": "B0",                                  
          "mfg_dev": null,                                   
          "hw_rev": "1.4",                                   
          "mfg_bits": "0",                                   
          "eng_use": "0",                                    
          "snmp_oid": "9.12.3.1.9.97.5.0",                   
          "power_consump": "-530",                           
          "rma_code": "0-0-0-0",                             
          "clei_code": "CMUCAJFBAA",                         
          "vid": "V04"                                       
        }                                                    
      },                                                     
      {                                                      
        "block": "Supervisor Module specific block:",        
        "sup_specific_block": {                              
          "blk_sig_ssb": "0x6002",                           
          "blk_ver_ssb": "2",                                
          "blk_length_ssb": "103",                           
          "blk_checksum_ssb": "0xd3e",                       
          "feature_bits": "0",                               
          "hw_changes_bits": "5",                            
          "card_index": "18055",                             
          "mac_addresses": "00-c1-b1-c8-42-5e",              
          "no_of_macs": "19",                                
          "no_of_epld": "1",                                 
          "TABLE_epld": {                                    
            "ROW_epld": {                                    
              "epld_name": "A",                              
              "epld_ver": "0x0"                              
            }                                                
          },                                                 
          "port_type_num": "7-2",                            
          "TABLE_sensor_ssb": {                              
            "ROW_sensor_ssb": [                              
              {                                              
                "sensor_num_ssb": "#1",                      
                "maj_thres_ssb": "60",                       
                "min_thres_ssb": "42"                        
              },                                             
              {                                              
                "sensor_num_ssb": "#2",                      
                "maj_thres_ssb": "125",                      
                "min_thres_ssb": "115"                       
              },                                             
              {                                              
                "sensor_num_ssb": "#3",                      
                "maj_thres_ssb": "125",                      
                "min_thres_ssb": "105"                       
              },                                             
              {                                              
                "sensor_num_ssb": "#4",                      
                "maj_thres_ssb": "-128",                     
                "min_thres_ssb": "-128"                      
              },                                             
              {                                              
                "sensor_num_ssb": "#5",                      
                "maj_thres_ssb": "-128",                     
                "min_thres_ssb": "-128"                      
              },                                             
              {                                              
                "sensor_num_ssb": "#6",                      
                "maj_thres_ssb": "-128",                     
                "min_thres_ssb": "-128"                      
              },                                             
              {                                              
                "sensor_num_ssb": "#7",                      
                "maj_thres_ssb": "-128",                     
                "min_thres_ssb": "-128"                      
              },                                             
              {                                              
                "sensor_num_ssb": "#8",                      
                "maj_thres_ssb": "-128",                     
                "min_thres_ssb": "-128"                      
              }                                              
            ]                                                
          },                                                 
          "max_connector_power": "1000",                     
          "cooling_reqt": "75",                              
          "amb_temp": "55"                                   
        }                                                    
      },                                                     
      {                                                      
        "block": "Temperature Sensor block:",                
        "temp_sensor_block": {                               
          "blk_sig_tsb": "0x6008",                           
          "blk_ver_tsb": "1",                                
          "blk_length_tsb": "71",                            
          "blk_checksum_tsb": "0x1bf6",                      
          "no_of_sensors": "14",                             
          "TABLE_sensor_tsb": {                              
            "ROW_sensor_tsb": [                              
              {                                              
                "sensor_num_tsb": "#9",                      
                "maj_thres_tsb": "85",                       
                "min_thres_tsb": "75"                        
              },                                             
              {                                              
                "sensor_num_tsb": "#10",                     
                "maj_thres_tsb": "85",                       
                "min_thres_tsb": "75"                        
              },                                             
              {                                              
                "sensor_num_tsb": "#11",                     
                "maj_thres_tsb": "85",                       
                "min_thres_tsb": "75"                        
              },                                             
              {                                              
                "sensor_num_tsb": "#12",                     
                "maj_thres_tsb": "85",                       
                "min_thres_tsb": "75"                        
              },                                             
              {                                              
                "sensor_num_tsb": "#13",                     
                "maj_thres_tsb": "85",                       
                "min_thres_tsb": "75"                        
              },                                             
              {                                              
                "sensor_num_tsb": "#14",                     
                "maj_thres_tsb": "85",                       
                "min_thres_tsb": "75"                        
              },                                             
              {                                              
                "sensor_num_tsb": "#15",                     
                "maj_thres_tsb": "85",                       
                "min_thres_tsb": "75"                        
              },                                             
              {                                              
                "sensor_num_tsb": "#16",                     
                "maj_thres_tsb": "85",                       
                "min_thres_tsb": "75"                        
              },                                             
              {                                              
                "sensor_num_tsb": "#17",                     
                "maj_thres_tsb": "95",                       
                "min_thres_tsb": "85"                        
              },                                             
              {                                              
                "sensor_num_tsb": "#18",                     
                "maj_thres_tsb": "95",                       
                "min_thres_tsb": "85"                        
              },                                             
              {                                              
                "sensor_num_tsb": "#19",                     
                "maj_thres_tsb": "95",                       
                "min_thres_tsb": "85"                        
              },                                             
              {                                              
                "sensor_num_tsb": "#20",                     
                "maj_thres_tsb": "95",                       
                "min_thres_tsb": "85"                        
              },                                             
              {                                              
                "sensor_num_tsb": "#21",                     
                "maj_thres_tsb": "95",                       
                "min_thres_tsb": "85"                        
              },                                             
              {                                              
                "sensor_num_tsb": "#22",                     
                "maj_thres_tsb": "95",                       
                "min_thres_tsb": "85"                        
              },                                             
              {                                              
                "sensor_num_tsb": "#23",                     
                "maj_thres_tsb": "-128",                     
                "min_thres_tsb": "-128"                      
              },                                             
              {                                              
                "sensor_num_tsb": "#24",                     
                "maj_thres_tsb": "-128",                     
                "min_thres_tsb": "-128"                      
              },                                             
              {                                              
                "sensor_num_tsb": "#25",                     
                "maj_thres_tsb": "-128",                     
                "min_thres_tsb": "-128"                      
              },                                             
              {                                              
                "sensor_num_tsb": "#26",                     
                "maj_thres_tsb": "-128",                     
                "min_thres_tsb": "-128"                      
              },                                             
              {                                              
                "sensor_num_tsb": "#27",                     
                "maj_thres_tsb": "-128",                     
                "min_thres_tsb": "-128"                      
              },                                             
              {                                              
                "sensor_num_tsb": "#28",                     
                "maj_thres_tsb": "-128",                     
                "min_thres_tsb": "-128"                      
              },                                             
              {                                              
                "sensor_num_tsb": "#29",                     
                "maj_thres_tsb": "-128",                     
                "min_thres_tsb": "-128"                      
              },                                             
              {                                              
                "sensor_num_tsb": "#30",                     
                "maj_thres_tsb": "-128",                     
                "min_thres_tsb": "-128"                      
              },                                             
              {                                              
                "sensor_num_tsb": "#31",                     
                "maj_thres_tsb": "-128",                     
                "min_thres_tsb": "-128"                      
              },                                             
              {                                              
                "sensor_num_tsb": "#32",                     
                "maj_thres_tsb": "-128",                     
                "min_thres_tsb": "-128"                      
              },                                             
              {                                              
                "sensor_num_tsb": "#33",                     
                "maj_thres_tsb": "-128",                     
                "min_thres_tsb": "-128"                      
              },                                             
              {                                              
                "sensor_num_tsb": "#34",                     
                "maj_thres_tsb": "-128",                     
                "min_thres_tsb": "-128"                      
              },                                             
              {                                              
                "sensor_num_tsb": "#35",                     
                "maj_thres_tsb": "-128",                     
                "min_thres_tsb": "-128"                      
              },                                             
              {                                              
                "sensor_num_tsb": "#36",                     
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              },
              {
                "sensor_num_tsb": "#37",
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              },
              {
                "sensor_num_tsb": "#38",
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              },
              {
                "sensor_num_tsb": "#39",
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              },
              {
                "sensor_num_tsb": "#40",
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              }
            ]
          }
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>    
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <sprom>                                                                                                    
    <stby-sup>                                                                                                
     <__readonly__>                                                                                           
      <TABLE_sprom>                                                                                           
       <ROW_sprom>                                                                                            
        <block>DISPLAY standby supervisor sprom contents:                                                     
</block>                                                                                                      
       </ROW_sprom>                                                                                           
       <ROW_sprom>                                                                                            
        <block>Common block :                                                                                 
</block>                                                                                                      
        <cmn_block>                                                                                           
         <blk_sig_cb>0xabab</blk_sig_cb>                                                                      
         <blk_ver_cb>3</blk_ver_cb>                                                                           
         <blk_length_cb>160</blk_length_cb>                                                                   
         <blk_checksum_cb>0x1867</blk_checksum_cb>                                                            
         <eeprom_size>65535</eeprom_size>                                                                     
         <blk_count>3</blk_count>                                                                             
         <fru_major_type>0x6002</fru_major_type>                                                              
         <fru_minor_type>0x0</fru_minor_type>                                                                 
         <oem_string>Cisco Systems, Inc.</oem_string>                                                         
         <prd_num>N77-SUP2E</prd_num>                                                                         
         <serial_num>JAE2108095N</serial_num>                                                                 
         <part_num>73-14544-08</part_num>                                                                     
         <part_rev>B0</part_rev>                                                                              
         <mfg_dev></mfg_dev>                                                                                  
         <hw_rev>1.4</hw_rev>                                                                                 
         <mfg_bits>0</mfg_bits>                                                                               
         <eng_use>0</eng_use>                                                                                 
         <snmp_oid>9.12.3.1.9.97.5.0</snmp_oid>                                                               
         <power_consump>-530</power_consump>                                                                  
         <rma_code>0-0-0-0</rma_code>                                                                         
         <clei_code>CMUCAJFBAA</clei_code>                                                                    
         <vid>V04</vid>                                                                                       
        </cmn_block>                                                                                          
       </ROW_sprom>                                                                                           
       <ROW_sprom>                                                                                            
        <block>Supervisor Module specific block:                                                              
</block>                                                                                                      
        <sup_specific_block>                                                                                  
         <blk_sig_ssb>0x6002</blk_sig_ssb>                                                                    
         <blk_ver_ssb>2</blk_ver_ssb>                                                                         
         <blk_length_ssb>103</blk_length_ssb>                                                                 
         <blk_checksum_ssb>0xd3e</blk_checksum_ssb>                                                           
         <feature_bits>0</feature_bits>                                                                       
         <hw_changes_bits>5</hw_changes_bits>                                                                 
         <card_index>18055</card_index>                                                                       
         <mac_addresses>00-c1-b1-c8-42-5e</mac_addresses>                                                     
         <no_of_macs>19</no_of_macs>                                                                          
         <no_of_epld>1</no_of_epld>                                                                           
         <TABLE_epld>                                                                                         
          <ROW_epld>                                                                                          
           <epld_name>A</epld_name>                                                                           
           <epld_ver>0x0</epld_ver>                                                                           
          </ROW_epld>                                                                                         
         </TABLE_epld>                                                                                        
         <port_type_num>7-2</port_type_num>                                                                   
         <TABLE_sensor_ssb>                                                                                   
          <ROW_sensor_ssb>                                                                                    
           <sensor_num_ssb>#1</sensor_num_ssb>                                                                
           <maj_thres_ssb>60</maj_thres_ssb>                                                                  
           <min_thres_ssb>42</min_thres_ssb>                                                                  
          </ROW_sensor_ssb>                                                                                   
          <ROW_sensor_ssb>                                                                                    
           <sensor_num_ssb>#2</sensor_num_ssb>                                                                
           <maj_thres_ssb>125</maj_thres_ssb>                                                                 
           <min_thres_ssb>115</min_thres_ssb>                                                                 
          </ROW_sensor_ssb>                                                                                   
          <ROW_sensor_ssb>                                                                                    
           <sensor_num_ssb>#3</sensor_num_ssb>                                                                
           <maj_thres_ssb>125</maj_thres_ssb>                                                                 
           <min_thres_ssb>105</min_thres_ssb>                                                                 
          </ROW_sensor_ssb>                                                                                   
          <ROW_sensor_ssb>                                                                                    
           <sensor_num_ssb>#4</sensor_num_ssb>                                                                
           <maj_thres_ssb>-128</maj_thres_ssb>                                                                
           <min_thres_ssb>-128</min_thres_ssb>                                                                
          </ROW_sensor_ssb>                                                                                   
          <ROW_sensor_ssb>                                                                                    
           <sensor_num_ssb>#5</sensor_num_ssb>                                                                
           <maj_thres_ssb>-128</maj_thres_ssb>                                                                
           <min_thres_ssb>-128</min_thres_ssb>                                                                
          </ROW_sensor_ssb>                                                                                   
          <ROW_sensor_ssb>                                                                                    
           <sensor_num_ssb>#6</sensor_num_ssb>                                                                
           <maj_thres_ssb>-128</maj_thres_ssb>                                                                
           <min_thres_ssb>-128</min_thres_ssb>                                                                
          </ROW_sensor_ssb>                                                                                   
          <ROW_sensor_ssb>                                                                                    
           <sensor_num_ssb>#7</sensor_num_ssb>                                                                
           <maj_thres_ssb>-128</maj_thres_ssb>                                                                
           <min_thres_ssb>-128</min_thres_ssb>                                                                
          </ROW_sensor_ssb>                                                                                   
          <ROW_sensor_ssb>                                                                                    
           <sensor_num_ssb>#8</sensor_num_ssb>                                                                
           <maj_thres_ssb>-128</maj_thres_ssb>                                                                
           <min_thres_ssb>-128</min_thres_ssb>                                                                
          </ROW_sensor_ssb>                                                                                   
         </TABLE_sensor_ssb>                                                                                  
         <max_connector_power>1000</max_connector_power>                                                      
         <cooling_reqt>75</cooling_reqt>                                                                      
         <amb_temp>55</amb_temp>                                                                              
        </sup_specific_block>                                                                                 
       </ROW_sprom>                                                                                           
       <ROW_sprom>                                                                                            
        <block>Temperature Sensor block:                                                                      
</block>                                                                                                      
        <temp_sensor_block>                                                                                   
         <blk_sig_tsb>0x6008</blk_sig_tsb>                                                                    
         <blk_ver_tsb>1</blk_ver_tsb>                                                                         
         <blk_length_tsb>71</blk_length_tsb>                                                                  
         <blk_checksum_tsb>0x1bf6</blk_checksum_tsb>                                                          
         <no_of_sensors>14</no_of_sensors>                                                                    
         <TABLE_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#9</sensor_num_tsb>                                                                
           <maj_thres_tsb>85</maj_thres_tsb>                                                                  
           <min_thres_tsb>75</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#10</sensor_num_tsb>                                                               
           <maj_thres_tsb>85</maj_thres_tsb>                                                                  
           <min_thres_tsb>75</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#11</sensor_num_tsb>                                                               
           <maj_thres_tsb>85</maj_thres_tsb>                                                                  
           <min_thres_tsb>75</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#12</sensor_num_tsb>                                                               
           <maj_thres_tsb>85</maj_thres_tsb>                                                                  
           <min_thres_tsb>75</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#13</sensor_num_tsb>                                                               
           <maj_thres_tsb>85</maj_thres_tsb>                                                                  
           <min_thres_tsb>75</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#14</sensor_num_tsb>                                                               
           <maj_thres_tsb>85</maj_thres_tsb>                                                                  
           <min_thres_tsb>75</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#15</sensor_num_tsb>                                                               
           <maj_thres_tsb>85</maj_thres_tsb>                                                                  
           <min_thres_tsb>75</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#16</sensor_num_tsb>                                                               
           <maj_thres_tsb>85</maj_thres_tsb>                                                                  
           <min_thres_tsb>75</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#17</sensor_num_tsb>                                                               
           <maj_thres_tsb>95</maj_thres_tsb>                                                                  
           <min_thres_tsb>85</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#18</sensor_num_tsb>                                                               
           <maj_thres_tsb>95</maj_thres_tsb>                                                                  
           <min_thres_tsb>85</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#19</sensor_num_tsb>                                                               
           <maj_thres_tsb>95</maj_thres_tsb>                                                                  
           <min_thres_tsb>85</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#20</sensor_num_tsb>                                                               
           <maj_thres_tsb>95</maj_thres_tsb>                                                                  
           <min_thres_tsb>85</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#21</sensor_num_tsb>                                                               
           <maj_thres_tsb>95</maj_thres_tsb>                                                                  
           <min_thres_tsb>85</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#22</sensor_num_tsb>                                                               
           <maj_thres_tsb>95</maj_thres_tsb>                                                                  
           <min_thres_tsb>85</min_thres_tsb>                                                                  
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#23</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#24</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#25</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#26</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#27</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#28</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#29</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#30</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#31</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#32</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#33</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#34</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#35</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#36</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#37</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#38</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#39</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
          <ROW_sensor_tsb>                                                                                    
           <sensor_num_tsb>#40</sensor_num_tsb>                                                               
           <maj_thres_tsb>-128</maj_thres_tsb>                                                                
           <min_thres_tsb>-128</min_thres_tsb>                                                                
          </ROW_sensor_tsb>                                                                                   
         </TABLE_sensor_tsb>                                                                                  
        </temp_sensor_block>                                                                                  
       </ROW_sprom>                                                                                           
      </TABLE_sprom>                                                                                          
     </__readonly__>                                                                                          
    </stby-sup>                                                                                               
   </sprom>                                                                                                   
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>     

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show sprom stby-sup**

DISPLAY standby supervisor sprom contents:
Common block :                            
 Block Signature : 0xabab                 
 Block Version   : 3                      
 Block Length    : 160                    
 Block Checksum  : 0x1867                 
 EEPROM Size     : 65535                  
 Block Count     : 3                      
 FRU Major Type  : 0x6002                 
 FRU Minor Type  : 0x0                    
 OEM String      : Cisco Systems, Inc.    
 Product Number  : N77-SUP2E              
 Serial Number   : JAE2108095N            
 Part Number     : 73-14544-08            
 Part Revision   : B0                     
 Mfg Deviation   :                        
 H/W Version     : 1.4                    
 Mfg Bits        : 0                      
 Engineer Use    : 0                      
 snmpOID         : 9.12.3.1.9.97.5.0      
 Power Consump   : -530                   
 RMA Code        : 0-0-0-0                
 CLEI Code       : CMUCAJFBAA             
 VID             : V04                    
Supervisor Module specific block:         
 Block Signature : 0x6002                 
 Block Version   : 2                      
 Block Length    : 103                    
 Block Checksum  : 0xd3e                  
 Feature Bits    : 0x0                    
 HW Changes Bits : 0x5                    
 Card Index      : 18055                  
 MAC Addresses   : 00-c1-b1-c8-42-5e      
 Number of MACs  : 19                     
 Number of EPLD  : 1                      
 EPLD A          : 0x0                    
 Port Type-Num   : 7-2                    
 Sensor #1       : 60,42                  
 Sensor #2       : 125,115                
 Sensor #3       : 125,105                
 Sensor #4       : -128,-128              
 Sensor #5       : -128,-128              
 Sensor #6       : -128,-128              
 Sensor #7       : -128,-128              
 Sensor #8       : -128,-128              
 Max Connector Power: 1000                
 Cooling Requirement: 75                  
 Ambient Temperature: 55                  
Temperature Sensor block:                 
 Block Signature : 0x6008                 
 Block Version   : 1                      
 Block Length    : 71                     
 Block Checksum  : 0x1bf6                 
 Number of Valid Sensors : 14             
 Sensor #9       : 85,75                  
 Sensor #10       : 85,75                 
 Sensor #11       : 85,75                 
 Sensor #12       : 85,75                 
 Sensor #13       : 85,75                 
 Sensor #14       : 85,75                 
 Sensor #15       : 85,75                 
 Sensor #16       : 85,75                 
 Sensor #17       : 95,85                 
 Sensor #18       : 95,85                 
 Sensor #19       : 95,85                 
 Sensor #20       : 95,85                 
 Sensor #21       : 95,85                 
 Sensor #22       : 95,85                 
 Sensor #23       : -128,-128             
 Sensor #24       : -128,-128             
 Sensor #25       : -128,-128             
 Sensor #26       : -128,-128             
 Sensor #27       : -128,-128             
 Sensor #28       : -128,-128             
 Sensor #29       : -128,-128             
 Sensor #30       : -128,-128             
 Sensor #31       : -128,-128             
 Sensor #32       : -128,-128             
 Sensor #33       : -128,-128             
 Sensor #34       : -128,-128             
 Sensor #35       : -128,-128             
 Sensor #36       : -128,-128             
 Sensor #37       : -128,-128             
 Sensor #38       : -128,-128             
 Sensor #39       : -128,-128             
 Sensor #40       : -128,-128            

show sprom xbar 1 1

show sprom xbar 1 1 
 
import requests
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 sprom xbar 1 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)
{                                                
  "TABLE_sprom": {                               
    "ROW_sprom": [                               
      {                                          
        "block": "DISPLAY fabric sprom contents of xbar 1:"
      },                                                   
      {                                                    
        "block": "Common block :",                         
        "cmn_block": {                                     
          "blk_sig_cb": "0xabab",                          
          "blk_ver_cb": "3",                               
          "blk_length_cb": "160",                          
          "blk_checksum_cb": "0x177a",                     
          "eeprom_size": "65535",                          
          "blk_count": "3",                                
          "fru_major_type": "0x6003",                      
          "fru_minor_type": "0x0",                         
          "oem_string": "Cisco Systems, Inc.",             
          "prd_num": "N77-C7718-FAB-2",                    
          "serial_num": "JAF1641BKFL",                     
          "part_num": "73-14158-01",                       
          "part_rev": "28",                                
          "mfg_dev": "0",                                  
          "hw_rev": "0.201",                               
          "mfg_bits": "0",                                 
          "eng_use": "0",                                  
          "snmp_oid": "9.12.3.1.9.94.2.0",                 
          "power_consump": "-900",                         
          "rma_code": "0-0-0-0",                           
          "clei_code": "0",                                
          "vid": "V01"                                     
        }                                                  
      },                                                   
      {                                                    
        "block": "Linecard Module specific block:",        
        "lc_specific_block": {                             
          "blk_sig_lc": "0x6003",                          
          "blk_ver_lc": "2",                               
          "blk_length_lc": "103",                          
          "blk_checksum_lc": "0xa81",                      
          "feature_bits": "0",                             
          "hw_changes_bits": "2",                          
          "card_index": "18053",                           
          "mac_addresses": "00-00-00-00-00-00",            
          "no_of_macs": "0",                               
          "no_of_eobc_links": "0",                         
          "no_of_epld": "1",                               
          "TABLE_epld": {                                  
            "ROW_epld": {                                  
              "epld_name": "A",                            
              "epld_ver": "0x0"                            
            }                                              
          },                                               
          "port_type_num": "0-0",                          
          "TABLE_sensor_lc": {                             
            "ROW_sensor_lc": [                             
              {                                            
                "sensor_num_lc": "#1",                     
                "maj_thres_lc": "105",                     
                "min_thres_lc": "95"                       
              },                                           
              {                                            
                "sensor_num_lc": "#2",                     
                "maj_thres_lc": "105",                     
                "min_thres_lc": "95"                       
              },                                           
              {                                            
                "sensor_num_lc": "#3",                     
                "maj_thres_lc": "105",                     
                "min_thres_lc": "95"                       
              },                                           
              {                                            
                "sensor_num_lc": "#4",                     
                "maj_thres_lc": "105",                     
                "min_thres_lc": "95"                       
              },                                           
              {                                            
                "sensor_num_lc": "#5",                     
                "maj_thres_lc": "-128",                    
                "min_thres_lc": "-128"                     
              },                                           
              {                                            
                "sensor_num_lc": "#6",                     
                "maj_thres_lc": "-128",                    
                "min_thres_lc": "-128"                     
              },                                           
              {                                            
                "sensor_num_lc": "#7",                     
                "maj_thres_lc": "-128",                    
                "min_thres_lc": "-128"                     
              },                                           
              {                                            
                "sensor_num_lc": "#8",                     
                "maj_thres_lc": "-128",                    
                "min_thres_lc": "-128"                     
              }                                            
            ]                                              
          },                                               
          "max_connector_power": "2000",                   
          "cooling_reqt": "150",                           
          "amb_temp": "55"                                 
        }                                                  
      },                                                   
      {                                                    
        "block": "Temperature Sensor block:",              
        "temp_sensor_block": {                             
          "blk_sig_tsb": "0x6008",                         
          "blk_ver_tsb": "1",                              
          "blk_length_tsb": "71",                          
          "blk_checksum_tsb": "0x20b0",                    
          "no_of_sensors": "0",                            
          "TABLE_sensor_tsb": {                            
            "ROW_sensor_tsb": [                            
              {                                            
                "sensor_num_tsb": "#9",                    
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#10",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#11",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#12",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#13",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#14",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#15",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#16",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#17",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#18",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#19",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#20",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#21",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#22",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#23",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#24",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#25",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#26",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#27",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#28",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#29",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#30",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#31",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#32",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#33",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#34",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#35",                   
                "maj_thres_tsb": "-128",                   
                "min_thres_tsb": "-128"                    
              },                                           
              {                                            
                "sensor_num_tsb": "#36",                   
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              },
              {
                "sensor_num_tsb": "#37",
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              },
              {
                "sensor_num_tsb": "#38",
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              },
              {
                "sensor_num_tsb": "#39",
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              },
              {
                "sensor_num_tsb": "#40",
                "maj_thres_tsb": "-128",
                "min_thres_tsb": "-128"
              }
            ]
          }
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>     
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                    
  <show>                                                                                                      
   <sprom>                                                                                                    
    <xbar>                                                                                                    
     <__XML__PARAM__santa-cruz-range>                                                                         
      <__XML__value>1</__XML__value>                                                                          
      <__XML__PARAM__i7>                                                                                      
       <__XML__value>1</__XML__value>                                                                         
       <__readonly__>                                                                                         
        <TABLE_sprom>                                                                                         
         <ROW_sprom>                                                                                          
          <block>DISPLAY fabric sprom contents of xbar 1:                                                     
</block>                                                                                                      
         </ROW_sprom>                                                                                         
         <ROW_sprom>                                                                                          
          <block>Common block :                                                                               
</block>                                                                                                      
          <cmn_block>                                                                                         
           <blk_sig_cb>0xabab</blk_sig_cb>                                                                    
           <blk_ver_cb>3</blk_ver_cb>                                                                         
           <blk_length_cb>160</blk_length_cb>                                                                 
           <blk_checksum_cb>0x177a</blk_checksum_cb>                                                          
           <eeprom_size>65535</eeprom_size>                                                                   
           <blk_count>3</blk_count>                                                                           
           <fru_major_type>0x6003</fru_major_type>                                                            
           <fru_minor_type>0x0</fru_minor_type>                                                               
           <oem_string>Cisco Systems, Inc.</oem_string>                                                       
           <prd_num>N77-C7718-FAB-2</prd_num>                                                                 
           <serial_num>JAF1641BKFL</serial_num>                                                               
           <part_num>73-14158-01</part_num>                                                                   
           <part_rev>28</part_rev>                                                                            
           <mfg_dev>0</mfg_dev>                                                                               
           <hw_rev>0.201</hw_rev>                                                                             
           <mfg_bits>0</mfg_bits>                                                                             
           <eng_use>0</eng_use>                                                                               
           <snmp_oid>9.12.3.1.9.94.2.0</snmp_oid>                                                             
           <power_consump>-900</power_consump>                                                                
           <rma_code>0-0-0-0</rma_code>                                                                       
           <clei_code>0</clei_code>                                                                           
           <vid>V01</vid>                                                                                     
          </cmn_block>                                                                                        
         </ROW_sprom>                                                                                         
         <ROW_sprom>                                                                                          
          <block>Linecard Module specific block:                                                              
</block>                                                                                                      
          <lc_specific_block>                                                                                 
           <blk_sig_lc>0x6003</blk_sig_lc>                                                                    
           <blk_ver_lc>2</blk_ver_lc>                                                                         
           <blk_length_lc>103</blk_length_lc>                                                                 
           <blk_checksum_lc>0xa81</blk_checksum_lc>                                                           
           <feature_bits>0</feature_bits>                                                                     
           <hw_changes_bits>2</hw_changes_bits>                                                               
           <card_index>18053</card_index>                                                                     
           <mac_addresses>00-00-00-00-00-00</mac_addresses>                                                   
           <no_of_macs>0</no_of_macs>                                                                         
           <no_of_eobc_links>0</no_of_eobc_links>                                                             
           <no_of_epld>1</no_of_epld>                                                                         
           <TABLE_epld>                                                                                       
            <ROW_epld>                                                                                        
             <epld_name>A</epld_name>                                                                         
             <epld_ver>0x0</epld_ver>                                                                         
            </ROW_epld>                                                                                       
           </TABLE_epld>                                                                                      
           <port_type_num>0-0</port_type_num>                                                                 
           <TABLE_sensor_lc>                                                                                  
            <ROW_sensor_lc>                                                                                   
             <sensor_num_lc>#1</sensor_num_lc>                                                                
             <maj_thres_lc>105</maj_thres_lc>                                                                 
             <min_thres_lc>95</min_thres_lc>                                                                  
            </ROW_sensor_lc>                                                                                  
            <ROW_sensor_lc>                                                                                   
             <sensor_num_lc>#2</sensor_num_lc>                                                                
             <maj_thres_lc>105</maj_thres_lc>                                                                 
             <min_thres_lc>95</min_thres_lc>                                                                  
            </ROW_sensor_lc>                                                                                  
            <ROW_sensor_lc>                                                                                   
             <sensor_num_lc>#3</sensor_num_lc>                                                                
             <maj_thres_lc>105</maj_thres_lc>                                                                 
             <min_thres_lc>95</min_thres_lc>                                                                  
            </ROW_sensor_lc>                                                                                  
            <ROW_sensor_lc>                                                                                   
             <sensor_num_lc>#4</sensor_num_lc>                                                                
             <maj_thres_lc>105</maj_thres_lc>                                                                 
             <min_thres_lc>95</min_thres_lc>                                                                  
            </ROW_sensor_lc>                                                                                  
            <ROW_sensor_lc>                                                                                   
             <sensor_num_lc>#5</sensor_num_lc>                                                                
             <maj_thres_lc>-128</maj_thres_lc>                                                                
             <min_thres_lc>-128</min_thres_lc>                                                                
            </ROW_sensor_lc>                                                                                  
            <ROW_sensor_lc>                                                                                   
             <sensor_num_lc>#6</sensor_num_lc>                                                                
             <maj_thres_lc>-128</maj_thres_lc>                                                                
             <min_thres_lc>-128</min_thres_lc>                                                                
            </ROW_sensor_lc>                                                                                  
            <ROW_sensor_lc>                                                                                   
             <sensor_num_lc>#7</sensor_num_lc>                                                                
             <maj_thres_lc>-128</maj_thres_lc>                                                                
             <min_thres_lc>-128</min_thres_lc>                                                                
            </ROW_sensor_lc>                                                                                  
            <ROW_sensor_lc>                                                                                   
             <sensor_num_lc>#8</sensor_num_lc>                                                                
             <maj_thres_lc>-128</maj_thres_lc>                                                                
             <min_thres_lc>-128</min_thres_lc>                                                                
            </ROW_sensor_lc>                                                                                  
           </TABLE_sensor_lc>                                                                                 
           <max_connector_power>2000</max_connector_power>                                                    
           <cooling_reqt>150</cooling_reqt>                                                                   
           <amb_temp>55</amb_temp>                                                                            
          </lc_specific_block>                                                                                
         </ROW_sprom>                                                                                         
         <ROW_sprom>                                                                                          
          <block>Temperature Sensor block:                                                                    
</block>                                                                                                      
          <temp_sensor_block>                                                                                 
           <blk_sig_tsb>0x6008</blk_sig_tsb>                                                                  
           <blk_ver_tsb>1</blk_ver_tsb>                                                                       
           <blk_length_tsb>71</blk_length_tsb>                                                                
           <blk_checksum_tsb>0x20b0</blk_checksum_tsb>                                                        
           <no_of_sensors>0</no_of_sensors>                                                                   
           <TABLE_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#9</sensor_num_tsb>                                                              
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#10</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#11</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#12</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#13</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#14</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#15</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#16</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#17</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#18</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#19</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#20</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#21</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#22</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#23</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#24</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#25</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#26</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#27</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#28</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#29</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#30</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#31</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#32</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#33</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#34</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#35</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#36</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#37</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#38</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#39</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
            <ROW_sensor_tsb>                                                                                  
             <sensor_num_tsb>#40</sensor_num_tsb>                                                             
             <maj_thres_tsb>-128</maj_thres_tsb>                                                              
             <min_thres_tsb>-128</min_thres_tsb>                                                              
            </ROW_sensor_tsb>                                                                                 
           </TABLE_sensor_tsb>                                                                                
          </temp_sensor_block>                                                                                
         </ROW_sprom>                                                                                         
        </TABLE_sprom>                                                                                        
       </__readonly__>                                                                                        
      </__XML__PARAM__i7>                                                                                     
     </__XML__PARAM__santa-cruz-range>                                                                        
    </xbar>                                                                                                   
   </sprom>                                                                                                   
  </show>                                                                                                     
 </nf:data>                                                                                                   
</nf:rpc-reply>         

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show sprom xbar 1 1**

DISPLAY fabric sprom contents of xbar 1:  
Common block :                            
 Block Signature : 0xabab                 
 Block Version   : 3                      
 Block Length    : 160                    
 Block Checksum  : 0x177a                 
 EEPROM Size     : 65535                  
 Block Count     : 3                      
 FRU Major Type  : 0x6003                 
 FRU Minor Type  : 0x0                    
 OEM String      : Cisco Systems, Inc.    
 Product Number  : N77-C7718-FAB-2        
 Serial Number   : JAF1641BKFL            
 Part Number     : 73-14158-01            
 Part Revision   : 28                     
 Mfg Deviation   : 0                      
 H/W Version     : 0.201                  
 Mfg Bits        : 0                      
 Engineer Use    : 0                      
 snmpOID         : 9.12.3.1.9.94.2.0      
 Power Consump   : -900                   
 RMA Code        : 0-0-0-0                
 CLEI Code       : 0                      
 VID             : V01                    
Linecard Module specific block:           
 Block Signature : 0x6003                 
 Block Version   : 2                      
 Block Length    : 103                    
 Block Checksum  : 0xa81                  
 Feature Bits    : 0x0                    
 HW Changes Bits : 0x2                    
 Card Index      : 18053                  
 MAC Addresses   : 00-00-00-00-00-00      
 Number of MACs  : 0                      
 Number of EOBC links  : 0                
 Number of EPLD  : 1                      
 EPLD A          : 0x0                    
 Port Type-Num   : 0-0                    
 Sensor #1       : 105,95                 
 Sensor #2       : 105,95                 
 Sensor #3       : 105,95                 
 Sensor #4       : 105,95                 
 Sensor #5       : -128,-128              
 Sensor #6       : -128,-128              
 Sensor #7       : -128,-128              
 Sensor #8       : -128,-128              
 Max Connector Power: 2000                
 Cooling Requirement: 150                 
 Ambient Temperature: 55                  
Temperature Sensor block:                 
 Block Signature : 0x6008                 
 Block Version   : 1                      
 Block Length    : 71                     
 Block Checksum  : 0x20b0                 
 Number of Valid Sensors : 0              
 Sensor #9       : -128,-128              
 Sensor #10       : -128,-128             
 Sensor #11       : -128,-128             
 Sensor #12       : -128,-128             
 Sensor #13       : -128,-128             
 Sensor #14       : -128,-128             
 Sensor #15       : -128,-128             
 Sensor #16       : -128,-128             
 Sensor #17       : -128,-128             
 Sensor #18       : -128,-128             
 Sensor #19       : -128,-128             
 Sensor #20       : -128,-128             
 Sensor #21       : -128,-128             
 Sensor #22       : -128,-128             
 Sensor #23       : -128,-128             
 Sensor #24       : -128,-128             
 Sensor #25       : -128,-128             
 Sensor #26       : -128,-128             
 Sensor #27       : -128,-128             
 Sensor #28       : -128,-128             
 Sensor #29       : -128,-128             
 Sensor #30       : -128,-128             
 Sensor #31       : -128,-128             
 Sensor #32       : -128,-128             
 Sensor #33       : -128,-128             
 Sensor #34       : -128,-128             
 Sensor #35       : -128,-128             
 Sensor #36       : -128,-128             
 Sensor #37       : -128,-128             
 Sensor #38       : -128,-128             
 Sensor #39       : -128,-128             
 Sensor #40       : -128,-128          

show system error-id 0x0000003A

show system error-id 0x0000003A 
 
import requests
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 system error-id 0x0000003A”,
  "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)
{
  "ErrFacilityname": "Common Errors",
  "ErrDescriptioncont": "Entry not found"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <system>
    <error-id>
     <__XML__PARAM__i0>
      <__XML__value>0x3a</__XML__value>
      <__readonly__>
       <ErrFacilityname>Common Errors</ErrFacilityname>
       <ErrDescriptioncont>Entry not found</ErrDescriptioncont>
      </__readonly__>
     </__XML__PARAM__i0>
    </error-id>
   </system>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show system error-id 0x0000003A**

Error Facility: Common Errors
Error Description: Entry not found

show system exception-info

show system exception-info 
 
import requests
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 system exception-info”,
  "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)
{
  "sdumpcontents": "Stack Dump for all the CPUs",
  "etime": "Exception time is not available"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <system>
    <exception-info>
     <__readonly__>
      <sdumpcontents>
 Stack Dump for all the CPUs
</sdumpcontents>
      <etime>Exception time is not available
</etime>
     </__readonly__>
    </exception-info>
   </system>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show system exception-info**

 Stack Dump for all the CPUs
Exception time is not available

show vlan counters

show vlan counters
 
import requests
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 vlan counters”,
  "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)
{                                            
  "TABLE_vlancounters": {                    
    "ROW_vlancounters": [                    
      {                                      
        "vlanshowbr-vlanid": 1,              
        "l2_ucast_b": 0,                     
        "l2_ucast_p": 0,                     
        "l2_mcast_b": 0,                     
        "l2_mcast_p": 0,                     
        "l2_bcast_b": 0,                     
        "l2_bcast_p": 0,                     
        "l2_unk_ub": 0,                      
        "l2_unk_up": 0,                      
        "l3_rcv_b": 0,                       
        "l3_rcv_p": 0,                       
        "l3_sent_b": 0,                      
        "l3_sent_p": 0,                      
        "l3_mcast_rcv_b": 0,                 
        "l3_mcast_rcv_p": 0,                 
        "l3_mcast_sent_b": 0,                
        "l3_mcast_sent_p": 0,                
        "l3_ucast_rcv_b": 0,                 
        "l3_ucast_rcv_p": 0,                 
        "l3_ucast_sent_b": 0,                
        "l3_ucast_sent_p": 0                 
      },                                     
      {                                      
        "vlanshowbr-vlanid": 101,            
        "l2_ucast_b": 0,                     
        "l2_ucast_p": 0,                     
        "l2_mcast_b": 0,                     
        "l2_mcast_p": 0,                     
        "l2_bcast_b": 0,                     
        "l2_bcast_p": 0,                     
        "l2_unk_ub": 0,                      
        "l2_unk_up": 0,                      
        "l3_rcv_b": 0,                       
        "l3_rcv_p": 0,                       
        "l3_sent_b": 0,                      
        "l3_sent_p": 0,                      
        "l3_mcast_rcv_b": 0,                 
        "l3_mcast_rcv_p": 0,                 
        "l3_mcast_sent_b": 0,                
        "l3_mcast_sent_p": 0,                
        "l3_ucast_rcv_b": 0,                 
        "l3_ucast_rcv_p": 0,                 
        "l3_ucast_sent_b": 0,                
        "l3_ucast_sent_p": 0                 
      },                                     
      {                                      
        "vlanshowbr-vlanid": 102,            
        "l2_ucast_b": 0,                     
        "l2_ucast_p": 0,                     
        "l2_mcast_b": 0,                     
        "l2_mcast_p": 0,                     
        "l2_bcast_b": 0,                     
        "l2_bcast_p": 0,                     
        "l2_unk_ub": 0,                      
        "l2_unk_up": 0,                      
        "l3_rcv_b": 0,                       
        "l3_rcv_p": 0,                       
        "l3_sent_b": 0,                      
        "l3_sent_p": 0,                      
        "l3_mcast_rcv_b": 0,                 
        "l3_mcast_rcv_p": 0,                 
        "l3_mcast_sent_b": 0,                
        "l3_mcast_sent_p": 0,                
        "l3_ucast_rcv_b": 0,                 
        "l3_ucast_rcv_p": 0,                 
        "l3_ucast_sent_b": 0,                
        "l3_ucast_sent_p": 0                 
      },                                     
      {                                      
        "vlanshowbr-vlanid": 3000,           
        "l2_ucast_b": 0,                     
        "l2_ucast_p": 0,                     
        "l2_mcast_b": 0,                     
        "l2_mcast_p": 0,                     
        "l2_bcast_b": 0,                     
        "l2_bcast_p": 0,                     
        "l2_unk_ub": 0,                      
        "l2_unk_up": 0,                      
        "l3_rcv_b": 0,                       
        "l3_rcv_p": 0,                       
        "l3_sent_b": 0,                      
        "l3_sent_p": 0,                      
        "l3_mcast_rcv_b": 0,                 
        "l3_mcast_rcv_p": 0,                 
        "l3_mcast_sent_b": 0,                
        "l3_mcast_sent_p": 0,                
        "l3_ucast_rcv_b": 0,                 
        "l3_ucast_rcv_p": 0,                 
        "l3_ucast_sent_b": 0,                
        "l3_ucast_sent_p": 0                 
      },                                     
      {                                      
        "vlanshowbr-vlanid": 3001,           
        "l2_ucast_b": 0,                     
        "l2_ucast_p": 0,                     
        "l2_mcast_b": 0,                     
        "l2_mcast_p": 0,                     
        "l2_bcast_b": 0,                     
        "l2_bcast_p": 0,                     
        "l2_unk_ub": 0,                      
        "l2_unk_up": 0,                      
        "l3_rcv_b": 0,                       
        "l3_rcv_p": 0,                       
        "l3_sent_b": 0,                      
        "l3_sent_p": 0,                      
        "l3_mcast_rcv_b": 0,                 
        "l3_mcast_rcv_p": 0,                 
        "l3_mcast_sent_b": 0,                
        "l3_mcast_sent_p": 0,                
        "l3_ucast_rcv_b": 0,                 
        "l3_ucast_rcv_p": 0,                 
        "l3_ucast_sent_b": 0,                
        "l3_ucast_sent_p": 0                 
      },                                     
      {                                      
        "vlanshowbr-vlanid": 4040,           
        "l2_ucast_b": 0,                     
        "l2_ucast_p": 0,                     
        "l2_mcast_b": 0,                     
        "l2_mcast_p": 0,                     
        "l2_bcast_b": 0,                     
        "l2_bcast_p": 0,                     
        "l2_unk_ub": 0,                      
        "l2_unk_up": 0,                      
        "l3_rcv_b": 0,                       
        "l3_rcv_p": 0,                       
        "l3_sent_b": 0,                      
        "l3_sent_p": 0,                      
        "l3_mcast_rcv_b": 0,                 
        "l3_mcast_rcv_p": 0,                 
        "l3_mcast_sent_b": 0,                
        "l3_mcast_sent_p": 0,                
        "l3_ucast_rcv_b": 0,                 
        "l3_ucast_rcv_p": 0,                 
        "l3_ucast_sent_b": 0,                
        "l3_ucast_sent_p": 0                 
      },                                     
      {                                      
        "vlanshowbr-vlanid": 4041,           
        "l2_ucast_b": 0,                     
        "l2_ucast_p": 0,                     
        "l2_mcast_b": 0,                     
        "l2_mcast_p": 0,                     
        "l2_bcast_b": 0,                     
        "l2_bcast_p": 0,                     
        "l2_unk_ub": 0,                      
        "l2_unk_up": 0,                      
        "l3_rcv_b": 0,                       
        "l3_rcv_p": 0,                       
        "l3_sent_b": 0,                      
        "l3_sent_p": 0,                      
        "l3_mcast_rcv_b": 0,                 
        "l3_mcast_rcv_p": 0,                 
        "l3_mcast_sent_b": 0,                
        "l3_mcast_sent_p": 0,                
        "l3_ucast_rcv_b": 0,                 
        "l3_ucast_rcv_p": 0,
        "l3_ucast_sent_b": 0,
        "l3_ucast_sent_p": 0
      },
      {
        "vlanshowbr-vlanid": 4045,
        "l2_ucast_b": 0,
        "l2_ucast_p": 0,
        "l2_mcast_b": 0,
        "l2_mcast_p": 0,
        "l2_bcast_b": 0,
        "l2_bcast_p": 0,
        "l2_unk_ub": 0,
        "l2_unk_up": 0,
        "l3_rcv_b": 0,
        "l3_rcv_p": 0,
        "l3_sent_b": 0,
        "l3_sent_p": 0,
        "l3_mcast_rcv_b": 0,
        "l3_mcast_rcv_p": 0,
        "l3_mcast_sent_b": 0,
        "l3_mcast_sent_p": 0,
        "l3_ucast_rcv_b": 0,
        "l3_ucast_rcv_p": 0,
        "l3_ucast_sent_b": 0,
        "l3_ucast_sent_p": 0
      }
    ]
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?> 
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfstat" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                       
  <show>                                                                                                         
   <vlan>                                                                                                        
    <counters>                                                                                                   
     <__readonly__>                                                                                              
      <TABLE_vlancounters>                                                                                       
       <ROW_vlancounters>                                                                                        
        <vlanshowbr-vlanid>1</vlanshowbr-vlanid>                                                                 
        <l2_ucast_b>0</l2_ucast_b>                                                                               
        <l2_ucast_p>0</l2_ucast_p>                                                                               
        <l2_mcast_b>0</l2_mcast_b>                                                                               
        <l2_mcast_p>0</l2_mcast_p>                                                                               
        <l2_bcast_b>0</l2_bcast_b>                                                                               
        <l2_bcast_p>0</l2_bcast_p>                                                                               
        <l2_unk_ub>0</l2_unk_ub>                                                                                 
        <l2_unk_up>0</l2_unk_up>                                                                                 
        <l3_rcv_b>0</l3_rcv_b>                                                                                   
        <l3_rcv_p>0</l3_rcv_p>                                                                                   
        <l3_sent_b>0</l3_sent_b>                                                                                 
        <l3_sent_p>0</l3_sent_p>                                                                                 
        <l3_mcast_rcv_b>0</l3_mcast_rcv_b>                                                                       
        <l3_mcast_rcv_p>0</l3_mcast_rcv_p>                                                                       
        <l3_mcast_sent_b>0</l3_mcast_sent_b>                                                                     
        <l3_mcast_sent_p>0</l3_mcast_sent_p>                                                                     
        <l3_ucast_rcv_b>0</l3_ucast_rcv_b>                                                                       
        <l3_ucast_rcv_p>0</l3_ucast_rcv_p>                                                                       
        <l3_ucast_sent_b>0</l3_ucast_sent_b>                                                                     
        <l3_ucast_sent_p>0</l3_ucast_sent_p>                                                                     
       </ROW_vlancounters>                                                                                       
       <ROW_vlancounters>                                                                                        
        <vlanshowbr-vlanid>101</vlanshowbr-vlanid>                                                               
        <l2_ucast_b>0</l2_ucast_b>                                                                               
        <l2_ucast_p>0</l2_ucast_p>                                                                               
        <l2_mcast_b>0</l2_mcast_b>                                                                               
        <l2_mcast_p>0</l2_mcast_p>                                                                               
        <l2_bcast_b>0</l2_bcast_b>                                                                               
        <l2_bcast_p>0</l2_bcast_p>                                                                               
        <l2_unk_ub>0</l2_unk_ub>                                                                                 
        <l2_unk_up>0</l2_unk_up>                                                                                 
        <l3_rcv_b>0</l3_rcv_b>                                                                                   
        <l3_rcv_p>0</l3_rcv_p>                                                                                   
        <l3_sent_b>0</l3_sent_b>                                                                                 
        <l3_sent_p>0</l3_sent_p>                                                                                 
        <l3_mcast_rcv_b>0</l3_mcast_rcv_b>                                                                       
        <l3_mcast_rcv_p>0</l3_mcast_rcv_p>                                                                       
        <l3_mcast_sent_b>0</l3_mcast_sent_b>                                                                     
        <l3_mcast_sent_p>0</l3_mcast_sent_p>                                                                     
        <l3_ucast_rcv_b>0</l3_ucast_rcv_b>                                                                       
        <l3_ucast_rcv_p>0</l3_ucast_rcv_p>                                                                       
        <l3_ucast_sent_b>0</l3_ucast_sent_b>                                                                     
        <l3_ucast_sent_p>0</l3_ucast_sent_p>                                                                     
       </ROW_vlancounters>                                                                                       
       <ROW_vlancounters>                                                                                        
        <vlanshowbr-vlanid>102</vlanshowbr-vlanid>                                                               
        <l2_ucast_b>0</l2_ucast_b>                                                                               
        <l2_ucast_p>0</l2_ucast_p>                                                                               
        <l2_mcast_b>0</l2_mcast_b>                                                                               
        <l2_mcast_p>0</l2_mcast_p>                                                                               
        <l2_bcast_b>0</l2_bcast_b>                                                                               
        <l2_bcast_p>0</l2_bcast_p>                                                                               
        <l2_unk_ub>0</l2_unk_ub>                                                                                 
        <l2_unk_up>0</l2_unk_up>                                                                                 
        <l3_rcv_b>0</l3_rcv_b>                                                                                   
        <l3_rcv_p>0</l3_rcv_p>                                                                                   
        <l3_sent_b>0</l3_sent_b>                                                                                 
        <l3_sent_p>0</l3_sent_p>                                                                                 
        <l3_mcast_rcv_b>0</l3_mcast_rcv_b>                                                                       
        <l3_mcast_rcv_p>0</l3_mcast_rcv_p>                                                                       
        <l3_mcast_sent_b>0</l3_mcast_sent_b>                                                                     
        <l3_mcast_sent_p>0</l3_mcast_sent_p>                                                                     
        <l3_ucast_rcv_b>0</l3_ucast_rcv_b>                                                                       
        <l3_ucast_rcv_p>0</l3_ucast_rcv_p>                                                                       
        <l3_ucast_sent_b>0</l3_ucast_sent_b>                                                                     
        <l3_ucast_sent_p>0</l3_ucast_sent_p>                                                                     
       </ROW_vlancounters>                                                                                       
       <ROW_vlancounters>                                                                                        
        <vlanshowbr-vlanid>3000</vlanshowbr-vlanid>                                                              
        <l2_ucast_b>0</l2_ucast_b>                                                                               
        <l2_ucast_p>0</l2_ucast_p>                                                                               
        <l2_mcast_b>0</l2_mcast_b>                                                                               
        <l2_mcast_p>0</l2_mcast_p>                                                                               
        <l2_bcast_b>0</l2_bcast_b>                                                                               
        <l2_bcast_p>0</l2_bcast_p>                                                                               
        <l2_unk_ub>0</l2_unk_ub>                                                                                 
        <l2_unk_up>0</l2_unk_up>                                                                                 
        <l3_rcv_b>0</l3_rcv_b>                                                                                   
        <l3_rcv_p>0</l3_rcv_p>                                                                                   
        <l3_sent_b>0</l3_sent_b>                                                                                 
        <l3_sent_p>0</l3_sent_p>                                                                                 
        <l3_mcast_rcv_b>0</l3_mcast_rcv_b>                                                                       
        <l3_mcast_rcv_p>0</l3_mcast_rcv_p>                                                                       
        <l3_mcast_sent_b>0</l3_mcast_sent_b>                                                                     
        <l3_mcast_sent_p>0</l3_mcast_sent_p>                                                                     
        <l3_ucast_rcv_b>0</l3_ucast_rcv_b>                                                                       
        <l3_ucast_rcv_p>0</l3_ucast_rcv_p>                                                                       
        <l3_ucast_sent_b>0</l3_ucast_sent_b>                                                                     
        <l3_ucast_sent_p>0</l3_ucast_sent_p>                                                                     
       </ROW_vlancounters>                                                                                       
       <ROW_vlancounters>                                                                                        
        <vlanshowbr-vlanid>3001</vlanshowbr-vlanid>                                                              
        <l2_ucast_b>0</l2_ucast_b>                                                                               
        <l2_ucast_p>0</l2_ucast_p>                                                                               
        <l2_mcast_b>0</l2_mcast_b>                                                                               
        <l2_mcast_p>0</l2_mcast_p>                                                                               
        <l2_bcast_b>0</l2_bcast_b>                                                                               
        <l2_bcast_p>0</l2_bcast_p>                                                                               
        <l2_unk_ub>0</l2_unk_ub>                                                                                 
        <l2_unk_up>0</l2_unk_up>                                                                                 
        <l3_rcv_b>0</l3_rcv_b>                                                                                   
        <l3_rcv_p>0</l3_rcv_p>                                                                                   
        <l3_sent_b>0</l3_sent_b>                                                                                 
        <l3_sent_p>0</l3_sent_p>                                                                                 
        <l3_mcast_rcv_b>0</l3_mcast_rcv_b>                                                                       
        <l3_mcast_rcv_p>0</l3_mcast_rcv_p>                                                                       
        <l3_mcast_sent_b>0</l3_mcast_sent_b>                                                                     
        <l3_mcast_sent_p>0</l3_mcast_sent_p>                                                                     
        <l3_ucast_rcv_b>0</l3_ucast_rcv_b>                                                                       
        <l3_ucast_rcv_p>0</l3_ucast_rcv_p>                                                                       
        <l3_ucast_sent_b>0</l3_ucast_sent_b>                                                                     
        <l3_ucast_sent_p>0</l3_ucast_sent_p>                                                                     
       </ROW_vlancounters>                                                                                       
       <ROW_vlancounters>                                                                                        
        <vlanshowbr-vlanid>4040</vlanshowbr-vlanid>                                                              
        <l2_ucast_b>0</l2_ucast_b>                                                                               
        <l2_ucast_p>0</l2_ucast_p>                                                                               
        <l2_mcast_b>0</l2_mcast_b>                                                                               
        <l2_mcast_p>0</l2_mcast_p>                                                                               
        <l2_bcast_b>0</l2_bcast_b>                                                                               
        <l2_bcast_p>0</l2_bcast_p>                                                                               
        <l2_unk_ub>0</l2_unk_ub>                                                                                 
        <l2_unk_up>0</l2_unk_up>                                                                                 
        <l3_rcv_b>0</l3_rcv_b>                                                                                   
        <l3_rcv_p>0</l3_rcv_p>                                                                                   
        <l3_sent_b>0</l3_sent_b>                                                                                 
        <l3_sent_p>0</l3_sent_p>                                                                                 
        <l3_mcast_rcv_b>0</l3_mcast_rcv_b>                                                                       
        <l3_mcast_rcv_p>0</l3_mcast_rcv_p>                                                                       
        <l3_mcast_sent_b>0</l3_mcast_sent_b>                                                                     
        <l3_mcast_sent_p>0</l3_mcast_sent_p>                                                                     
        <l3_ucast_rcv_b>0</l3_ucast_rcv_b>                                                                       
        <l3_ucast_rcv_p>0</l3_ucast_rcv_p>                                                                       
        <l3_ucast_sent_b>0</l3_ucast_sent_b>                                                                     
        <l3_ucast_sent_p>0</l3_ucast_sent_p>                                                                     
       </ROW_vlancounters>                                                                                       
       <ROW_vlancounters>                                                                                        
        <vlanshowbr-vlanid>4041</vlanshowbr-vlanid>                                                              
        <l2_ucast_b>0</l2_ucast_b>                                                                               
        <l2_ucast_p>0</l2_ucast_p>                                                                               
        <l2_mcast_b>0</l2_mcast_b>                                                                               
        <l2_mcast_p>0</l2_mcast_p>                                                                               
        <l2_bcast_b>0</l2_bcast_b>                                                                               
        <l2_bcast_p>0</l2_bcast_p>                                                                               
        <l2_unk_ub>0</l2_unk_ub>                                                                                 
        <l2_unk_up>0</l2_unk_up>                                                                                 
        <l3_rcv_b>0</l3_rcv_b>                                                                                   
        <l3_rcv_p>0</l3_rcv_p>                                                                                   
        <l3_sent_b>0</l3_sent_b>                                                                                 
        <l3_sent_p>0</l3_sent_p>                                                                                 
        <l3_mcast_rcv_b>0</l3_mcast_rcv_b>                                                                       
        <l3_mcast_rcv_p>0</l3_mcast_rcv_p>                                                                       
        <l3_mcast_sent_b>0</l3_mcast_sent_b>                                                                     
        <l3_mcast_sent_p>0</l3_mcast_sent_p>                                                                     
        <l3_ucast_rcv_b>0</l3_ucast_rcv_b>                                                                       
        <l3_ucast_rcv_p>0</l3_ucast_rcv_p>                                                                       
        <l3_ucast_sent_b>0</l3_ucast_sent_b>                                                                     
        <l3_ucast_sent_p>0</l3_ucast_sent_p>                                                                     
       </ROW_vlancounters>                                                                                       
       <ROW_vlancounters>                                                                                        
        <vlanshowbr-vlanid>4045</vlanshowbr-vlanid>                                                              
        <l2_ucast_b>0</l2_ucast_b>                                                                               
        <l2_ucast_p>0</l2_ucast_p>                                                                               
        <l2_mcast_b>0</l2_mcast_b>                                                                               
        <l2_mcast_p>0</l2_mcast_p>                                                                               
        <l2_bcast_b>0</l2_bcast_b>                                                                               
        <l2_bcast_p>0</l2_bcast_p>                                                                               
        <l2_unk_ub>0</l2_unk_ub>                                                                                 
        <l2_unk_up>0</l2_unk_up>                                                                                 
        <l3_rcv_b>0</l3_rcv_b>                                                                                   
        <l3_rcv_p>0</l3_rcv_p>                                                                                   
        <l3_sent_b>0</l3_sent_b>                                                                                 
        <l3_sent_p>0</l3_sent_p>                                                                                 
        <l3_mcast_rcv_b>0</l3_mcast_rcv_b>                                                                       
        <l3_mcast_rcv_p>0</l3_mcast_rcv_p>                                                                       
        <l3_mcast_sent_b>0</l3_mcast_sent_b>                                                                     
        <l3_mcast_sent_p>0</l3_mcast_sent_p>                                                                     
        <l3_ucast_rcv_b>0</l3_ucast_rcv_b>                                                                       
        <l3_ucast_rcv_p>0</l3_ucast_rcv_p>                                                                       
        <l3_ucast_sent_b>0</l3_ucast_sent_b>                                                                     
        <l3_ucast_sent_p>0</l3_ucast_sent_p>                                                                     
       </ROW_vlancounters>                                                                                       
      </TABLE_vlancounters>                                                                                      
     </__readonly__>                                                                                             
    </counters>                                                                                                  
   </vlan>                                                                                                       
  </show>                                                                                                        
 </nf:data>                                                                                                      
</nf:rpc-reply>                

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show vlan counters**

Vlan Id                             :1 
L2 Unicast Octets                   :0 
L2 Unicast Packets                  :0 
L2 Multicast Octets                 :0 
L2 Multicast Packets                :0 
L2 Broadcast Octets                 :0 
L2 Broadcast Packets                :0 
L2 Unknown Octets                   :0 
L2 Unknown Packets                  :0 
L3 Routed Octets In                 :0 
L3 Routed Packets In                :0 
L3 Routed Octets Out                :0 
L3 Routed Packets Out               :0 
L3 Multicast Octets In              :0 
L3 Multicast Packets In             :0 
L3 Multicast Octets Out             :0 
L3 Multicast Packets Out            :0 
L3 Unicast Octets In                :0 
L3 Unicast Packets In               :0 
L3 Unicast Octets Out               :0 
L3 Unicast Packets Out              :0 
Vlan Id                             :101 
L2 Unicast Octets                   :0   
L2 Unicast Packets                  :0   
L2 Multicast Octets                 :0   
L2 Multicast Packets                :0   
L2 Broadcast Octets                 :0   
L2 Broadcast Packets                :0   
L2 Unknown Octets                   :0   
L2 Unknown Packets                  :0   
L3 Routed Octets In                 :0   
L3 Routed Packets In                :0   
L3 Routed Octets Out                :0   
L3 Routed Packets Out               :0   
L3 Multicast Octets In              :0   
L3 Multicast Packets In             :0   
L3 Multicast Octets Out             :0   
L3 Multicast Packets Out            :0   
L3 Unicast Octets In                :0   
L3 Unicast Packets In               :0   
L3 Unicast Octets Out               :0   
L3 Unicast Packets Out              :0   
Vlan Id                             :102 
L2 Unicast Octets                   :0   
L2 Unicast Packets                  :0   
L2 Multicast Octets                 :0   
L2 Multicast Packets                :0   
L2 Broadcast Octets                 :0   
L2 Broadcast Packets                :0   
L2 Unknown Octets                   :0   
L2 Unknown Packets                  :0   
L3 Routed Octets In                 :0   
L3 Routed Packets In                :0   
L3 Routed Octets Out                :0   
L3 Routed Packets Out               :0   
L3 Multicast Octets In              :0   
L3 Multicast Packets In             :0   
L3 Multicast Octets Out             :0   
L3 Multicast Packets Out            :0   
L3 Unicast Octets In                :0   
L3 Unicast Packets In               :0   
L3 Unicast Octets Out               :0   
L3 Unicast Packets Out              :0   
Vlan Id                             :3000 
L2 Unicast Octets                   :0    
L2 Unicast Packets                  :0    
L2 Multicast Octets                 :0    
L2 Multicast Packets                :0    
L2 Broadcast Octets                 :0    
L2 Broadcast Packets                :0    
L2 Unknown Octets                   :0    
L2 Unknown Packets                  :0    
L3 Routed Octets In                 :0    
L3 Routed Packets In                :0    
L3 Routed Octets Out                :0    
L3 Routed Packets Out               :0    
L3 Multicast Octets In              :0    
L3 Multicast Packets In             :0    
L3 Multicast Octets Out             :0    
L3 Multicast Packets Out            :0    
L3 Unicast Octets In                :0    
L3 Unicast Packets In               :0    
L3 Unicast Octets Out               :0    
L3 Unicast Packets Out              :0    
Vlan Id                             :3001 
L2 Unicast Octets                   :0    
L2 Unicast Packets                  :0    
L2 Multicast Octets                 :0    
L2 Multicast Packets                :0    
L2 Broadcast Octets                 :0    
L2 Broadcast Packets                :0    
L2 Unknown Octets                   :0    
L2 Unknown Packets                  :0    
L3 Routed Octets In                 :0    
L3 Routed Packets In                :0    
L3 Routed Octets Out                :0    
L3 Routed Packets Out               :0    
L3 Multicast Octets In              :0    
L3 Multicast Packets In             :0    
L3 Multicast Octets Out             :0    
L3 Multicast Packets Out            :0    
L3 Unicast Octets In                :0    
L3 Unicast Packets In               :0    
L3 Unicast Octets Out               :0    
L3 Unicast Packets Out              :0    
Vlan Id                             :4040 
L2 Unicast Octets                   :0    
L2 Unicast Packets                  :0    
L2 Multicast Octets                 :0    
L2 Multicast Packets                :0    
L2 Broadcast Octets                 :0    
L2 Broadcast Packets                :0    
L2 Unknown Octets                   :0    
L2 Unknown Packets                  :0    
L3 Routed Octets In                 :0    
L3 Routed Packets In                :0    
L3 Routed Octets Out                :0    
L3 Routed Packets Out               :0    
L3 Multicast Octets In              :0    
L3 Multicast Packets In             :0    
L3 Multicast Octets Out             :0    
L3 Multicast Packets Out            :0    
L3 Unicast Octets In                :0    
L3 Unicast Packets In               :0    
L3 Unicast Octets Out               :0    
L3 Unicast Packets Out              :0    
Vlan Id                             :4041 
L2 Unicast Octets                   :0    
L2 Unicast Packets                  :0    
L2 Multicast Octets                 :0    
L2 Multicast Packets                :0    
L2 Broadcast Octets                 :0    
L2 Broadcast Packets                :0    
L2 Unknown Octets                   :0    
L2 Unknown Packets                  :0    
L3 Routed Octets In                 :0    
L3 Routed Packets In                :0    
L3 Routed Octets Out                :0    
L3 Routed Packets Out               :0    
L3 Multicast Octets In              :0    
L3 Multicast Packets In             :0    
L3 Multicast Octets Out             :0    
L3 Multicast Packets Out            :0    
L3 Unicast Octets In                :0    
L3 Unicast Packets In               :0    
L3 Unicast Octets Out               :0    
L3 Unicast Packets Out              :0    
Vlan Id                             :4045 
L2 Unicast Octets                   :0    
L2 Unicast Packets                  :0    
L2 Multicast Octets                 :0    
L2 Multicast Packets                :0    
L2 Broadcast Octets                 :0    
L2 Broadcast Packets                :0    
L2 Unknown Octets                   :0    
L2 Unknown Packets                  :0    
L3 Routed Octets In                 :0    
L3 Routed Packets In                :0    
L3 Routed Octets Out                :0    
L3 Routed Packets Out               :0    
L3 Multicast Octets In              :0    
L3 Multicast Packets In             :0    
L3 Multicast Octets Out             :0    
L3 Multicast Packets Out            :0    
L3 Unicast Octets In                :0    
L3 Unicast Packets In               :0    
L3 Unicast Octets Out               :0    
L3 Unicast Packets Out              :0    

show vlan id 101 counters

show vlan id 101 counters
 
import requests
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 vlan id 101 counters”,
  "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)
{
  "TABLE_vlancounters": {
    "ROW_vlancounters": {
      "vlanshowbr-vlanid": 101,
      "l2_ucast_b": 0,
      "l2_ucast_p": 0,
      "l2_mcast_b": 0,
      "l2_mcast_p": 0,
      "l2_bcast_b": 0,
      "l2_bcast_p": 0,
      "l2_unk_ub": 0,
      "l2_unk_up": 0,
      "l3_rcv_b": 0,
      "l3_rcv_p": 0,
      "l3_sent_b": 0,
      "l3_sent_p": 0,
      "l3_mcast_rcv_b": 0,
      "l3_mcast_rcv_p": 0,
      "l3_mcast_sent_b": 0,
      "l3_mcast_sent_p": 0,
      "l3_ucast_rcv_b": 0,
      "l3_ucast_rcv_p": 0,
      "l3_ucast_sent_b": 0,
      "l3_ucast_sent_p": 0
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>        
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pfstat" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                       
  <show>                                                                                                         
   <vlan>                                                                                                        
    <id>                                                                                                         
     <__XML__PARAM__vlan-id>                                                                                     
      <__XML__value>101</__XML__value>                                                                           
      <counters>                                                                                                 
       <__readonly__>                                                                                            
        <TABLE_vlancounters>                                                                                     
         <ROW_vlancounters>                                                                                      
          <vlanshowbr-vlanid>101</vlanshowbr-vlanid>                                                             
          <l2_ucast_b>0</l2_ucast_b>                                                                             
          <l2_ucast_p>0</l2_ucast_p>                                                                             
          <l2_mcast_b>0</l2_mcast_b>                                                                             
          <l2_mcast_p>0</l2_mcast_p>                                                                             
          <l2_bcast_b>0</l2_bcast_b>                                                                             
          <l2_bcast_p>0</l2_bcast_p>                                                                             
          <l2_unk_ub>0</l2_unk_ub>                                                                               
          <l2_unk_up>0</l2_unk_up>                                                                               
          <l3_rcv_b>0</l3_rcv_b>                                                                                 
          <l3_rcv_p>0</l3_rcv_p>                                                                                 
          <l3_sent_b>0</l3_sent_b>                                                                               
          <l3_sent_p>0</l3_sent_p>                                                                               
          <l3_mcast_rcv_b>0</l3_mcast_rcv_b>                                                                     
          <l3_mcast_rcv_p>0</l3_mcast_rcv_p>                                                                     
          <l3_mcast_sent_b>0</l3_mcast_sent_b>                                                                   
          <l3_mcast_sent_p>0</l3_mcast_sent_p>                                                                   
          <l3_ucast_rcv_b>0</l3_ucast_rcv_b>                                                                     
          <l3_ucast_rcv_p>0</l3_ucast_rcv_p>                                                                     
          <l3_ucast_sent_b>0</l3_ucast_sent_b>                                                                   
          <l3_ucast_sent_p>0</l3_ucast_sent_p>                                                                   
         </ROW_vlancounters>                                                                                     
        </TABLE_vlancounters>                                                                                    
       </__readonly__>                                                                                           
      </counters>                                                                                                
     </__XML__PARAM__vlan-id>                                                                                    
    </id>                                                                                                        
   </vlan>                                                                                                       
  </show>                                                                                                        
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show vlan id 101 counters**

Vlan Id                             :101      
L2 Unicast Octets                   :0        
L2 Unicast Packets                  :0        
L2 Multicast Octets                 :0        
L2 Multicast Packets                :0        
L2 Broadcast Octets                 :0        
L2 Broadcast Packets                :0        
L2 Unknown Octets                   :0        
L2 Unknown Packets                  :0        
L3 Routed Octets In                 :0        
L3 Routed Packets In                :0        
L3 Routed Octets Out                :0        
L3 Routed Packets Out               :0        
L3 Multicast Octets In              :0        
L3 Multicast Packets In             :0        
L3 Multicast Octets Out             :0        
L3 Multicast Packets Out            :0        
L3 Unicast Octets In                :0        
L3 Unicast Packets In               :0        
L3 Unicast Octets Out               :0        
L3 Unicast Packets Out              :0        

show interface status error policy detail

show interface status error policy detail
 
import requests
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 interface status error policy detail”,
  "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)
SUP2E-APEX18(config)# sh interface status error policy detail | json
SUP2E-APEX18(config)#
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:plsm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <interface>
    <status>
     <error>
      <policy>
       <detail/>
      </policy>
     </error>
    </status>
   </interface>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show interface status error policy detail**

No. Interface Error Type Sap Time Stamp Reason VLAN

show fabric trace udp-src-port l2 src-mac 000.0000.00aa dst-mac

show fabric trace udp-src-port l2 src-mac 000.0000.00aa dst-mac 
 
import requests
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 fabric trace udp-src-port l2 src-mac 000.0000.00aa dst-mac”,
  "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)
SUP2E-APEX18(config)# sh fabric trace udp-src-port l2 src-mac 000.0000.00aa dst-mac 0000.0000.00bb  | json
SUP2E-APEX18(config)#
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pltfm_config" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <fabric>
    <trace>
     <udp-src-port>
      <l2>
       <src-mac>
        <__XML__PARAM__src-mac>
         <__XML__value>0000.0000.00AA</__XML__value>
         <dst-mac>
          <__XML__PARAM__dst-mac>
           <__XML__value>0000.0000.00BB</__XML__value>
          </__XML__PARAM__dst-mac>
         </dst-mac>
        </__XML__PARAM__src-mac>
       </src-mac>
      </l2>
     </udp-src-port>
    </trace>
   </fabric>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show fabric trace udp-src-port l2 src-mac 000.0000.00aa dst-mac**

0000.0000.00bb  
Vxlan packet UDP src port value is 0xae13                                                           

show fabric trace udp-src-port ipv4 src-ip 1.1.1.1 dst-ip 1.1.1.2

show fabric trace udp-src-port ipv4 src-ip 1.1.1.1 dst-ip 1.1.1.2  
 
import requests
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 fabric trace udp-src-port ipv4 src-ip 1.1.1.1 dst-ip 1.1.1.2 ”,
  "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)
SUP2E-APEX18(config)# sh fabric trace udp-src-port ipv4 src-ip 1.1.1.1 dst-ip 1.1.1.2 | json
SUP2E-APEX18(config)#
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pltfm_config" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <fabric>
    <trace>
     <udp-src-port>
      <ipv4>
       <src-ip>
        <__XML__PARAM__src-ip>
         <__XML__value>1.1.1.1</__XML__value>
         <dst-ip>
          <__XML__PARAM__dst-ip>
           <__XML__value>1.1.1.2</__XML__value>
          </__XML__PARAM__dst-ip>
         </dst-ip>
        </__XML__PARAM__src-ip>
       </src-ip>
      </ipv4>
     </udp-src-port>
    </trace>
   </fabric>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show fabric trace udp-src-port ipv4 src-ip 1.1.1.1 dst-ip 1.1.1.2 **

Vxlan packet UDP src port value is 0x97cd

show fabricpath mode

show fabricpath mode
 
import requests
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 fabricpath mode”,
  "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)
{
  "transit_mode_configured": "no",
  "transit_mode_operational": "no"
}
<?xml version="1.0" encoding="ISO-8859-1"?>
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pltfm_config" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>
  <show>
   <fabricpath>
    <mode>
     <__readonly__>
      <transit_mode_configured>no</transit_mode_configured>
      <transit_mode_operational>no</transit_mode_operational>
     </__readonly__>
    </mode>
   </fabricpath>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show fabricpath mode**

transit-mode configured: no
transit-mode operational: no

show hardware ip verify module 7

show hardware ip verify module 7
 
import requests
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 hardware ip verify module 7”,
  "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)
{                                                             
  "IDS_Checks": {                                             
    "TABLE_IPV4": {                                           
      "ROW_IPV4": [                                           
        {                                                     
          "name": "address source broadcast",                 
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "address source multicast",                 
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "address destination zero",                 
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "address identical",                        
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "address reserved",                         
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "address class-e",                          
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "checksum",                                 
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "protocol",                                 
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "fragment",                                 
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "length minimum",                           
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "length consistent",                        
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "length maximum max-frag",                  
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "length maximum udp",                       
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "length maximum max-tcp",                   
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "tcp flags",                                
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "tcp tiny-frag",                            
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "version",                                  
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        }                                                     
      ]                                                       
    },                                                        
    "TABLE_IPV6": {                                           
      "ROW_IPV6": [                                           
        {                                                     
          "name1": "length consistent",                       
          "status1": "Disabled",                              
          "pkt_failed1": 0                                    
        },                                                    
        {                                                     
          "name1": "length maximum max-frag",                 
          "status1": "Disabled",                              
          "pkt_failed1": 0                                    
        },
        {
          "name1": "length maximum udp",
          "status1": "Disabled",
          "pkt_failed1": 0
        },
        {
          "name1": "length maximum max-tcp",
          "status1": "Disabled",
          "pkt_failed1": 0
        },
        {
          "name1": "tcp tiny-frag",
          "status1": "Disabled",
          "pkt_failed1": 0
        },
        {
          "name1": "version",
          "status1": "Disabled",
          "pkt_failed1": 0
        },
        {
          "name1": "address source zero",
          "status1": "Disabled",
          "pkt_failed1": 0
        }
      ]
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                  
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pltfm_config" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                             
  <show>                                                                                                               
   <hardware>                                                                                                          
    <ip>                                                                                                               
     <verify>                                                                                                          
      <module>                                                                                                         
       <__XML__PARAM__module>                                                                                          
        <__XML__value>7</__XML__value>                                                                                 
        <__readonly__>                                                                                                 
         <IDS_Checks>                                                                                                  
          <TABLE_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>address source broadcast</name>                                                                      
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>address source multicast</name>                                                                      
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>address destination zero</name>                                                                      
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>address identical</name>                                                                             
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>address reserved</name>                                                                              
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>address class-e</name>                                                                               
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>checksum</name>                                                                                      
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>protocol</name>                                                                                      
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>fragment</name>                                                                                      
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>length minimum</name>                                                                                
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>length consistent</name>                                                                             
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>length maximum max-frag</name>                                                                       
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>length maximum udp</name>                                                                            
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>length maximum max-tcp</name>                                                                        
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>tcp flags</name>                                                                                     
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>tcp tiny-frag</name>                                                                                 
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>version</name>                                                                                       
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
          </TABLE_IPV4>                                                                                                
          <TABLE_IPV6>                                                                                                 
           <ROW_IPV6>                                                                                                  
            <name1>length consistent</name1>                                                                           
            <status1>Disabled</status1>                                                                                
            <pkt_failed1>0</pkt_failed1>                                                                               
           </ROW_IPV6>                                                                                                 
           <ROW_IPV6>                                                                                                  
            <name1>length maximum max-frag</name1>                                                                     
            <status1>Disabled</status1>                                                                                
            <pkt_failed1>0</pkt_failed1>                                                                               
           </ROW_IPV6>                                                                                                 
           <ROW_IPV6>                                                                                                  
            <name1>length maximum udp</name1>                                                                          
            <status1>Disabled</status1>                                                                                
            <pkt_failed1>0</pkt_failed1>                                                                               
           </ROW_IPV6>                                                                                                 
           <ROW_IPV6>                                                                                                  
            <name1>length maximum max-tcp</name1>                                                                      
            <status1>Disabled</status1>                                                                                
            <pkt_failed1>0</pkt_failed1>                                                                               
           </ROW_IPV6>                                                                                                 
           <ROW_IPV6>                                                                                                  
            <name1>tcp tiny-frag</name1>                                                                               
            <status1>Disabled</status1>                                                                                
            <pkt_failed1>0</pkt_failed1>                                                                               
           </ROW_IPV6>                                                                                                 
           <ROW_IPV6>                                                                                                  
            <name1>version</name1>                                                                                     
            <status1>Disabled</status1>                                                                                
            <pkt_failed1>0</pkt_failed1>                                                                               
           </ROW_IPV6>                                                                                                 
           <ROW_IPV6>                                                                                                  
            <name1>address source zero</name1>                                                                         
            <status1>Disabled</status1>                                                                                
            <pkt_failed1>0</pkt_failed1>                                                                               
           </ROW_IPV6>                                                                                                 
          </TABLE_IPV6>                                                                                                
         </IDS_Checks>                                                                                                 
        </__readonly__>                                                                                                
       </__XML__PARAM__module>                                                                                         
      </module>                                                                                                        
     </verify>                                                                                                         
    </ip>                                                                                                              
   </hardware>                                                                                                         
  </show>                                                                                                              
 </nf:data>                                                                                                            
</nf:rpc-reply>    

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware ip verify module 7**

IPv4 IDS Checks                Status     Packets Failed 
-----------------------------+---------+------------------
address source broadcast       Disabled   --              
address source multicast       Disabled   --              
address destination zero       Disabled   --              
address identical              Disabled   --              
address reserved               Disabled   --              
address class-e                Disabled   --              
checksum                       Disabled   --              
protocol                       Disabled   --              
fragment                       Disabled   --              
length minimum                 Disabled   --              
length consistent              Disabled   --              
length maximum max-frag        Disabled   --              
length maximum udp             Disabled   --              
length maximum max-tcp         Disabled   --              
tcp flags                      Disabled   --              
tcp tiny-frag                  Disabled   --              
version                        Disabled   --              
-----------------------------+---------+------------------
IPv6 IDS Checks                Status     Packets Failed  
-----------------------------+---------+------------------
length consistent              Disabled   --              
length maximum max-frag        Disabled   --              
length maximum udp             Disabled   --              
length maximum max-tcp         Disabled   --              
tcp tiny-frag                  Disabled   --              
version                        Disabled   --              
address source zero            Disabled   --       

show hardware ip verify module 7

show  hardware ip verify module 7
 
import requests
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  hardware ip verify module 7”,
  "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)
{                                                             
  "IDS_Checks": {                                             
    "TABLE_IPV4": {                                           
      "ROW_IPV4": [                                           
        {                                                     
          "name": "address source broadcast",                 
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "address source multicast",                 
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "address destination zero",                 
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "address identical",                        
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "address reserved",                         
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "address class-e",                          
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "checksum",                                 
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "protocol",                                 
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "fragment",                                 
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "length minimum",                           
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "length consistent",                        
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "length maximum max-frag",                  
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "length maximum udp",                       
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "length maximum max-tcp",                   
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "tcp flags",                                
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "tcp tiny-frag",                            
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        },                                                    
        {                                                     
          "name": "version",                                  
          "status": "Disabled",                               
          "pkt_failed": 0                                     
        }                                                     
      ]                                                       
    },                                                        
    "TABLE_IPV6": {                                           
      "ROW_IPV6": [                                           
        {                                                     
          "name1": "length consistent",                       
          "status1": "Disabled",                              
          "pkt_failed1": 0                                    
        },                                                    
        {                                                     
          "name1": "length maximum max-frag",                 
          "status1": "Disabled",                              
          "pkt_failed1": 0                                    
        },                                                    
        {                                                     
          "name1": "length maximum udp",                      
          "status1": "Disabled",                              
          "pkt_failed1": 0                                    
        },                                                    
        {                                                     
          "name1": "length maximum max-tcp",                  
          "status1": "Disabled",                              
          "pkt_failed1": 0                                    
        },                                                    
        {                                                     
          "name1": "tcp tiny-frag",                           
          "status1": "Disabled",                              
          "pkt_failed1": 0                                    
        },                                                    
        {                                                     
          "name1": "version",                                 
          "status1": "Disabled",                              
          "pkt_failed1": 0                                    
        },                                                    
        {                                                     
          "name1": "address source zero",                     
          "status1": "Disabled",                              
          "pkt_failed1": 0                                    
        }                                                     
      ]                                                       
    }                                                         
  }                                                           
}         
<?xml version="1.0" encoding="ISO-8859-1"?>                  
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pltfm_config" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                             
  <show>                                                                                                               
   <hardware>                                                                                                          
    <ip>                                                                                                               
     <verify>                                                                                                          
      <module>                                                                                                         
       <__XML__PARAM__module>                                                                                          
        <__XML__value>7</__XML__value>                                                                                 
        <__readonly__>                                                                                                 
         <IDS_Checks>                                                                                                  
          <TABLE_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>address source broadcast</name>                                                                      
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>address source multicast</name>                                                                      
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>address destination zero</name>                                                                      
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>address identical</name>                                                                             
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>address reserved</name>                                                                              
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>address class-e</name>                                                                               
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>checksum</name>                                                                                      
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>protocol</name>                                                                                      
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>fragment</name>                                                                                      
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>length minimum</name>                                                                                
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>length consistent</name>                                                                             
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>length maximum max-frag</name>                                                                       
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>length maximum udp</name>                                                                            
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>length maximum max-tcp</name>                                                                        
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>tcp flags</name>                                                                                     
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>tcp tiny-frag</name>                                                                                 
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
           <ROW_IPV4>                                                                                                  
            <name>version</name>                                                                                       
            <status>Disabled</status>                                                                                  
            <pkt_failed>0</pkt_failed>                                                                                 
           </ROW_IPV4>                                                                                                 
          </TABLE_IPV4>                                                                                                
          <TABLE_IPV6>                                                                                                 
           <ROW_IPV6>                                                                                                  
            <name1>length consistent</name1>                                                                           
            <status1>Disabled</status1>                                                                                
            <pkt_failed1>0</pkt_failed1>                                                                               
           </ROW_IPV6>                                                                                                 
           <ROW_IPV6>                                                                                                  
            <name1>length maximum max-frag</name1>                                                                     
            <status1>Disabled</status1>                                                                                
            <pkt_failed1>0</pkt_failed1>                                                                               
           </ROW_IPV6>                                                                                                 
           <ROW_IPV6>                                                                                                  
            <name1>length maximum udp</name1>                                                                          
            <status1>Disabled</status1>                                                                                
            <pkt_failed1>0</pkt_failed1>                                                                               
           </ROW_IPV6>                                                                                                 
           <ROW_IPV6>                                                                                                  
            <name1>length maximum max-tcp</name1>                                                                      
            <status1>Disabled</status1>                                                                                
            <pkt_failed1>0</pkt_failed1>                                                                               
           </ROW_IPV6>                                                                                                 
           <ROW_IPV6>                                                                                                  
            <name1>tcp tiny-frag</name1>                                                                               
            <status1>Disabled</status1>                                                                                
            <pkt_failed1>0</pkt_failed1>                                                                               
           </ROW_IPV6>                                                                                                 
           <ROW_IPV6>                                                                                                  
            <name1>version</name1>                                                                                     
            <status1>Disabled</status1>                                                                                
            <pkt_failed1>0</pkt_failed1>                                                                               
           </ROW_IPV6>                                                                                                 
           <ROW_IPV6>                                                                                                  
            <name1>address source zero</name1>                                                                         
            <status1>Disabled</status1>                                                                                
            <pkt_failed1>0</pkt_failed1>                                                                               
           </ROW_IPV6>                                                                                                 
          </TABLE_IPV6>                                                                                                
         </IDS_Checks>                                                                                                 
        </__readonly__>                                                                                                
       </__XML__PARAM__module>                                                                                         
      </module>                                                                                                        
     </verify>                                                                                                         
    </ip>                                                                                                              
   </hardware>                                                                                                         
  </show>                                                                                                              
 </nf:data>                                                                                                            
</nf:rpc-reply>        

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware ip verify module 7**

IPv4 IDS Checks                Status     Packets Failed 
-----------------------------+---------+------------------
address source broadcast       Disabled   --              
address source multicast       Disabled   --              
address destination zero       Disabled   --              
address identical              Disabled   --              
address reserved               Disabled   --              
address class-e                Disabled   --              
checksum                       Disabled   --              
protocol                       Disabled   --              
fragment                       Disabled   --              
length minimum                 Disabled   --              
length consistent              Disabled   --              
length maximum max-frag        Disabled   --              
length maximum udp             Disabled   --              
length maximum max-tcp         Disabled   --              
tcp flags                      Disabled   --              
tcp tiny-frag                  Disabled   --              
version                        Disabled   --              
-----------------------------+---------+------------------
IPv6 IDS Checks                Status     Packets Failed  
-----------------------------+---------+------------------
length consistent              Disabled   --              
length maximum max-frag        Disabled   --              
length maximum udp             Disabled   --              
length maximum max-tcp         Disabled   --              
tcp tiny-frag                  Disabled   --              
version                        Disabled   --              
address source zero            Disabled   --           

show hardware forwarding ip verify module 7

show hardware forwarding ip verify module 7
 
import requests
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 hardware forwarding ip verify module 7”,
  "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)
{                                                                       
  "IDS_Checks": {                                                       
    "TABLE_IPV4": {                                                     
      "ROW_IPV4": [                                                     
        {                                                               
          "name": "address source broadcast",                           
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        },                                                              
        {                                                               
          "name": "address source multicast",                           
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        },                                                              
        {                                                               
          "name": "address destination zero",                           
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        },                                                              
        {                                                               
          "name": "address identical",                                  
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        },                                                              
        {                                                               
          "name": "address reserved",                                   
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        },                                                              
        {                                                               
          "name": "address class-e",                                    
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        },                                                              
        {                                                               
          "name": "checksum",                                           
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        },                                                              
        {                                                               
          "name": "protocol",                                           
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        },                                                              
        {                                                               
          "name": "fragment",                                           
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        },                                                              
        {                                                               
          "name": "length minimum",                                     
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        },                                                              
        {                                                               
          "name": "length consistent",                                  
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        },                                                              
        {                                                               
          "name": "length maximum max-frag",                            
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        },                                                              
        {                                                               
          "name": "length maximum udp",                                 
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        },                                                              
        {                                                               
          "name": "length maximum max-tcp",                             
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        },                                                              
        {                                                               
          "name": "tcp flags",                                          
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        },                                                              
        {                                                               
          "name": "tcp tiny-frag",                                      
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        },                                                              
        {                                                               
          "name": "version",                                            
          "status": "Disabled",                                         
          "pkt_failed": 0                                               
        }                                                               
      ]                                                                 
    },                                                                  
    "TABLE_IPV6": {                                                     
      "ROW_IPV6": [                                                     
        {                                                               
          "name1": "length consistent",                                 
          "status1": "Disabled",                                        
          "pkt_failed1": 0                                              
        },                                                              
        {                                                               
          "name1": "length maximum max-frag",                           
          "status1": "Disabled",                                        
          "pkt_failed1": 0                                              
        },
        {
          "name1": "length maximum udp",
          "status1": "Disabled",
          "pkt_failed1": 0
        },
        {
          "name1": "length maximum max-tcp",
          "status1": "Disabled",
          "pkt_failed1": 0
        },
        {
          "name1": "tcp tiny-frag",
          "status1": "Disabled",
          "pkt_failed1": 0
        },
        {
          "name1": "version",
          "status1": "Disabled",
          "pkt_failed1": 0
        },
        {
          "name1": "address source zero",
          "status1": "Disabled",
          "pkt_failed1": 0
        }
      ]
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                            
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pltfm_config" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                             
  <show>                                                                                                               
   <hardware>                                                                                                          
    <forwarding>                                                                                                       
     <ip>                                                                                                              
      <verify>                                                                                                         
       <module>                                                                                                        
        <__XML__PARAM__module>                                                                                         
         <__XML__value>7</__XML__value>                                                                                
         <__readonly__>                                                                                                
          <IDS_Checks>                                                                                                 
           <TABLE_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>address source broadcast</name>                                                                     
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>address source multicast</name>                                                                     
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>address destination zero</name>                                                                     
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>address identical</name>                                                                            
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>address reserved</name>                                                                             
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>address class-e</name>                                                                              
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>checksum</name>                                                                                     
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>protocol</name>                                                                                     
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>fragment</name>                                                                                     
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>length minimum</name>                                                                               
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>length consistent</name>                                                                            
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>length maximum max-frag</name>                                                                      
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>length maximum udp</name>                                                                           
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>length maximum max-tcp</name>                                                                       
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>tcp flags</name>                                                                                    
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>tcp tiny-frag</name>                                                                                
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
            <ROW_IPV4>                                                                                                 
             <name>version</name>                                                                                      
             <status>Disabled</status>                                                                                 
             <pkt_failed>0</pkt_failed>                                                                                
            </ROW_IPV4>                                                                                                
           </TABLE_IPV4>                                                                                               
           <TABLE_IPV6>                                                                                                
            <ROW_IPV6>                                                                                                 
             <name1>length consistent</name1>                                                                          
             <status1>Disabled</status1>                                                                               
             <pkt_failed1>0</pkt_failed1>                                                                              
            </ROW_IPV6>                                                                                                
            <ROW_IPV6>                                                                                                 
             <name1>length maximum max-frag</name1>                                                                    
             <status1>Disabled</status1>                                                                               
             <pkt_failed1>0</pkt_failed1>                                                                              
            </ROW_IPV6>                                                                                                
            <ROW_IPV6>                                                                                                 
             <name1>length maximum udp</name1>                                                                         
             <status1>Disabled</status1>                                                                               
             <pkt_failed1>0</pkt_failed1>                                                                              
            </ROW_IPV6>                                                                                                
            <ROW_IPV6>                                                                                                 
             <name1>length maximum max-tcp</name1>                                                                     
             <status1>Disabled</status1>                                                                               
             <pkt_failed1>0</pkt_failed1>                                                                              
            </ROW_IPV6>                                                                                                
            <ROW_IPV6>                                                                                                 
             <name1>tcp tiny-frag</name1>                                                                              
             <status1>Disabled</status1>                                                                               
             <pkt_failed1>0</pkt_failed1>                                                                              
            </ROW_IPV6>                                                                                                
            <ROW_IPV6>                                                                                                 
             <name1>version</name1>                                                                                    
             <status1>Disabled</status1>                                                                               
             <pkt_failed1>0</pkt_failed1>                                                                              
            </ROW_IPV6>                                                                                                
            <ROW_IPV6>                                                                                                 
             <name1>address source zero</name1>                                                                        
             <status1>Disabled</status1>                                                                               
             <pkt_failed1>0</pkt_failed1>                                                                              
            </ROW_IPV6>                                                                                                
           </TABLE_IPV6>                                                                                               
          </IDS_Checks>                                                                                                
         </__readonly__>                                                                                               
        </__XML__PARAM__module>                                                                                        
       </module>                                                                                                       
      </verify>                                                                                                        
     </ip>                                                                                                             
    </forwarding>                                                                                                      
   </hardware>                                                                                                         
  </show>                                                                                                              
 </nf:data>                                                                                                            
</nf:rpc-reply>         

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware forwarding ip verify module 7**

IPv4 IDS Checks                Status     Packets Failed 
-----------------------------+---------+------------------
address source broadcast       Disabled   --              
address source multicast       Disabled   --              
address destination zero       Disabled   --              
address identical              Disabled   --              
address reserved               Disabled   --              
address class-e                Disabled   --              
checksum                       Disabled   --              
protocol                       Disabled   --              
fragment                       Disabled   --              
length minimum                 Disabled   --              
length consistent              Disabled   --              
length maximum max-frag        Disabled   --              
length maximum udp             Disabled   --              
length maximum max-tcp         Disabled   --              
tcp flags                      Disabled   --              
tcp tiny-frag                  Disabled   --              
version                        Disabled   --              
-----------------------------+---------+------------------
IPv6 IDS Checks                Status     Packets Failed  
-----------------------------+---------+------------------
length consistent              Disabled   --              
length maximum max-frag        Disabled   --              
length maximum udp             Disabled   --              
length maximum max-tcp         Disabled   --              
tcp tiny-frag                  Disabled   --              
version                        Disabled   --              
address source zero            Disabled   --           

show hardware access-list lou resource threshold

show hardware access-list lou resource threshold 
 
import requests
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 hardware access-list lou resource threshold”,
  "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)
{
  "current": {
    "lou": {
      "resource": {
        "threshold": {
          "threshold_value": 5
        }
      }
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                                  
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pltfm_config" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                             
  <show>                                                                                                               
   <hardware>                                                                                                          
    <access-list>                                                                                                      
     <lou>                                                                                                             
      <resource>                                                                                                       
       <threshold>                                                                                                     
        <__readonly__>                                                                                                 
         <current>
          <lou>
           <resource>
            <threshold>
             <threshold_value>5</threshold_value>
            </threshold>
           </resource>
          </lou>
         </current>
        </__readonly__>
       </threshold>
      </resource>
     </lou>
    </access-list>
   </hardware>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware access-list lou resource threshold**

Current LOU resource threshold: 5

show hardware forwarding interface statistics mode

show hardware forwarding interface statistics mode
 
import requests
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 hardware forwarding interface statistics mode”,
  "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)
{
  "system": {
    "sysmode": "Default",
    "TABLE_module": {
      "ROW_module": {
        "module_number": "0",
        "module": [
          "6",
          "7",
          "8",
          "15"
        ],
        "modmode": [
          "Default",
          "Default",
          "Default",
          "Default"
        ]
      }
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                                   
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pltfm_config" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                             
  <show>                                                                                                               
   <hardware>                                                                                                          
    <forwarding>                                                                                                       
     <interface>                                                                                                       
      <statistics>                                                                                                     
       <mode>                                                                                                          
        <__readonly__>                                                                                                 
         <system>                                                                                                      
          <sysmode>Default</sysmode>                                                                                   
          <TABLE_module>                                                                                               
           <ROW_module>                                                                                                
            <module_number>0</module_number>                                                                           
            <module>6</module>                                                                                         
            <modmode>Default</modmode>                                                                                 
            <module>7</module>                                                                                         
            <modmode>Default</modmode>                                                                                 
            <module>8</module>                                                                                         
            <modmode>Default</modmode>                                                                                 
            <module>15</module>                                                                                        
            <modmode>Default</modmode>                                                                                 
           </ROW_module>                                                                                               
          </TABLE_module>                                                                                              
         </system>                                                                                                     
        </__readonly__>                                                                                                
       </mode>                                                                                                         
      </statistics>
     </interface>
    </forwarding>
   </hardware>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware forwarding interface statistics mode**

Interface statistics mode configuration:                                      
System: Default                                                               
Module 6: Default                                                             
Module 7: Default                                                             
Module 8: Default                                                             
Module 15: Default                                                            

show hardware forwarding ip verify internal snmp

show hardware forwarding ip verify internal snmp chivIpVerifyTable chivIpVerifyCheckIpType 1 chivIpVerifyCheckTypeName 1  
 
import requests
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 hardware forwarding ip verify internal snmp chivIpVerifyTable chivIpVerifyCheckIpType 1 chivIpVerifyCheckTypeName 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)
{
  "TABLE-chivIpVerifyTable": {
    "check_ip_type_out": 1,
    "check_type_name_out": 1,
    "check_status": 1,
    "packets_dropped": 0
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                                                                                                         
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pltfm_config" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">                             
 <nf:data>                                                                                                                                          
  <show>                                                                                                                                            
   <hardware>                                                                                                                                       
    <forwarding>                                                                                                                                    
     <ip>                                                                                                                                           
      <verify>                                                                                                                                      
       <internal>                                                                                                                                   
        <snmp>                                                                                                                                      
         <chivIpVerifyTable>                                                                                                                        
          <chivIpVerifyCheckIpType>                                                                                                                 
           <__XML__PARAM__check_ip_type>                                                                                                            
            <__XML__value>1</__XML__value>                                                                                                          
            <chivIpVerifyCheckTypeName>                                                                                                             
             <__XML__PARAM__check_type_name>                                                                                                        
              <__XML__value>1</__XML__value>                                                                                                        
              <__readonly__>                                                                                                                        
               <TABLE-chivIpVerifyTable>
                <check_ip_type_out>1</check_ip_type_out>
                <check_type_name_out>1</check_type_name_out>
                <check_status>1</check_status>
                <packets_dropped>0</packets_dropped>
               </TABLE-chivIpVerifyTable>
              </__readonly__>
             </__XML__PARAM__check_type_name>
            </chivIpVerifyCheckTypeName>
           </__XML__PARAM__check_ip_type>
          </chivIpVerifyCheckIpType>
         </chivIpVerifyTable>
        </snmp>
       </internal>
      </verify>
     </ip>
    </forwarding>
   </hardware>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware forwarding ip verify internal snmp chivIpVerifyTable chivIpVerifyCheckIpType 1 chivIpVerifyCheckTypeName 1 **

cid=39/52 tid=1179005d 1                                                                                                                        
cid=39/52 tid=1179005e 1                                                                                                                        
cid=39/52 tid=1179005f 1                                                                                                                        
cid=39/52 tid=15790060 0                                                                                                                        

show hardware forwarding multicast fabric-path ingress ethernet 7/1 dst-ip 224.0.0.1

show hardware forwarding multicast fabric-path ingress ethernet 7/1 dst-ip 224.0.0.1 
 
import requests
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 hardware forwarding multicast fabric-path ingress ethernet 7/1 dst-ip 224.0.0.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)
{                                                                                                               
  "module": {                                                                                                   
    "module_num": 7,                                                                                            
}
<?xml version="1.0" encoding="ISO-8859-1"?>                                                                    
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pltfm_config" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                             
  <show>                                                                                                               
   <hardware>                                                                                                          
    <forwarding>                                                                                                       
     <multicast>                                                                                                       
      <fabric-path>                                                                                                    
       <ingress>                                                                                                       
        <__XML__PARAM__ing-intf>                                                                                       
         <__XML__value>Ethernet7/1</__XML__value>                                                                      
         <dst-ip>                                                                                                      
          <__XML__PARAM__dst-ip>                                                                                       
           <__XML__value>224.0.0.1</__XML__value>                                                                      
           <__readonly__>                                                                                              
            <module>                                                                                                   
             <module_num>7</module_num>                                                                                
             <rbh>7</rbh>                                                                                              
            </module>                                                                                                  
           </__readonly__>                                                                                             
          </__XML__PARAM__dst-ip>                                                                                      
         </dst-ip>                                                                                                     
        </__XML__PARAM__ing-intf>                                                                                      
       </ingress>                                                                                                      
      </fabric-path>                                                                                                   
     </multicast>                                                                                                      
    </forwarding>                                                                                                      
   </hardware>                                                                                                         
  </show>                                                                                                              
 </nf:data>                                                                                                            
</nf:rpc-reply>       

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware forwarding multicast fabric-path ingress ethernet 7/1 dst-ip 224.0.0.1**

Missing params will be substituted by 0's.                                                                
Module 7: RBH: 0x7                                                                                        

show hardware forwarding multicast fabric-path ingress ethernet 7/1 vlan 101

show hardware forwarding multicast fabric-path ingress ethernet 7/1 vlan 101
 
import requests
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 hardware forwarding multicast fabric-path ingress ethernet 7/1 vlan 101”,
  "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)
{                                                                                                      
  "module": {                                                                                          
    "module_num": 7,                                                                                   
    "rbh": 0                                                                                           
  }                                                                                                    
<?xml version="1.0" encoding="ISO-8859-1"?>                                                           
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pltfm_config" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                             
  <show>                                                                                                               
   <hardware>                                                                                                          
    <forwarding>                                                                                                       
     <multicast>                                                                                                       
      <fabric-path>                                                                                                    
       <ingress>                                                                                                       
        <__XML__PARAM__ing-intf>                                                                                       
         <__XML__value>Ethernet7/1</__XML__value>                                                                      
         <vlan>                                                                                                        
          <__XML__PARAM__vlan>                                                                                         
           <__XML__value>101</__XML__value>                                                                            
           <__readonly__>                                                                                              
            <module>                                                                                                   
             <module_num>7</module_num>                                                                                
             <rbh>0</rbh>                                                                                              
            </module>                                                                                                  
           </__readonly__>                                                                                             
          </__XML__PARAM__vlan>                                                                                        
         </vlan>                                                                                                       
        </__XML__PARAM__ing-intf>                                                                                      
       </ingress>                                                                                                      
      </fabric-path>                                                                                                   
     </multicast>                                                                                                      
    </forwarding>                                                                                                      
   </hardware>                                                                                                         
  </show>                                                                                                              
 </nf:data>                                                                                                            
</nf:rpc-reply>     

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware forwarding multicast fabric-path ingress ethernet 7/1 vlan 101**

Missing params will be substituted by 0's.                                                       
Module 7: RBH: 0                                                                                 

show hardware forwarding multicast fabric-path ingress ethernet 7/1 ethertype 0x801

show hardware forwarding multicast fabric-path ingress ethernet 7/1 ethertype 0x801
 
import requests
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 hardware forwarding multicast fabric-path ingress ethernet 7/1 ethertype 0x801”,
  "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)
{
  "module": {
    "module_num": 7,
    "rbh": 6
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                                                                  
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pltfm_config" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                             
  <show>                                                                                                               
   <hardware>                                                                                                          
    <forwarding>                                                                                                       
     <multicast>                                                                                                       
      <fabric-path>                                                                                                    
       <ingress>
        <__XML__PARAM__ing-intf>
         <__XML__value>Ethernet7/1</__XML__value>
         <ethertype>
          <__XML__PARAM__ethertype>
           <__XML__value>0x801</__XML__value>
           <__readonly__>
            <module>
             <module_num>7</module_num>
             <rbh>6</rbh>
            </module>
           </__readonly__>
          </__XML__PARAM__ethertype>
         </ethertype>
        </__XML__PARAM__ing-intf>
       </ingress>
      </fabric-path>
     </multicast>
    </forwarding>
   </hardware>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware forwarding multicast fabric-path ingress ethernet 7/1 ethertype 0x801**

Missing params will be substituted by 0's.                                                              
Module 7: RBH: 0x6                                                                                      

show hardware rate-limiter

show hardware rate-limiter
 
import requests
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 hardware rate-limiter”,
  "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)
{                                                     
  "RATE_LIMITER_STATS": {                             
    "TABLE_module": {                                 
      "ROW_module": {                                 
        "module_number": "0",                         
        "module": [                                   
          "6",                                        
          "7",                                        
          "8",                                        
          "15"                                        
        ],                                            
        "pg_multiplier": [                            
          {                                           
            "rl_pg_multiplier": 1.0,                  
            "TABLE_hardware_rate_limiter": {          
              "ROW_hardware_rate_limiter": [          
                {                                     
                  "rate-limit-class": "L3 mtu",       
                  "rate-limit-enabled": 1,            
                  "rate-limit-configured": 500,       
                  "rate-limit-allowed": 0,            
                  "rate-limit-dropped": 0,            
                  "rate-limit-total": 0               
                },                                    
                {                                     
                  "rate-limit-class": "L3 ttl",       
                  "rate-limit-enabled": 1,            
                  "rate-limit-configured": 500,       
                  "rate-limit-allowed": 0,            
                  "rate-limit-dropped": 0,            
                  "rate-limit-total": 0               
                },                                    
                {                                     
                  "rate-limit-class": "L3 control",   
                  "rate-limit-enabled": 1,            
                  "rate-limit-configured": 10000,     
                  "rate-limit-allowed": 0,            
                  "rate-limit-dropped": 0,            
                  "rate-limit-total": 0               
                },                                    
                {                                     
                  "rate-limit-class": "L3 glean",     
                  "rate-limit-enabled": 1,            
                  "rate-limit-configured": 100,       
                  "rate-limit-allowed": 0,            
                  "rate-limit-dropped": 0,            
                  "rate-limit-total": 0               
                },                                    
                {                                     
                  "rate-limit-class": "L3 mcast dirconn", 
                  "rate-limit-enabled": 1,                
                  "rate-limit-configured": 3000,          
                  "rate-limit-allowed": 0,                
                  "rate-limit-dropped": 0,                
                  "rate-limit-total": 0                   
                },                                        
                {                                         
                  "rate-limit-class": "L3 mcast loc-grp", 
                  "rate-limit-enabled": 1,                
                  "rate-limit-configured": 3000,          
                  "rate-limit-allowed": 0,                
                  "rate-limit-dropped": 0,                
                  "rate-limit-total": 0                   
                },                                        
                {                                         
                  "rate-limit-class": "L3 mcast rpf-leak", 
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 500,            
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                },                                         
                {                                          
                  "rate-limit-class": "L2 storm-ctrl",     
                  "rate-limit-enabled": 0,                 
                  "rate-limit-configured": 0,              
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                },                                         
                {                                          
                  "rate-limit-class": "access-list-log",   
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 100,            
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                },                                         
                {                                          
                  "rate-limit-class": "copy",              
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 30000,          
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                },                                         
                {                                          
                  "rate-limit-class": "receive",           
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 30000,          
                  "rate-limit-allowed": 534,               
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 534                  
                },                                         
                {                                          
                  "rate-limit-class": "L2 port-sec",       
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 500,            
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                },                                         
                {                                          
                  "rate-limit-class": "L2 mcast-snoop",    
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 10000,          
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                },                                         
                {                                          
                  "rate-limit-class": "L2 vpc-low",        
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 4000,           
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                },                                         
                {                                          
                  "rate-limit-class": "L2 l2pt",           
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 500,            
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                },                                         
                {                                          
                  "rate-limit-class": "L2 vpc-peer-gw",    
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 5000,           
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                },                                         
                {                                          
                  "rate-limit-class": "L2 lisp-map-cache", 
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 5000,           
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                },                                         
                {                                          
                  "rate-limit-class": "L2 dpss",           
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 100,            
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                },                                         
                {                                          
                  "rate-limit-class": "L3 glean-fast",     
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 100,            
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                },                                         
                {                                          
                  "rate-limit-class": "L2 otv",            
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 100,            
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                },                                         
                {                                          
                  "rate-limit-class": "L2 netflow",        
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 24000,          
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                },                                         
                {                                          
                  "rate-limit-class": "L3 auto-config",    
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 200,            
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                },                                         
                {                                          
                  "rate-limit-class": "Vxlan-peer-learn",  
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 100,            
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                },                                         
                {                                          
                  "rate-limit-class": "L2 fp-ttl",         
                  "rate-limit-enabled": 1,                 
                  "rate-limit-configured": 0,              
                  "rate-limit-allowed": 0,                 
                  "rate-limit-dropped": 0,                 
                  "rate-limit-total": 0                    
                }                                          
              ]                                            
            },                                             
            "TABLE_port_grp_with_same_config_as_default_config": {
              "ROW_port_grp_with_same_config_as_default_config": [
                {                                                 
                  "port_group": "Eth6/1-24"                       
                },                                                
                {                                                 
                  "port_group": "Eth6/25-48"                      
                }                                                 
              ]                                                   
            }                                                     
          },                                                      
          {                                                       
            "rl_pg_multiplier": 1.0,                              
            "TABLE_hardware_rate_limiter": {                      
              "ROW_hardware_rate_limiter": [                      
                {                                                 
                  "rate-limit-class": "L3 mtu",                   
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 500,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 ttl",                   
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 500,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 control",               
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 10000,                 
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 glean",                 
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 mcast dirconn",         
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 3000,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 mcast loc-grp",         
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 3000,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 mcast rpf-leak",        
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 500,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 storm-ctrl",            
                  "rate-limit-enabled": 0,                        
                  "rate-limit-configured": 0,                     
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "access-list-log",          
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "copy",                     
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 30000,                 
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "receive",                  
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 30000,                 
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 port-sec",              
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 500,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 mcast-snoop",           
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 10000,                 
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 vpc-low",               
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 4000,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 l2pt",                  
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 500,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 vpc-peer-gw",           
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 5000,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 lisp-map-cache",        
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 5000,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 dpss",                  
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 glean-fast",            
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 otv",                   
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 netflow",               
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 4800,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 auto-config",           
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 200,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "Vxlan-peer-learn",         
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 fp-ttl",                
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 0,                     
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                }                                                 
              ]                                                   
            },                                                    
            "TABLE_port_grp_with_same_config_as_default_config": {
              "ROW_port_grp_with_same_config_as_default_config": [
                {                                                 
                  "port_group": "Eth7/1-3"                        
                },                                                
                {                                                 
                  "port_group": "Eth7/4-6"                        
                },                                                
                {                                                 
                  "port_group": "Eth7/7-9"                        
                },                                                
                {                                                 
                  "port_group": "Eth7/10-12"                      
                },                                                
                {                                                 
                  "port_group": "Eth7/13-15"                      
                },                                                
                {                                                 
                  "port_group": "Eth7/16-18"                      
                },                                                
                {                                                 
                  "port_group": "Eth7/19-21"                      
                },                                                
                {                                                 
                  "port_group": "Eth7/22-24"                      
                },                                                
                {                                                 
                  "port_group": "Eth7/25-27"                      
                },                                                
                {                                                 
                  "port_group": "Eth7/28-30"                      
                }                                                 
              ]                                                   
            }                                                     
          },                                                      
          {                                                       
            "rl_pg_multiplier": 1.0,                              
            "TABLE_hardware_rate_limiter": {                      
              "ROW_hardware_rate_limiter": [                      
                {                                                 
                  "rate-limit-class": "L3 mtu",                   
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 500,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 ttl",                   
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 500,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 control",               
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 10000,                 
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 glean",                 
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 mcast dirconn",         
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 3000,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 mcast loc-grp",         
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 3000,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 mcast rpf-leak",        
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 500,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 storm-ctrl",            
                  "rate-limit-enabled": 0,                        
                  "rate-limit-configured": 0,                     
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "access-list-log",          
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "copy",                     
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 30000,                 
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "receive",                  
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 30000,                 
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 port-sec",              
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 500,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 mcast-snoop",           
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 10000,                 
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 vpc-low",               
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 4000,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 l2pt",                  
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 500,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 vpc-peer-gw",           
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 5000,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 lisp-map-cache",        
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 5000,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 dpss",                  
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 glean-fast",            
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 otv",                   
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 netflow",               
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 4800,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 auto-config",           
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 200,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "Vxlan-peer-learn",         
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 fp-ttl",                
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 0,                     
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                }                                                 
              ]                                                   
            },                                                    
            "TABLE_port_grp_with_same_config_as_default_config": {
              "ROW_port_grp_with_same_config_as_default_config": [
                {                                                 
                  "port_group": "Eth8/1-3"                        
                },                                                
                {                                                 
                  "port_group": "Eth8/4-6"                        
                },                                                
                {                                                 
                  "port_group": "Eth8/7-9"                        
                },                                                
                {                                                 
                  "port_group": "Eth8/10-12"                      
                },                                                
                {                                                 
                  "port_group": "Eth8/13-15"                      
                },                                                
                {                                                 
                  "port_group": "Eth8/16-18"                      
                },                                                
                {                                                 
                  "port_group": "Eth8/19-21"                      
                },                                                
                {                                                 
                  "port_group": "Eth8/22-24"                      
                },                                                
                {                                                 
                  "port_group": "Eth8/25-27"                      
                },                                                
                {                                                 
                  "port_group": "Eth8/28-30"                      
                }                                                 
              ]                                                   
            }                                                     
          },                                                      
          {                                                       
            "rl_pg_multiplier": 1.0,                              
            "TABLE_hardware_rate_limiter": {                      
              "ROW_hardware_rate_limiter": [                      
                {                                                 
                  "rate-limit-class": "L3 mtu",                   
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 500,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 ttl",                   
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 500,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 control",               
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 10000,                 
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 glean",                 
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 mcast dirconn",         
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 3000,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 mcast loc-grp",         
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 3000,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 mcast rpf-leak",        
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 500,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 storm-ctrl",            
                  "rate-limit-enabled": 0,                        
                  "rate-limit-configured": 0,                     
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "access-list-log",          
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "copy",                     
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 30000,                 
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "receive",                  
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 30000,                 
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 port-sec",              
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 500,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 mcast-snoop",           
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 10000,                 
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 vpc-low",               
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 4000,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 l2pt",                  
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 500,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 vpc-peer-gw",           
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 5000,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 lisp-map-cache",        
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 5000,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 dpss",                  
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 glean-fast",            
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 otv",                   
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 netflow",               
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 4800,                  
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L3 auto-config",           
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 200,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "Vxlan-peer-learn",         
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 100,                   
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                },                                                
                {                                                 
                  "rate-limit-class": "L2 fp-ttl",                
                  "rate-limit-enabled": 1,                        
                  "rate-limit-configured": 0,                     
                  "rate-limit-allowed": 0,                        
                  "rate-limit-dropped": 0,                        
                  "rate-limit-total": 0                           
                }                                                 
              ]                                                   
            },                                                    
            "TABLE_port_grp_with_same_config_as_default_config": {
              "ROW_port_grp_with_same_config_as_default_config": [
                {                                                 
                  "port_group": "Eth15/1-3"                       
                },                                                
                {                                                 
                  "port_group": "Eth15/4-6"                       
                },                                                
                {                                                 
                  "port_group": "Eth15/7-9"                       
                },
                {
                  "port_group": "Eth15/10-12"
                },
                {
                  "port_group": "Eth15/13-15"
                },
                {
                  "port_group": "Eth15/16-18"
                },
                {
                  "port_group": "Eth15/19-21"
                },
                {
                  "port_group": "Eth15/22-24"
                },
                {
                  "port_group": "Eth15/25-27"
                },
                {
                  "port_group": "Eth15/28-30"
                }
              ]
            }
          }
        ]
      }
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                  
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pltfm_config" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                             
  <show>                                                                                                               
   <hardware>                                                                                                          
    <rate-limiter>                                                                                                     
     <__readonly__>                                                                                                    
      <RATE_LIMITER_STATS>                                                                                             
       <TABLE_module>                                                                                                  
        <ROW_module>                                                                                                   
         <module_number>0</module_number>                                                                              
         <module>6</module>                                                                                            
         <pg_multiplier>                                                                                               
          <rl_pg_multiplier>1.00</rl_pg_multiplier>                                                                    
          <TABLE_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 mtu</rate-limit-class>                                                                
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 ttl</rate-limit-class>                                                                
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 control</rate-limit-class>                                                            
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>10000</rate-limit-configured>                                                       
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 glean</rate-limit-class>                                                              
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 mcast dirconn</rate-limit-class>                                                      
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>3000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 mcast loc-grp</rate-limit-class>                                                      
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>3000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 mcast rpf-leak</rate-limit-class>                                                     
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 storm-ctrl</rate-limit-class>                                                         
            <rate-limit-enabled>0</rate-limit-enabled>                                                                 
            <rate-limit-configured>0</rate-limit-configured>                                                           
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>access-list-log</rate-limit-class>                                                       
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>copy</rate-limit-class>                                                                  
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>30000</rate-limit-configured>                                                       
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>receive</rate-limit-class>                                                               
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>30000</rate-limit-configured>                                                       
            <rate-limit-allowed>534</rate-limit-allowed>                                                               
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>534</rate-limit-total>                                                                   
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 port-sec</rate-limit-class>                                                           
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 mcast-snoop</rate-limit-class>                                                        
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>10000</rate-limit-configured>                                                       
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 vpc-low</rate-limit-class>                                                            
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>4000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 l2pt</rate-limit-class>                                                               
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 vpc-peer-gw</rate-limit-class>                                                        
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>5000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 lisp-map-cache</rate-limit-class>                                                     
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>5000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 dpss</rate-limit-class>                                                               
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 glean-fast</rate-limit-class>                                                         
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 otv</rate-limit-class>                                                                
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 netflow</rate-limit-class>                                                            
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>24000</rate-limit-configured>                                                       
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 auto-config</rate-limit-class>                                                        
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>200</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>Vxlan-peer-learn</rate-limit-class>                                                      
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 fp-ttl</rate-limit-class>                                                             
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>0</rate-limit-configured>                                                           
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
          </TABLE_hardware_rate_limiter>                                                                               
          <TABLE_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth6/1-24</port_group>                                                                         
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth6/25-48</port_group>                                                                        
           </ROW_port_grp_with_same_config_as_default_config>                                                          
          </TABLE_port_grp_with_same_config_as_default_config>                                                         
         </pg_multiplier>                                                                                              
         <module>7</module>                                                                                            
         <pg_multiplier>                                                                                               
          <rl_pg_multiplier>1.00</rl_pg_multiplier>                                                                    
          <TABLE_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 mtu</rate-limit-class>                                                                
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 ttl</rate-limit-class>                                                                
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 control</rate-limit-class>                                                            
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>10000</rate-limit-configured>                                                       
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 glean</rate-limit-class>                                                              
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 mcast dirconn</rate-limit-class>                                                      
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>3000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 mcast loc-grp</rate-limit-class>                                                      
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>3000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 mcast rpf-leak</rate-limit-class>                                                     
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 storm-ctrl</rate-limit-class>                                                         
            <rate-limit-enabled>0</rate-limit-enabled>                                                                 
            <rate-limit-configured>0</rate-limit-configured>                                                           
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>access-list-log</rate-limit-class>                                                       
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>copy</rate-limit-class>                                                                  
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>30000</rate-limit-configured>                                                       
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>receive</rate-limit-class>                                                               
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>30000</rate-limit-configured>                                                       
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 port-sec</rate-limit-class>                                                           
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 mcast-snoop</rate-limit-class>                                                        
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>10000</rate-limit-configured>                                                       
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 vpc-low</rate-limit-class>                                                            
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>4000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 l2pt</rate-limit-class>                                                               
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 vpc-peer-gw</rate-limit-class>                                                        
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>5000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 lisp-map-cache</rate-limit-class>                                                     
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>5000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 dpss</rate-limit-class>                                                               
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 glean-fast</rate-limit-class>                                                         
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 otv</rate-limit-class>                                                                
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 netflow</rate-limit-class>                                                            
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>4800</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 auto-config</rate-limit-class>                                                        
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>200</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>Vxlan-peer-learn</rate-limit-class>                                                      
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 fp-ttl</rate-limit-class>                                                             
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>0</rate-limit-configured>                                                           
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
          </TABLE_hardware_rate_limiter>                                                                               
          <TABLE_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth7/1-3</port_group>                                                                          
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth7/4-6</port_group>                                                                          
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth7/7-9</port_group>                                                                          
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth7/10-12</port_group>                                                                        
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth7/13-15</port_group>                                                                        
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth7/16-18</port_group>                                                                        
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth7/19-21</port_group>                                                                        
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth7/22-24</port_group>                                                                        
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth7/25-27</port_group>                                                                        
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth7/28-30</port_group>                                                                        
           </ROW_port_grp_with_same_config_as_default_config>                                                          
          </TABLE_port_grp_with_same_config_as_default_config>                                                         
         </pg_multiplier>                                                                                              
         <module>8</module>                                                                                            
         <pg_multiplier>                                                                                               
          <rl_pg_multiplier>1.00</rl_pg_multiplier>                                                                    
          <TABLE_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 mtu</rate-limit-class>                                                                
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 ttl</rate-limit-class>                                                                
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 control</rate-limit-class>                                                            
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>10000</rate-limit-configured>                                                       
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 glean</rate-limit-class>                                                              
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 mcast dirconn</rate-limit-class>                                                      
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>3000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 mcast loc-grp</rate-limit-class>                                                      
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>3000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 mcast rpf-leak</rate-limit-class>                                                     
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 storm-ctrl</rate-limit-class>                                                         
            <rate-limit-enabled>0</rate-limit-enabled>                                                                 
            <rate-limit-configured>0</rate-limit-configured>                                                           
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>access-list-log</rate-limit-class>                                                       
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>copy</rate-limit-class>                                                                  
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>30000</rate-limit-configured>                                                       
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>receive</rate-limit-class>                                                               
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>30000</rate-limit-configured>                                                       
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 port-sec</rate-limit-class>                                                           
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 mcast-snoop</rate-limit-class>                                                        
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>10000</rate-limit-configured>                                                       
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 vpc-low</rate-limit-class>                                                            
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>4000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 l2pt</rate-limit-class>                                                               
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 vpc-peer-gw</rate-limit-class>                                                        
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>5000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 lisp-map-cache</rate-limit-class>                                                     
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>5000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 dpss</rate-limit-class>                                                               
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 glean-fast</rate-limit-class>                                                         
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 otv</rate-limit-class>                                                                
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 netflow</rate-limit-class>                                                            
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>4800</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 auto-config</rate-limit-class>                                                        
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>200</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>Vxlan-peer-learn</rate-limit-class>                                                      
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 fp-ttl</rate-limit-class>                                                             
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>0</rate-limit-configured>                                                           
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
          </TABLE_hardware_rate_limiter>                                                                               
          <TABLE_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth8/1-3</port_group>                                                                          
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth8/4-6</port_group>                                                                          
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth8/7-9</port_group>                                                                          
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth8/10-12</port_group>                                                                        
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth8/13-15</port_group>                                                                        
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth8/16-18</port_group>                                                                        
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth8/19-21</port_group>                                                                        
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth8/22-24</port_group>                                                                        
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth8/25-27</port_group>                                                                        
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth8/28-30</port_group>                                                                        
           </ROW_port_grp_with_same_config_as_default_config>                                                          
          </TABLE_port_grp_with_same_config_as_default_config>                                                         
         </pg_multiplier>                                                                                              
         <module>15</module>                                                                                           
         <pg_multiplier>                                                                                               
          <rl_pg_multiplier>1.00</rl_pg_multiplier>                                                                    
          <TABLE_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 mtu</rate-limit-class>                                                                
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 ttl</rate-limit-class>                                                                
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 control</rate-limit-class>                                                            
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>10000</rate-limit-configured>                                                       
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 glean</rate-limit-class>                                                              
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 mcast dirconn</rate-limit-class>                                                      
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>3000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 mcast loc-grp</rate-limit-class>                                                      
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>3000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 mcast rpf-leak</rate-limit-class>                                                     
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 storm-ctrl</rate-limit-class>                                                         
            <rate-limit-enabled>0</rate-limit-enabled>                                                                 
            <rate-limit-configured>0</rate-limit-configured>                                                           
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>access-list-log</rate-limit-class>                                                       
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>copy</rate-limit-class>                                                                  
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>30000</rate-limit-configured>                                                       
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>receive</rate-limit-class>                                                               
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>30000</rate-limit-configured>                                                       
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 port-sec</rate-limit-class>                                                           
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 mcast-snoop</rate-limit-class>                                                        
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>10000</rate-limit-configured>                                                       
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 vpc-low</rate-limit-class>                                                            
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>4000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 l2pt</rate-limit-class>                                                               
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>500</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 vpc-peer-gw</rate-limit-class>                                                        
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>5000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 lisp-map-cache</rate-limit-class>                                                     
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>5000</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 dpss</rate-limit-class>                                                               
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 glean-fast</rate-limit-class>                                                         
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 otv</rate-limit-class>                                                                
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 netflow</rate-limit-class>                                                            
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>4800</rate-limit-configured>                                                        
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L3 auto-config</rate-limit-class>                                                        
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>200</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>Vxlan-peer-learn</rate-limit-class>                                                      
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>100</rate-limit-configured>                                                         
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
           <ROW_hardware_rate_limiter>                                                                                 
            <rate-limit-class>L2 fp-ttl</rate-limit-class>                                                             
            <rate-limit-enabled>1</rate-limit-enabled>                                                                 
            <rate-limit-configured>0</rate-limit-configured>                                                           
            <rate-limit-allowed>0</rate-limit-allowed>                                                                 
            <rate-limit-dropped>0</rate-limit-dropped>                                                                 
            <rate-limit-total>0</rate-limit-total>                                                                     
           </ROW_hardware_rate_limiter>                                                                                
          </TABLE_hardware_rate_limiter>                                                                               
          <TABLE_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth15/1-3</port_group>                                                                         
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth15/4-6</port_group>                                                                         
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth15/7-9</port_group>                                                                         
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth15/10-12</port_group>                                                                       
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth15/13-15</port_group>                                                                       
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth15/16-18</port_group>                                                                       
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth15/19-21</port_group>                                                                       
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth15/22-24</port_group>                                                                       
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth15/25-27</port_group>                                                                       
           </ROW_port_grp_with_same_config_as_default_config>                                                          
           <ROW_port_grp_with_same_config_as_default_config>                                                           
            <port_group>Eth15/28-30</port_group>                                                                       
           </ROW_port_grp_with_same_config_as_default_config>                                                          
          </TABLE_port_grp_with_same_config_as_default_config>                                                         
         </pg_multiplier>                                                                                              
        </ROW_module>                                                                                                  
       </TABLE_module>                                                                                                 
      </RATE_LIMITER_STATS>                                                                                            
     </__readonly__>                                                                                                   
    </rate-limiter>                                                                                                    
   </hardware>                                                                                                         
  </show>                                                                                                              
 </nf:data>                                                                                                            
</nf:rpc-reply>   

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware rate-limiter**

Units for Config: packets per second
Allowed, Dropped & Total: aggregated since last clear counters
rl-1: STP and Fabricpath-ISIS                                 
rl-2: L3-ISIS and OTV-ISIS                                    
rl-3: UDLD, LACP, CDP and LLDP                                
rl-4: Q-in-Q and ARP request                                  
rl-5: IGMP, NTP, DHCP-Snoop, Port-Security, Mgmt and Copy traffic


Module: 6

Rate-limiter PG Multiplier: 1.00

R-L Class Config Allowed Dropped Total +------------------+--------+---------------+---------------+-----------------+ L3 mtu 500 0 0 0 L3 ttl 500 0 0 0 L3 control 10000 0 0 0 L3 glean 100 0 0 0 L3 mcast dirconn 3000 0 0 0 L3 mcast loc-grp 3000 0 0 0 L3 mcast rpf-leak 500 0 0 0 L2 storm-ctrl Disable
access-list-log 100 0 0 0 copy 30000 0 0 0 receive 30000 534 0 534 L2 port-sec 500 0 0 0 L2 mcast-snoop 10000 0 0 0 L2 vpc-low 4000 0 0 0 L2 l2pt 500 0 0 0 L2 vpc-peer-gw 5000 0 0 0 L2 lisp-map-cache 5000 0 0 0 L2 dpss 100 0 0 0 L3 glean-fast 100 0 0 0 L2 otv 100 0 0 0 L2 netflow 48000 0 0 0 L3 auto-config 200 0 0 0 Vxlan-peer-learn 100 0 0 0 L2 fp-ttl 0 0 0 0

Port group with configuration same as default configuration Eth6/1-24 Eth6/25-48

Module: 7

Rate-limiter PG Multiplier: 1.00

R-L Class Config Allowed Dropped Total +------------------+--------+---------------+---------------+-----------------+ L3 mtu 500 0 0 0 L3 ttl 500 0 0 0 L3 control 10000 0 0 0 L3 glean 100 0 0 0 L3 mcast dirconn 3000 0 0 0 L3 mcast loc-grp 3000 0 0 0 L3 mcast rpf-leak 500 0 0 0 L2 storm-ctrl Disable
access-list-log 100 0 0 0 copy 30000 0 0 0 receive 30000 0 0 0 L2 port-sec 500 0 0 0 L2 mcast-snoop 10000 0 0 0 L2 vpc-low 4000 0 0 0 L2 l2pt 500 0 0 0 L2 vpc-peer-gw 5000 0 0 0 L2 lisp-map-cache 5000 0 0 0 L2 dpss 100 0 0 0 L3 glean-fast 100 0 0 0 L2 otv 100 0 0 0 L2 netflow 48000 0 0 0 L3 auto-config 200 0 0 0 Vxlan-peer-learn 100 0 0 0 L2 fp-ttl 0 0 0 0

Port group with configuration same as default configuration Eth7/1-3 Eth7/4-6 Eth7/7-9 Eth7/10-12 Eth7/13-15 Eth7/16-18 Eth7/19-21 Eth7/22-24 Eth7/25-27 Eth7/28-30

Module: 8

Rate-limiter PG Multiplier: 1.00

R-L Class Config Allowed Dropped Total +------------------+--------+---------------+---------------+-----------------+ L3 mtu 500 0 0 0 L3 ttl 500 0 0 0 L3 control 10000 0 0 0 L3 glean 100 0 0 0 L3 mcast dirconn 3000 0 0 0 L3 mcast loc-grp 3000 0 0 0 L3 mcast rpf-leak 500 0 0 0 L2 storm-ctrl Disable
access-list-log 100 0 0 0 copy 30000 0 0 0 receive 30000 0 0 0 L2 port-sec 500 0 0 0 L2 mcast-snoop 10000 0 0 0 L2 vpc-low 4000 0 0 0 L2 l2pt 500 0 0 0 L2 vpc-peer-gw 5000 0 0 0 L2 lisp-map-cache 5000 0 0 0 L2 dpss 100 0 0 0 L3 glean-fast 100 0 0 0 L2 otv 100 0 0 0 L2 netflow 48000 0 0 0 L3 auto-config 200 0 0 0 Vxlan-peer-learn 100 0 0 0 L2 fp-ttl 0 0 0 0

Port group with configuration same as default configuration Eth8/1-3 Eth8/4-6 Eth8/7-9 Eth8/10-12 Eth8/13-15 Eth8/16-18 Eth8/19-21 Eth8/22-24 Eth8/25-27 Eth8/28-30

Module: 15

Rate-limiter PG Multiplier: 1.00

R-L Class Config Allowed Dropped Total +------------------+--------+---------------+---------------+-----------------+ L3 mtu 500 0 0 0 L3 ttl 500 0 0 0 L3 control 10000 0 0 0 L3 glean 100 0 0 0 L3 mcast dirconn 3000 0 0 0 L3 mcast loc-grp 3000 0 0 0 L3 mcast rpf-leak 500 0 0 0 L2 storm-ctrl Disable
access-list-log 100 0 0 0 copy 30000 0 0 0 receive 30000 0 0 0 L2 port-sec 500 0 0 0 L2 mcast-snoop 10000 0 0 0 L2 vpc-low 4000 0 0 0 L2 l2pt 500 0 0 0 L2 vpc-peer-gw 5000 0 0 0 L2 lisp-map-cache 5000 0 0 0 L2 dpss 100 0 0 0 L3 glean-fast 100 0 0 0 L2 otv 100 0 0 0 L2 netflow 48000 0 0 0 L3 auto-config 200 0 0 0 Vxlan-peer-learn 100 0 0 0 L2 fp-ttl 0 0 0 0

Port group with configuration same as default configuration Eth15/1-3 Eth15/4-6 Eth15/7-9 Eth15/10-12 Eth15/13-15 Eth15/16-18 Eth15/19-21 Eth15/22-24 Eth15/25-27 Eth15/28-30

show hardware rate-limiter module 7 layer-3 mtu

show hardware rate-limiter module 7 layer-3 mtu
 
import requests
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 hardware rate-limiter module 7 layer-3 mtu”,
  "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)
{                                                                          
  "RATE_LIMITER_STATS": {                                                  
    "TABLE_module": {                                                      
      "ROW_module": {                                                      
        "module_number": "0",                                              
        "module": 7,                                                       
        "pg_multiplier": {                                                 
          "rl_pg_multiplier": 1.0,                                         
          "TABLE_hardware_rate_limiter": {                                 
            "ROW_hardware_rate_limiter": {                                 
              "rate-limit-class": "L3 mtu",                                
              "rate-limit-enabled": 1,                                     
              "rate-limit-configured": 500,                                
              "rate-limit-allowed": 0,                                     
              "rate-limit-dropped": 0,                                     
              "rate-limit-total": 0                                        
            }                                                              
          },                                                               
          "TABLE_port_grp_with_same_config_as_default_config": {           
            "ROW_port_grp_with_same_config_as_default_config": [           
              {                                                            
                "port_group": "Eth7/1-3"                                   
              },                                                           
              {                                                            
                "port_group": "Eth7/4-6"                                   
              },                                                           
              {                                                            
                "port_group": "Eth7/7-9"
              },
              {
                "port_group": "Eth7/10-12"
              },
              {
                "port_group": "Eth7/13-15"
              },
              {
                "port_group": "Eth7/16-18"
              },
              {
                "port_group": "Eth7/19-21"
              },
              {
                "port_group": "Eth7/22-24"
              },
              {
                "port_group": "Eth7/25-27"
              },
              {
                "port_group": "Eth7/28-30"
              }
            ]
          }
        }
      }
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                               
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pltfm_config" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                             
  <show>                                                                                                               
   <hardware>                                                                                                          
    <rate-limiter>                                                                                                     
     <module>                                                                                                          
      <__XML__PARAM__module>                                                                                           
       <__XML__value>7</__XML__value>                                                                                  
       <layer-3>                                                                                                       
        <__XML__PARAM__l3-opts>                                                                                        
         <__XML__value>mtu</__XML__value>                                                                              
         <__readonly__>                                                                                                
          <RATE_LIMITER_STATS>                                                                                         
           <TABLE_module>                                                                                              
            <ROW_module>                                                                                               
             <module_number>0</module_number>                                                                          
             <module>7</module>                                                                                        
             <pg_multiplier>                                                                                           
              <rl_pg_multiplier>1.00</rl_pg_multiplier>                                                                
              <TABLE_hardware_rate_limiter>                                                                            
               <ROW_hardware_rate_limiter>                                                                             
                <rate-limit-class>L3 mtu</rate-limit-class>                                                            
                <rate-limit-enabled>1</rate-limit-enabled>                                                             
                <rate-limit-configured>500</rate-limit-configured>                                                     
                <rate-limit-allowed>0</rate-limit-allowed>                                                             
                <rate-limit-dropped>0</rate-limit-dropped>                                                             
                <rate-limit-total>0</rate-limit-total>                                                                 
               </ROW_hardware_rate_limiter>                                                                            
              </TABLE_hardware_rate_limiter>                                                                           
              <TABLE_port_grp_with_same_config_as_default_config>                                                      
               <ROW_port_grp_with_same_config_as_default_config>                                                       
                <port_group>Eth7/1-3</port_group>                                                                      
               </ROW_port_grp_with_same_config_as_default_config>                                                      
               <ROW_port_grp_with_same_config_as_default_config>                                                       
                <port_group>Eth7/4-6</port_group>                                                                      
               </ROW_port_grp_with_same_config_as_default_config>                                                      
               <ROW_port_grp_with_same_config_as_default_config>                                                       
                <port_group>Eth7/7-9</port_group>                                                                      
               </ROW_port_grp_with_same_config_as_default_config>                                                      
               <ROW_port_grp_with_same_config_as_default_config>                                                       
                <port_group>Eth7/10-12</port_group>                                                                    
               </ROW_port_grp_with_same_config_as_default_config>                                                      
               <ROW_port_grp_with_same_config_as_default_config>                                                       
                <port_group>Eth7/13-15</port_group>                                                                    
               </ROW_port_grp_with_same_config_as_default_config>                                                      
               <ROW_port_grp_with_same_config_as_default_config>                                                       
                <port_group>Eth7/16-18</port_group>                                                                    
               </ROW_port_grp_with_same_config_as_default_config>                                                      
               <ROW_port_grp_with_same_config_as_default_config>                                                       
                <port_group>Eth7/19-21</port_group>                                                                    
               </ROW_port_grp_with_same_config_as_default_config>                                                      
               <ROW_port_grp_with_same_config_as_default_config>                                                       
                <port_group>Eth7/22-24</port_group>                                                                    
               </ROW_port_grp_with_same_config_as_default_config>                                                      
               <ROW_port_grp_with_same_config_as_default_config>                                                       
                <port_group>Eth7/25-27</port_group>                                                                    
               </ROW_port_grp_with_same_config_as_default_config>                                                      
               <ROW_port_grp_with_same_config_as_default_config>                                                       
                <port_group>Eth7/28-30</port_group>                                                                    
               </ROW_port_grp_with_same_config_as_default_config>                                                      
              </TABLE_port_grp_with_same_config_as_default_config>                                                     
             </pg_multiplier>                                                                                          
            </ROW_module>                                                                                              
           </TABLE_module>                                                                                             
          </RATE_LIMITER_STATS>                                                                                        
         </__readonly__>                                                                                               
        </__XML__PARAM__l3-opts>                                                                                       
       </layer-3>                                                                                                      
      </__XML__PARAM__module>                                                                                          
     </module>                                                                                                         
    </rate-limiter>                                                                                                    
   </hardware>                                                                                                         
  </show>                                                                                                              
 </nf:data>                                                                                                            
</nf:rpc-reply>   

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show hardware rate-limiter module 7 layer-3 mtu**

Units for Config: packets per second
Allowed, Dropped & Total: aggregated since last clear counters
rl-1: STP and Fabricpath-ISIS                                 
rl-2: L3-ISIS and OTV-ISIS                                    
rl-3: UDLD, LACP, CDP and LLDP                                
rl-4: Q-in-Q and ARP request                                  
rl-5: IGMP, NTP, DHCP-Snoop, Port-Security, Mgmt and Copy traffic

Module: 7

Rate-limiter PG Multiplier: 1.00

R-L Class Config Allowed Dropped Total +------------------+--------+---------------+---------------+-----------------+ L3 mtu 500 0 0 0

Port group with configuration same as default configuration Eth7/1-3 Eth7/4-6 Eth7/7-9 Eth7/10-12 Eth7/13-15 Eth7/16-18 Eth7/19-21 Eth7/22-24 Eth7/25-27 Eth7/28-30

show port-channel load-balance module 7

show port-channel load-balance module 7
 
import requests
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 port-channel load-balance module 7”,
  "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)
{
  "sys-cfg": {
    "non-ip-bndl-hash": "src-dst",
    "non-ip-bndl-sel": "mac",
    "ip-bndl-hash": "src-dst",
    "ip-bndl-sel": "ip",
    "rotate": 0,
    "asymmetric": 0,
    "gtp-teid": 0,
    "TABLE_module": {
      "ROW_module": {
        "module_number": "0",
        "module": 7,
        "mod-non-ip-bndl-hash": "src-dst",
        "mod-non-ip-bndl-sel": "mac",
        "mod-ip-bndl-hash": "src-dst",
        "mod-ip-bndl-sel": "ip",
        "mod-rotate": 0,
        "mod-asymmetric": 0,
        "mod-gtp-teid": 0
      }
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                         
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pltfm_config" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                             
  <show>                                                                                                               
   <port-channel>                                                                                                      
    <load-balance>                                                                                                     
     <module>                                                                                                          
      <__XML__PARAM__module>                                                                                           
       <__XML__value>7</__XML__value>                                                                                  
       <__readonly__>                                                                                                  
        <sys-cfg>                                                                                                      
         <non-ip-bndl-hash>src-dst</non-ip-bndl-hash>                                                                  
         <non-ip-bndl-sel>mac</non-ip-bndl-sel>                                                                        
         <ip-bndl-hash>src-dst</ip-bndl-hash>                                                                          
         <ip-bndl-sel>ip</ip-bndl-sel>                                                                                 
         <rotate>0</rotate>                                                                                            
         <asymmetric>0</asymmetric>                                                                                    
         <gtp-teid>0</gtp-teid>                                                                                        
         <TABLE_module>                                                                                                
          <ROW_module>                                                                                                 
           <module_number>0</module_number>                                                                            
           <module>7</module>                                                                                          
           <mod-non-ip-bndl-hash>src-dst</mod-non-ip-bndl-hash>                                                        
           <mod-non-ip-bndl-sel>mac</mod-non-ip-bndl-sel>                                                              
           <mod-ip-bndl-hash>src-dst</mod-ip-bndl-hash>                                                                
           <mod-ip-bndl-sel>ip</mod-ip-bndl-sel>                                                                       
           <mod-rotate>0</mod-rotate>                                                                                  
           <mod-asymmetric>0</mod-asymmetric>                                                                          
           <mod-gtp-teid>0</mod-gtp-teid>                                                                              
          </ROW_module>                                                                                                
         </TABLE_module>                                                                                               
        </sys-cfg>                                                                                                     
       </__readonly__>                                                                                                 
      </__XML__PARAM__module>                                                                                          
     </module>                                                                                                         
    </load-balance>
   </port-channel>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show port-channel load-balance module 7**

Warning: Per Packet Load balance configuration has higher precedence
 System config:                                                     
  Non-IP: src-dst mac                                               
  IP: src-dst ip rotate 0                                           
Port Channel Load-Balancing Configuration for module: 7             
Module 7:                                                           
  Non-IP: src-dst mac                                               
  IP: src-dst ip rotate 0     

show port-channel load-balance forwarding-path interface port-channel 500 vlan 500 dst-ip 1.1.1.1 src-ip 1.1.1.2 module 7

show port-channel load-balance forwarding-path interface port-channel 500 vlan 500 dst-ip 1.1.1.1 src-ip 1.1.1.2  module 7  
 
import requests
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 port-channel load-balance forwarding-path interface port-channel 500 vlan 500 dst-ip 1.1.1.1 src-ip 1.1.1.2  module 7 ”,
  "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)
{
  "loadbalance-algorithm": {
    "algorithm": "src-dst ip"
  },
  "outgoing-port-id": {
    "port": "No active member"
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                                                                                                          
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pltfm_config_eth" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">                          
 <nf:data>                                                                                                                                           
  <show>                                                                                                                                             
   <port-channel>                                                                                                                                    
    <load-balance>                                                                                                                                   
     <forwarding-path>                                                                                                                               
      <interface>                                                                                                                                    
       <__XML__PARAM__ch-id>                                                                                                                         
        <__XML__value>port-channel500</__XML__value>                                                                                                 
        <vlan>                                                                                                                                       
         <__XML__PARAM__vlan-id>                                                                                                                     
          <__XML__value>500</__XML__value>                                                                                                           
          <dst-ip>                                                                                                                                   
           <__XML__PARAM__dst-ip>                                                                                                                    
            <__XML__value>1.1.1.1</__XML__value>                                                                                                     
            <src-ip>                                                                                                                                 
             <__XML__PARAM__src-ip>                                                                                                                  
              <__XML__value>1.1.1.2</__XML__value>                                                                                                   
              <module>                                                                                                                               
               <__XML__PARAM__module>                                                                                                                
                <__XML__value>7</__XML__value>                                                                                                       
                <__readonly__>                                                                                                                       
                 <loadbalance-algorithm>                                                                                                             
                  <algorithm>src-dst ip</algorithm>                                                                                                  
                 </loadbalance-algorithm>
                 <outgoing-port-id>
                  <port>No active member</port>
                 </outgoing-port-id>
                </__readonly__>
               </__XML__PARAM__module>
              </module>
             </__XML__PARAM__src-ip>
            </src-ip>
           </__XML__PARAM__dst-ip>
          </dst-ip>
         </__XML__PARAM__vlan-id>
        </vlan>
       </__XML__PARAM__ch-id>
      </interface>
     </forwarding-path>
    </load-balance>
   </port-channel>
  </show>
 </nf:data>
</nf:rpc-reply>

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show port-channel load-balance forwarding-path interface port-channel 500 vlan 500 dst-ip 1.1.1.1 src-ip 1.1.1.2 module 7 **

Module 7: Missing params will be substituted by 0's.                                                                                            
 Load-balance Algorithm: src-dst ip                                                                                                             
Port-channel 500 RBH:0xef : No active member                                                                                                    

show system inband queuing status

show system inband queuing status
 
import requests
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 system inband queuing status”,
  "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)
{                                                           
  "TABLE_sys_inband_queue_status": {                        
    "ROW_sys_inband_queue_status": {                        
      "pm-inband-weigh0": 64,                               
      "pm-inband-weigh1": 16,                               
      "pm-inband-weigh2": 4                                 
    }                                                       
  }                                                         
}  
<?xml version="1.0" encoding="ISO-8859-1"?>                
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                   
  <show>                                                                                                     
   <system>                                                                                                  
    <inband>                                                                                                 
     <queuing>                                                                                               
      <status>                                                                                               
       <__readonly__>                                                                                        
        <TABLE_sys_inband_queue_status>                                                                      
         <ROW_sys_inband_queue_status>                                                                       
          <pm-inband-weigh0>64</pm-inband-weigh0>                                                            
          <pm-inband-weigh1>16</pm-inband-weigh1>                                                            
          <pm-inband-weigh2>4</pm-inband-weigh2>                                                             
         </ROW_sys_inband_queue_status>                                                                      
        </TABLE_sys_inband_queue_status>                                                                     
       </__readonly__>                                                                                       
      </status>                                                                                              
     </queuing>                                                                                              
    </inband>                                                                                                
   </system>                                                                                                 
  </show>                                                                                                    
 </nf:data>                                                                                                  
</nf:rpc-reply>      

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show system inband queuing status**

  Weighted Round Robin Algorithm                      
  Weights BPDU - 64, Q0 - 16, Q1 - 4                  

show system inband queuing statistics

show system inband queuing statistics
 
import requests
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 system inband queuing statistics”,
  "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)
{                                                               
  "TABLE_sys_inband_queue_stats": {                             
    "ROW_sys_inband_queue_stats": {                             
      "inband-pkt-unmap": 0,                                    
      "inband-pkt-bpdu-queue": 0,                               
      "inband-pkt-map-q0": 0,                                   
      "inband-pkt-map-q1": 0,                                   
      "klm-pkt-map-bpdu": 0,                                    
      "klm-pkt-map-arp": 0,                                     
      "klm-pkt-map-q0": 0,                                      
      "klm-pkt-map-q1": 0,                                      
      "klm-pkt-map-veobc": 0,                                   
      "queue-name": "Inband",                                   
      "TABLE_bpdu_stats": {                                     
        "ROW_bpdu_stats": {                                     
          "pm-recv-pkts": 0,                                    
          "pm-drop-pkts": 0,                                    
          "pm-congested": 0,                                    
          "rcvbuf": 20971520,
          "sndbuf": 4194304,
          "pm-no-drop": 1
        }
      },
      "TABLE_q_stats": {
        "ROW_q_stats": [
          {
            "index-stat": 0,
            "i-pm-recv-pkts": 0,
            "i-pm-drop-pkts": 0,
            "i-pm-congested": 0,
            "i-rcvbuf": 20971520,
            "i-sndbuf": 4194304,
            "i-pm-no-drop": 0
          },
          {
            "index-stat": 1,
            "i-pm-recv-pkts": 0,
            "i-pm-drop-pkts": 0,
            "i-pm-congested": 0,
            "i-rcvbuf": 20971520,
            "i-sndbuf": 4194304,
            "i-pm-no-drop": 0
          }
        ]
      }
    }
  }
}
<?xml version="1.0" encoding="ISO-8859-1"?>                                  
<nf:rpc-reply xmlns="http://www.cisco.com/nxos:8.3.1.:pm" xmlns:nf="urn:ietf:params:xml:ns:netconf:base:1.0">
 <nf:data>                                                                                                   
  <show>                                                                                                     
   <system>                                                                                                  
    <inband>                                                                                                 
     <queuing>                                                                                               
      <statistics>                                                                                           
       <__readonly__>                                                                                        
        <TABLE_sys_inband_queue_stats>                                                                       
         <ROW_sys_inband_queue_stats>                                                                        
          <inband-pkt-unmap>0</inband-pkt-unmap>                                                             
          <inband-pkt-bpdu-queue>0</inband-pkt-bpdu-queue>                                                   
          <inband-pkt-map-q0>0</inband-pkt-map-q0>                                                           
          <inband-pkt-map-q1>0</inband-pkt-map-q1>                                                           
          <klm-pkt-map-bpdu>0</klm-pkt-map-bpdu>                                                             
          <klm-pkt-map-arp>0</klm-pkt-map-arp>                                                               
          <klm-pkt-map-q0>0</klm-pkt-map-q0>                                                                 
          <klm-pkt-map-q1>0</klm-pkt-map-q1>                                                                 
          <klm-pkt-map-veobc>0</klm-pkt-map-veobc>                                                           
          <queue-name>Inband</queue-name>                                                                    
          <TABLE_bpdu_stats>                                                                                 
           <ROW_bpdu_stats>                                                                                  
            <pm-recv-pkts>0</pm-recv-pkts>                                                                   
            <pm-drop-pkts>0</pm-drop-pkts>                                                                   
            <pm-congested>0</pm-congested>                                                                   
            <rcvbuf>20971520</rcvbuf>                                                                        
            <sndbuf>4194304</sndbuf>                                                                         
            <pm-no-drop>1</pm-no-drop>                                                                       
           </ROW_bpdu_stats>                                                                                 
          </TABLE_bpdu_stats>                                                                                
          <TABLE_q_stats>                                                                                    
           <ROW_q_stats>                                                                                     
            <index-stat>0</index-stat>                                                                       
            <i-pm-recv-pkts>0</i-pm-recv-pkts>                                                               
            <i-pm-drop-pkts>0</i-pm-drop-pkts>                                                               
            <i-pm-congested>0</i-pm-congested>                                                               
            <i-rcvbuf>20971520</i-rcvbuf>                                                                    
            <i-sndbuf>4194304</i-sndbuf>                                                                     
            <i-pm-no-drop>0</i-pm-no-drop>                                                                   
           </ROW_q_stats>                                                                                    
           <ROW_q_stats>                                                                                     
            <index-stat>1</index-stat>                                                                       
            <i-pm-recv-pkts>0</i-pm-recv-pkts>                                                               
            <i-pm-drop-pkts>0</i-pm-drop-pkts>                                                               
            <i-pm-congested>0</i-pm-congested>                                                               
            <i-rcvbuf>20971520</i-rcvbuf>                                                                    
            <i-sndbuf>4194304</i-sndbuf>                                                                     
            <i-pm-no-drop>0</i-pm-no-drop>                                                                   
           </ROW_q_stats>                                                                                    
          </TABLE_q_stats>                                                                                   
         </ROW_sys_inband_queue_stats>                                                                       
        </TABLE_sys_inband_queue_stats>                                                                      
       </__readonly__>                                                                                       
      </statistics>                                                                                          
     </queuing>                                                                                              
    </inband>                                                                                                
   </system>                                                                                                 
  </show>                                                                                                    
 </nf:data>                                                                                                  
</nf:rpc-reply>      

For command descriptions, see the Cisco Nexus 7000 Series Switches Command References.   Note: This sample output is generated for Cisco Nexus 7000 Series NX-OS Release 8.3(1).  

CLI Output

switch# **show system inband queuing statistics**

  Inband packets unmapped to a queue: 0                   
  Inband packets mapped to bpdu queue: 0                  
  Inband packets mapped to q0: 0                          
  Inband packets mapped to q1: 0                          
  In KLM packets mapped to bpdu: 0                        
  In KLM packets mapped to arp : 0                        
  In KLM packets mapped to q0  : 0                        
  In KLM packets mapped to q1  : 0                        
 In KLM packets mapped to veobc : 0                       
 Inband Queues:                                           
  bpdu: recv 0, drop 0, congested 0 rcvbuf 20971520, sndbuf 4194304 no drop 1
  (q0): recv 0, drop 0, congested 0 rcvbuf 20971520, sndbuf 4194304 no drop 0
  (q1): recv 0, drop 0, congested 0 rcvbuf 20971520, sndbuf 4194304 no drop 0