Configuring IS-IS in Router VRF Configuration Mode

Configuring the Maximum Paths per Destination for a VRF

Configuring the Maximum Paths per Destination for a VRF
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "isisEntity": {
          "children": [
            {
              "isisInst": {
                "attributes": {
                  "name": "TAG_1"
                },
                "children": [
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "isisDomAf": {
                            "attributes": {
                              "maxEcmp": "28",
                              "type": "v4"
                            }
                          }
                        }
                      ]
                    }
                  },
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "default"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <isis-items>
    <inst-items>
      <Inst-list>
        <name>TAG_1</name>
        <dom-items>
          <Dom-list>
            <name>VRF_1</name>
            <af-items>
              <DomAf-list>
                <type>v4</type>
                <maxEcmp>28</maxEcmp>
              </DomAf-list>
            </af-items>
          </Dom-list>
          <Dom-list>
            <name>default</name>
          </Dom-list>
        </dom-items>
      </Inst-list>
    </inst-items>
  </isis-items>
</System>

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


CLI Commands

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

router isis TAG_1
  vrf VRF_1
   maximum-paths 28


Verifying a DME Configuration

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

MODN
topSystem sys
isisEntity sys/isis
isisInst sys/isis/inst-TAG_1
isisDom sys/isis/inst-TAG_1/dom-VRF_1
isisDomAf sys/isis/inst-TAG_1/dom-VRF_1/af-v4
isisDom sys/isis/inst-TAG_1/dom-default


isisInst Properties

The following table contains information about the isisInst 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
name
naming:Name256
string:Basic
null


isisDom Properties

The following table contains information about the isisDom 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
name
naming:Name256
string:Basic
The IS-IS domain name. This name can be up to 64 characters. Note that you cannot change this name after the object has been saved. RANGE: Min: "1" Max: "128"


isisDomAf Properties

The following table contains information about the isisDomAf 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
maxEcmpisis:Ecmp
(scalar:UByte)
Holds IS-IS Domain address family Max ECMP value
RANGE: [1 , 64]
DEFAULT: 8
typeisis:AfT
(scalar:Enum8)
TypeSELECTION:
1 - v4
2 - v6
DEFAULT: v4


isisDom Properties

The following table contains information about the isisDom 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
name
naming:Name256
string:Basic
The IS-IS domain name. This name can be up to 64 characters. Note that you cannot change this name after the object has been saved. RANGE: Min: "1" Max: "128"


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 Maximum Paths per Destination for a VRF

Deleting the Maximum Paths per Destination for a VRF
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "isisEntity": {
          "children": [
            {
              "isisInst": {
                "attributes": {
                  "name": "TAG_1"
                },
                "children": [
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "isisDomAf": {
                            "attributes": {
                              "maxEcmp": "8",
                              "type": "v4"
                            }
                          }
                        }
                      ]
                    }
                  },
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "default"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <isis-items>
    <inst-items>
      <Inst-list>
        <name>TAG_1</name>
        <dom-items>
          <Dom-list>
            <name>VRF_1</name>
            <af-items>
              <DomAf-list>
                <type>v4</type>
                <maxEcmp>8</maxEcmp>
              </DomAf-list>
            </af-items>
          </Dom-list>
          <Dom-list>
            <name>default</name>
          </Dom-list>
        </dom-items>
      </Inst-list>
    </inst-items>
  </isis-items>
</System>

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


CLI Commands

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

router isis TAG_1
  vrf VRF_1
   no maximum-paths 28


Verifying a DME Configuration

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

MODN
topSystem sys
isisEntity sys/isis
isisInst sys/isis/inst-TAG_1
isisDom sys/isis/inst-TAG_1/dom-VRF_1
isisDomAf sys/isis/inst-TAG_1/dom-VRF_1/af-v4
isisDom sys/isis/inst-TAG_1/dom-default


isisInst Properties

The following table contains information about the isisInst 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
name
naming:Name256
string:Basic
null


isisDom Properties

The following table contains information about the isisDom 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
name
naming:Name256
string:Basic
The IS-IS domain name. This name can be up to 64 characters. Note that you cannot change this name after the object has been saved. RANGE: Min: "1" Max: "128"


isisDomAf Properties

The following table contains information about the isisDomAf 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
maxEcmpisis:Ecmp
(scalar:UByte)
Holds IS-IS Domain address family Max ECMP value
RANGE: [1 , 64]
DEFAULT: 8
typeisis:AfT
(scalar:Enum8)
TypeSELECTION:
1 - v4
2 - v6
DEFAULT: v4


isisDom Properties

The following table contains information about the isisDom 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
name
naming:Name256
string:Basic
The IS-IS domain name. This name can be up to 64 characters. Note that you cannot change this name after the object has been saved. RANGE: Min: "1" Max: "128"


Related Documentation

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:

http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

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

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

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

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

Configuring an IPv4 Unicast Address Family for a VRF

Configuring an IPv4 Unicast Address Family for a VRF
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "isisEntity": {
          "children": [
            {
              "isisInst": {
                "attributes": {
                  "name": "TAG_1"
                },
                "children": [
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "isisDomAf": {
                            "attributes": {
                              "type": "v4"
                            }
                          }
                        }
                      ]
                    }
                  },
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "default"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <isis-items>
    <inst-items>
      <Inst-list>
        <name>TAG_1</name>
        <dom-items>
          <Dom-list>
            <name>VRF_1</name>
            <af-items>
              <DomAf-list>
                <type>v4</type>
              </DomAf-list>
            </af-items>
          </Dom-list>
          <Dom-list>
            <name>default</name>
          </Dom-list>
        </dom-items>
      </Inst-list>
    </inst-items>
  </isis-items>
</System>

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


CLI Commands

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

router isis TAG_1
  vrf VRF_1
   address-family ipv4 unicast


Verifying a DME Configuration

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

MODN
topSystem sys
isisEntity sys/isis
isisInst sys/isis/inst-TAG_1
isisDom sys/isis/inst-TAG_1/dom-VRF_1
isisDomAf sys/isis/inst-TAG_1/dom-VRF_1/af-v4
isisDom sys/isis/inst-TAG_1/dom-default


isisInst Properties

The following table contains information about the isisInst 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
name
naming:Name256
string:Basic
null


isisDom Properties

The following table contains information about the isisDom 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
name
naming:Name256
string:Basic
The IS-IS domain name. This name can be up to 64 characters. Note that you cannot change this name after the object has been saved. RANGE: Min: "1" Max: "128"


isisDomAf Properties

The following table contains information about the isisDomAf 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
typeisis:AfT
(scalar:Enum8)
TypeSELECTION:
1 - v4
2 - v6
DEFAULT: v4


isisDom Properties

The following table contains information about the isisDom 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
name
naming:Name256
string:Basic
The IS-IS domain name. This name can be up to 64 characters. Note that you cannot change this name after the object has been saved. RANGE: Min: "1" Max: "128"


Related Documentation

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:

http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

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

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

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

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

Deleting an IPv4 Unicast Address Family for a VRF

Deleting an IPv4 Unicast Address Family for a VRF
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "isisEntity": {
          "children": [
            {
              "isisInst": {
                "attributes": {
                  "name": "TAG_1"
                },
                "children": [
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "isisDomAf": {
                            "attributes": {
                              "status": "deleted",
                              "type": "v4"
                            }
                          }
                        }
                      ]
                    }
                  },
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "default"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <isis-items>
    <inst-items>
      <Inst-list>
        <name>TAG_1</name>
        <dom-items>
          <Dom-list>
            <name>VRF_1</name>
            <af-items>
              <DomAf-list nc:operation="delete">
                <type>v4</type>
              </DomAf-list>
            </af-items>
          </Dom-list>
          <Dom-list>
            <name>default</name>
          </Dom-list>
        </dom-items>
      </Inst-list>
    </inst-items>
  </isis-items>
</System>

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


CLI Commands

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

router isis TAG_1
  vrf VRF_1
   no address-family ipv4 unicast


Verifying a DME Configuration

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

MODN
topSystem sys
isisEntity sys/isis
isisInst sys/isis/inst-TAG_1
isisDom sys/isis/inst-TAG_1/dom-VRF_1
isisDomAf sys/isis/inst-TAG_1/dom-VRF_1/af-v4
isisDom sys/isis/inst-TAG_1/dom-default


isisInst Properties

The following table contains information about the isisInst 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
name
naming:Name256
string:Basic
null


isisDom Properties

The following table contains information about the isisDom 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
name
naming:Name256
string:Basic
The IS-IS domain name. This name can be up to 64 characters. Note that you cannot change this name after the object has been saved. RANGE: Min: "1" Max: "128"


isisDomAf Properties

The following table contains information about the isisDomAf 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)
Modification statusSELECTION:
2 - created
4 - modified
8 - deleted
16 - replaced
typeisis:AfT
(scalar:Enum8)
TypeSELECTION:
1 - v4
2 - v6
DEFAULT: v4


isisDom Properties

The following table contains information about the isisDom 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
name
naming:Name256
string:Basic
The IS-IS domain name. This name can be up to 64 characters. Note that you cannot change this name after the object has been saved. RANGE: Min: "1" Max: "128"


Related Documentation

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:

http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

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

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

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

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

Configuring an IPv6 Unicast Address Family for a VRF

Configuring an IPv6 Unicast Address Family for a VRF
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "isisEntity": {
          "children": [
            {
              "isisInst": {
                "attributes": {
                  "name": "TAG_1"
                },
                "children": [
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "isisDomAf": {
                            "attributes": {
                              "type": "v6"
                            }
                          }
                        }
                      ]
                    }
                  },
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "default"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <isis-items>
    <inst-items>
      <Inst-list>
        <name>TAG_1</name>
        <dom-items>
          <Dom-list>
            <name>VRF_1</name>
            <af-items>
              <DomAf-list>
                <type>v6</type>
              </DomAf-list>
            </af-items>
          </Dom-list>
          <Dom-list>
            <name>default</name>
          </Dom-list>
        </dom-items>
      </Inst-list>
    </inst-items>
  </isis-items>
</System>

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


CLI Commands

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

router isis TAG_1
  vrf VRF_1
   address-family ipv6 unicast


Verifying a DME Configuration

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

MODN
topSystem sys
isisEntity sys/isis
isisInst sys/isis/inst-TAG_1
isisDom sys/isis/inst-TAG_1/dom-VRF_1
isisDomAf sys/isis/inst-TAG_1/dom-VRF_1/af-v6
isisDom sys/isis/inst-TAG_1/dom-default


isisInst Properties

The following table contains information about the isisInst 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
name
naming:Name256
string:Basic
null


isisDom Properties

The following table contains information about the isisDom 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
name
naming:Name256
string:Basic
The IS-IS domain name. This name can be up to 64 characters. Note that you cannot change this name after the object has been saved. RANGE: Min: "1" Max: "128"


isisDomAf Properties

The following table contains information about the isisDomAf 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
typeisis:AfT
(scalar:Enum8)
TypeSELECTION:
1 - v4
2 - v6
DEFAULT: v4


isisDom Properties

The following table contains information about the isisDom 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
name
naming:Name256
string:Basic
The IS-IS domain name. This name can be up to 64 characters. Note that you cannot change this name after the object has been saved. RANGE: Min: "1" Max: "128"


Related Documentation

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:

http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

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

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

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

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

Deleting an IPv6 Unicast Address Family for a VRF

Deleting an IPv6 Unicast Address Family for a VRF
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "isisEntity": {
          "children": [
            {
              "isisInst": {
                "attributes": {
                  "name": "TAG_1"
                },
                "children": [
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "isisDomAf": {
                            "attributes": {
                              "status": "deleted",
                              "type": "v6"
                            }
                          }
                        }
                      ]
                    }
                  },
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "default"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <isis-items>
    <inst-items>
      <Inst-list>
        <name>TAG_1</name>
        <dom-items>
          <Dom-list>
            <name>VRF_1</name>
            <af-items>
              <DomAf-list nc:operation="delete">
                <type>v6</type>
              </DomAf-list>
            </af-items>
          </Dom-list>
          <Dom-list>
            <name>default</name>
          </Dom-list>
        </dom-items>
      </Inst-list>
    </inst-items>
  </isis-items>
</System>

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


CLI Commands

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

router isis TAG_1
  vrf VRF_1
   no address-family ipv6 unicast


Verifying a DME Configuration

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

MODN
topSystem sys
isisEntity sys/isis
isisInst sys/isis/inst-TAG_1
isisDom sys/isis/inst-TAG_1/dom-VRF_1
isisDomAf sys/isis/inst-TAG_1/dom-VRF_1/af-v6
isisDom sys/isis/inst-TAG_1/dom-default


isisInst Properties

The following table contains information about the isisInst 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
name
naming:Name256
string:Basic
null


isisDom Properties

The following table contains information about the isisDom 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
name
naming:Name256
string:Basic
The IS-IS domain name. This name can be up to 64 characters. Note that you cannot change this name after the object has been saved. RANGE: Min: "1" Max: "128"


isisDomAf Properties

The following table contains information about the isisDomAf 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)
Modification statusSELECTION:
2 - created
4 - modified
8 - deleted
16 - replaced
typeisis:AfT
(scalar:Enum8)
TypeSELECTION:
1 - v4
2 - v6
DEFAULT: v4


isisDom Properties

The following table contains information about the isisDom 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
name
naming:Name256
string:Basic
The IS-IS domain name. This name can be up to 64 characters. Note that you cannot change this name after the object has been saved. RANGE: Min: "1" Max: "128"


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 OSPF Administrative Distance

Configuring the OSPF Administrative Distance 
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "isisEntity": {
          "children": [
            {
              "isisInst": {
                "attributes": {
                  "name": "TAG_1"
                },
                "children": [
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "VRF_1"
                      },
                      "children": [
                        {
                          "isisDomAf": {
                            "attributes": {
                              "dist": "123",
                              "type": "v4"
                            }
                          }
                        }
                      ]
                    }
                  },
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "default"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <isis-items>
    <inst-items>
      <Inst-list>
        <name>TAG_1</name>
        <dom-items>
          <Dom-list>
            <name>VRF_1</name>
            <af-items>
              <DomAf-list>
                <type>v4</type>
                <dist>123</dist>
              </DomAf-list>
            </af-items>
          </Dom-list>
          <Dom-list>
            <name>default</name>
          </Dom-list>
        </dom-items>
      </Inst-list>
    </inst-items>
  </isis-items>
</System>

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


CLI Commands

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

router isis TAG_1
  vrf VRF_1
   distance 123


Verifying a DME Configuration

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

MODN
topSystem sys
isisEntity sys/isis
isisInst sys/isis/inst-TAG_1
isisDom sys/isis/inst-TAG_1/dom-VRF_1
isisDomAf sys/isis/inst-TAG_1/dom-VRF_1/af-v4
isisDom sys/isis/inst-TAG_1/dom-default


isisInst Properties

The following table contains information about the isisInst 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
name
naming:Name256
string:Basic
null


isisDom Properties

The following table contains information about the isisDom 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
name
naming:Name256
string:Basic
The IS-IS domain name. This name can be up to 64 characters. Note that you cannot change this name after the object has been saved. RANGE: Min: "1" Max: "128"


isisDomAf Properties

The following table contains information about the isisDomAf 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
distisis:Dist
(scalar:UByte)
Holds IS-IS Domain address family Administrative Distance
RANGE: [1 , 255]
DEFAULT: 115
typeisis:AfT
(scalar:Enum8)
TypeSELECTION:
1 - v4
2 - v6
DEFAULT: v4


isisDom Properties

The following table contains information about the isisDom 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
name
naming:Name256
string:Basic
The IS-IS domain name. This name can be up to 64 characters. Note that you cannot change this name after the object has been saved. RANGE: Min: "1" Max: "128"


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 OSPF Administrative Distance

Deleting the OSPF Administrative Distance 
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "isisEntity": {
          "children": [
            {
              "isisInst": {
                "attributes": {
                  "name": "TAG_1"
                },
                "children": [
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "VRF_1"
                      }
                    }
                  },
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "default"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <isis-items>
    <inst-items>
      <Inst-list>
        <name>TAG_1</name>
        <dom-items>
          <Dom-list>
            <name>VRF_1</name>
          </Dom-list>
          <Dom-list>
            <name>default</name>
          </Dom-list>
        </dom-items>
      </Inst-list>
    </inst-items>
  </isis-items>
</System>

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


CLI Commands

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

router isis TAG_1
  vrf VRF_1
   no distance 123
    distance command has not been configured previously


Verifying a DME Configuration

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

MODN
topSystem sys
isisEntity sys/isis
isisInst sys/isis/inst-TAG_1
isisDom sys/isis/inst-TAG_1/dom-VRF_1
isisDom sys/isis/inst-TAG_1/dom-default


isisInst Properties

The following table contains information about the isisInst 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
name
naming:Name256
string:Basic
null


isisDom Properties

The following table contains information about the isisDom 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
name
naming:Name256
string:Basic
The IS-IS domain name. This name can be up to 64 characters. Note that you cannot change this name after the object has been saved. RANGE: Min: "1" Max: "128"


isisDom Properties

The following table contains information about the isisDom 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
name
naming:Name256
string:Basic
The IS-IS domain name. This name can be up to 64 characters. Note that you cannot change this name after the object has been saved. RANGE: Min: "1" Max: "128"


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 Maximum Size of the Retransmit Queue

Configuring the Maximum Size of the Retransmit Queue 
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "isisEntity": {
          "children": [
            {
              "isisInst": {
                "attributes": {
                  "name": "TAG_1"
                },
                "children": [
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "VRF_1",
                        "queueLimit": "63760"
                      }
                    }
                  },
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "default"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <isis-items>
    <inst-items>
      <Inst-list>
        <name>TAG_1</name>
        <dom-items>
          <Dom-list>
            <name>VRF_1</name>
            <queueLimit>63760</queueLimit>
          </Dom-list>
          <Dom-list>
            <name>default</name>
          </Dom-list>
        </dom-items>
      </Inst-list>
    </inst-items>
  </isis-items>
</System>

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


CLI Commands

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

router isis TAG_1
  vrf VRF_1
   queue-limit retransmit 63760


Verifying a DME Configuration

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

MODN
topSystem sys
isisEntity sys/isis
isisInst sys/isis/inst-TAG_1
isisDom sys/isis/inst-TAG_1/dom-VRF_1
isisDom sys/isis/inst-TAG_1/dom-default


isisInst Properties

The following table contains information about the isisInst 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: 128


isisDom Properties

The following table contains information about the isisDom 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
queueLimitisis:QueueLimitType
(scalar:Uint32)
Holds the ISIS queue limit retransmit value
RANGE: [200 , 65535]
DEFAULT: 2000


isisDom Properties

The following table contains information about the isisDom 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


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 Maximum Size of the Retransmit Queue

Deleting the Maximum Size of the Retransmit Queue 
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "isisEntity": {
          "children": [
            {
              "isisInst": {
                "attributes": {
                  "name": "TAG_1"
                },
                "children": [
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "VRF_1",
                        "queueLimit": "2000"
                      }
                    }
                  },
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "default"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <isis-items>
    <inst-items>
      <Inst-list>
        <name>TAG_1</name>
        <dom-items>
          <Dom-list>
            <name>VRF_1</name>
            <queueLimit>2000</queueLimit>
          </Dom-list>
          <Dom-list>
            <name>default</name>
          </Dom-list>
        </dom-items>
      </Inst-list>
    </inst-items>
  </isis-items>
</System>

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


CLI Commands

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

router isis TAG_1
  vrf VRF_1
   no queue-limit retransmit 63760


Verifying a DME Configuration

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

MODN
topSystem sys
isisEntity sys/isis
isisInst sys/isis/inst-TAG_1
isisDom sys/isis/inst-TAG_1/dom-VRF_1
isisDom sys/isis/inst-TAG_1/dom-default


isisInst Properties

The following table contains information about the isisInst 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: 128


isisDom Properties

The following table contains information about the isisDom 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
queueLimitisis:QueueLimitType
(scalar:Uint32)
Holds the ISIS queue limit retransmit value
RANGE: [200 , 65535]
DEFAULT: 2000


isisDom Properties

The following table contains information about the isisDom 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


Related Documentation

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:

http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

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

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

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

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

Configuring an Unlimited Retransmit Queue

Configuring an Unlimited Retransmit Queue
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "isisEntity": {
          "children": [
            {
              "isisInst": {
                "attributes": {
                  "name": "TAG_1"
                },
                "children": [
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "VRF_1",
                        "queueLimit": "unlimited"
                      }
                    }
                  },
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "default"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <isis-items>
    <inst-items>
      <Inst-list>
        <name>TAG_1</name>
        <dom-items>
          <Dom-list>
            <name>VRF_1</name>
            <queueLimit>1</queueLimit>
          </Dom-list>
          <Dom-list>
            <name>default</name>
          </Dom-list>
        </dom-items>
      </Inst-list>
    </inst-items>
  </isis-items>
</System>

Note:

  • This command can accept a particular range for the queue limit or the string unlimited. However, when using agents such as restconf and netconf to configure unlimited for the queue-limit retransmit unlimited command, you must pass the value 1.
  • This example was added in Release 9.3(5).


CLI Commands

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

router isis TAG_1
  vrf VRF_1
   queue-limit retransmit unlimited


Verifying a DME Configuration

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

MODN
topSystem sys
isisEntity sys/isis
isisInst sys/isis/inst-TAG_1
isisDom sys/isis/inst-TAG_1/dom-VRF_1
isisDom sys/isis/inst-TAG_1/dom-default


isisInst Properties

The following table contains information about the isisInst 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: 128


isisDom Properties

The following table contains information about the isisDom 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
queueLimitisis:QueueLimitType
(scalar:Uint32)
Holds the ISIS queue limit retransmit value
RANGE: [200 , 65535]
DEFAULT: 2000


isisDom Properties

The following table contains information about the isisDom 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


Related Documentation

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:

http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

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

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

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

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

Deleting an Unlimited Retransmit Queue

Deleting an Unlimited Retransmit Queue
POST http://<mgmt0_IP>/api/mo/sys.json
{
  "topSystem": {
    "children": [
      {
        "isisEntity": {
          "children": [
            {
              "isisInst": {
                "attributes": {
                  "name": "TAG_1"
                },
                "children": [
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "VRF_1",
                        "queueLimit": "2000"
                      }
                    }
                  },
                  {
                    "isisDom": {
                      "attributes": {
                        "name": "default"
                      }
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}
{
    imdata:[]
}
<System>
  <isis-items>
    <inst-items>
      <Inst-list>
        <name>TAG_1</name>
        <dom-items>
          <Dom-list>
            <name>VRF_1</name>
            <queueLimit>2000</queueLimit>
          </Dom-list>
          <Dom-list>
            <name>default</name>
          </Dom-list>
        </dom-items>
      </Inst-list>
    </inst-items>
  </isis-items>
</System>

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


CLI Commands

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

router isis TAG_1
  vrf VRF_1
   no queue-limit retransmit unlimited


Verifying a DME Configuration

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

MODN
topSystem sys
isisEntity sys/isis
isisInst sys/isis/inst-TAG_1
isisDom sys/isis/inst-TAG_1/dom-VRF_1
isisDom sys/isis/inst-TAG_1/dom-default


isisInst Properties

The following table contains information about the isisInst 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: 128


isisDom Properties

The following table contains information about the isisDom 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
queueLimitisis:QueueLimitType
(scalar:Uint32)
Holds the ISIS queue limit retransmit value
RANGE: [200 , 65535]
DEFAULT: 2000


isisDom Properties

The following table contains information about the isisDom 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


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