Enabling the Explicit Disabling of ARP Suppression

Enabling the Explicit Disabling of ARP Suppression
POST http://<mgmt0_IP>/api/mo/sys/eps.json
{
  "nvoEps": {
  "children": [
    {
      "nvoEp": {
        "attributes": {
          "epId": "1"
        },
        "children": [
          {
            "nvoNws": {
              "children": [
                {
                  "nvoNw": {
                    "attributes": {
                      "isLegacyMode": "no",
                      "suppressARP": "disabled",
                      "vni": "123"
}}}]}}]}}]}}
{
    imdata:[]
}
<System>
  <eps-items>
    <epId-items>
      <Ep-list>
        <epId>1</epId>
        <nws-items>
          <vni-items>
            <Nw-list>
              <vni>123</vni>
              <isLegacyMode>false</isLegacyMode>
              <suppressARP>disabled</suppressARP>
            </Nw-list>
          </vni-items>
        </nws-items>
      </Ep-list>
    </epId-items>
  </eps-items>
</System>


CLI Commands

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

interface nve 1-1
 member vni 123
  suppress-arp disable

Note: The property information for this example was added in Release 9.3(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
nvoEps sys/eps
nvoEp sys/eps/epId-{epId}
nvoNws sys/eps/epId-{epId}/nws
nvoNw sys/eps/epId-{epId}/nws/vni-{vni}


nvoEp Properties

The following table contains information about the nvoEp 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
epIdnvo:EpIdT
(scalar:Uint32)
Network Virtualization Overlay Endpoint (NVE) ID
Supported values for N9000 Family is 1.
RANGE: [0, 4294967295]


nvoNw Properties

The following table contains information about the nvoNw 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
isLegacyModescalar:Bool
Indicates whether Multicast group configuration for the VNI(s) is configured in legacy mode or not.SELECTION: true or false
suppressARPnvo:SuppressARPT
(scalar:Enum16)
Enable or disable ARP suppression for VNI(s).SELECTION:
0 - off
1 - enabled
2 - disabled
DEFAULT: off
vninvo:VniT
(scalar:Uint32)
Configure Virtual Network ID
Supported VNI values 1 to 16777214.
RANGE: [1 , 16777215]


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

Removing the Explicit Disabling of the ARP Suppression

Removing the Explicit Disabling of the ARP Suppression
POST http://<mgmt0_IP>/api/mo/sys/eps.json
{
  "nvoEps": {
    "children": [
      {
        "nvoEp": {
          "attributes": {
            "epId": "1"
          },
          "children": [
            {
              "nvoNws": {
                "children": [
                  {
                    "nvoNw": {
                      "attributes": {
                        "isLegacyMode": "no",
                        "suppressARP": "off",
                        "vni": "123"
}}}]}}]}}]}}
{
    imdata:[]
}
<System>
  <eps-items>
    <epId-items>
      <Ep-list>
        <epId>1</epId>
        <nws-items>
          <vni-items>
            <Nw-list>
              <vni>123</vni>
              <isLegacyMode>false</isLegacyMode>
              <suppressARP>off</suppressARP>
            </Nw-list>
          </vni-items>
        </nws-items>
      </Ep-list>
    </epId-items>
  </eps-items>
</System>


CLI Commands

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

interface nve 1-1
 member vni 123
  no suppress-arp disable

Note: The property information for this example was added in Release 9.3(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
nvoEps sys/eps
nvoEp sys/eps/epId-{epId}
nvoNws sys/eps/epId-{epId}/nws
nvoNw sys/eps/epId-{epId}/nws/vni-{vni}


nvoEp Properties

The following table contains information about the nvoEp 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
epIdnvo:EpIdT
(scalar:Uint32)
Network Virtualization Overlay Endpoint (NVE) ID
Supported values for N9000 Family is 1.
RANGE: [0, 4294967295]


nvoNw Properties

The following table contains information about the nvoNw 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
isLegacyModescalar:Bool
Indicates whether Multicast group configuration for the VNI(s) is configured in legacy mode or not.SELECTION: true or false
suppressARPnvo:SuppressARPT
(scalar:Enum16)
Enable or disable ARP suppression for VNI(s).SELECTION:
0 - off
1 - enabled
2 - disabled
DEFAULT: off
vninvo:VniT
(scalar:Uint32)
Configure Virtual Network ID
Supported VNI values 1 to 16777214.
RANGE: [1 , 16777215]


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

Enabling ARP Suppression on an Interface

Enabling ARP Suppression on an Interface
POST http://<mgmt0_IP>/api/mo/sys/eps.json
{
  "nvoEps": {
    "children": [
      {
        "nvoEp": {
          "attributes": {
            "epId": "1"
          },
          "children": [
            {
              "nvoNws": {
                "children": [
                  {
                    "nvoNw": {
                      "attributes": {
                        "isLegacyMode": "no",
                        "suppressARP": "enabled",
                        "vni": "123"
}}}]}}]}}]}}
{
    imdata:[]
}
<System>
  <eps-items>
    <epId-items>
      <Ep-list>
        <epId>1</epId>
        <nws-items>
          <vni-items>
            <Nw-list>
              <vni>123</vni>
              <isLegacyMode>false</isLegacyMode>
              <suppressARP>enabled</suppressARP>
            </Nw-list>
          </vni-items>
        </nws-items>
      </Ep-list>
    </epId-items>
  </eps-items>
</System>


CLI Commands

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

interface nve 1-1
 member vni 123
  suppress-arp

Note: The property information for this example was added in Release 9.3(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
nvoEps sys/eps
nvoEp sys/eps/epId-{epId}
nvoNws sys/eps/epId-{epId}/nws
nvoNw sys/eps/epId-{epId}/nws/vni-{vni}


nvoEp Properties

The following table contains information about the nvoEp 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
epIdnvo:EpIdT
(scalar:Uint32)
Network Virtualization Overlay Endpoint (NVE) ID
Supported values for N9000 Family is 1.
RANGE: [0, 4294967295]


nvoNw Properties

The following table contains information about the nvoNw 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
isLegacyModescalar:Bool
Indicates whether Multicast group configuration for the VNI(s) is configured in legacy mode or not.SELECTION: true or false
suppressARPnvo:SuppressARPT
(scalar:Enum16)
Enable or disable ARP suppression for VNI(s).SELECTION:
0 - off
1 - enabled
2 - disabled
DEFAULT: off
vninvo:VniT
(scalar:Uint32)
Configure Virtual Network ID
Supported VNI values 1 to 16777214.
RANGE: [1 , 16777215]


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

Disabling ARP Suppression on an Interface

Disabling ARP Suppression on an Interface
POST http://<mgmt0_IP>/api/mo/sys/eps.json
{
  "nvoEps": {
    "children": [
      {
        "nvoEp": {
          "attributes": {
            "epId": "1"
          },
          "children": [
            {
              "nvoNws": {
                "children": [
                  {
                    "nvoNw": {
                      "attributes": {
                        "isLegacyMode": "no",
                        "suppressARP": "off",
                        "vni": "123"
}}}]}}]}}]}}
{
    imdata:[]
}
<System>
  <eps-items>
    <epId-items>
      <Ep-list>
        <epId>1</epId>
        <nws-items>
          <vni-items>
            <Nw-list>
              <vni>123</vni>
              <isLegacyMode>false</isLegacyMode>
              <suppressARP>off</suppressARP>
            </Nw-list>
          </vni-items>
        </nws-items>
      </Ep-list>
    </epId-items>
  </eps-items>
</System>


CLI Commands

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

interface nve 1-1
 member vni 123
  no suppress-arp

Note: The property information for this example was added in Release 9.3(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
nvoEps sys/eps
nvoEp sys/eps/epId-{epId}
nvoNws sys/eps/epId-{epId}/nws
nvoNw sys/eps/epId-{epId}/nws/vni-{vni}


nvoEp Properties

The following table contains information about the nvoEp 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
epIdnvo:EpIdT
(scalar:Uint32)
Network Virtualization Overlay Endpoint (NVE) ID
Supported values for N9000 Family is 1.
RANGE: [0, 4294967295]


nvoNw Properties

The following table contains information about the nvoNw 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
isLegacyModescalar:Bool
Indicates whether Multicast group configuration for the VNI(s) is configured in legacy mode or not.SELECTION: true or false
suppressARPnvo:SuppressARPT
(scalar:Enum16)
Enable or disable ARP suppression for VNI(s).SELECTION:
0 - off
1 - enabled
2 - disabled
DEFAULT: off
vninvo:VniT
(scalar:Uint32)
Configure Virtual Network ID
Supported VNI values 1 to 16777214.
RANGE: [1 , 16777215]


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 an NVE Multicast Group

Configuring an NVE Multicast Group
POST http://<mgmt0_IP>/api/mo/sys/eps.json
{
  "nvoEps": {
    "children": [
      {
        "nvoEp": {
          "attributes": {
            "epId": "1"
          },
          "children": [
            {
              "nvoNws": {
                "children": [
                  {
                    "nvoNw": {
                      "attributes": {
                        "isLegacyMode": "no",
                        "mcastGroup": "231.1.1.1",
                        "vni": "123"
}}}]}}]}}]}}
{
    imdata:[]
}
<System>
  <eps-items>
    <epId-items>
      <Ep-list>
        <epId>1</epId>
        <nws-items>
          <vni-items>
            <Nw-list>
              <vni>123</vni>
              <isLegacyMode>false</isLegacyMode>
              <mcastGroup>231.1.1.1</mcastGroup>
            </Nw-list>
          </vni-items>
        </nws-items>
      </Ep-list>
    </epId-items>
  </eps-items>
</System>

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


CLI Commands

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

interface nve 1-1
  member vni 123
   mcast-group 231.1.1.1


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
nvoEp sys/eps/epId-1
nvoEps sys/eps
nvoNw sys/eps/epId-1/nws/vni-123
nvoNws sys/eps/epId-1/nws


nvoEp Properties

The following table contains information about the nvoEp 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
epIdnvo:EpIdT
(scalar:Uint32)
Network Virtualization Overlay Endpoint (NVE) ID
Supported values for N9000 Family is 1.
RANGE: [0, 4294967295]


nvoNw Properties

The following table contains information about the nvoNw 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
isLegacyModescalar:Bool
Indicates whether Multicast group configuration for the VNI(s) is configured in legacy mode or not.SELECTION: true or false
mcastGroupmcast:GrpIp
(address:Ip)
Configures multicast group address for VNI(s).
Supported range is valid multicast group addresses.
Value must match ipv4 or ipv6 known format
vninvo:VniT
(scalar:Uint32)
Configure Virtual Network ID
Supported VNI values 1 to 16777214.
RANGE: [1 , 16777215]


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 an NVE Multicast Group

Deleting an NVE Multicast Group
POST http://<mgmt0_IP>/api/mo/sys/eps.json
{
  "nvoEps": {
    "children": [
      {
        "nvoEp": {
          "attributes": {
            "epId": "1"
          },
          "children": [
            {
              "nvoNws": {
                "children": [
                  {
                    "nvoNw": {
                      "attributes": {
                        "isLegacyMode": "no",
                        "mcastGroup": "0.0.0.0",
                        "vni": "123"
}}}]}}]}}]}}
{
    imdata:[]
}
<System>
  <eps-items>
    <epId-items>
      <Ep-list>
        <epId>1</epId>
        <nws-items>
          <vni-items>
            <Nw-list>
              <vni>123</vni>
              <isLegacyMode>false</isLegacyMode>
              <mcastGroup>0.0.0.0</mcastGroup>
            </Nw-list>
          </vni-items>
        </nws-items>
      </Ep-list>
    </epId-items>
  </eps-items>
</System>

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


CLI Commands

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

interface nve 1-1
  member vni 123
   no mcast-group


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
nvoEp sys/eps/epId-1
nvoEps sys/eps
nvoNw sys/eps/epId-1/nws/vni-123
nvoNws sys/eps/epId-1/nws


nvoEp Properties

The following table contains information about the nvoEp 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
epIdnvo:EpIdT
(scalar:Uint32)
Network Virtualization Overlay Endpoint (NVE) ID
Supported values for N9000 Family is 1.
RANGE: [0, 4294967295]


nvoNw Properties

The following table contains information about the nvoNw 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
isLegacyModescalar:Bool
Indicates whether Multicast group configuration for the VNI(s) is configured in legacy mode or not.SELECTION: true or false
mcastGroupmcast:GrpIp
(address:Ip)
Configures multicast group address for VNI(s).
Supported range is valid multicast group addresses.
Value must match ipv4 or ipv6 known format
vninvo:VniT
(scalar:Uint32)
Configure Virtual Network ID
Supported VNI values 1 to 16777214.
RANGE: [1 , 16777215]


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