Configuring Cisco Discovery Protocol
You can use the Cisco Discovery Protocol (CDP) to discover and view information about all Cisco equipment that is directly attached to your device. CDP runs on all Cisco-manufactured equipment including routers, bridges, access and communication servers, and switches. CDP is media and protocol independent, and gathers the protocol addresses of neighboring devices, discovering the platform of those devices. CDP runs over the data link layer only. Two systems that support different Layer 3 protocols can learn about each other.
For more information, see the Cisco Nexus 9000 Series NX-OS System Management Configuration Guide.
Configuring the Device ID Format for the Mac-Address of the Chassis
Configuring the Device ID Format for the Mac-Address of the Chassis
POST http://<mgmt0_IP>/api/mo/sys/cdp.json
{
"cdpEntity": {
"children": [
{
"cdpInst": {
"attributes": {
"devIdType": "mac"
}}}]}}
{
imdata:[]
}
<System>
<cdp-items>
<inst-items>
<devIdType>mac</devIdType>
</inst-items>
</cdp-items>
</System>
CLI Commands
The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.
cdp format device-id mac-address
For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html
See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html
For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html
Deleting the Device ID Format for the Mac-Address of the Chassis
Deleting the Device ID Format for the Mac-Address of the Chassis
POST http://<mgmt0_IP>/api/mo/sys/cdp.json
{
"cdpEntity": {
"children": [
{
"cdpInst": {
"attributes": {
"devIdType": "none"
}}}]}}
{
imdata:[]
}
<System>
<cdp-items>
<inst-items>
<devIdType>none</devIdType>
</inst-items>
</cdp-items>
</System>
CLI Commands
The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.
no cdp format device-id mac-address
For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html
See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html
For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html
Configuring the Device ID Format for the Chassis Serial Number/OUI
Configuring the Device ID Format for the Chassis Serial Number/OUI
POST http://<mgmt0_IP>/api/mo/sys/cdp.json
{
"cdpEntity": {
"children": [
{
"cdpInst": {
"attributes": {
"devIdType": "serialNum"
}}}]}}
{
imdata:[]
}
<System>
<cdp-items>
<inst-items>
<devIdType>serialNum</devIdType>
</inst-items>
</cdp-items>
</System>
CLI Commands
The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.
cdp format device-id serial-number
For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html
See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html
For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html
Deleting the Device ID Format for the Chassis Serial Number/OUI
Deleting the Device ID Format for the Chassis Serial Number/OUI
POST http://<mgmt0_IP>/api/mo/sys/cdp.json
{
"cdpEntity": {
"children": [
{
"cdpInst": {
"attributes": {
"devIdType": "none"
}}}]}}
{
imdata:[]
}
<System>
<cdp-items>
<inst-items>
<devIdType>none</devIdType>
</inst-items>
</cdp-items>
</System>
CLI Commands
The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.
no cdp format device-id serial-number
For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html
See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html
For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html
Configuring the Device ID Format for the System Name/Fully Qualified Domain Name (Default)
Configuring the Device ID Format for the System Name/Fully Qualified Domain Name (Default)
POST http://<mgmt0_IP>/api/mo/sys/cdp.json
{
"cdpEntity": {
"children": [
{
"cdpInst": {
"attributes": {
"devIdType": "sysName"
}}}]}}
{
imdata:[]
}
<System>
<cdp-items>
<inst-items>
<devIdType>sysName</devIdType>
</inst-items>
</cdp-items>
</System>
CLI Commands
The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.
cdp format device-id system-name
For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html
See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html
For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html
Deleting the Device ID Format for the System Name/Fully Qualified Domain Name (Default)
Deleting the Device ID Format for the System Name/Fully Qualified Domain Name (Default)
POST http://<mgmt0_IP>/api/mo/sys/cdp.json
{
"cdpEntity": {
"children": [
{
"cdpInst": {
"attributes": {
"devIdType": "none"
}}}]}}
{
imdata:[]
}
<System>
<cdp-items>
<inst-items>
<devIdType>none</devIdType>
</inst-items>
</cdp-items>
</System>
CLI Commands
The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.
no cdp format device-id system-name
For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html
See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html
For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html
Configuring the CDP Hold Time Advertised (in Seconds)
Configuring the CDP Hold Time Advertised (in Seconds)
POST http://<mgmt0_IP>/api/mo/sys/cdp.json
{
"cdpEntity": {
"children": [
{
"cdpInst": {
"attributes": {
"holdIntvl": "123"
}}}]}}
{
imdata:[]
}
<System>
<cdp-items>
<inst-items>
<holdIntvl>123</holdIntvl>
</inst-items>
</cdp-items>
</System>
CLI Commands
The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.
cdp holdtime 123
For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html
See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html
For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html
Deleting the CDP Hold Time Advertised (in Seconds)
Deleting the CDP Hold Time Advertised (in Seconds)
POST http://<mgmt0_IP>/api/mo/sys/cdp.json
{
"cdpEntity": {
"children": [
{
"cdpInst": {
"attributes": {
"holdIntvl": "180"
}}}]}}
{
imdata:[]
}
<System>
<cdp-items>
<inst-items>
<holdIntvl>180</holdIntvl>
</inst-items>
</cdp-items>
</System>
CLI Commands
The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.
no cdp holdtime 123
For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html
See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html
For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html
Configuring the CDP Refresh Time Interval (in Seconds)
Configuring the CDP Refresh Time Interval (in Seconds)
POST http://<mgmt0_IP>/api/mo/sys/cdp.json
{
"cdpEntity": {
"children": [
{
"cdpInst": {
"attributes": {
"txFreq": "5"
}}}]}}
{
imdata:[]
}
<System>
<cdp-items>
<inst-items>
<txFreq>5</txFreq>
</inst-items>
</cdp-items>
</System>
CLI Commands
The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.
cdp timer 5
For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html
See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html
For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html
Deleting the CDP Refresh Time Interval (in Seconds)
Deleting the CDP Refresh Time Interval (in Seconds)
POST http://<mgmt0_IP>/api/mo/sys/cdp.json
{
"cdpEntity": {
"children": [
{
"cdpInst": {
"attributes": {
"txFreq": "60"
}}}]}}
{
imdata:[]
}
<System>
<cdp-items>
<inst-items>
<txFreq>60</txFreq>
</inst-items>
</cdp-items>
</System>
CLI Commands
The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.
no cdp timer 5
For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html
See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html
For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html
Configuring CDP Version 1
Configuring CDP Version 1
POST http://<mgmt0_IP>/api/mo/sys/cdp.json
{
"cdpEntity": {
"children": [
{
"cdpInst": {
"attributes": {
"ver": "v1"
}}}]}}
{
imdata:[]
}
<System>
<cdp-items>
<inst-items>
<ver>v1</ver>
</inst-items>
</cdp-items>
</System>
CLI Commands
The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.
cdp advertise v1
For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html
See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html
For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html
Deleting CDP Version 1
Deleting CDP Version 1
POST http://<mgmt0_IP>/api/mo/sys/cdp.json
{
"cdpEntity": {
"children": [
{
"cdpInst": {
"attributes": {
"ver": "v2"
}}}]}}
{
imdata:[]
}
<System>
<cdp-items>
<inst-items>
<ver>v2</ver>
</inst-items>
</cdp-items>
</System>
CLI Commands
The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.
no cdp advertise v1
For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html
See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html
For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html
Configuring CDP Version 2
Configuring CDP Version 2
POST http://<mgmt0_IP>/api/mo/sys/cdp.json
{
"cdpEntity": {
"children": [
{
"cdpInst": {
"attributes": {
"ver": "v2"
}}}]}}
{
imdata:[]
}
<System>
<cdp-items>
<inst-items>
<ver>v2</ver>
</inst-items>
</cdp-items>
</System>
CLI Commands
The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.
cdp advertise v2
For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html
See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html
For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html
Deleting CDP Version 2
Deleting CDP Version 2
POST http://<mgmt0_IP>/api/mo/sys/cdp.json
{
"cdpEntity": {
"children": [
{
"cdpInst": {
"attributes": {
"ver": "v2"
}}}]}}
{
imdata:[]
}
<System>
<cdp-items>
<inst-items>
<ver>v2</ver>
</inst-items>
</cdp-items>
</System>
CLI Commands
The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.
no cdp advertise v2
For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html
See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html
For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html
Querying CDP
Querying CDP
GET http://<IP_Address>/api/mo/sys/cdp/inst.json
{
"totalCount": "1",
"imdata": [
{
"cdpInst": {
"attributes": {
"adminSt": "enabled",
"childAction": "",
"ctrl": "",
"devIdType": "mac",
"dn": "sys/cdp/inst",
"holdIntvl": "123",
"modTs": "2018-06-04T08:15:07.173+00:00",
"name": "",
"operErr": "",
"persistentOnReload": "true",
"status": "",
"sysName": "Switch.cisco.com",
"txFreq": "123",
"ver": "v2"
}
}
}
]
}
GET: http://<IP_Address>/restconf/data/Cisco-NX-OS-device:
<cdp-items>
<adminSt>enabled</adminSt>
<inst-items>
<adminSt>enabled</adminSt>
<devIdType>mac</devIdType>
<holdIntvl>123</holdIntvl>
<if-items>
<If-list>
<id>eth1/27</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/115</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/15</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/100</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/105</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/16</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/46</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/56</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/25</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/122</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/81</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/88</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/65</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/76</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/127</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/41</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/30</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/128</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>mgmt0</id>
<adj-items>
<AdjEp-list>
<index>2</index>
<adjstats-items>
<adjExpTs>2018-06-13T14:40:51.394+00:00</adjExpTs>
</adjstats-items>
<cap>igmp-filter,switch</cap>
<devId>FE-TOR-S1A.cisco.com</devId>
<duplex>full</duplex>
<intf-items>
<IntfAddr-list>
<addr>10.122.84.129</addr>
</IntfAddr-list>
</intf-items>
<mgmt-items>
<MgmtAddr-list>
<addr>10.122.84.129</addr>
</MgmtAddr-list>
</mgmt-items>
<mtu>0</mtu>
<name/>
<nativeVlan>197</nativeVlan>
<platId>cisco WS-C3750G-24TS</platId>
<portId>GigabitEthernet1/0/5</portId>
<sysLoc/>
<sysName/>
<ver>Cisco IOS Software, C3750 Software (C3750-IPSERVICES-M), Version 12.2(44)SE2, RELEASE SOFTWARE (fc2)
Copyright (c) 1986-2008 by Cisco Systems, Inc.
Compiled Thu 01-May-08 12:29 by antonino</ver>
</AdjEp-list>
<AdjEp-list>
<index>3</index>
<adjstats-items>
<adjExpTs>2018-06-13T14:41:30.143+00:00</adjExpTs>
</adjstats-items>
<cap>router,stp-dispute,switch</cap>
<devId>N9Kv-rnimbalk1.cisco.com(9VRSPN36YVD)</devId>
<duplex>full</duplex>
<intf-items>
<IntfAddr-list>
<addr>10.122.197.185</addr>
</IntfAddr-list>
</intf-items>
<mgmt-items>
<MgmtAddr-list>
<addr>10.122.197.185</addr>
</MgmtAddr-list>
</mgmt-items>
<mtu>1500</mtu>
<name/>
<nativeVlan>0</nativeVlan>
<platId>N9K-9000v</platId>
<portId>mgmt0</portId>
<sysLoc/>
<sysName>N9Kv-rnimbalk1</sysName>
<ver>Cisco Nexus Operating System (NX-OS) Software, Version 9.2(1)I9(1)</ver>
</AdjEp-list>
</adj-items>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>10856</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>35359</validV2Rcvd>
</ifstats-items>
<nativeVlan>0</nativeVlan>
<operSt>up</operSt>
<operStQual>up</operStQual>
</If-list>
<If-list>
<id>eth1/91</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/52</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/71</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/78</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/79</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/33</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/99</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/61</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/26</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/62</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/114</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/124</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/22</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/50</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/103</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/2</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/107</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/45</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/72</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/74</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/86</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/96</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/70</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/40</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/10</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/5</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/95</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/18</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/55</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/63</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/111</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/117</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/90</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/23</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/75</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/106</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/38</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/69</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/7</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/67</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/43</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/11</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/110</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/37</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/51</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/42</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/49</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/57</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/8</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/53</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/113</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/68</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/6</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/20</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/84</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/123</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/109</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/58</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/4</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/73</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/34</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/60</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/112</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/66</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/24</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/89</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/97</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/36</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/102</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/121</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/44</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/12</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/59</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/119</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/17</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/21</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/31</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/32</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/14</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/108</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/101</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/13</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/64</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/125</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/47</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/54</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/19</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/87</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/77</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/1</id>
<adj-items>
<AdjEp-list>
<index>10</index>
<adjstats-items>
<adjExpTs>2018-06-13T14:41:30.177+00:00</adjExpTs>
</adjstats-items>
<cap>igmp-filter,router,stp-dispute,switch</cap>
<devId>N9Kv-rnimbalk1.cisco.com(9VRSPN36YVD)</devId>
<duplex>full</duplex>
<intf-items>
<IntfAddr-list>
<addr>10.122.197.185</addr>
</IntfAddr-list>
</intf-items>
<mgmt-items>
<MgmtAddr-list>
<addr>10.122.197.185</addr>
</MgmtAddr-list>
</mgmt-items>
<mtu>1500</mtu>
<name/>
<nativeVlan>1</nativeVlan>
<platId>N9K-9000v</platId>
<portId>Ethernet1/5</portId>
<sysLoc/>
<sysName>N9Kv-rnimbalk1</sysName>
<ver>Cisco Nexus Operating System (NX-OS) Software, Version 9.2(1)I9(1)</ver>
</AdjEp-list>
<AdjEp-list>
<index>9</index>
<adjstats-items>
<adjExpTs>2018-06-13T14:41:30.173+00:00</adjExpTs>
</adjstats-items>
<cap>igmp-filter,router,stp-dispute,switch</cap>
<devId>N9Kv-rnimbalk1.cisco.com(9VRSPN36YVD)</devId>
<duplex>full</duplex>
<intf-items>
<IntfAddr-list>
<addr>10.122.197.185</addr>
</IntfAddr-list>
</intf-items>
<mgmt-items>
<MgmtAddr-list>
<addr>10.122.197.185</addr>
</MgmtAddr-list>
</mgmt-items>
<mtu>1500</mtu>
<name/>
<nativeVlan>1</nativeVlan>
<platId>N9K-9000v</platId>
<portId>Ethernet1/4</portId>
<sysLoc/>
<sysName>N9Kv-rnimbalk1</sysName>
<ver>Cisco Nexus Operating System (NX-OS) Software, Version 9.2(1)I9(1)</ver>
</AdjEp-list>
<AdjEp-list>
<index>7</index>
<adjstats-items>
<adjExpTs>2018-06-13T14:41:30.151+00:00</adjExpTs>
</adjstats-items>
<cap>igmp-filter,router,stp-dispute,switch</cap>
<devId>N9Kv-rnimbalk1.cisco.com(9VRSPN36YVD)</devId>
<duplex>full</duplex>
<intf-items>
<IntfAddr-list>
<addr>10.122.197.185</addr>
</IntfAddr-list>
</intf-items>
<mgmt-items>
<MgmtAddr-list>
<addr>10.122.197.185</addr>
</MgmtAddr-list>
</mgmt-items>
<mtu>1500</mtu>
<name/>
<nativeVlan>1</nativeVlan>
<platId>N9K-9000v</platId>
<portId>Ethernet1/2</portId>
<sysLoc/>
<sysName>N9Kv-rnimbalk1</sysName>
<ver>Cisco Nexus Operating System (NX-OS) Software, Version 9.2(1)I9(1)</ver>
</AdjEp-list>
<AdjEp-list>
<index>6</index>
<adjstats-items>
<adjExpTs>2018-06-13T14:41:30.149+00:00</adjExpTs>
</adjstats-items>
<cap>igmp-filter,router,stp-dispute,switch</cap>
<devId>N9Kv-rnimbalk1.cisco.com(9VRSPN36YVD)</devId>
<duplex>full</duplex>
<intf-items>
<IntfAddr-list>
<addr>10.122.197.185</addr>
</IntfAddr-list>
</intf-items>
<mgmt-items>
<MgmtAddr-list>
<addr>10.122.197.185</addr>
</MgmtAddr-list>
</mgmt-items>
<mtu>1500</mtu>
<name/>
<nativeVlan>1</nativeVlan>
<platId>N9K-9000v</platId>
<portId>Ethernet1/1</portId>
<sysLoc/>
<sysName>N9Kv-rnimbalk1</sysName>
<ver>Cisco Nexus Operating System (NX-OS) Software, Version 9.2(1)I9(1)</ver>
</AdjEp-list>
<AdjEp-list>
<index>8</index>
<adjstats-items>
<adjExpTs>2018-06-13T14:41:30.152+00:00</adjExpTs>
</adjstats-items>
<cap>igmp-filter,router,stp-dispute,switch</cap>
<devId>N9Kv-rnimbalk1.cisco.com(9VRSPN36YVD)</devId>
<duplex>full</duplex>
<intf-items>
<IntfAddr-list>
<addr>10.122.197.185</addr>
</IntfAddr-list>
</intf-items>
<mgmt-items>
<MgmtAddr-list>
<addr>10.122.197.185</addr>
</MgmtAddr-list>
</mgmt-items>
<mtu>1500</mtu>
<name/>
<nativeVlan>1</nativeVlan>
<platId>N9K-9000v</platId>
<portId>Ethernet1/3</portId>
<sysLoc/>
<sysName>N9Kv-rnimbalk1</sysName>
<ver>Cisco Nexus Operating System (NX-OS) Software, Version 9.2(1)I9(1)</ver>
</AdjEp-list>
</adj-items>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>10856</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>1514</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>up</operSt>
<operStQual>up</operStQual>
</If-list>
<If-list>
<id>eth1/126</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/104</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/3</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/98</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/82</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/29</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/28</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/80</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/116</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/9</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/35</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/118</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/120</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/93</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/85</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/94</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/39</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/48</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/83</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
<If-list>
<id>eth1/92</id>
<adminSt>enabled</adminSt>
<ifstats-items>
<cksumErrRcvd>0</cksumErrRcvd>
<failedSent>0</failedSent>
<malformRcvd>0</malformRcvd>
<unSupVerRcvd>0</unSupVerRcvd>
<v1Sent>0</v1Sent>
<v2Sent>0</v2Sent>
<validV1Rcvd>0</validV1Rcvd>
<validV2Rcvd>0</validV2Rcvd>
</ifstats-items>
<nativeVlan>1</nativeVlan>
<operSt>down</operSt>
<operStQual>if-down</operStQual>
</If-list>
</if-items>
<operErr/>
<sysName>Switch.cisco.com</sysName>
<txFreq>123</txFreq>
<ver>v2</ver>
</inst-items>
<name/>
<operSt>enabled</operSt>
</cdp-items>
CLI Output |
---|
|
See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/
For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide: