Configuring Event-History Buffers for MSDP

These examples demonstrate how to configure the size of the event history buffers. The options are small, medium, large, and disabled. The default is small.

Configuring CLI Log Event-History Buffers For MSDP

Configuring CLI Log Event-History Buffers For MSDP
POST http://<mgmt0_IP>/api/mo/sys/msdp/inst.json
{
  "msdpInst": {
    "children": [
      {
        "msdpDom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "msdpEventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "cli"
}}}]}}]}}
{
    imdata": []
}
<System>
  <msdp-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventHist-items>
            <EventHistory-list>
              <type>cli</type>
              <size>medium</size>
            </EventHistory-list>
          </eventHist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </msdp-items>
</System>

Note: This example was added in Release 7.0(3)I7(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.

ip msdp event-history cli size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting CLI Log Event-History Buffers For MSDP

Deleting CLI Log Event-History Buffers For MSDP
POST http://<mgmt0_IP>/api/mo/sys/msdp/inst.json
{
  "msdpInst": {
    "children": [
      {
        "msdpDom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "msdpEventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "cli"
}}}]}}]}}
{
    imdata": []
}
<System>
  <msdp-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventHist-items>
            <EventHistory-list xc:operation="delete">
              <type>cli</type>
            </EventHistory-list>
          </eventHist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </msdp-items>
</System>

Note: This example was added in Release 7.0(3)I7(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 ip msdp event-history cli size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring Event-History Buffers For MSDP

Configuring Event-History Buffers For MSDP
POST http://<mgmt0_IP>/api/mo/sys/msdp/inst.json
{
  "msdpInst": {
    "children": [
      {
        "msdpDom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "msdpEventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "events"
}}}]}}]}}
{
    imdata": []
}
<System>
  <msdp-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventHist-items>
            <EventHistory-list>
              <type>events</type>
              <size>medium</size>
            </EventHistory-list>
          </eventHist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </msdp-items>
</System>

Note: This example was added in Release 7.0(3)I7(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.

ip msdp event-history events size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting Event-History Buffers For MSDP

Deleting Event-History Buffers For MSDP
POST http://<mgmt0_IP>/api/mo/sys/msdp/inst.json
{
  "msdpInst": {
    "children": [
      {
        "msdpDom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "msdpEventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "events"
}}}]}}]}}
{
    imdata": []
}
<System>
  <msdp-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventHist-items>
            <EventHistory-list xc:operation="delete">
              <type>events</type>
            </EventHistory-list>
          </eventHist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </msdp-items>
</System>

Note: This example was added in Release 7.0(3)I7(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 ip msdp event-history events size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring Internal Log Event-History Buffers For MSDP

Configuring Internal Log Event-History Buffers For MSDP
POST http://<mgmt0_IP>/api/mo/sys/msdp/inst.json
{
  "msdpInst": {
    "children": [
      {
        "msdpDom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "msdpEventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "msdpInternal"
}}}]}}]}}
{
    imdata": []
}
<System>
  <msdp-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventHist-items>
            <EventHistory-list>
              <type>msdpInternal</type>
              <size>medium</size>
            </EventHistory-list>
          </eventHist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </msdp-items>
</System>

Note: This example was added in Release 7.0(3)I7(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.

ip msdp event-history msdp-internal size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting Internal Log Event-History Buffers For MSDP

Deleting Internal Log Event-History Buffers For MSDP
POST http://<mgmt0_IP>/api/mo/sys/msdp/inst.json
{
  "msdpInst": {
    "children": [
      {
        "msdpDom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "msdpEventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "msdpInternal"
}}}]}}]}}
{
    imdata": []
}
<System>
  <msdp-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventHist-items>
            <EventHistory-list xc:operation="delete">
              <type>msdpInternal</type>
            </EventHistory-list>
          </eventHist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </msdp-items>
</System>

Note: This example was added in Release 7.0(3)I7(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 ip msdp event-history msdp-internal size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring Route Log Event-History Buffers For MSDP

Configuring Route Log Event-History Buffers For MSDP
POST http://<mgmt0_IP>/api/mo/sys/msdp/inst.json
{
  "msdpInst": {
    "children": [
      {
        "msdpDom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "msdpEventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "routes"
}}}]}}]}}
{
    imdata": []
}
<System>
  <msdp-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventHist-items>
            <EventHistory-list>
              <type>routes</type>
              <size>medium</size>
            </EventHistory-list>
          </eventHist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </msdp-items>
</System>

Note: This example was added in Release 7.0(3)I7(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.

ip msdp event-history routes size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting Route Log Event-History Buffers For MSDP

Deleting Route Log Event-History Buffers For MSDP
POST http://<mgmt0_IP>/api/mo/sys/msdp/inst.json
{
  "msdpInst": {
    "children": [
      {
        "msdpDom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "msdpEventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "routes"
}}}]}}]}}
{
    imdata": []
}
<System>
  <msdp-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventHist-items>
            <EventHistory-list xc:operation="delete">
              <type>routes</type>
            </EventHistory-list>
          </eventHist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </msdp-items>
</System>

Note: This example was added in Release 7.0(3)I7(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 ip msdp event-history routes size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring TCP Log Event-History Buffers For MSDP

Configuring TCP Log Event-History Buffers For MSDP
POST http://<mgmt0_IP>/api/mo/sys/msdp/inst.json
{
  "msdpInst": {
    "children": [
      {
        "msdpDom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "msdpEventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "tcp"
}}}]}}]}}
{
    imdata": []
}
<System>
  <msdp-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventHist-items>
            <EventHistory-list>
              <type>tcp</type>
              <size>medium</size>
            </EventHistory-list>
          </eventHist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </msdp-items>
</System>

Note: This example was added in Release 7.0(3)I7(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.

ip msdp event-history tcp size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting TCP Log Event-History Buffers For MSDP

Deleting TCP Log Event-History Buffers For MSDP
POST http://<mgmt0_IP>/api/mo/sys/msdp/inst.json
{
  "msdpInst": {
    "children": [
      {
        "msdpDom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "msdpEventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "tcp"
}}}]}}]}}
{
    imdata": []
}
<System>
  <msdp-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventHist-items>
            <EventHistory-list xc:operation="delete">
              <type>tcp</type>
            </EventHistory-list>
          </eventHist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </msdp-items>
</System>

Note: This example was added in Release 7.0(3)I7(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 ip msdp event-history tcp size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference: http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload: https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html