Configuring Global MLD Snooping

MLD snooping can be enabled and disabled in the global configuration mode as well as in the VLAN configuration mode. Snooping is disabled by default in the global configuration mode and enabled per VLAN. Snooping is operational on a VLAN only if it is enabled both on the VLAN as well is in the global configuration mode.

For more information, see the Cisco Nexus 9000 Series NX-OS Multicast Routing Configuration Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-installation-and-configuration-guides-list.html/

Configuring MLD Snooping

Configuring MLD Snooping
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopGVlan": {
          "attributes": {
            "mldSnoop": "yes"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <gvlan-items>
            <mldSnoop>true</mldSnoop>
          </gvlan-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopGVlan sys/mldsnoop/inst/dom/gl/gvlan


mldsnoopGVlan Properties

The following table contains information about the mldsnoopGVlan properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
mldSnoopmldsnoop:MldSnoopGl
(scalar:Bool)
Enable/Disable MLD Snooping globallySELECTION: true or false
DEFAULT: false


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting MLD Snooping

Deleting MLD Snooping
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopGVlan": {
          "attributes": {
            "mldSnoop": "no"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <gvlan-items>
            <mldSnoop>false</mldSnoop>
          </gvlan-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopGVlan sys/mldsnoop/inst/dom/gl/gvlan


mldsnoopGVlan Properties

The following table contains information about the mldsnoopGVlan properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
mldSnoopmldsnoop:MldSnoopGl
(scalar:Bool)
Enable/Disable MLD Snooping globallySELECTION: true or false
DEFAULT: false


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring IPv6 MLD Snooping System Management

Configuring IPv6 MLD Snooping System Management
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "platformEntity": {
          "attributes": {
            "mldSnooping": "enable"
}}}]}}
{
    imdata:[]
}
<System>
  <pltfm-items>
    <mldSnooping>enable</mldSnooping>
  </pltfm-items>
</System>

Note: This example was added in Release 9.3(3).


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.

system mld snooping


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
topSystem sys
platformEntity sys/pltfm


platformEntity Properties

The following table contains information about the platformEntity properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
mldSnoopingplatform:MldSnooping
(scalar:Enum8)
Used to enable/disable system mld snoopingSELECTION:
false
true
DEFAULT: false


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Disabling IPv6 MLD Snooping System Management

Disabling IPv6 MLD Snooping System Management
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "platformEntity": {
          "attributes": {
            "mldSnooping": "disable"
}}}]}}
{
    imdata:[]
}
<System>
  <pltfm-items>
    <mldSnooping>disable</mldSnooping>
  </pltfm-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no system mld snooping


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
topSystem sys
platformEntity sys/pltfm


platformEntity Properties

The following table contains information about the platformEntity properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
mldSnoopingplatform:MldSnooping
(scalar:Enum8)
Used to enable/disable system mld snoopingSELECTION:
0 - disable
1 - enable
DEFAULT: disable


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring General Query Miss Count

Configuring General Query Miss Count 
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopGTimers": {
          "attributes": {
            "maxGqMiss": "3"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <gtimers-items>
            <maxGqMiss>3</maxGqMiss>
          </gtimers-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping max-gq-miss 3


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopGTimers sys/mldsnoop/inst/dom/gl/gtimers


mldsnoopGTimers Properties

The following table contains information about the mldsnoopGTimers properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
maxGqMissipmcsnoop:MaxGqMiss
(scalar:Uint16)
Maximum General Query Miss Count
RANGE: [3 , 5]
DEFAULT: 3


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting General Query Miss Count

Deleting General Query Miss Count 
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopGTimers": {
          "attributes": {
            "maxGqMiss": "3"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <gtimers-items>
            <maxGqMiss>3</maxGqMiss>
          </gtimers-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping max-gq-miss 3


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopGTimers sys/mldsnoop/inst/dom/gl/gtimers


mldsnoopGTimers Properties

The following table contains information about the mldsnoopGTimers properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
maxGqMissipmcsnoop:MaxGqMiss
(scalar:Uint16)
Maximum General Query Miss Count
RANGE: [3 , 5]
DEFAULT: 3


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring MLDv1 Report Suppression for the VLAN/BD

Configuring MLDv1 Report Suppression for the VLAN/BD
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopMldsnBase": {
          "attributes": {
            "reportSuppr": "yes"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <mldsnbase-items>
            <reportSuppr>true</reportSuppr>
          </mldsnbase-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping report-suppression


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopMldsnBase sys/mldsnoop/inst/dom/gl/mldsnbase


mldsnoopMldsnBase Properties

The following table contains information about the mldsnoopMldsnBase properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
reportSuppripmcsnoop:ReportSuppr
(scalar:Bool)
MLDv1 report Suppression for VLANSELECTION: true or false
DEFAULT: 1


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting MLDv1 Report Suppression for the VLAN/BD

Deleting MLDv1 Report Suppression for the VLAN/BD
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopMldsnBase": {
          "attributes": {
            "reportSuppr": "no"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <mldsnbase-items>
            <reportSuppr>false</reportSuppr>
          </mldsnbase-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping report-suppression


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopMldsnBase sys/mldsnoop/inst/dom/gl/mldsnbase


mldsnoopMldsnBase Properties

The following table contains information about the mldsnoopMldsnBase properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
reportSuppripmcsnoop:ReportSuppr
(scalar:Bool)
MLDv1 report Suppression for VLANSELECTION: true or false
DEFAULT: 1


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring VLAN/BD link-Local Group Suppression
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopMldsnBase": {
          "attributes": {
            "llGrpSuppr": "yes"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <mldsnbase-items>
            <llGrpSuppr>true</llGrpSuppr>
          </mldsnbase-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping link-local-groups-suppression


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopMldsnBase sys/mldsnoop/inst/dom/gl/mldsnbase


mldsnoopMldsnBase Properties

The following table contains information about the mldsnoopMldsnBase properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
llGrpSuppripmcsnoop:LlGrpSuppr
(scalar:Bool)
Link Local Group SuppressionSELECTION: true or false
DEFAULT: 1


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting VLAN/BD link-Local Group Suppression
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopMldsnBase": {
          "attributes": {
            "llGrpSuppr": "no"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <mldsnbase-items>
            <llGrpSuppr>false</llGrpSuppr>
          </mldsnbase-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping link-local-groups-suppression


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopMldsnBase sys/mldsnoop/inst/dom/gl/mldsnbase


mldsnoopMldsnBase Properties

The following table contains information about the mldsnoopMldsnBase properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
llGrpSuppripmcsnoop:LlGrpSuppr
(scalar:Bool)
Link Local Group SuppressionSELECTION: true or false
DEFAULT: 1


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring Group Membership Timeout

Configuring Group Membership Timeout 
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopGTimers": {
          "attributes": {
            "grpTimeout": "8865"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <gtimers-items>
            <grpTimeout>8865</grpTimeout>
          </gtimers-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping group-timeout 8865


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopGTimers sys/mldsnoop/inst/dom/gl/gtimers


mldsnoopGTimers Properties

The following table contains information about the mldsnoopGTimers properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
grpTimeoutmcast:GrpTimeout
(scalar:Uint16)
Group Membership Timeout
RANGE: 1-10080, never


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting Group Membership Timeout

Deleting Group Membership Timeout 
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopGTimers": {
          "attributes": {
            "grpTimeout": "none"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <gtimers-items>
            <grpTimeout>0</grpTimeout>
          </gtimers-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping group-timeout 8865


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopGTimers sys/mldsnoop/inst/dom/gl/gtimers


mldsnoopGTimers Properties

The following table contains information about the mldsnoopGTimers properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
grpTimeoutmcast:GrpTimeout
(scalar:Uint16)
Group Membership Timeout
RANGE: 1-10080


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring MLD Snooping to Never Expire Ports from Group Membership

Configuring MLD Snooping to Never Expire Ports from Group Membership
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopGTimers": {
          "attributes": {
            "grpTimeout": "never"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <gtimers-items>
            <grpTimeout>10081</grpTimeout>
          </gtimers-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping group-timeout never


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopGTimers sys/mldsnoop/inst/dom/gl/gtimers


mldsnoopGTimers Properties

The following table contains information about the mldsnoopGTimers properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
grpTimeoutmcast:GrpTimeout
(scalar:Uint16)
Group Membership Timeout
RANGE: [1, 10080], never


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting MLD Snooping to Never Expire Ports from Group Membership

Deleting MLD Snooping to Never Expire Ports from Group Membership
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopGTimers": {
          "attributes": {
            "grpTimeout": "none"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <gtimers-items>
            <grpTimeout>0</grpTimeout>
          </gtimers-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping group-timeout never


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopGTimers sys/mldsnoop/inst/dom/gl/gtimers


mldsnoopGTimers Properties

The following table contains information about the mldsnoopGTimers properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
grpTimeoutmcast:GrpTimeout
(scalar:Uint16)
Group Membership Timeout
RANGE: [1, 10080], never


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring MRT in Seconds

Configuring MRT in Seconds 
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopProxy": {
          "attributes": {
            "maxRespTime": "11"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <proxy-items>
            <maxRespTime>11</maxRespTime>
          </proxy-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping proxy general-queries mrt 11


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopProxy sys/mldsnoop/inst/dom/gl/proxy


mldsnoopProxy Properties

The following table contains information about the mldsnoopProxy properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
maxRespTimeipmcsnoop:Mrt
(scalar:Uint16)
Configures MRT for Switch's Proxy General-Queries
RANGE: [0 , 25]
DEFAULT: 5


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting MRT in Seconds

Deleting MRT in Seconds 
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopProxy": {
          "attributes": {
            "maxRespTime": "5"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <proxy-items>
            <maxRespTime>5</maxRespTime>
          </proxy-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping proxy general-queries mrt 11


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopProxy sys/mldsnoop/inst/dom/gl/proxy


mldsnoopProxy Properties

The following table contains information about the mldsnoopProxy properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
maxRespTimeipmcsnoop:Mrt
(scalar:Uint16)
Configures MRT for Switch's Proxy General-Queries
RANGE: [0 , 25]
DEFAULT: 5


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring the Initial Holddown Period After Switchover/Restart

Configuring the Initial Holddown Period After Switchover/Restart 
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopMcTraf": {
          "attributes": {
            "holddownTimer": "118"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <mctraf-items>
            <holddownTimer>118</holddownTimer>
          </mctraf-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping holddown-timer 118


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopMcTraf sys/mldsnoop/inst/dom/gl/mctraf


mldsnoopMcTraf Properties

The following table contains information about the mldsnoopMcTraf properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
holddownTimermcast:HolddownTimer
(scalar:Uint16)
Configures Initial Holddown Period After Switchover/Restart
RANGE: [1 , 300]
DEFAULT: 210


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting the Initial Holddown Period After Switchover/Restart

Deleting the Initial Holddown Period After Switchover/Restart 
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopMcTraf": {
          "attributes": {
            "holddownTimer": "210"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <mctraf-items>
            <holddownTimer>210</holddownTimer>
          </mctraf-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping holddown-timer 118


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopMcTraf sys/mldsnoop/inst/dom/gl/mctraf


mldsnoopMcTraf Properties

The following table contains information about the mldsnoopMcTraf properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
holddownTimermcast:HolddownTimer
(scalar:Uint16)
Configures Initial Holddown Period After Switchover/Restart
RANGE: [1 , 300]
DEFAULT: 210


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring the Size for VLAN/BD Events for MLD-Snoop

Configuring the Size for VLAN/BD Events for MLD-Snoop 
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "small",
            "type": "vlan"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>vlan</type>
              <size>2</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping event-history vlan size small


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-vlan


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 3
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting the Size for VLAN/BD Events for MLD-Snoop

Deleting the Size for VLAN/BD Events for MLD-Snoop 
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "status": "deleted",
            "type": "vlan"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list nc:operation="delete">
              <type>vlan</type>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping event-history vlan size small


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-vlan


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
statusmo:ModificationStatus
(scalar:Bitmask32)
The upgrade status. This property is for internal use only.SELECTION:
2 - created
4 - modified
8 - deleted
16 - replaced
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring the Event History Buffer Size for VLAN/BD Events

Configuring the Event History Buffer Size for VLAN/BD Events 
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "medium",
            "type": "vlan-events"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>vlan-events</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping event-history vlan-events size medium


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-vlan-events


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 2
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting the Event History Buffer Size for VLAN/BD Events

Deleting the Event History Buffer Size for VLAN/BD Events 
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "status": "deleted",
            "type": "vlan-events"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list nc:operation="delete">
              <type>vlan-events</type>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping event-history vlan-events size medium


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-vlan-events


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
statusmo:ModificationStatus
(scalar:Bitmask32)
The upgrade status. This property is for internal use only.SELECTION:
2 - created
4 - modified
8 - deleted
16 - replaced
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring Event History Buffer for MLD-Snoop Internal Events

Configuring Event History Buffer for MLD-Snoop Internal Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "disabled",
            "type": "mld-snoop-internal"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>mld-snoop-internal</type>
              <size>1</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping event-history mld-snoop-internal size disabled


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-mld-snoop-internal


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 4
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting Event History Buffer for MLD-Snoop Internal Events

Deleting Event History Buffer for MLD-Snoop Internal Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "status": "deleted",
            "type": "mld-snoop-internal"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list nc:operation="delete">
              <type>mld-snoop-internal</type>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping event-history mld-snoop-internal size disabled


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-mld-snoop-internal


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
statusmo:ModificationStatus
(scalar:Bitmask32)
The upgrade status. This property is for internal use only.SELECTION:
2 - created
4 - modified
8 - deleted
16 - replaced
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring the Event History Buffer Size for MFDM-SUM Events

Configuring the Event History Buffer Size for MFDM-SUM Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "disabled",
            "type": "mfdm-sum"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>mfdm-sum</type>
              <size>1</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping event-history mfdm-sum size disabled


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-mfdm-sum


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 2
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting the Event History Buffer Size for MFDM-SUM Events

Deleting the Event History Buffer Size for MFDM-SUM Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "status": "deleted",
            "type": "mfdm-sum"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list nc:operation="delete">
              <type>mfdm-sum</type>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping event-history mfdm-sum size disabled


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-mfdm-sum


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
statusmo:ModificationStatus
(scalar:Bitmask32)
The upgrade status. This property is for internal use only.SELECTION:
2 - created
4 - modified
8 - deleted
16 - replaced
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring the Event History Buffer Size for VPC Events

Configuring the Event History Buffer Size for VPC Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "disabled",
            "type": "vpc"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>vpc</type>
              <size>1</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping event-history vpc size disabled


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-vpc


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 4
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting the Event History Buffer Size for VPC Events

Deleting the Event History Buffer Size for VPC Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "status": "deleted",
            "type": "vpc"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list nc:operation="delete">
              <type>vpc</type>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping event-history vpc size disabled


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-vpc


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
statusmo:ModificationStatus
(scalar:Bitmask32)
The upgrade status. This property is for internal use only.SELECTION:
2 - created
4 - modified
8 - deleted
16 - replaced
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring the Event History Size for RIB events

Configuring the Event History Size for RIB events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "disabled",
            "type": "rib"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>rib</type>
              <size>1</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping event-history rib size disabled


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-rib


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 4
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting the Event History Size for RIB events

Deleting the Event History Size for RIB events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "status": "deleted",
            "type": "rib"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list nc:operation="delete">
              <type>rib</type>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping event-history rib size disabled


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-rib


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
statusmo:ModificationStatus
(scalar:Bitmask32)
The upgrade status. This property is for internal use only.SELECTION:
2 - created
4 - modified
8 - deleted
16 - replaced
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring the VPC Peer Link as Static Mrouter for all VLANs/BDs
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopMRouter": {
          "attributes": {
            "vpcPeerLink": "yes"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <mrouter-items>
            <vpcPeerLink>true</vpcPeerLink>
          </mrouter-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping mrouter vpc-peer-link


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopMRouter sys/mldsnoop/inst/dom/gl/mrouter


mldsnoopMRouter Properties

The following table contains information about the mldsnoopMRouter properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
vpcPeerLinkipmcsnoop:Vpc
(scalar:Bool)
Specify vpc-peer-link as Static Mrouter for all VLAN/BDSELECTION: true or false
DEFAULT: 1


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting the VPC Peer Link as Static Mrouter for all VLANs/BDs
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopMRouter": {
          "attributes": {
            "vpcPeerLink": "no"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <mrouter-items>
            <vpcPeerLink>false</vpcPeerLink>
          </mrouter-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping mrouter vpc-peer-link


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopMRouter sys/mldsnoop/inst/dom/gl/mrouter


mldsnoopMRouter Properties

The following table contains information about the mldsnoopMRouter properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
vpcPeerLinkipmcsnoop:Vpc
(scalar:Bool)
Specify vpc-peer-link as Static Mrouter for all VLAN/BDSELECTION: true or false
DEFAULT: 1


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Disabling NVE as a Static Router Port

Disabling NVE as a Static Router Port
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopGVlan": {
          "attributes": {
            "disableNveStRtrPort": "yes"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <gvlan-items>
            <disableNveStRtrPort>true</disableNveStRtrPort>
          </gvlan-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping disable-nve-static-router-port


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopGVlan sys/mldsnoop/inst/dom/gl/gvlan


mldsnoopGVlan Properties

The following table contains information about the mldsnoopGVlan properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
disableNveStRtrPortipmcsnoop:DisableNveStRtrPort
(scalar:Bool)
Disable NVE Static Router PortSELECTION: true or false
DEFAULT: 0


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Enabling NVE as a Static Router Port

Enabling NVE as a Static Router Port
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopGVlan": {
          "attributes": {
            "disableNveStRtrPort": "no"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <gvlan-items>
            <disableNveStRtrPort>false</disableNveStRtrPort>
          </gvlan-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping disable-nve-static-router-port


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopGVlan sys/mldsnoop/inst/dom/gl/gvlan


mldsnoopGVlan Properties

The following table contains information about the mldsnoopGVlan properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
disableNveStRtrPortipmcsnoop:DisableNveStRtrPort
(scalar:Bool)
Disable NVE Static Router PortSELECTION: true or false
DEFAULT: 0


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring MLD Snooping Table Syslog Threshold

Configuring MLD Snooping Table Syslog Threshold 
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopGDebug": {
          "attributes": {
            "syslogThreshold": "80"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <gdebug-items>
            <syslogThreshold>80</syslogThreshold>
          </gdebug-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping syslog-threshold 80


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopGDebug sys/mldsnoop/inst/dom/gl/gdebug


mldsnoopGDebug Properties

The following table contains information about the mldsnoopGDebug properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
syslogThresholdipmcsnoop:SyslogThrshold
(scalar:Uint16)
IGMP Snooping Syslog Threshold Percentage
RANGE: [1 , 100]
DEFAULT: 90


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting MLD Snooping Table Syslog Threshold

Deleting MLD Snooping Table Syslog Threshold 
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopGDebug": {
          "attributes": {
            "syslogThreshold": "90"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <gdebug-items>
            <syslogThreshold>90</syslogThreshold>
          </gdebug-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(3).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping syslog-threshold 80


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopGDebug sys/mldsnoop/inst/dom/gl/gdebug


mldsnoopGDebug Properties

The following table contains information about the mldsnoopGDebug properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
syslogThresholdipmcsnoop:SyslogThrshold
(scalar:Uint16)
IGMP Snooping Syslog Threshold Percentage
RANGE: [1 , 100]
DEFAULT: 90


Related Documentation

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:

https://developer.cisco.com/site/nx-os/docs/nexus-model-reference/

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide:

https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring IPv6 MLD Snooping Events

Configuring IPv6 MLD Snooping Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopGVlan": {
          "attributes": {
            "mldSnoop": "yes"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <gvlan-items>
            <mldSnoop>true</mldSnoop>
          </gvlan-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopGVlan sys/mldsnoop/inst/dom/gl/gvlan


mldsnoopGVlan Properties

The following table contains information about the mldsnoopGVlan properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
mldSnoopmldsnoop:MldSnoopGl
(scalar:Bool)
Enable/Disable MLD Snooping globallySELECTION: true or false
DEFAULT: 0


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 IPv6 MLD Snooping Events

Deleting IPv6 MLD Snooping Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopGVlan": {
          "attributes": {
            "mldSnoop": "no"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <gvlan-items>
            <mldSnoop>false</mldSnoop>
          </gvlan-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopGVlan sys/mldsnoop/inst/dom/gl/gvlan


mldsnoopGVlan Properties

The following table contains information about the mldsnoopGVlan properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
mldSnoopmldsnoop:MldSnoopGl
(scalar:Bool)
Enable/Disable MLD Snooping globallySELECTION: true or false
DEFAULT: 0


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 Event History Buffer Size for MFDM Events

Configuring the Event History Buffer Size for MFDM Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "medium",
            "type": "mfdm"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>mfdm</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping event-history mfdm size medium


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-mfdm


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 Event History Buffer Size for MFDM Events

Deleting the Event History Buffer Size for MFDM Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "default",
            "type": "mfdm"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>mfdm</type>
              <size>0</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping event-history mfdm size medium


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-mfdm


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 Event History Buffer Size for MFDM-Sum Events

Configuring the Event History Buffer Size for MFDM-Sum Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "medium",
            "type": "mfdm-sum"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>mfdm-sum</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping event-history mfdm-sum size medium


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-mfdm-sum


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 Event History Buffer Size for MFDM-Sum Events

Deleting the Event History Buffer Size for MFDM-Sum Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "default",
            "type": "mfdm-sum"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>mfdm-sum</type>
              <size>0</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping event-history mfdm-sum size medium


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-mfdm-sum


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 Event History Buffer Size for MLD-Snoop-Internal Events

Deleting the Event History Buffer Size for MLD-Snoop-Internal Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "default",
            "type": "mld-snoop-internal"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>mld-snoop-internal</type>
              <size>0</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping event-history MLD-snoop-internal


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-mld-snoop-internal


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 Event History Buffer Size as Medium for VLAN Events

Configuring the Event History Buffer Size as Medium for VLAN Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "medium",
            "type": "vlan"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>vlan</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping event-history vlan size medium


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-vlan


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 Event History Buffer Size as Medium for VLAN Events

Deleting the Event History Buffer Size as Medium for VLAN Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "default",
            "type": "vlan"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>vlan</type>
              <size>0</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping event-history vlan size medium


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-vlan


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 Event History Buffer Size as Large for VLAN Events

Configuring the Event History Buffer Size as Large for VLAN Events 
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "large",
            "type": "vlan"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>vlan</type>
              <size>4</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping event-history vlan size large


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-vlan


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 Event History Buffer Size as Large for VLAN Events

Deleting the Event History Buffer Size as Large for VLAN Events 
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "default",
            "type": "vlan"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>vlan</type>
              <size>0</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping event-history vlan size large


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-vlan


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 Event History Buffer Size for VPC Events

Configuring the Event History Buffer Size for VPC Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "medium",
            "type": "vpc"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>vpc</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping event-history vpc size medium


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-vpc


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 Event History Buffer Size for VPC Events

Deleting the Event History Buffer Size for VPC Events
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopEventHistory": {
          "attributes": {
            "size": "default",
            "type": "vpc"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <eventhist-items>
            <EventHistory-list>
              <type>vpc</type>
              <size>0</size>
            </EventHistory-list>
          </eventhist-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping event-history vpc size medium


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopEventHistory sys/mldsnoop/inst/dom/gl/eventhist-vpc


mldsnoopEventHistory Properties

The following table contains information about the mldsnoopEventHistory properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
sizemldsnoop:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typemldsnoop:EhType
(scalar:Enum8)
configures type of event history{rib/vpc/vlan/vlanev/mfdm/mfdm-ev\}SELECTION:
0 - mld-snoop-internal
1 - mfdm
2 - mfdm-sum
3 - rib
4 - vlan
5 - vlan-events
6 - vpc


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 VLAN/BD Link-Local Groups Suppression
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopMldsnBase": {
          "attributes": {
            "llGrpSuppr": "yes"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <mldsnbase-items>
            <llGrpSuppr>true</llGrpSuppr>
          </mldsnbase-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping link-local-groups-suppression


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopMldsnBase sys/mldsnoop/inst/dom/gl/mldsnbase


mldsnoopMldsnBase Properties

The following table contains information about the mldsnoopMldsnBase properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
llGrpSuppripmcsnoop:LlGrpSuppr
(scalar:Bool)
Link Local Group SuppressionSELECTION: true or false
DEFAULT: 1


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 VLAN/BD Link-Local Groups Suppression
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopMldsnBase": {
          "attributes": {
            "llGrpSuppr": "no"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <mldsnbase-items>
            <llGrpSuppr>false</llGrpSuppr>
          </mldsnbase-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping link-local-groups-suppression


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopMldsnBase sys/mldsnoop/inst/dom/gl/mldsnbase


mldsnoopMldsnBase Properties

The following table contains information about the mldsnoopMldsnBase properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
llGrpSuppripmcsnoop:LlGrpSuppr
(scalar:Bool)
Link Local Group SuppressionSELECTION: true or false
DEFAULT: 1


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 MLDv1 Report Suppression for the VLAN/BD

Configuring MLDv1 Report Suppression for the VLAN/BD
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopMldsnBase": {
          "attributes": {
            "reportSuppr": "yes"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <mldsnbase-items>
            <reportSuppr>true</reportSuppr>
          </mldsnbase-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping report-suppression


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopMldsnBase sys/mldsnoop/inst/dom/gl/mldsnbase


mldsnoopMldsnBase Properties

The following table contains information about the mldsnoopMldsnBase properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
reportSuppripmcsnoop:ReportSuppr
(scalar:Bool)
IGMPv1/v2 report Suppression for VLANSELECTION: true or false
DEFAULT: 1


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 MLDv1 Report Suppression for the VLAN/BD

Deleting MLDv1 Report Suppression for the VLAN/BD
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopMldsnBase": {
          "attributes": {
            "reportSuppr": "no"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <mldsnbase-items>
            <reportSuppr>false</reportSuppr>
          </mldsnbase-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping report-suppression


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopMldsnBase sys/mldsnoop/inst/dom/gl/mldsnbase


mldsnoopMldsnBase Properties

The following table contains information about the mldsnoopMldsnBase properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
reportSuppripmcsnoop:ReportSuppr
(scalar:Bool)
IGMPv1/v2 report Suppression for VLANSELECTION: true or false
DEFAULT: 1


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 MLDv2 Report Suppression and Proxy Reporting for the VLAN/BD

Configuring MLDv2 Report Suppression and Proxy Reporting for the VLAN/BD
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopMldsnBase": {
          "attributes": {
            "v2ReportSuppr": "yes"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <mldsnbase-items>
            <v2ReportSuppr>true</v2ReportSuppr>
          </mldsnbase-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 mld snooping v2-report-suppression


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopMldsnBase sys/mldsnoop/inst/dom/gl/mldsnbase


mldsnoopMldsnBase Properties

The following table contains information about the mldsnoopMldsnBase properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
v2ReportSupprmldsnoop:V2ReportSuppr
(scalar:Bool)
MLDv2 Report Suppression and Proxy ReportingSELECTION: true or false
DEFAULT: 0


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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 MLDv2 Report Suppression and Proxy Reporting for the VLAN/BD

Deleting MLDv2 Report Suppression and Proxy Reporting for the VLAN/BD
POST http://<mgmt0_IP>/api/mo/sys/mldsnoop/inst/dom/gl.json
{
  "mldsnoopGl": {
    "children": [
      {
        "mldsnoopMldsnBase": {
          "attributes": {
            "v2ReportSuppr": "no"
}}}]}}
{
    imdata:[]
}
<System>
  <mldsnoop-items>
    <inst-items>
      <dom-items>
        <gl-items>
          <mldsnbase-items>
            <v2ReportSuppr>false</v2ReportSuppr>
          </mldsnbase-items>
        </gl-items>
      </dom-items>
    </inst-items>
  </mldsnoop-items>
</System>

Note: This example was added in Release 9.3(5).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 mld snooping v2-report-suppression


Verifying a DME Configuration

The following table contains the distinguished name (DN) for each managed object (MO) in the DME payload. Issue a GET request using the DN to verify the configuration was posted or to get information about the configured properties of a particular object.

MODN
mldsnoopGl sys/mldsnoop/inst/dom/gl
mldsnoopMldsnBase sys/mldsnoop/inst/dom/gl/mldsnbase


mldsnoopMldsnBase Properties

The following table contains information about the mldsnoopMldsnBase properties in the DME payload. For more information about the properties and MOs, see the NX-API DME Model Reference linked in the Related Documentation section below.

Property NameData TypeDescriptionValues
v2ReportSupprmldsnoop:V2ReportSuppr
(scalar:Bool)
MLDv2 Report Suppression and Proxy ReportingSELECTION: true or false
DEFAULT: 0


Related Documentation

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/site/nx-os/docs/nexus-model-reference/

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