Configuring Ipv6 Routing Information
Configuring the M6RIB Notification Interval
Configuring the M6RIB Notification Interval
POST http://<mgmt0_IP>/api/mo/sys/m6rib/inst.json
{
"m6ribInst": {
"children": [
{
"m6ribDom": {
"attributes": {
"name": "default"
},
"children": [
{
"m6ribNotify": {
"attributes": {
"interval": "12"
}}}]}}]}}
{
imdata:[]
}
<System>
<m6rib-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<notify-items>
<interval>12</interval>
</notify-items>
</Dom-list>
</dom-items>
</inst-items>
</m6rib-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 multicast notify-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 M6RIB Notification Interval
Deleting M6RIB Notification Interval
POST http://<mgmt0_IP>/api/mo/sys/m6rib/inst.json
{
"m6ribInst": {
"children": [
{
"m6ribDom": {
"attributes": {
"name": "default"
},
"children": [
{
"m6ribNotify": {
"attributes": {
"status": "deleted"
}}}]}}]}}
{
imdata:[]
}
<System>
<m6rib-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<notify-items xc:operation="delete">
</notify-items>
</Dom-list>
</dom-items>
</inst-items>
</m6rib-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 multicast notify-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 to Drop all RPF-failed Packets in Hardware
Configuring to Drop all RPF-failed Packets in Hardware
POST http://<mgmt0_IP>/api/mo/sys/m6rib/inst.json
{
"m6ribInst": {
"children": [
{
"m6ribDom": {
"attributes": {
"name": "default"
},
"children": [
{
"m6ribRpfMeter": {
"attributes": {
"hwDropAll": "yes"
}}}]}}]}}
{
imdata:[]
}
<System>
<m6rib-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<rpfmeter-items>
<hwDropAll>true</hwDropAll>
</rpfmeter-items>
</Dom-list>
</dom-items>
</inst-items>
</m6rib-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 multicast rpf-meter hardware-drop-all
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 Configuration to Drop all RPF-failed Packets in Hardware
Deleting the Configuration to Drop all RPF-failed Packets in Hardware
POST http://<mgmt0_IP>/api/mo/sys/m6rib/inst.json
{
"m6ribInst": {
"children": [
{
"m6ribDom": {
"attributes": {
"name": "default"
},
"children": [
{
"m6ribRpfMeter": {
"attributes": {
"status": "deleted"
}}}]}}]}}
{
imdata:[]
}
<System>
<m6rib-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<rpfmeter-items xc:operation="delete">
</rpfmeter-items>
</Dom-list>
</dom-items>
</inst-items>
</m6rib-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 multicast rpf-meter hardware-drop-all
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 Initial Holddown Period
Configuring the Initial Holddown Period
POST http://<mgmt0_IP>/api/mo/sys/m6rib/inst.json
{
"m6ribInst": {
"children": [
{
"m6ribDom": {
"attributes": {
"name": "default"
},
"children": [
{
"m6ribConfig": {
"attributes": {
"holdEnable": "enabled",
"holddown": "123"
}}}]}}]}}
{
imdata:[]
}
<System>
<m6rib-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<config-items>
<holdEnable>enabled</holdEnable>
<holddown>123</holddown>
</config-items>
</Dom-list>
</dom-items>
</inst-items>
</m6rib-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 routing multicast holddown 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 Initial Holddown Period
Deleting the Initial Holddown Period
POST http://<mgmt0_IP>/api/mo/sys/m6rib/inst.json
{
"m6ribInst": {
"children": [
{
"m6ribDom": {
"attributes": {
"name": "default"
},
"children": [
{
"m6ribConfig": {
"attributes": {
"holdEnable": "enabled",
"holddown": "210"
}}}]}}]}}
{
imdata:[]
}
<System>
<m6rib-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<config-items>
<holdEnable>enabled</holdEnable>
<holddown>210</holddown>
</config-items>
</Dom-list>
</dom-items>
</inst-items>
</m6rib-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 routing multicast holddown 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 Initial Holddown Period
Configuring the Initial Holddown Period
POST http://<mgmt0_IP>/api/mo/sys/m6rib/inst.json
{
"m6ribInst": {
"children": [
{
"m6ribDom": {
"attributes": {
"name": "default"
},
"children": [
{
"m6ribConfig": {
"attributes": {
"holdEnable": "disabled"
}}}]}}]}}
{
imdata:[]
}
<System>
<m6rib-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<config-items>
<holdEnable>disabled</holdEnable>
</config-items>
</Dom-list>
</dom-items>
</inst-items>
</m6rib-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 routing multicast holddown 0
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 Initial Holddown Period
Deleting the Initial Holddown Period
POST http://<mgmt0_IP>/api/mo/sys/m6rib/inst.json
{
"m6ribInst": {
"children": [
{
"m6ribDom": {
"attributes": {
"name": "default"
},
"children": [
{
"m6ribConfig": {
"attributes": {
"holdEnable": "enabled",
"holddown": "210"
}}}]}}]}}
{
imdata:[]
}
<System>
<m6rib-items>
<inst-items>
<dom-items>
<Dom-list>
<name>default</name>
<config-items>
<holdEnable>enabled</holdEnable>
<holddown>210</holddown>
</config-items>
</Dom-list>
</dom-items>
</inst-items>
</m6rib-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 routing multicast holddown 0
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