Configuring PIM6 on a VRF

Configuring an RP in an Anycast-RP Set (Using PIM6)

Configuring an RP in an Anycast-RP Set (Using PIM6) 
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AcastRpFuncP": {
                            "children": [
                              {
                                "pim6AcastRpPeer": {
                                  "attributes": {
                                    "addr": "1:2::3:4/128",
                                    "rpSetAddr": "4:3::2:1/128"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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 (Using PIM6)

Deleting an RP in an Anycast-RP Set (Using PIM6) 
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AcastRpFuncP": {
                            "children": [
                              {
                                "pim6AcastRpPeer": {
                                  "attributes": {
                                    "addr": "1:2::3:4/128",
                                    "rpSetAddr": "4:3::2:1/128",
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "flushRoutes": "yes",
                        "name": "VRF_1"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "flushRoutes": "no",
                        "name": "VRF_1"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "logNbhChng": "yes",
                        "name": "VRF_1"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "logNbhChng": "no",
                        "name": "VRF_1"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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

Creating a Configuration to Listen to Bootstrap Messages

Creating a Configuration to Listen to Bootstrap Messages 
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "attributes": {
                              "ctrl": "listen"
                            }
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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 to Listen to Bootstrap Messages

Deleting to Listen to Bootstrap Messages 
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "attributes": {
                              "ctrl": ""
                            }
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "attributes": {
                              "ctrl": "forward"
                            }
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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 the Configuration to Forward Bootstrap Messages

Deleting the Configuration to Forward Bootstrap Messages 
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "attributes": {
                              "ctrl": ""
                            }
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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 Rangs Through Policy

Configuring the Group Rangs Through Policy 
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AsmPatP": {
                            "children": [
                              {
                                "pim6SharedRangeP": {
                                  "attributes": {
                                    "pfxList": "",
                                    "rtMap": "RT_Map1",
                                    "useSPTCommand": "no"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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 Rangs Through Policy

Deleting the Group Rangs Through Policy 
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AsmPatP": {
                            "children": [
                              {
                                "pim6SharedRangeP": {
                                  "attributes": {
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AsmPatP": {
                            "children": [
                              {
                                "pim6SharedRangeP": {
                                  "attributes": {
                                    "pfxList": "",
                                    "rtMap": "RtMap_1",
                                    "useSPTCommand": "yes"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AsmPatP": {
                            "children": [
                              {
                                "pim6SharedRangeP": {
                                  "attributes": {
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "children": [
                              {
                                "pim6BsrFuncP": {
                                  "attributes": {
                                    "hashLen": "10",
                                    "interval": "60",
                                    "prio": "123",
                                    "srcIf": "eth1/1"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "children": [
                              {
                                "pim6BsrFuncP": {
                                  "attributes": {
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "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>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "children": [
                              {
                                "pim6RpFuncP": {
                                  "attributes": {
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "children": [
                              {
                                "pim6RpFuncP": {
                                  "attributes": {
                                    "interval": "12",
                                    "prio": "123",
                                    "srcIf": "eth1/1"
                                  },
                                  "children": [
                                    {
                                      "pim6RpGrpRange": {
                                        "attributes": {
                                          "bidir": "no",
                                          "grpList": "::",
                                          "pfxList": "",
                                          "rtMap": "RtMap_1"
                                        }
                                      }
                                    }
                                  ]
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "children": [
                              {
                                "pim6RpFuncP": {
                                  "attributes": {
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6StaticRPP": {
                            "children": [
                              {
                                "pim6StaticRP": {
                                  "attributes": {
                                    "addr": "1:2::3:4/128"
                                  },
                                  "children": [
                                    {
                                      "pim6RpGrpRange": {
                                        "attributes": {
                                          "bidir": "no",
                                          "override": "no",
                                          "pfxList": "",
                                          "rtMap": "RtMap_1"
                                        }
                                      }
                                    }
                                  ]
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6StaticRPP": {
                            "children": [
                              {
                                "pim6StaticRP": {
                                  "attributes": {
                                    "addr": "1:2::3:4/128",
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "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>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6StaticRPP": {
                            "children": [
                              {
                                "pim6StaticRP": {
                                  "attributes": {
                                    "addr": "1:2::3:4/128",
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6ResP": {
                            "attributes": {
                              "max": "1234",
                              "rsvd": "123",
                              "rtMap": "RtMap_1"
                            }
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6ResP": {
                            "attributes": {
                              "status": "deleted"
                            }
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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

Deleting the router configuration to send Auto-RP Announce messages

Deleting the router configuration to send Auto-RP Announce messages
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AutoRPP": {
                            "children": [
                              {
                                "pim6RpFuncP": {
                                  "attributes": {
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</name>
          <autorp-items>
            <rpfunc-items xc:operation="delete">
            </rpfunc-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.

vrf context VRF_1
 no ipv6 pim send-rp-announce ethernet 1/1 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 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AutoRPP": {
                            "children": [
                              {
                                "pim6MaFilterP": {
                                  "attributes": {
                                    "rtMap": "RtMap_1"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AutoRPP": {
                            "children": [
                              {
                                "pim6MaFilterP": {
                                  "attributes": {
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AutoRPP": {
                            "children": [
                              {
                                "pim6MaFilterP": {
                                  "attributes": {
                                    "rtMap": "RT_POL"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AutoRPP": {
                            "children": [
                              {
                                "pim6MaFilterP": {
                                  "attributes": {
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AutoRPP": {
                            "children": [
                              {
                                "pim6RpFilterP": {
                                  "attributes": {
                                    "rtMap": "RtMap_1"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AutoRPP": {
                            "children": [
                              {
                                "pim6RpFilterP": {
                                  "attributes": {
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AutoRPP": {
                            "children": [
                              {
                                "pim6RpFilterP": {
                                  "attributes": {
                                    "rtMap": "RT_POL"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AutoRPP": {
                            "children": [
                              {
                                "pim6RpFilterP": {
                                  "attributes": {
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "children": [
                              {
                                "pim6BsrFilterP": {
                                  "attributes": {
                                    "rtMap": "RtMap_1"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "children": [
                              {
                                "pim6BsrFilterP": {
                                  "attributes": {
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "children": [
                              {
                                "pim6BsrFilterP": {
                                  "attributes": {
                                    "rtMap": "RT_POL"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "children": [
                              {
                                "pim6BsrFilterP": {
                                  "attributes": {
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "children": [
                              {
                                "pim6RpFilterP": {
                                  "attributes": {
                                    "rtMap": "RtMap_1"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "children": [
                              {
                                "pim6RpFilterP": {
                                  "attributes": {
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "children": [
                              {
                                "pim6RpFilterP": {
                                  "attributes": {
                                    "rtMap": "RT_POL"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6BsrP": {
                            "children": [
                              {
                                "pim6RpFilterP": {
                                  "attributes": {
                                    "status": "deleted"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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 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": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AutoRPP": {
                            "attributes": {
                              "ctrl": "listen"
                            }
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AutoRPP": {
                            "attributes": {
                              "ctrl": ""
                            }
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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

Configuring the Enabling Forwading of Auto-RP Messages

Configuring the Enabling Forwading of Auto-RP Messages 
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AutoRPP": {
                            "attributes": {
                              "ctrl": "forward"
                            }
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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

Deleting the Enabling Forwading of Auto-RP Messages

Deleting the Enabling Forwading of Auto-RP Messages 
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AutoRPP": {
                            "attributes": {
                              "ctrl": ""
                            }
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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

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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AsmPatP": {
                            "children": [
                              {
                                "pim6RegTrP": {
                                  "attributes": {
                                    "pfxList": "",
                                    "rtMap": "RtMap_1"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AsmPatP": {
                            "children": [
                              {
                                "pim6RegTrP": {
                                  "attributes": {
                                    "pfxList": "",
                                    "rtMap": ""
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AsmPatP": {
                            "children": [
                              {
                                "pim6RegTrP": {
                                  "attributes": {
                                    "pfxList": "",
                                    "rtMap": "RT_POL"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "pim6AsmPatP": {
                            "children": [
                              {
                                "pim6RegTrP": {
                                  "attributes": {
                                    "pfxList": "",
                                    "rtMap": ""
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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 Join-Prune Messages to Inter-Packet Delay

Configuring Join-Prune Messages to Inter-Packet Delay
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "jpDelay": "123",
                        "name": "VRF_1"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "jpDelay": "100",
                        "name": "VRF_1"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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.json
{
  "topSystem": {
    "children": [
      {
        "l3Inst": {
          "attributes": {
            "name": "VRF_1"
          }
        }
      },
      {
        "pim6Entity": {
          "children": [
            {
              "pim6Inst": {
                "children": [
                  {
                    "pim6Dom": {
                      "attributes": {
                        "name": "VRF_1",
                        "regRateLmt": "123"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <inst-items>
    <Inst-list>
      <name>VRF_1</name>
    </Inst-list>
  </inst-items>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>VRF_1</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.

vrf context VRF_1
 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