Configuring Event History Buffers for PIM6

Configuring the IPv6 PIM Event-History Buffers for Assert-Receive Events

Configuring the IPv6 PIM Event-History Buffers for Assert-Receive Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "assertRcv"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>assertRcv</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

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


CLI Commands

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

ipv6 pim event-history assert-receive size medium

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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-{name}
pim6EventHistory sys/pim6/inst/dom-{name}/eventhist-{type}


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
sizepim6:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pim6Internal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - nbm
15 - mrib
16 - dataRegRecv
17 - txlist


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 IPv6 PIM Event-History Buffers for Assert-Receive Events

Deleting the IPv6 PIM Event-History Buffers for Assert-Receive Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "assertRcv"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list xc:operation="delete">
              <type>assertRcv</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

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


CLI Commands

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

no ipv6 pim event-history assert-receive size medium

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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-{name}
pim6EventHistory sys/pim6/inst/dom-{name}/eventhist-{type}


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pim6Internal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - nbm
15 - mrib
16 - dataRegRecv
17 - txlist


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 IPv6 PIM Event-History Buffers for Hello Events

Configuring the IPv6 PIM Event-History Buffers for Hello Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "hello"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>hello</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

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


CLI Commands

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

ipv6 pim event-history hello size medium

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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-{name}
pim6EventHistory sys/pim6/inst/dom-{name}/eventhist-{type}


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
sizepim6:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pim6Internal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - nbm
15 - mrib
16 - dataRegRecv
17 - txlist


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 IPv6 PIM Event-History Buffers for Hello Events

Deleting the IPv6 PIM Event-History Buffers for Hello Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "hello"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list xc:operation="delete">
              <type>hello</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

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


CLI Commands

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

no ipv6 pim event-history hello size medium

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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-{name}
pim6EventHistory sys/pim6/inst/dom-{name}/eventhist-{type}


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pim6Internal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - nbm
15 - mrib
16 - dataRegRecv
17 - txlist


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 IPv6 PIM Event-History Buffers for Join-Prune Events

Configuring the IPv6 PIM Event-History Buffers for Join-Prune Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "joinPrune"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>joinPrune</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

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


CLI Commands

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

ipv6 pim event-history join-prune size medium

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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-{name}
pim6EventHistory sys/pim6/inst/dom-{name}/eventhist-{type}


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
sizepim6:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pim6Internal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - nbm
15 - mrib
16 - dataRegRecv
17 - txlist


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 IPv6 PIM Event-History Buffers for Join-Prune Events

Deleting the IPv6 PIM Event-History Buffers for Join-Prune Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "joinPrune"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list xc:operation="delete">
              <type>joinPrune</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

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


CLI Commands

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

no ipv6 pim event-history join-prune size medium

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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-{name}
pim6EventHistory sys/pim6/inst/dom-{name}/eventhist-{type}


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pim6Internal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - nbm
15 - mrib
16 - dataRegRecv
17 - txlist


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 IPv6 PIM Event-History Buffers for Null-Register Events

Configuring the IPv6 PIM Event-History Buffers for Null-Register Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "nullReg"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>nullReg</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

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


CLI Commands

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

ipv6 pim event-history null-register size medium

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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-{name}
pim6EventHistory sys/pim6/inst/dom-{name}/eventhist-{type}


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
sizepim6:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pim6Internal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - nbm
15 - mrib
16 - dataRegRecv
17 - txlist


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 IPv6 PIM Event-History Buffers for Null-Register Events

Deleting the IPv6 PIM Event-History Buffers for Null-Register Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "nullReg"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list xc:operation="delete">
              <type>nullReg</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

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


CLI Commands

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

no ipv6 pim event-history null-register size medium

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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-{name}
pim6EventHistory sys/pim6/inst/dom-{name}/eventhist-{type}


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pim6Internal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - nbm
15 - mrib
16 - dataRegRecv
17 - txlist


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 IPv6 PIM Event-History Buffers for Packet Events

Configuring the IPv6 PIM Event-History Buffers for Packet Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "packet"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>packet</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

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


CLI Commands

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

ipv6 pim event-history packet size medium

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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-{name}
pim6EventHistory sys/pim6/inst/dom-{name}/eventhist-{type}


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
sizepim6:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pim6Internal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - nbm
15 - mrib
16 - dataRegRecv
17 - txlist


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 IPv6 PIM Event-History Buffers for Packet Events

Deleting the IPv6 PIM Event-History Buffers for Packet Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "packet"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list xc:operation="delete">
              <type>packet</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

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


CLI Commands

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

no ipv6 pim event-history packet size medium

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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-{name}
pim6EventHistory sys/pim6/inst/dom-{name}/eventhist-{type}


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pim6Internal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - nbm
15 - mrib
16 - dataRegRecv
17 - txlist


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 IPv6 PIM Event-History Buffers for PIM6-Internal Events

Configuring the IPv6 PIM Event-History Buffers for PIM6-Internal Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "pim6Internal"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>pim6Internal</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

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


CLI Commands

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

ipv6 pim event-history pim6-internal size medium

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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-{name}
pim6EventHistory sys/pim6/inst/dom-{name}/eventhist-{type}


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
sizepim6:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pim6Internal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - nbm
15 - mrib
16 - dataRegRecv
17 - txlist


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 IPv6 PIM Event-History Buffers for PIM6-Internal Events

Deleting the IPv6 PIM Event-History Buffers for PIM6-Internal Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "pim6Internal"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list xc:operation="delete">
              <type>pim6Internal</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

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


CLI Commands

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

no ipv6 pim event-history pim6-internal size medium

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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-{name}
pim6EventHistory sys/pim6/inst/dom-{name}/eventhist-{type}


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pim6Internal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - nbm
15 - mrib
16 - dataRegRecv
17 - txlist


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 IPv6 PIM Event-History Buffers for RP Events

Configuring the IPv6 PIM Event-History Buffers for RP Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "rp"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>rp</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

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


CLI Commands

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

ipv6 pim event-history rp size medium

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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-{name}
pim6EventHistory sys/pim6/inst/dom-{name}/eventhist-{type}


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
sizepim6:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pim6Internal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - nbm
15 - mrib
16 - dataRegRecv
17 - txlist


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 IPv6 PIM Event-History Buffers for RP Events

Deleting the IPv6 PIM Event-History Buffers for RP Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "rp"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list xc:operation="delete">
              <type>rp</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

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


CLI Commands

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

no ipv6 pim event-history rp size medium

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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-{name}
pim6EventHistory sys/pim6/inst/dom-{name}/eventhist-{type}


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pim6Internal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - nbm
15 - mrib
16 - dataRegRecv
17 - txlist


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 IPv6 PIM Event-History Buffers for VRF Events

Configuring the IPv6 PIM Event-History Buffers for VRF Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "vrf"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>vrf</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

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


CLI Commands

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

ipv6 pim event-history vrf size medium

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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-{name}
pim6EventHistory sys/pim6/inst/dom-{name}/eventhist-{type}


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
sizepim6:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 0
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pim6Internal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - nbm
15 - mrib
16 - dataRegRecv
17 - txlist


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 IPv6 PIM Event-History Buffers for VRF Events

Deleting the IPv6 PIM Event-History Buffers for VRF Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "vrf"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list xc:operation="delete">
              <type>vrf</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

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


CLI Commands

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

no ipv6 pim event-history vrf size medium

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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-{name}
pim6EventHistory sys/pim6/inst/dom-{name}/eventhist-{type}


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pim6Internal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - nbm
15 - mrib
16 - dataRegRecv
17 - txlist


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 CLI Event History Buffer Size

Configuring the CLI Event History Buffer Size
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "disabled",
                  "type": "cli"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>cli</type>
              <size>1</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-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 pim event-history cli 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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-default
pim6EventHistory sys/pim6/inst/dom-default/eventhist-cli


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
sizepim6:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 3
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pimInternal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - mrib
15 - dataRegRecv
16 - txlist


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 CLI Event History Buffer Size

Deleting the CLI Event History Buffer Size
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "cli"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list nc:operation="delete">
              <type>cli</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-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 pim event-history cli 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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-default
pim6EventHistory sys/pim6/inst/dom-default/eventhist-cli


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pimInternal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - mrib
15 - dataRegRecv
16 - txlist


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 Data Register-Received Event History Buffer Size

Configuring the Data Register-Received Event History Buffer Size
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "disabled",
                  "type": "dataRegRecv"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>dataRegRecv</type>
              <size>1</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-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 pim event-history data-register-receive 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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-default
pim6EventHistory sys/pim6/inst/dom-default/eventhist-dataRegRecv


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
sizepim6:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 3
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pimInternal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - mrib
15 - dataRegRecv
16 - txlist


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 Data Register-Received Event History Buffer Size

Deleting the Data Register-Received Event History Buffer Size
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "dataRegRecv"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list nc:operation="delete">
              <type>dataRegRecv</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-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 pim event-history data-register-receive 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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-default
pim6EventHistory sys/pim6/inst/dom-default/eventhist-dataRegRecv


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pimInternal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - mrib
15 - dataRegRecv
16 - txlist


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 Join Prune Event History Buffer Size

Configuring Join Prune Event History Buffer Size
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "disabled",
                  "type": "jpTw"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>jpTw</type>
              <size>1</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-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 pim event-history join-prune-tw 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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-default
pim6EventHistory sys/pim6/inst/dom-default/eventhist-jpTw


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
sizepim6:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 2
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pimInternal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - mrib
15 - dataRegRecv
16 - txlist


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 Join Prune Event History Buffer Size

Deleting Join Prune Event History Buffer Size
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "jpTw"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list nc:operation="delete">
              <type>jpTw</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-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 pim event-history join-prune-tw 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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-default
pim6EventHistory sys/pim6/inst/dom-default/eventhist-jpTw


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pimInternal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - mrib
15 - dataRegRecv
16 - txlist


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 Txlist Event History Buffer Size

Configuring the Txlist Event History Buffer Size
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "disabled",
                  "type": "txlist"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>txlist</type>
              <size>1</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-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 pim event-history txlist 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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-default
pim6EventHistory sys/pim6/inst/dom-default/eventhist-txlist


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
sizepim6:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 4
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pimInternal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - mrib
15 - dataRegRecv
16 - txlist


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 Txlist Event History Buffer Size

Deleting the Txlist Event History Buffer Size
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "txlist"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list nc:operation="delete">
              <type>txlist</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-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 pim event-history txlist 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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-default
pim6EventHistory sys/pim6/inst/dom-default/eventhist-txlist


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pimInternal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - mrib
15 - dataRegRecv
16 - txlist


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

Configuring the VPC Event History Buffer Size
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "disabled",
                  "type": "vpc"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>vpc</type>
              <size>1</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-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 pim 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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-default
pim6EventHistory sys/pim6/inst/dom-default/eventhist-vpc


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
sizepim6:Size
(scalar:Uint32)
configures buffer size in text/kb
RANGE: [0 , 4]
DEFAULT: 4
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pimInternal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - mrib
15 - dataRegRecv
16 - txlist


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

Deleting the VPC Event History Buffer Size
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "vpc"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list nc:operation="delete">
              <type>vpc</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-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 pim 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
pim6Inst sys/pim6/inst
pim6Dom sys/pim6/inst/dom-default
pim6EventHistory sys/pim6/inst/dom-default/eventhist-vpc


pim6Dom Properties

The following table contains information about the pim6Dom 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
namenaming:Name256
(string:Basic)
The name of the object.
MAX SIZE: 63


pim6EventHistory Properties

The following table contains information about the pim6EventHistory 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
typepim6:EhType
(scalar:Enum32)
configures type of event historySELECTION:
0 - assertRcv
1 - bidir
2 - hello
3 - joinPrune
4 - nullReg
5 - packet
6 - pimInternal
7 - rp
8 - vrf
9 - jpSum
10 - jpTw
11 - cli
12 - vpc
13 - pimLib
14 - mrib
15 - dataRegRecv
16 - txlist


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