Configuring PIM6 in Global Configuration Mode
Configuring an RP in an Anycast-RP Set
Configuring an RP in an Anycast-RP Set
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AcastRpFuncP": {
"children": [
{
"pim6AcastRpPeer": {
"attributes": {
"addr": "1:2::3:4/128",
"rpSetAddr": "4:3::2:1/128"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<acastrpfunc-items>
<peer-items>
<AcastRpPeer-list>
<addr>1:2::3:4/128</addr>
<rpSetAddr>4:3::2:1/128</rpSetAddr>
</AcastRpPeer-list>
</peer-items>
</acastrpfunc-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim anycast-rp 1:2::3:4 4:3::2:1
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 an RP in an Anycast-RP Set
Deleting an RP in an Anycast-RP Set
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AcastRpFuncP": {
"children": [
{
"pim6AcastRpPeer": {
"attributes": {
"addr": "1:2::3:4/128",
"rpSetAddr": "4:3::2:1/128",
"status": "deleted"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<acastrpfunc-items>
<peer-items>
<AcastRpPeer-list xc:operation="delete">
<addr>1:2::3:4/128</addr>
<rpSetAddr>4:3::2:1/128</rpSetAddr>
</AcastRpPeer-list>
</peer-items>
</acastrpfunc-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim anycast-rp 1:2::3:4 4:3::2:1
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 Remove Routes When Restarting PIM6
Configuring Remove Routes When Restarting PIM6
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"flushRoutes": "yes",
"name": "default"
}}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<flushRoutes>true</flushRoutes>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim flush-routes
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 Remove Routes When Restarting PIM6
Deleting Remove Routes When Restarting PIM6
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"flushRoutes": "no",
"name": "default"
}}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<flushRoutes>false</flushRoutes>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim flush-routes
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 Log Up/Down PIM6 Neighbor Transitions
Configuring the Log Up/Down PIM6 Neighbor Transitions
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"logNbhChng": "yes",
"name": "default"
}}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<logNbhChng>true</logNbhChng>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim log-neighbor-changes
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 Log Up/Down PIM6 Neighbor Transitions
Deleting the Log Up/Down PIM6 Neighbor Transitions
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"logNbhChng": "no",
"name": "default"
}}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<logNbhChng>false</logNbhChng>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim log-neighbor-changes
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 Enable Listening or Forwarding of Auto-RP Messages
Configuring the Enable Listening or Forwarding of Auto-RP Messages
POST http://<mgmt0_IP>/api/mo/sys.json
{
"topSystem": {
"children": [
{
"pim6Entity": {
"children": [
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AutoRPP": {
"attributes": {
"ctrl": "listen"
}
}
}
]
}
}
]
}
}
]
}
}
]
}
}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<autorp-items>
<ctrl>listen</ctrl>
</autorp-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim auto-rp listen
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 Enable Listening or Forwarding of Auto-RP Messages
Deleting the Enable Listening or Forwarding of Auto-RP Messages
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AutoRPP": {
"attributes": {
"ctrl": ""
}}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<autorp-items>
<ctrl></ctrl>
</autorp-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim auto-rp listen
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
Enabling the Forwading of Auto-RP Messages
Enabling the Forwading of Auto-RP Messages
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AutoRPP": {
"attributes": {
"ctrl": "forward"
}}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<autorp-items>
<ctrl>forward</ctrl>
</autorp-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim auto-rp forward
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
Disabling the Forwading of Auto-RP Messages
Disabling the Forwading of Auto-RP Messages
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AutoRPP": {
"attributes": {
"ctrl": ""
}}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<autorp-items>
<ctrl></ctrl>
</autorp-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim auto-rp forward
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
Creating a Configuration to Listen to Bootstrap Messages
Creating a Configuration to Listen to Bootstrap Messages
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"attributes": {
"ctrl": "listen"
}}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<ctrl>listen</ctrl>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim bsr listen
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 a Configuration to Listen to Bootstrap Messages
Deleting a Configuration to Listen to Bootstrap Messages
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"attributes": {
"ctrl": ""
}}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<ctrl></ctrl>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim bsr listen
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
Creating a Configuration to Forward Bootstrap Messages
Creating a Configuration to Forward Bootstrap Messages
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"attributes": {
"ctrl": "forward"
}}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<ctrl>forward</ctrl>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim bsr forward
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 a Configuration to Forward Bootstrap Messages
Deleting a Configuration to Forward Bootstrap Messages
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"attributes": {
"ctrl": ""
}}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<ctrl></ctrl>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim bsr forward
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 Group Ranges Through Policy
Configuring the Group Ranges Through Policy
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AsmPatP": {
"children": [
{
"pim6SharedRangeP": {
"attributes": {
"pfxList": "",
"rtMap": "RT_Map1",
"useSPTCommand": "no"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<asm-items>
<shared-items>
<pfxList></pfxList>
<rtMap>RT_Map1</rtMap>
<useSPTCommand>false</useSPTCommand>
</shared-items>
</asm-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim use-shared-tree-only group-list RT_Map1
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 Group Ranges Through Policy
Deleting the Group Ranges Through Policy
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AsmPatP": {
"children": [
{
"pim6SharedRangeP": {
"attributes": {
"status": "deleted"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<asm-items>
<shared-items xc:operation="delete">
</shared-items>
</asm-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim use-shared-tree-only group-list RT_Map1
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 Source-Tree Switching Threshold to Never Switch to Source Tree for a Group List
Configuring the Source-Tree Switching Threshold to Never Switch to Source Tree for a Group List
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AsmPatP": {
"children": [
{
"pim6SharedRangeP": {
"attributes": {
"pfxList": "",
"rtMap": "RtMap_1",
"useSPTCommand": "yes"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<asm-items>
<shared-items>
<pfxList></pfxList>
<rtMap>RtMap_1</rtMap>
<useSPTCommand>true</useSPTCommand>
</shared-items>
</asm-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim spt-threshold infinity group-list RtMap_1
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 Source-Tree Switching Threshold to Never Switch to Source Tree for a Group List
Deleting the Source-Tree Switching Threshold to Never Switch to Source Tree for a Group List
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AsmPatP": {
"children": [
{
"pim6SharedRangeP": {
"attributes": {
"status": "deleted"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<asm-items>
<shared-items xc:operation="delete">
</shared-items>
</asm-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim spt-threshold infinity group-list RtMap_1
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 Bootstrap Protocol RP-Distribution Priority
Configuring the Bootstrap Protocol RP-Distribution Priority
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"children": [
{
"pim6BsrFuncP": {
"attributes": {
"hashLen": "10",
"interval": "60",
"prio": "123",
"srcIf": "eth1/1"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<bsrfunc-items>
<hashLen>10</hashLen>
<interval>60</interval>
<prio>123</prio>
<srcIf>eth1/1</srcIf>
</bsrfunc-items>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim bsr bsr-candidate ethernet 1/1 hash-len 10 priority 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 Bootstrap Protocol RP-Distribution Priority
Deleting the Bootstrap Protocol RP-Distribution Priority
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"children": [
{
"pim6BsrFuncP": {
"attributes": {
"status": "deleted"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<bsrfunc-items xc:operation="delete">
</bsrfunc-items>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim bsr bsr-candidate ethernet 1/1 hash-len 10 priority 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 Priority and Interval for a Policy That Filters RP-Candidate Messages
Configuring the Priority and Interval for a Policy That Filters RP-Candidate Messages
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"children": [
{
"pim6RpFuncP": {
"attributes": {
"interval": "12",
"prio": "123",
"srcIf": "eth1/1"
},
"children": [
{
"pim6RpGrpRange": {
"attributes": {
"bidir": "no",
"grpList": "ff02::1:ff00:0/1",
"pfxList": "",
"rtMap": ""
}}}]}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<rpfunc-items>
<interval>12</interval>
<prio>123</prio>
<srcIf>eth1/1</srcIf>
<range-items>
<RpGrpRange-list>
<bidir>false</bidir>
<grpList>ff02::1:ff00:0/1</grpList>
<pfxList></pfxList>
<rtMap></rtMap>
</RpGrpRange-list>
</range-items>
</rpfunc-items>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim bsr rp-candidate ethernet 1/1 group-list FF02:0:0:0:0:1:FF00:0000/1 priority 123 interval 12
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 Priority and Interval for a Policy That Filters RP-Candidate Messages
Deleting the Priority and Interval for a Policy That Filters RP-Candidate Messages
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"children": [
{
"pim6RpFuncP": {
"attributes": {
"status": "deleted"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<rpfunc-items xc:operation="delete">
</rpfunc-items>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim bsr rp-candidate ethernet 1/1 group-list FF02:0:0:0:0:1:FF00:0000/1 priority 123 interval 12
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 Policy for Filtering RP Candidate Messages with the Specified Route Map, Interval, and Prioriy Level
Configuring the Policy for Filtering RP Candidate Messages with the Specified Route Map, Interval, and Prioriy Level
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"children": [
{
"pim6RpFuncP": {
"attributes": {
"interval": "12",
"prio": "123",
"srcIf": "eth1/1"
},
"children": [
{
"pim6RpGrpRange": {
"attributes": {
"bidir": "no",
"grpList": "::",
"pfxList": "",
"rtMap": "RtMap_1"
}}}]}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<rpfunc-items>
<interval>12</interval>
<prio>123</prio>
<srcIf>eth1/1</srcIf>
<range-items>
<RpGrpRange-list>
<bidir>false</bidir>
<grpList>::</grpList>
<pfxList></pfxList>
<rtMap>RtMap_1</rtMap>
</RpGrpRange-list>
</range-items>
</rpfunc-items>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim bsr rp-candidate ethernet 1/1 route-map RtMap_1 priority 123 interval 12
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 Policy for Filtering RP Candidate Messages with the Specified Route Map, Interval, and Prioriy Level
Deleting the Policy for Filtering RP Candidate Messages with the Specified Route Map, Interval, and Prioriy Level
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"children": [
{
"pim6RpFuncP": {
"attributes": {
"status": "deleted"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<rpfunc-items xc:operation="delete">
</rpfunc-items>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim bsr rp-candidate ethernet 1/1 route-map RtMap_1 priority 123 interval 12
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 Static RP for a Group Range
Configuring the Static RP for a Group Range
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6StaticRPP": {
"children": [
{
"pim6StaticRP": {
"attributes": {
"addr": "1:2::3:4/128"
},
"children": [
{
"pim6RpGrpRange": {
"attributes": {
"bidir": "no",
"override": "no",
"pfxList": "",
"rtMap": "RtMap_1"
}}}]}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<staticrp-items>
<rp-items>
<StaticRP-list>
<addr>1:2::3:4/128</addr>
<range-items>
<RpGrpRange-list>
<bidir>false</bidir>
<override>false</override>
<pfxList></pfxList>
<rtMap>RtMap_1</rtMap>
</RpGrpRange-list>
</range-items>
</StaticRP-list>
</rp-items>
</staticrp-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim rp-address 1:2::3:4 route-map RtMap_1
policy set For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
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 Static RP for a Group Range
Deleting the Static RP for a Group Range
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6StaticRPP": {
"children": [
{
"pim6StaticRP": {
"attributes": {
"addr": "1:2::3:4/128",
"status": "deleted"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<staticrp-items>
<rp-items>
<StaticRP-list xc:operation="delete">
<addr>1:2::3:4/128</addr>
</StaticRP-list>
</rp-items>
</staticrp-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim rp-address 1:2::3:4 route-map RtMap_1
policy set For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
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 Override and Prefix List Policy for a Static RP
Configuring the Override and Prefix List Policy for a Static RP
POST http://<mgmt0_IP>/api/mo/sys.json
{
"topSystem": {
"children": [
{
"pim6Entity": {
"children": [
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6StaticRPP": {
"children": [
{
"pim6StaticRP": {
"attributes": {
"addr": "1:2::3:4/128"
},
"children": [
{
"pim6RpGrpRange": {
"attributes": {
"bidir": "yes",
"override": "yes"
}
}
},
{
"pim6RpGrpRange": {
"attributes": {
"bidir": "no",
"pfxList": "List_1",
"rtMap": ""
}
}
}
]
}
}
]
}
}
]
}
}
]
}
}
]
}
}
]
}
}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<staticrp-items>
<rp-items>
<StaticRP-list>
<addr>1:2::3:4/128</addr>
<range-items>
<RpGrpRange-list>
<bidir>true</bidir>
<override>true</override>
</RpGrpRange-list>
<RpGrpRange-list>
<bidir>false</bidir>
<pfxList>List_1</pfxList>
<rtMap></rtMap>
</RpGrpRange-list>
</range-items>
</StaticRP-list>
</rp-items>
</staticrp-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim rp-address 1:2::3:4 prefix-list List_1 override
policy set For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
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 Override and Prefix List Policy for a Static RP
Deleting the Override and Prefix List Policy for a Static RP
POST http://<mgmt0_IP>/api/mo/sys.json
{
"topSystem": {
"children": [
{
"pim6Entity": {
"children": [
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6StaticRPP": {
"children": [
{
"pim6StaticRP": {
"attributes": {
"addr": "1:2::3:4/128",
"status": "deleted"
}
}
}
]
}
}
]
}
}
]
}
}
]
}
}
]
}
}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<staticrp-items>
<rp-items>
<StaticRP-list xc:operation="delete">
<addr>1:2::3:4/128</addr>
</StaticRP-list>
</rp-items>
</staticrp-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim rp-address 1:2::3:4 prefix-list List_1 override
policy set For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
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 State Limit
Configuring the State Limit
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6ResP": {
"attributes": {
"max": "1234",
"rsvd": "123",
"rtMap": "RtMap_1"
}}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<limit-items>
<max>1234</max>
<rsvd>123</rsvd>
<rtMap>RtMap_1</rtMap>
</limit-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim state-limit 1234 reserved RtMap_1 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 State Limit
Deleting the State Limit
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6ResP": {
"attributes": {
"status": "deleted"
}}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<limit-items xc:operation="delete">
</limit-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim state-limit 1234 reserved RtMap_1 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 Policy for Filtering Mapping Agent Messages with a Route Map
Configuring the Policy for Filtering Mapping Agent Messages with a Route Map
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AutoRPP": {
"children": [
{
"pim6MaFilterP": {
"attributes": {
"rtMap": "RtMap_1"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<autorp-items>
<mafilter-items>
<rtMap>RtMap_1</rtMap>
</mafilter-items>
</autorp-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim auto-rp mapping-agent-policy RtMap_1
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 Policy for Filtering Mapping Agent Messages with a Route Map
Deleting the Policy for Filtering Mapping Agent Messages with a Route Map
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AutoRPP": {
"children": [
{
"pim6MaFilterP": {
"attributes": {
"status": "deleted"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<autorp-items>
<mafilter-items xc:operation="delete">
</mafilter-items>
</autorp-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim auto-rp mapping-agent-policy RtMap_1
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 Policy for Filtering Mapping Agent Messages with a Route Policy
Configuring the Policy for Filtering Mapping Agent Messages with a Route Policy
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AutoRPP": {
"children": [
{
"pim6MaFilterP": {
"attributes": {
"rtMap": "RT_POL"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<autorp-items>
<mafilter-items>
<rtMap>RT_POL</rtMap>
</mafilter-items>
</autorp-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim auto-rp mapping-agent-policy RT_POL
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 Policy for Filtering Mapping Agent Messages with a Route Policy
Deleting the Policy for Filtering Mapping Agent Messages with a Route Policy
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AutoRPP": {
"children": [
{
"pim6MaFilterP": {
"attributes": {
"status": "deleted"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<autorp-items>
<mafilter-items xc:operation="delete">
</mafilter-items>
</autorp-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim auto-rp mapping-agent-policy RT_POL
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 Auto-RP Protocol RP-Distribution Configuration Policy for Filtering RP Candidate Messages with a Route Map
Configuring the Auto-RP Protocol RP-Distribution Configuration Policy for Filtering RP Candidate Messages with a Route Map
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AutoRPP": {
"children": [
{
"pim6RpFilterP": {
"attributes": {
"rtMap": "RtMap_1"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<autorp-items>
<rpfilter-items>
<rtMap>RtMap_1</rtMap>
</rpfilter-items>
</autorp-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim auto-rp rp-candidate-policy RtMap_1
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 Auto-RP Protocol RP-Distribution Configuration Policy for Filtering RP Candidate Messages with a Route Map
Deleting the Auto-RP Protocol RP-Distribution Configuration Policy for Filtering RP Candidate Messages with a Route Map
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AutoRPP": {
"children": [
{
"pim6RpFilterP": {
"attributes": {
"status": "deleted"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<autorp-items>
<rpfilter-items xc:operation="delete">
</rpfilter-items>
</autorp-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim auto-rp rp-candidate-policy RtMap_1
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 Auto-RP Protocol RP-Distribution Configuration Policy for Filtering RP Candidate Messages with a Route Policy
Configuring the Auto-RP Protocol RP-Distribution Configuration Policy for Filtering RP Candidate Messages with a Route Policy
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AutoRPP": {
"children": [
{
"pim6RpFilterP": {
"attributes": {
"rtMap": "RT_POL"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<autorp-items>
<rpfilter-items>
<rtMap>RT_POL</rtMap>
</rpfilter-items>
</autorp-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim auto-rp rp-candidate-policy RT_POL
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 Auto-RP Protocol RP-Distribution Configuration Policy for Filtering RP Candidate Messages with a Route Policy
Deleting the Auto-RP Protocol RP-Distribution Configuration Policy for Filtering RP Candidate Messages with a Route Policy
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AutoRPP": {
"children": [
{
"pim6RpFilterP": {
"attributes": {
"status": "deleted"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<autorp-items>
<rpfilter-items xc:operation="delete">
</rpfilter-items>
</autorp-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim auto-rp rp-candidate-policy RT_POL
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 Policy for Filtering BSR Messages with a Route Map
Configuring the Policy for Filtering BSR Messages with a Route Map
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"children": [
{
"pim6BsrFilterP": {
"attributes": {
"rtMap": "RtMap_1"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<bsrfilter-items>
<rtMap>RtMap_1</rtMap>
</bsrfilter-items>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim bsr bsr-policy RtMap_1
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 Policy for Filtering BSR Messages with a Route Map
Deleting the Policy for Filtering BSR Messages with a Route Map
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"children": [
{
"pim6BsrFilterP": {
"attributes": {
"status": "deleted"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<bsrfilter-items xc:operation="delete">
</bsrfilter-items>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim bsr bsr-policy RtMap_1
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 Policy for Filtering BSR Messages with a Route Policy
Configuring the Policy for Filtering BSR Messages with a Route Policy
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"children": [
{
"pim6BsrFilterP": {
"attributes": {
"rtMap": "RT_POL"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<bsrfilter-items>
<rtMap>RT_POL</rtMap>
</bsrfilter-items>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim bsr bsr-policy RT_POL
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 Policy for Filtering BSR Messages with a Route Policy
Deleting the Policy for Filtering BSR Messages with a Route Policy
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"children": [
{
"pim6BsrFilterP": {
"attributes": {
"status": "deleted"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<bsrfilter-items xc:operation="delete">
</bsrfilter-items>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim bsr bsr-policy RT_POL
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 Bootstrap Protocol RP-Distribution Configuration Policy for Filtering RP Candidate Messages with a Route Map
Configuring the Bootstrap Protocol RP-Distribution Configuration Policy for Filtering RP Candidate Messages with a Route Map
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"children": [
{
"pim6RpFilterP": {
"attributes": {
"rtMap": "RtMap_1"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<rpfilter-items>
<rtMap>RtMap_1</rtMap>
</rpfilter-items>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim bsr rp-candidate-policy RtMap_1
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 Bootstrap Protocol RP-Distribution Configuration Policy for Filtering RP Candidate Messages with a Route Map
Deleting the Bootstrap Protocol RP-Distribution Configuration Policy for Filtering RP Candidate Messages with a Route Map
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"children": [
{
"pim6RpFilterP": {
"attributes": {
"status": "deleted"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<rpfilter-items xc:operation="delete">
</rpfilter-items>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim bsr rp-candidate-policy RtMap_1
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 Bootstrap Protocol RP-Distribution Configuration Policy for Filtering RP Candidate Messages with a Route Policy
Configuring the Bootstrap Protocol RP-Distribution Configuration Policy for Filtering RP Candidate Messages with a Route Policy
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"children": [
{
"pim6RpFilterP": {
"attributes": {
"rtMap": "RT_POL"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<rpfilter-items>
<rtMap>RT_POL</rtMap>
</rpfilter-items>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim bsr rp-candidate-policy RT_POL
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 Bootstrap Protocol RP-Distribution Configuration Policy for Filtering RP Candidate Messages with a Route Policy
Deleting the Bootstrap Protocol RP-Distribution Configuration Policy for Filtering RP Candidate Messages with a Route Policy
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6BsrP": {
"children": [
{
"pim6RpFilterP": {
"attributes": {
"status": "deleted"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<bsr-items>
<rpfilter-items xc:operation="delete">
</rpfilter-items>
</bsr-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim bsr rp-candidate-policy RT_POL
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 Policy for Receiving Register Messages with a Route Map
Configuring the Policy for Receiving Register Messages with a Route Map
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AsmPatP": {
"children": [
{
"pim6RegTrP": {
"attributes": {
"pfxList": "",
"rtMap": "RtMap_1"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<asm-items>
<reg-items>
<pfxList></pfxList>
<rtMap>RtMap_1</rtMap>
</reg-items>
</asm-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim register-policy RtMap_1
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 Policy for Receiving Register Messages with a Route Map
Deleting the Policy for Receiving Register Messages with a Route Map
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AsmPatP": {
"children": [
{
"pim6RegTrP": {
"attributes": {
"pfxList": "",
"rtMap": ""
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<asm-items>
<reg-items>
<pfxList></pfxList>
<rtMap></rtMap>
</reg-items>
</asm-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim register-policy RtMap_1
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 Policy for Receiving Register Messages with a Route Policy
Configuring the Policy for Receiving Register Messages with a Route Policy
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AsmPatP": {
"children": [
{
"pim6RegTrP": {
"attributes": {
"pfxList": "",
"rtMap": "RT_POL"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<asm-items>
<reg-items>
<pfxList></pfxList>
<rtMap>RT_POL</rtMap>
</reg-items>
</asm-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim register-policy RT_POL
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 Policy for Receiving Register Messages with a Route Policy
Deleting the Policy for Receiving Register Messages with a Route Policy
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6AsmPatP": {
"children": [
{
"pim6RegTrP": {
"attributes": {
"pfxList": "",
"rtMap": ""
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<asm-items>
<reg-items>
<pfxList></pfxList>
<rtMap></rtMap>
</reg-items>
</asm-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim register-policy RT_POL
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 Group Range Policy for SSM Range
Configuring the Group Range Policy for SSM Range
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6SsmPatP": {
"children": [
{
"pim6SsmRangeP": {
"attributes": {
"grpList": "::",
"grpList1": "::",
"grpList2": "::",
"grpList3": "::",
"pfxList": "",
"rtMap": "RtMap_1",
"ssmNone": "no"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<ssm-items>
<range-items>
<grpList>::</grpList>
<grpList1>::</grpList1>
<grpList2>::</grpList2>
<grpList3>::</grpList3>
<pfxList></pfxList>
<rtMap>RtMap_1</rtMap>
<ssmNone>false</ssmNone>
</range-items>
</ssm-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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.
ipv6 pim ssm route-map RtMap_1
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 Group Range Policy for SSM Range
Deleting the Group Range Policy for SSM Range
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default"
},
"children": [
{
"pim6SsmPatP": {
"children": [
{
"pim6SsmRangeP": {
"attributes": {
"status": "deleted"
}}}]}}]}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<ssm-items>
<range-items xc:operation="delete">
</range-items>
</ssm-items>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(1).
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 ipv6 pim ssm route-map RtMap_1
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
Isolating a Router From an IPv6 PIM Perspective
Isolating a Router From an IPv6 PIM Perspective
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Gl": {
"attributes": {
"isolate": "yes"
}}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<gl-items>
<isolate>true</isolate>
</gl-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(2).
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.
ipv6 pim isolate
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
For detailed information about classes and attributes in the payload, see the NX-API DME Model Reference:
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 a Router Isolated From an IPv6 PIM Perspective
Deleting a Router Isolated From an IPv6 PIM Perspective
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Gl": {
"attributes": {
"isolate": "no"
}}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<gl-items>
<isolate>false</isolate>
</gl-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(2).
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 ipv6 pim isolate
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
For detailed information about classes and attributes in the payload, see the NX-API DME Model Reference:
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 IPv6 Syslog Filter Level for PIM6
Configuring the IPv6 Syslog Filter Level for PIM6
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Gl": {
"attributes": {
"logLvl": "1"
}}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<gl-items>
<logLvl>1</logLvl>
</gl-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(2).
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.
logging level ipv6 pim 1
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
For detailed information about classes and attributes in the payload, see the NX-API DME Model Reference:
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 IPv6 Syslog Filter Level for PIM6
Deleting the IPv6 Syslog Filter Level for PIM6
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Gl": {
"attributes": {
"logLvl": "0"
}}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<gl-items>
<logLvl>0</logLvl>
</gl-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(2).
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 logging level ipv6 pim 1
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
For detailed information about classes and attributes in the payload, see the NX-API DME Model Reference:
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 Join-Prune Messages to Inter-Packet Delay
Configuring Join-Prune Messages to Inter-Packet Delay
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"jpDelay": "123",
"name": "default"
}}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<jpDelay>123</jpDelay>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(2).
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.
ipv6 pim jp-delay 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
For detailed information about classes and attributes in the payload, see the NX-API DME Model Reference:
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 Join-Prune Messages to Inter-Packet Delay
Deleting Join-Prune Messages to Inter-Packet Delay
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"jpDelay": "100",
"name": "default"
}}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<jpDelay>100</jpDelay>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(2).
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 ipv6 pim jp-delay 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
For detailed information about classes and attributes in the payload, see the NX-API DME Model Reference:
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 Rate Limit for PIM Data Registers
Configuring the Rate Limit for PIM Data Registers
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default",
"regRateLmt": "123"
}}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<regRateLmt>123</regRateLmt>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(2).
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.
ipv6 pim register-rate-limit 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
For detailed information about classes and attributes in the payload, see the NX-API DME Model Reference:
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 Rate Limit for PIM Data Registers
Deleting the Rate Limit for PIM Data Registers
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
"pim6Inst": {
"children": [
{
"pim6Dom": {
"attributes": {
"name": "default",
"regRateLmt": "0"
}}}]}}
{
imdata:[]
}
<System>
<pim6-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<regRateLmt>0</regRateLmt>
</Dom-list>
</dom-items>
</inst-items>
</pim6-items>
</System>
Note: This example was added in Release 9.2(2).
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 ipv6 pim register-rate-limit 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
For detailed information about classes and attributes in the payload, see the NX-API DME Model Reference:
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