The RESTCONF API introduced in NorthStar 5.1 is a partially RFC8040-compliant endpoint that exposes a set of YANG Model using a REST-Like interface. NorthStar supports only JSON content type in this release. The RESTCONF API enables querying of topology, and management of TE-LSP. The Topology is read-only on the RESTCONF API. Tunnel RPCs operation are used to create and delete TE-LSPs.
The RESTCONF endpoint is exposed over SSL on the same server as the other NorthStar REST API. The default port is 8443. The Base path for RESTCONF is /restconf/. NorthStar provides the following subroutes:
data
operational
operations
An advantage of RESTful APIs is that the resources can be accessed using well-defined URLs. The models exposed using RESTCONF follow a hierarchical model described using YANG The resource location is fully described by the YANG model and RFC8040 Section 3.5.3. NorthStar supports this resource URL to access any part of the model served.
The Standard RESTCONF operations are defined in RFC8040 Section 4. NorthStar offers the following support
Verb | Supported | Description |
---|---|---|
OPTIONS | Yes | Determine which methods are supported by the server. |
GET | Yes | Retrieve data and metadata about a resource. |
HEAD | Yes | The same as GET, but only the response headers are returned. |
POST | Only for operations | Create a resource or invoke an RPC operation. |
PUT | No | Create or replace a resource. |
PATCH | No | Create or update (but not delete) various resources. Both plain HTTP patch (RFC 7589) and YANG patch (RFC 8072) are supported. |
DELETE | No | Sent by a client to delete a target resource. |
RESTCONF defines query parameters in RFC8040 Section 4.8.
Query parameter | Supported | method | Possible Values | Description |
---|---|---|---|---|
content | No | GET, HEAD | all, config, nonconfig | Whether config and/or operational data is returned – default is all if content is not provided in the request |
depth | No | GET, HEAD | Any positive integer value | Number of subtrees of configuration, relative to the resource, which are returned |
fields | No | GET, HEAD | A semicolon-separated list of path string values | Request a subset of the content exposed by the resource or its children (e.g., id,other-elem/name to select only the ID and name of the other-elem child) |
filter | No | GET, HEAD | XPath 1.0 expression to be evaluated in the root context. | Boolean notification filter for event stream resources. |
insert | No | POST, PUT | first, last, before, after | Insertion mode for "ordered-by user" data resources. |
point | No | POST, PUT | Path to the resource being used as insertion point. | Insertion mode for "ordered-by user" data resources. |
start-time | No | GET, HEAD | Date and time following ietf-yang-type date-and-time type. | Replay buffer start time for event stream resources. |
stop-time | No | GET, HEAD | Date and time following ietf-yang-type date-and-time type | Replay buffer stop time for event stream resources. |
with-defaults | No | GET, HEAD | report-all, trim, explicit, report-all-tagged | Allows the content of a resource to be included or excluded depending on whether the value is equal to the schema default |
Access the NorthStar data model represented as ietf-network and extensions.
GET container ietf-network:networks.
Response example:
{
"network": [
{
"ietf-network-topology:link": [
{
"link-id": "NorthStar-Live:link:L0110.1200.0010_11.11.0.105_0110.1200.0014_11.11.0.106:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0010",
"source-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.105"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0014",
"dest-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.106"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 70,
"te-srlgs": {
"value": [
113
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0010_11.11.0.105_0110.1200.0014_11.11.0.106:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0014",
"source-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.106"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0010",
"dest-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.105"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 70,
"te-srlgs": {
"value": [
113
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0010_11.11.0.113_0110.1200.0014_11.11.0.114:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0010",
"source-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.113"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0014",
"dest-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.114"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 70,
"te-srlgs": {
"value": [
113
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0010_11.11.0.113_0110.1200.0014_11.11.0.114:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0014",
"source-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.114"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0010",
"dest-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.113"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 70,
"te-srlgs": {
"value": [
113
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0009_11.11.0.65_0110.1200.0010_11.11.0.66:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0010",
"source-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.66"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0009",
"dest-tp": "NorthStar-Live:node:0110.1200.0009:11.11.0.65"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0009_11.11.0.65_0110.1200.0010_11.11.0.66:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0009",
"source-tp": "NorthStar-Live:node:0110.1200.0009:11.11.0.65"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0010",
"dest-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.66"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0006_11.11.0.73_0110.1200.0010_11.11.0.74:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0010",
"source-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.74"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0006",
"dest-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.73"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 57,
"te-srlgs": {
"value": [
112
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0006_11.11.0.73_0110.1200.0010_11.11.0.74:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0006",
"source-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.73"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0010",
"dest-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.74"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 57,
"te-srlgs": {
"value": [
112
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0006_11.11.0.77_0110.1200.0010_11.11.0.78:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0010",
"source-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.78"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0006",
"dest-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.77"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 57,
"te-srlgs": {
"value": [
112
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0006_11.11.0.77_0110.1200.0010_11.11.0.78:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0006",
"source-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.77"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0010",
"dest-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.78"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 57,
"te-srlgs": {
"value": [
112
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0011_11.11.0.81_0110.1200.0010_11.11.0.82:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0010",
"source-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.82"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0011",
"dest-tp": "NorthStar-Live:node:0110.1200.0011:11.11.0.81"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0011_11.11.0.81_0110.1200.0010_11.11.0.82:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0011",
"source-tp": "NorthStar-Live:node:0110.1200.0011:11.11.0.81"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0010",
"dest-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.82"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0011_11.11.0.85_0110.1200.0012_11.11.0.86:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0011",
"source-tp": "NorthStar-Live:node:0110.1200.0011:11.11.0.85"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0012",
"dest-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.86"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0011_11.11.0.85_0110.1200.0012_11.11.0.86:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0012",
"source-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.86"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0011",
"dest-tp": "NorthStar-Live:node:0110.1200.0011:11.11.0.85"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0012_11.11.0.129_0110.1200.0016_11.11.0.130:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0012",
"source-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.129"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0016",
"dest-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.130"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 70,
"te-srlgs": {
"value": [
113
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0012_11.11.0.129_0110.1200.0016_11.11.0.130:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0016",
"source-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.130"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0012",
"dest-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.129"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 70,
"te-srlgs": {
"value": [
113
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0012_11.11.0.137_0110.1200.0016_11.11.0.138:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0012",
"source-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.137"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0016",
"dest-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.138"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 70,
"te-srlgs": {
"value": [
113
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0012_11.11.0.137_0110.1200.0016_11.11.0.138:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0016",
"source-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.138"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0012",
"dest-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.137"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 70,
"te-srlgs": {
"value": [
113
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0009_11.11.0.69_0110.1200.0012_11.11.0.70:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0012",
"source-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.70"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0009",
"dest-tp": "NorthStar-Live:node:0110.1200.0009:11.11.0.69"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0009_11.11.0.69_0110.1200.0012_11.11.0.70:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0009",
"source-tp": "NorthStar-Live:node:0110.1200.0009:11.11.0.69"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0012",
"dest-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.70"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0008_11.11.0.89_0110.1200.0012_11.11.0.90:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0012",
"source-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.90"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0008",
"dest-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.89"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 57,
"te-srlgs": {
"value": [
112
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0008_11.11.0.89_0110.1200.0012_11.11.0.90:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0008",
"source-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.89"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0012",
"dest-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.90"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 57,
"te-srlgs": {
"value": [
112
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0008_11.11.0.93_0110.1200.0012_11.11.0.94:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0012",
"source-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.94"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0008",
"dest-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.93"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 57,
"te-srlgs": {
"value": [
112
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0008_11.11.0.93_0110.1200.0012_11.11.0.94:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0008",
"source-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.93"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0012",
"dest-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.94"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 57,
"te-srlgs": {
"value": [
112
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0013_11.11.0.101_0110.1200.0016_11.11.0.102:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0013",
"source-tp": "NorthStar-Live:node:0110.1200.0013:11.11.0.101"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0016",
"dest-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.102"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0013_11.11.0.101_0110.1200.0016_11.11.0.102:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0016",
"source-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.102"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0013",
"dest-tp": "NorthStar-Live:node:0110.1200.0013:11.11.0.101"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0013_11.11.0.97_0110.1200.0014_11.11.0.98:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0013",
"source-tp": "NorthStar-Live:node:0110.1200.0013:11.11.0.97"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0014",
"dest-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.98"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0013_11.11.0.97_0110.1200.0014_11.11.0.98:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0014",
"source-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.98"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0013",
"dest-tp": "NorthStar-Live:node:0110.1200.0013:11.11.0.97"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0001_11.11.0.1_0110.1200.0002_11.11.0.2:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0001",
"source-tp": "NorthStar-Live:node:0110.1200.0001:11.11.0.1"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0002",
"dest-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.2"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0001_11.11.0.1_0110.1200.0002_11.11.0.2:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0002",
"source-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.2"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0001",
"dest-tp": "NorthStar-Live:node:0110.1200.0001:11.11.0.1"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0001_11.11.0.5_0110.1200.0004_11.11.0.6:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0001",
"source-tp": "NorthStar-Live:node:0110.1200.0001:11.11.0.5"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0004",
"dest-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.6"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0001_11.11.0.5_0110.1200.0004_11.11.0.6:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0004",
"source-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.6"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0001",
"dest-tp": "NorthStar-Live:node:0110.1200.0001:11.11.0.5"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0006_11.11.0.109_0110.1200.0014_11.11.0.110:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0014",
"source-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.110"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0006",
"dest-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.109"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0006_11.11.0.109_0110.1200.0014_11.11.0.110:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0006",
"source-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.109"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0014",
"dest-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.110"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0006_11.11.0.117_0110.1200.0014_11.11.0.118:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0014",
"source-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.118"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0006",
"dest-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.117"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0006_11.11.0.117_0110.1200.0014_11.11.0.118:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0006",
"source-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.117"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0014",
"dest-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.118"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0015_11.11.0.121_0110.1200.0014_11.11.0.122:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0014",
"source-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.122"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0015",
"dest-tp": "NorthStar-Live:node:0110.1200.0015:11.11.0.121"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0015_11.11.0.121_0110.1200.0014_11.11.0.122:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0015",
"source-tp": "NorthStar-Live:node:0110.1200.0015:11.11.0.121"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0014",
"dest-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.122"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0014_11.11.0.13_0110.1200.0002_11.11.0.14:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0014",
"source-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.13"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0002",
"dest-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.14"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30,
"te-srlgs": {
"value": [
110
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0014_11.11.0.13_0110.1200.0002_11.11.0.14:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0002",
"source-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.14"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0014",
"dest-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.13"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30,
"te-srlgs": {
"value": [
110
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0002_11.11.0.10_0110.1200.0014_11.11.0.9:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0014",
"source-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.9"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0002",
"dest-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.10"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30,
"te-srlgs": {
"value": [
110
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0002_11.11.0.10_0110.1200.0014_11.11.0.9:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0002",
"source-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.10"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0014",
"dest-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.9"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30,
"te-srlgs": {
"value": [
110
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0015_11.11.0.125_0110.1200.0016_11.11.0.126:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0015",
"source-tp": "NorthStar-Live:node:0110.1200.0015:11.11.0.125"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0016",
"dest-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.126"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0015_11.11.0.125_0110.1200.0016_11.11.0.126:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0016",
"source-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.126"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0015",
"dest-tp": "NorthStar-Live:node:0110.1200.0015:11.11.0.125"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0008_11.11.0.133_0110.1200.0016_11.11.0.134:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0016",
"source-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.134"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0008",
"dest-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.133"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 25
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0008_11.11.0.133_0110.1200.0016_11.11.0.134:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0008",
"source-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.133"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0016",
"dest-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.134"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 25
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0008_11.11.0.141_0110.1200.0016_11.11.0.142:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0016",
"source-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.142"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0008",
"dest-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.141"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 25
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0008_11.11.0.141_0110.1200.0016_11.11.0.142:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0008",
"source-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.141"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0016",
"dest-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.142"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 25
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0016_11.11.0.25_0110.1200.0004_11.11.0.26:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0016",
"source-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.25"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0004",
"dest-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.26"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30,
"te-srlgs": {
"value": [
110
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0016_11.11.0.25_0110.1200.0004_11.11.0.26:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0004",
"source-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.26"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0016",
"dest-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.25"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30,
"te-srlgs": {
"value": [
110
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0016_11.11.0.29_0110.1200.0004_11.11.0.30:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0016",
"source-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.29"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0004",
"dest-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.30"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30,
"te-srlgs": {
"value": [
110
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0016_11.11.0.29_0110.1200.0004_11.11.0.30:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0004",
"source-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.30"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0016",
"dest-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.29"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30,
"te-srlgs": {
"value": [
110
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0003_11.11.0.17_0110.1200.0002_11.11.0.18:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0002",
"source-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.18"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0003",
"dest-tp": "NorthStar-Live:node:0110.1200.0003:11.11.0.17"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0003_11.11.0.17_0110.1200.0002_11.11.0.18:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0003",
"source-tp": "NorthStar-Live:node:0110.1200.0003:11.11.0.17"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0002",
"dest-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.18"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0002_11.11.0.41_0110.1200.0006_11.11.0.42:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0002",
"source-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.41"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0006",
"dest-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.42"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 40,
"te-srlgs": {
"value": [
111
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0002_11.11.0.41_0110.1200.0006_11.11.0.42:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0006",
"source-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.42"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0002",
"dest-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.41"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 40,
"te-srlgs": {
"value": [
111
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0002_11.11.0.45_0110.1200.0006_11.11.0.46:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0002",
"source-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.45"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0006",
"dest-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.46"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 40,
"te-srlgs": {
"value": [
111
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0002_11.11.0.45_0110.1200.0006_11.11.0.46:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0006",
"source-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.46"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0002",
"dest-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.45"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 40,
"te-srlgs": {
"value": [
111
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0003_11.11.0.21_0110.1200.0004_11.11.0.22:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0003",
"source-tp": "NorthStar-Live:node:0110.1200.0003:11.11.0.21"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0004",
"dest-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.22"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0003_11.11.0.21_0110.1200.0004_11.11.0.22:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0004",
"source-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.22"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0003",
"dest-tp": "NorthStar-Live:node:0110.1200.0003:11.11.0.21"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0004_11.11.0.57_0110.1200.0008_11.11.0.58:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0004",
"source-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.57"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0008",
"dest-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.58"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 40,
"te-srlgs": {
"value": [
111
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0004_11.11.0.57_0110.1200.0008_11.11.0.58:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0008",
"source-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.58"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0004",
"dest-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.57"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 40,
"te-srlgs": {
"value": [
111
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0004_11.11.0.61_0110.1200.0008_11.11.0.62:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0004",
"source-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.61"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0008",
"dest-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.62"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 40,
"te-srlgs": {
"value": [
111
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0004_11.11.0.61_0110.1200.0008_11.11.0.62:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0008",
"source-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.62"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0004",
"dest-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.61"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 40,
"te-srlgs": {
"value": [
111
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0005_11.11.0.33_0110.1200.0006_11.11.0.34:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0005",
"source-tp": "NorthStar-Live:node:0110.1200.0005:11.11.0.33"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0006",
"dest-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.34"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0005_11.11.0.33_0110.1200.0006_11.11.0.34:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0006",
"source-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.34"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0005",
"dest-tp": "NorthStar-Live:node:0110.1200.0005:11.11.0.33"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0005_11.11.0.37_0110.1200.0008_11.11.0.38:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0005",
"source-tp": "NorthStar-Live:node:0110.1200.0005:11.11.0.37"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0008",
"dest-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.38"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0005_11.11.0.37_0110.1200.0008_11.11.0.38:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0008",
"source-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.38"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0005",
"dest-tp": "NorthStar-Live:node:0110.1200.0005:11.11.0.37"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0007_11.11.0.49_0110.1200.0006_11.11.0.50:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0006",
"source-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.50"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0007",
"dest-tp": "NorthStar-Live:node:0110.1200.0007:11.11.0.49"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0007_11.11.0.49_0110.1200.0006_11.11.0.50:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0007",
"source-tp": "NorthStar-Live:node:0110.1200.0007:11.11.0.49"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0006",
"dest-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.50"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0007_11.11.0.53_0110.1200.0008_11.11.0.54:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0007",
"source-tp": "NorthStar-Live:node:0110.1200.0007:11.11.0.53"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0008",
"dest-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.54"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0007_11.11.0.53_0110.1200.0008_11.11.0.54:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0008",
"source-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.54"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0007",
"dest-tp": "NorthStar-Live:node:0110.1200.0007:11.11.0.53"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
}
],
"ietf-te-topology:client-id": 1,
"ietf-te-topology:provider-id": 2,
"ietf-te-topology:te-topology-id": "NorthStar-Live",
"network-id": "NorthStar-Live",
"network-types": {
"ietf-te-topology:te-topology": {}
},
"node": [
{
"node-id": "NorthStar-Live:node:0110.1200.0010",
"ietf-te-topology:te-node-id": "11.12.0.10",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use1-sv3-spine1-sv3"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0011",
"ietf-te-topology:te-node-id": "11.12.0.11",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use2-sv3"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0012",
"ietf-te-topology:te-node-id": "11.12.0.12",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use2-sv3-spine2-sv3"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0013",
"ietf-te-topology:te-node-id": "11.12.0.13",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use1-sv4"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0001",
"ietf-te-topology:te-node-id": "11.12.0.1",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use1-sv1"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0014",
"ietf-te-topology:te-node-id": "11.12.0.14",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use1-sv4-spine1-sv4"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0015",
"ietf-te-topology:te-node-id": "11.12.0.15",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use2-sv4"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0016",
"ietf-te-topology:te-node-id": "11.12.0.16",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use2-sv4-spine2-sv4"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0002",
"ietf-te-topology:te-node-id": "11.12.0.2",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use1-sv1-spine1-sv1"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0003",
"ietf-te-topology:te-node-id": "11.12.0.3",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use2-sv1"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0004",
"ietf-te-topology:te-node-id": "11.12.0.4",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use2-sv1-spine2-sv1"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0005",
"ietf-te-topology:te-node-id": "11.12.0.5",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use1-sv2"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0006",
"ietf-te-topology:te-node-id": "11.12.0.6",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use1-sv2-spine1-sv2"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0007",
"ietf-te-topology:te-node-id": "11.12.0.7",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use2-sv2"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0008",
"ietf-te-topology:te-node-id": "11.12.0.8",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use2-sv2-spine2-sv2"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0009",
"ietf-te-topology:te-node-id": "11.12.0.9",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use1-sv3"
}
}
}
}
],
"server-provided": true
}
]
}
This operation does not accept a request body.
GET container ietf-network:networks.
See the /data example
This operation does not accept a request body.
Access the NortStar data model represented as ietf-te and extensions.
GET container ietf-te:te.
Response example:
{
"tunnels": {
"tunnel": [
{
"name": "dd 11.12.0.1",
"identifier": 49,
"config": {
"type": "ietf-te-types:tunnel-p2p",
"name": "dd 11.12.0.1",
"identifier": 49,
"lsp-priority-setup": 7,
"lsp-priority-hold": 7,
"admin-status": "ietf-te-types:state-up",
"source": "11.12.0.1",
"destination": "11.12.0.9"
},
"primary-paths": [
{
"name": "working",
"config": {
"name": "working",
"path-constraints": {
"metric-type": "path-metric-te",
"tiebreaker-type": "path-tiebreaker-maxfill"
},
"dynamic": [
null
]
}
}
]
},
{
"name": "short.1 11.12.0.1",
"identifier": 50,
"config": {
"type": "ietf-te-types:tunnel-p2p",
"name": "short.1 11.12.0.1",
"identifier": 50,
"lsp-priority-setup": 0,
"lsp-priority-hold": 0,
"admin-status": "ietf-te-types:state-up",
"source": "11.12.0.1",
"destination": "11.12.0.9"
},
"primary-paths": [
{
"name": "use1-sv3",
"config": {
"name": "use1-sv3",
"path-constraints": {
"metric-type": "path-metric-te",
"tiebreaker-type": "path-tiebreaker-maxfill"
},
"dynamic": [
null
]
}
}
]
},
{
"name": "long.1 11.12.0.1",
"identifier": 51,
"config": {
"type": "ietf-te-types:tunnel-p2p",
"name": "long.1 11.12.0.1",
"identifier": 51,
"lsp-priority-setup": 0,
"lsp-priority-hold": 0,
"admin-status": "ietf-te-types:state-up",
"source": "11.12.0.1",
"destination": "11.12.0.9"
},
"primary-paths": [
{
"name": "use1-sv3",
"config": {
"name": "use1-sv3",
"path-constraints": {
"metric-type": "path-metric-te",
"tiebreaker-type": "path-tiebreaker-maxfill"
},
"dynamic": [
null
]
}
}
]
},
{
"name": "tunnel-type=p2p&pce=174.59.0.12&tid=tunnel:15&id=15 11.12.0.1",
"identifier": 52,
"config": {
"type": "ietf-te-types:tunnel-p2p",
"name": "tunnel-type=p2p&pce=174.59.0.12&tid=tunnel:15&id=15 11.12.0.1",
"identifier": 52,
"lsp-priority-setup": 3,
"lsp-priority-hold": 0,
"admin-status": "ietf-te-types:state-up",
"source": "11.12.0.1",
"destination": "11.12.0.9"
},
"state": {
"type": "ietf-te-types:tunnel-p2p",
"name": "tunnel-type=p2p&pce=174.59.0.12&tid=tunnel:15&id=15 11.12.0.1",
"identifier": 52,
"admin-status": "ietf-te-types:state-up",
"source": "11.12.0.1",
"destination": "11.12.0.9"
},
"primary-paths": [
{
"name": "path=1&pce=174.59.0.12&tid=tunnel:15&id=15",
"config": {
"name": "path=1&pce=174.59.0.12&tid=tunnel:15&id=15",
"path-constraints": {
"metric-type": "ietf-te-types:path-metric-igp",
"cost-limit": 20000000,
"tiebreaker-type": "path-tiebreaker-maxfill"
},
"dynamic": [
null
]
},
"state": {
"name": "path=1&pce=174.59.0.12&tid=tunnel:15&id=15",
"lsp": [
{
"source": "11.12.0.1",
"destination": "11.12.0.9",
"tunnel-id": 17005,
"lsp-id": 1,
"extended-tunnel-id": "11.12.0.1",
"type": "ietf-te-types:tunnel-p2p"
}
]
}
}
]
}
]
},
"lsps-state": {
"lsp": [
{
"source": "11.12.0.1",
"destination": "11.12.0.9",
"tunnel-id": 16996,
"lsp-id": 1,
"extended-tunnel-id": "11.12.0.1",
"type": "ietf-te-types:tunnel-p2p",
"lsp-protection-role": "working",
"oper-status": "ietf-te-types:state-up",
"origin-type": "ingress",
"lsp-resource-status": "primary"
},
{
"source": "11.12.0.1",
"destination": "11.12.0.9",
"tunnel-id": 16997,
"lsp-id": 1,
"extended-tunnel-id": "11.12.0.1",
"type": "ietf-te-types:tunnel-p2p",
"lsp-protection-role": "working",
"oper-status": "ietf-te-types:state-up",
"origin-type": "ingress",
"lsp-resource-status": "primary"
},
{
"source": "11.12.0.1",
"destination": "11.12.0.9",
"tunnel-id": 16998,
"lsp-id": 1,
"extended-tunnel-id": "11.12.0.1",
"type": "ietf-te-types:tunnel-p2p",
"lsp-protection-role": "working",
"oper-status": "ietf-te-types:state-up",
"origin-type": "ingress",
"lsp-resource-status": "primary"
},
{
"source": "11.12.0.1",
"destination": "11.12.0.9",
"tunnel-id": 17005,
"lsp-id": 1,
"extended-tunnel-id": "11.12.0.1",
"type": "ietf-te-types:tunnel-p2p",
"lsp-protection-role": "working",
"oper-status": "ietf-te-types:state-up",
"origin-type": "ingress",
"lsp-resource-status": "primary"
}
]
}
}
This operation does not accept a request body.
GET container ietf-te:te.
See the /data example
This operation does not accept a request body.
The list of supported YANG models and their version is accessed through the following endpoint.
Deviation: NorthStar does not support the features parameter.
GET container ietf-yang-library:modules-state.
Response example:
{
"module-set-id": "ac77dcbcf7bde64024c6f8950ef9ac3f",
"module": [
{
"name": "ietf-inet-types",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-inet-types",
"revision": "2013-07-15",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-network",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-network",
"revision": "2017-01-03",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-yang-types",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-yang-types",
"revision": "2013-07-15",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-te-types",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-te-types",
"revision": "2016-10-26",
"feature": [
"p2mp-te",
"frr-te",
"extended-admin-groups",
"named-path-affinities",
"named-extended-admin-groups",
"named-srlg-groups",
"named-path-constraints"
],
"conformance-type": "implement"
},
{
"name": "ietf-network-topology",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-network-topology",
"revision": "2017-01-03",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-te-topology",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-te-topology",
"revision": "2017-01-10",
"feature": [
"nsrlg",
"te-topology-hierarchy",
"template"
],
"conformance-type": "implement"
},
{
"name": "ietf-te",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-te",
"revision": "2016-10-26",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-interfaces",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-interfaces",
"revision": "2014-05-08",
"feature": [
"arbitrary-names",
"pre-provisioning",
"if-mib"
],
"conformance-type": "implement"
},
{
"name": "ietf-routing",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-routing",
"revision": "2016-08-18",
"feature": [
"multiple-ribs",
"router-id"
],
"conformance-type": "implement"
},
{
"name": "ietf-rsvp",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-rsvp",
"revision": "2016-10-29",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-mpls",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-mpls",
"revision": "2016-07-05",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-te-mpls-types",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-te-mpls-types",
"revision": "2016-10-26",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-te-device",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-te-device",
"revision": "2016-10-26",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-rsvp-te-mpls",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-rsvp-te-mpls",
"revision": "2016-10-26",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-yang-library",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-yang-library",
"revision": "2016-06-21",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-te-operations",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-te-operations",
"revision": "2016-12-08",
"feature": [],
"conformance-type": "implement"
}
]
}
This operation does not accept a request body.
GET container ietf-yang-library:modules-state.
See the /data example
This operation does not accept a request body.
GET container ietf-network:networks.
Response example:
{
"network": [
{
"ietf-network-topology:link": [
{
"link-id": "NorthStar-Live:link:L0110.1200.0010_11.11.0.105_0110.1200.0014_11.11.0.106:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0010",
"source-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.105"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0014",
"dest-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.106"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 70,
"te-srlgs": {
"value": [
113
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0010_11.11.0.105_0110.1200.0014_11.11.0.106:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0014",
"source-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.106"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0010",
"dest-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.105"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 70,
"te-srlgs": {
"value": [
113
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0010_11.11.0.113_0110.1200.0014_11.11.0.114:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0010",
"source-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.113"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0014",
"dest-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.114"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 70,
"te-srlgs": {
"value": [
113
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0010_11.11.0.113_0110.1200.0014_11.11.0.114:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0014",
"source-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.114"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0010",
"dest-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.113"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 70,
"te-srlgs": {
"value": [
113
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0009_11.11.0.65_0110.1200.0010_11.11.0.66:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0010",
"source-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.66"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0009",
"dest-tp": "NorthStar-Live:node:0110.1200.0009:11.11.0.65"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0009_11.11.0.65_0110.1200.0010_11.11.0.66:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0009",
"source-tp": "NorthStar-Live:node:0110.1200.0009:11.11.0.65"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0010",
"dest-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.66"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0006_11.11.0.73_0110.1200.0010_11.11.0.74:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0010",
"source-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.74"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0006",
"dest-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.73"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 57,
"te-srlgs": {
"value": [
112
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0006_11.11.0.73_0110.1200.0010_11.11.0.74:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0006",
"source-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.73"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0010",
"dest-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.74"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 57,
"te-srlgs": {
"value": [
112
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0006_11.11.0.77_0110.1200.0010_11.11.0.78:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0010",
"source-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.78"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0006",
"dest-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.77"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 57,
"te-srlgs": {
"value": [
112
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0006_11.11.0.77_0110.1200.0010_11.11.0.78:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0006",
"source-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.77"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0010",
"dest-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.78"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 57,
"te-srlgs": {
"value": [
112
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0011_11.11.0.81_0110.1200.0010_11.11.0.82:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0010",
"source-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.82"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0011",
"dest-tp": "NorthStar-Live:node:0110.1200.0011:11.11.0.81"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0011_11.11.0.81_0110.1200.0010_11.11.0.82:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0011",
"source-tp": "NorthStar-Live:node:0110.1200.0011:11.11.0.81"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0010",
"dest-tp": "NorthStar-Live:node:0110.1200.0010:11.11.0.82"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0011_11.11.0.85_0110.1200.0012_11.11.0.86:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0011",
"source-tp": "NorthStar-Live:node:0110.1200.0011:11.11.0.85"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0012",
"dest-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.86"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0011_11.11.0.85_0110.1200.0012_11.11.0.86:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0012",
"source-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.86"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0011",
"dest-tp": "NorthStar-Live:node:0110.1200.0011:11.11.0.85"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0012_11.11.0.129_0110.1200.0016_11.11.0.130:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0012",
"source-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.129"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0016",
"dest-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.130"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 70,
"te-srlgs": {
"value": [
113
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0012_11.11.0.129_0110.1200.0016_11.11.0.130:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0016",
"source-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.130"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0012",
"dest-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.129"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 70,
"te-srlgs": {
"value": [
113
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0012_11.11.0.137_0110.1200.0016_11.11.0.138:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0012",
"source-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.137"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0016",
"dest-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.138"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 70,
"te-srlgs": {
"value": [
113
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0012_11.11.0.137_0110.1200.0016_11.11.0.138:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0016",
"source-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.138"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0012",
"dest-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.137"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 70,
"te-srlgs": {
"value": [
113
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0009_11.11.0.69_0110.1200.0012_11.11.0.70:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0012",
"source-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.70"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0009",
"dest-tp": "NorthStar-Live:node:0110.1200.0009:11.11.0.69"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0009_11.11.0.69_0110.1200.0012_11.11.0.70:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0009",
"source-tp": "NorthStar-Live:node:0110.1200.0009:11.11.0.69"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0012",
"dest-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.70"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0008_11.11.0.89_0110.1200.0012_11.11.0.90:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0012",
"source-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.90"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0008",
"dest-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.89"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 57,
"te-srlgs": {
"value": [
112
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0008_11.11.0.89_0110.1200.0012_11.11.0.90:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0008",
"source-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.89"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0012",
"dest-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.90"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 57,
"te-srlgs": {
"value": [
112
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0008_11.11.0.93_0110.1200.0012_11.11.0.94:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0012",
"source-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.94"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0008",
"dest-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.93"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 57,
"te-srlgs": {
"value": [
112
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0008_11.11.0.93_0110.1200.0012_11.11.0.94:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0008",
"source-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.93"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0012",
"dest-tp": "NorthStar-Live:node:0110.1200.0012:11.11.0.94"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 57,
"te-srlgs": {
"value": [
112
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0013_11.11.0.101_0110.1200.0016_11.11.0.102:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0013",
"source-tp": "NorthStar-Live:node:0110.1200.0013:11.11.0.101"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0016",
"dest-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.102"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0013_11.11.0.101_0110.1200.0016_11.11.0.102:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0016",
"source-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.102"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0013",
"dest-tp": "NorthStar-Live:node:0110.1200.0013:11.11.0.101"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0013_11.11.0.97_0110.1200.0014_11.11.0.98:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0013",
"source-tp": "NorthStar-Live:node:0110.1200.0013:11.11.0.97"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0014",
"dest-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.98"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0013_11.11.0.97_0110.1200.0014_11.11.0.98:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0014",
"source-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.98"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0013",
"dest-tp": "NorthStar-Live:node:0110.1200.0013:11.11.0.97"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0001_11.11.0.1_0110.1200.0002_11.11.0.2:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0001",
"source-tp": "NorthStar-Live:node:0110.1200.0001:11.11.0.1"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0002",
"dest-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.2"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0001_11.11.0.1_0110.1200.0002_11.11.0.2:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0002",
"source-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.2"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0001",
"dest-tp": "NorthStar-Live:node:0110.1200.0001:11.11.0.1"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0001_11.11.0.5_0110.1200.0004_11.11.0.6:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0001",
"source-tp": "NorthStar-Live:node:0110.1200.0001:11.11.0.5"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0004",
"dest-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.6"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0001_11.11.0.5_0110.1200.0004_11.11.0.6:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0004",
"source-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.6"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0001",
"dest-tp": "NorthStar-Live:node:0110.1200.0001:11.11.0.5"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0006_11.11.0.109_0110.1200.0014_11.11.0.110:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0014",
"source-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.110"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0006",
"dest-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.109"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0006_11.11.0.109_0110.1200.0014_11.11.0.110:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0006",
"source-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.109"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0014",
"dest-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.110"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0006_11.11.0.117_0110.1200.0014_11.11.0.118:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0014",
"source-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.118"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0006",
"dest-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.117"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0006_11.11.0.117_0110.1200.0014_11.11.0.118:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0006",
"source-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.117"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0014",
"dest-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.118"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0015_11.11.0.121_0110.1200.0014_11.11.0.122:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0014",
"source-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.122"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0015",
"dest-tp": "NorthStar-Live:node:0110.1200.0015:11.11.0.121"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0015_11.11.0.121_0110.1200.0014_11.11.0.122:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0015",
"source-tp": "NorthStar-Live:node:0110.1200.0015:11.11.0.121"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0014",
"dest-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.122"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0014_11.11.0.13_0110.1200.0002_11.11.0.14:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0014",
"source-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.13"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0002",
"dest-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.14"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30,
"te-srlgs": {
"value": [
110
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0014_11.11.0.13_0110.1200.0002_11.11.0.14:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0002",
"source-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.14"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0014",
"dest-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.13"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30,
"te-srlgs": {
"value": [
110
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0002_11.11.0.10_0110.1200.0014_11.11.0.9:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0014",
"source-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.9"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0002",
"dest-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.10"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30,
"te-srlgs": {
"value": [
110
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0002_11.11.0.10_0110.1200.0014_11.11.0.9:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0002",
"source-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.10"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0014",
"dest-tp": "NorthStar-Live:node:0110.1200.0014:11.11.0.9"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30,
"te-srlgs": {
"value": [
110
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0015_11.11.0.125_0110.1200.0016_11.11.0.126:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0015",
"source-tp": "NorthStar-Live:node:0110.1200.0015:11.11.0.125"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0016",
"dest-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.126"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0015_11.11.0.125_0110.1200.0016_11.11.0.126:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0016",
"source-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.126"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0015",
"dest-tp": "NorthStar-Live:node:0110.1200.0015:11.11.0.125"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0008_11.11.0.133_0110.1200.0016_11.11.0.134:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0016",
"source-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.134"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0008",
"dest-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.133"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 25
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0008_11.11.0.133_0110.1200.0016_11.11.0.134:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0008",
"source-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.133"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0016",
"dest-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.134"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 25
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0008_11.11.0.141_0110.1200.0016_11.11.0.142:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0016",
"source-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.142"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0008",
"dest-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.141"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 25
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0008_11.11.0.141_0110.1200.0016_11.11.0.142:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0008",
"source-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.141"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0016",
"dest-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.142"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 25
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0016_11.11.0.25_0110.1200.0004_11.11.0.26:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0016",
"source-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.25"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0004",
"dest-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.26"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30,
"te-srlgs": {
"value": [
110
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0016_11.11.0.25_0110.1200.0004_11.11.0.26:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0004",
"source-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.26"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0016",
"dest-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.25"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30,
"te-srlgs": {
"value": [
110
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0016_11.11.0.29_0110.1200.0004_11.11.0.30:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0016",
"source-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.29"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0004",
"dest-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.30"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30,
"te-srlgs": {
"value": [
110
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0016_11.11.0.29_0110.1200.0004_11.11.0.30:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0004",
"source-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.30"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0016",
"dest-tp": "NorthStar-Live:node:0110.1200.0016:11.11.0.29"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 30,
"te-srlgs": {
"value": [
110
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0003_11.11.0.17_0110.1200.0002_11.11.0.18:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0002",
"source-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.18"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0003",
"dest-tp": "NorthStar-Live:node:0110.1200.0003:11.11.0.17"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0003_11.11.0.17_0110.1200.0002_11.11.0.18:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0003",
"source-tp": "NorthStar-Live:node:0110.1200.0003:11.11.0.17"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0002",
"dest-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.18"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0002_11.11.0.41_0110.1200.0006_11.11.0.42:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0002",
"source-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.41"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0006",
"dest-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.42"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 40,
"te-srlgs": {
"value": [
111
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0002_11.11.0.41_0110.1200.0006_11.11.0.42:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0006",
"source-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.42"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0002",
"dest-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.41"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 40,
"te-srlgs": {
"value": [
111
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0002_11.11.0.45_0110.1200.0006_11.11.0.46:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0002",
"source-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.45"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0006",
"dest-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.46"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 40,
"te-srlgs": {
"value": [
111
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0002_11.11.0.45_0110.1200.0006_11.11.0.46:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0006",
"source-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.46"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0002",
"dest-tp": "NorthStar-Live:node:0110.1200.0002:11.11.0.45"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 40,
"te-srlgs": {
"value": [
111
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0003_11.11.0.21_0110.1200.0004_11.11.0.22:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0003",
"source-tp": "NorthStar-Live:node:0110.1200.0003:11.11.0.21"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0004",
"dest-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.22"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0003_11.11.0.21_0110.1200.0004_11.11.0.22:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0004",
"source-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.22"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0003",
"dest-tp": "NorthStar-Live:node:0110.1200.0003:11.11.0.21"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0004_11.11.0.57_0110.1200.0008_11.11.0.58:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0004",
"source-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.57"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0008",
"dest-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.58"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 40,
"te-srlgs": {
"value": [
111
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0004_11.11.0.57_0110.1200.0008_11.11.0.58:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0008",
"source-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.58"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0004",
"dest-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.57"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 40,
"te-srlgs": {
"value": [
111
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0004_11.11.0.61_0110.1200.0008_11.11.0.62:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0004",
"source-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.61"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0008",
"dest-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.62"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 40,
"te-srlgs": {
"value": [
111
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0004_11.11.0.61_0110.1200.0008_11.11.0.62:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0008",
"source-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.62"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0004",
"dest-tp": "NorthStar-Live:node:0110.1200.0004:11.11.0.61"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 40,
"te-srlgs": {
"value": [
111
]
}
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0005_11.11.0.33_0110.1200.0006_11.11.0.34:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0005",
"source-tp": "NorthStar-Live:node:0110.1200.0005:11.11.0.33"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0006",
"dest-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.34"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0005_11.11.0.33_0110.1200.0006_11.11.0.34:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0006",
"source-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.34"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0005",
"dest-tp": "NorthStar-Live:node:0110.1200.0005:11.11.0.33"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0005_11.11.0.37_0110.1200.0008_11.11.0.38:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0005",
"source-tp": "NorthStar-Live:node:0110.1200.0005:11.11.0.37"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0008",
"dest-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.38"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0005_11.11.0.37_0110.1200.0008_11.11.0.38:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0008",
"source-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.38"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0005",
"dest-tp": "NorthStar-Live:node:0110.1200.0005:11.11.0.37"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0007_11.11.0.49_0110.1200.0006_11.11.0.50:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0006",
"source-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.50"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0007",
"dest-tp": "NorthStar-Live:node:0110.1200.0007:11.11.0.49"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0007_11.11.0.49_0110.1200.0006_11.11.0.50:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0007",
"source-tp": "NorthStar-Live:node:0110.1200.0007:11.11.0.49"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0006",
"dest-tp": "NorthStar-Live:node:0110.1200.0006:11.11.0.50"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0007_11.11.0.53_0110.1200.0008_11.11.0.54:fwd",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0007",
"source-tp": "NorthStar-Live:node:0110.1200.0007:11.11.0.53"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0008",
"dest-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.54"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
},
{
"link-id": "NorthStar-Live:link:L0110.1200.0007_11.11.0.53_0110.1200.0008_11.11.0.54:rvs",
"source": {
"source-node": "NorthStar-Live:node:0110.1200.0008",
"source-tp": "NorthStar-Live:node:0110.1200.0008:11.11.0.54"
},
"destination": {
"dest-node": "NorthStar-Live:node:0110.1200.0007",
"dest-tp": "NorthStar-Live:node:0110.1200.0007:11.11.0.53"
},
"ietf-te-topology:te": {
"state": {
"oper-status": "up",
"te-link-attributes": {
"access-type": "point-to-point",
"admin-status": "up",
"interface-switching-capability": [
{
"encoding": "ietf-te-types:lsp-encoding-packet",
"switching-capability": "ietf-te-types:switching-psc1"
}
],
"link-protection-type": "unprotected",
"max-link-bandwidth": "10000000",
"max-resv-link-bandwidth": "10000000",
"unreserved-bandwidth": [
{
"priority": 0,
"bandwidth": "10000000"
},
{
"priority": 1,
"bandwidth": "10000000"
},
{
"priority": 2,
"bandwidth": "10000000"
},
{
"priority": 3,
"bandwidth": "10000000"
},
{
"priority": 4,
"bandwidth": "10000000"
},
{
"priority": 5,
"bandwidth": "10000000"
},
{
"priority": 6,
"bandwidth": "10000000"
},
{
"priority": 7,
"bandwidth": "10000000"
}
],
"te-default-metric": 10
}
}
}
}
],
"ietf-te-topology:client-id": 1,
"ietf-te-topology:provider-id": 2,
"ietf-te-topology:te-topology-id": "NorthStar-Live",
"network-id": "NorthStar-Live",
"network-types": {
"ietf-te-topology:te-topology": {}
},
"node": [
{
"node-id": "NorthStar-Live:node:0110.1200.0010",
"ietf-te-topology:te-node-id": "11.12.0.10",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use1-sv3-spine1-sv3"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0011",
"ietf-te-topology:te-node-id": "11.12.0.11",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use2-sv3"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0012",
"ietf-te-topology:te-node-id": "11.12.0.12",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use2-sv3-spine2-sv3"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0013",
"ietf-te-topology:te-node-id": "11.12.0.13",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use1-sv4"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0001",
"ietf-te-topology:te-node-id": "11.12.0.1",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use1-sv1"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0014",
"ietf-te-topology:te-node-id": "11.12.0.14",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use1-sv4-spine1-sv4"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0015",
"ietf-te-topology:te-node-id": "11.12.0.15",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use2-sv4"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0016",
"ietf-te-topology:te-node-id": "11.12.0.16",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use2-sv4-spine2-sv4"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0002",
"ietf-te-topology:te-node-id": "11.12.0.2",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use1-sv1-spine1-sv1"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0003",
"ietf-te-topology:te-node-id": "11.12.0.3",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use2-sv1"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0004",
"ietf-te-topology:te-node-id": "11.12.0.4",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use2-sv1-spine2-sv1"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0005",
"ietf-te-topology:te-node-id": "11.12.0.5",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use1-sv2"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0006",
"ietf-te-topology:te-node-id": "11.12.0.6",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use1-sv2-spine1-sv2"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0007",
"ietf-te-topology:te-node-id": "11.12.0.7",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use2-sv2"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0008",
"ietf-te-topology:te-node-id": "11.12.0.8",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use2-sv2-spine2-sv2"
}
}
}
},
{
"node-id": "NorthStar-Live:node:0110.1200.0009",
"ietf-te-topology:te-node-id": "11.12.0.9",
"ietf-te-topology:te": {
"state": {
"te-node-attributes": {
"name": "use1-sv3"
}
}
}
}
],
"server-provided": true
}
]
}
This operation does not accept a request body.
GET container ietf-network:networks.
See the /data example
This operation does not accept a request body.
GET container ietf-te:te.
Response example:
{
"tunnels": {
"tunnel": [
{
"name": "dd 11.12.0.1",
"identifier": 49,
"config": {
"type": "ietf-te-types:tunnel-p2p",
"name": "dd 11.12.0.1",
"identifier": 49,
"lsp-priority-setup": 7,
"lsp-priority-hold": 7,
"admin-status": "ietf-te-types:state-up",
"source": "11.12.0.1",
"destination": "11.12.0.9"
},
"primary-paths": [
{
"name": "working",
"config": {
"name": "working",
"path-constraints": {
"metric-type": "path-metric-te",
"tiebreaker-type": "path-tiebreaker-maxfill"
},
"dynamic": [
null
]
}
}
]
},
{
"name": "short.1 11.12.0.1",
"identifier": 50,
"config": {
"type": "ietf-te-types:tunnel-p2p",
"name": "short.1 11.12.0.1",
"identifier": 50,
"lsp-priority-setup": 0,
"lsp-priority-hold": 0,
"admin-status": "ietf-te-types:state-up",
"source": "11.12.0.1",
"destination": "11.12.0.9"
},
"primary-paths": [
{
"name": "use1-sv3",
"config": {
"name": "use1-sv3",
"path-constraints": {
"metric-type": "path-metric-te",
"tiebreaker-type": "path-tiebreaker-maxfill"
},
"dynamic": [
null
]
}
}
]
},
{
"name": "long.1 11.12.0.1",
"identifier": 51,
"config": {
"type": "ietf-te-types:tunnel-p2p",
"name": "long.1 11.12.0.1",
"identifier": 51,
"lsp-priority-setup": 0,
"lsp-priority-hold": 0,
"admin-status": "ietf-te-types:state-up",
"source": "11.12.0.1",
"destination": "11.12.0.9"
},
"primary-paths": [
{
"name": "use1-sv3",
"config": {
"name": "use1-sv3",
"path-constraints": {
"metric-type": "path-metric-te",
"tiebreaker-type": "path-tiebreaker-maxfill"
},
"dynamic": [
null
]
}
}
]
},
{
"name": "tunnel-type=p2p&pce=174.59.0.12&tid=tunnel:15&id=15 11.12.0.1",
"identifier": 52,
"config": {
"type": "ietf-te-types:tunnel-p2p",
"name": "tunnel-type=p2p&pce=174.59.0.12&tid=tunnel:15&id=15 11.12.0.1",
"identifier": 52,
"lsp-priority-setup": 3,
"lsp-priority-hold": 0,
"admin-status": "ietf-te-types:state-up",
"source": "11.12.0.1",
"destination": "11.12.0.9"
},
"state": {
"type": "ietf-te-types:tunnel-p2p",
"name": "tunnel-type=p2p&pce=174.59.0.12&tid=tunnel:15&id=15 11.12.0.1",
"identifier": 52,
"admin-status": "ietf-te-types:state-up",
"source": "11.12.0.1",
"destination": "11.12.0.9"
},
"primary-paths": [
{
"name": "path=1&pce=174.59.0.12&tid=tunnel:15&id=15",
"config": {
"name": "path=1&pce=174.59.0.12&tid=tunnel:15&id=15",
"path-constraints": {
"metric-type": "ietf-te-types:path-metric-igp",
"cost-limit": 20000000,
"tiebreaker-type": "path-tiebreaker-maxfill"
},
"dynamic": [
null
]
},
"state": {
"name": "path=1&pce=174.59.0.12&tid=tunnel:15&id=15",
"lsp": [
{
"source": "11.12.0.1",
"destination": "11.12.0.9",
"tunnel-id": 17005,
"lsp-id": 1,
"extended-tunnel-id": "11.12.0.1",
"type": "ietf-te-types:tunnel-p2p"
}
]
}
}
]
}
]
},
"lsps-state": {
"lsp": [
{
"source": "11.12.0.1",
"destination": "11.12.0.9",
"tunnel-id": 16996,
"lsp-id": 1,
"extended-tunnel-id": "11.12.0.1",
"type": "ietf-te-types:tunnel-p2p",
"lsp-protection-role": "working",
"oper-status": "ietf-te-types:state-up",
"origin-type": "ingress",
"lsp-resource-status": "primary"
},
{
"source": "11.12.0.1",
"destination": "11.12.0.9",
"tunnel-id": 16997,
"lsp-id": 1,
"extended-tunnel-id": "11.12.0.1",
"type": "ietf-te-types:tunnel-p2p",
"lsp-protection-role": "working",
"oper-status": "ietf-te-types:state-up",
"origin-type": "ingress",
"lsp-resource-status": "primary"
},
{
"source": "11.12.0.1",
"destination": "11.12.0.9",
"tunnel-id": 16998,
"lsp-id": 1,
"extended-tunnel-id": "11.12.0.1",
"type": "ietf-te-types:tunnel-p2p",
"lsp-protection-role": "working",
"oper-status": "ietf-te-types:state-up",
"origin-type": "ingress",
"lsp-resource-status": "primary"
},
{
"source": "11.12.0.1",
"destination": "11.12.0.9",
"tunnel-id": 17005,
"lsp-id": 1,
"extended-tunnel-id": "11.12.0.1",
"type": "ietf-te-types:tunnel-p2p",
"lsp-protection-role": "working",
"oper-status": "ietf-te-types:state-up",
"origin-type": "ingress",
"lsp-resource-status": "primary"
}
]
}
}
This operation does not accept a request body.
GET container ietf-te:te.
See the /data example
This operation does not accept a request body.
GET container ietf-yang-library:modules-state.
Response example:
{
"module-set-id": "ac77dcbcf7bde64024c6f8950ef9ac3f",
"module": [
{
"name": "ietf-inet-types",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-inet-types",
"revision": "2013-07-15",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-network",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-network",
"revision": "2017-01-03",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-yang-types",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-yang-types",
"revision": "2013-07-15",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-te-types",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-te-types",
"revision": "2016-10-26",
"feature": [
"p2mp-te",
"frr-te",
"extended-admin-groups",
"named-path-affinities",
"named-extended-admin-groups",
"named-srlg-groups",
"named-path-constraints"
],
"conformance-type": "implement"
},
{
"name": "ietf-network-topology",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-network-topology",
"revision": "2017-01-03",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-te-topology",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-te-topology",
"revision": "2017-01-10",
"feature": [
"nsrlg",
"te-topology-hierarchy",
"template"
],
"conformance-type": "implement"
},
{
"name": "ietf-te",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-te",
"revision": "2016-10-26",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-interfaces",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-interfaces",
"revision": "2014-05-08",
"feature": [
"arbitrary-names",
"pre-provisioning",
"if-mib"
],
"conformance-type": "implement"
},
{
"name": "ietf-routing",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-routing",
"revision": "2016-08-18",
"feature": [
"multiple-ribs",
"router-id"
],
"conformance-type": "implement"
},
{
"name": "ietf-rsvp",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-rsvp",
"revision": "2016-10-29",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-mpls",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-mpls",
"revision": "2016-07-05",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-te-mpls-types",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-te-mpls-types",
"revision": "2016-10-26",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-te-device",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-te-device",
"revision": "2016-10-26",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-rsvp-te-mpls",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-rsvp-te-mpls",
"revision": "2016-10-26",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-yang-library",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-yang-library",
"revision": "2016-06-21",
"feature": [],
"conformance-type": "implement"
},
{
"name": "ietf-te-operations",
"namespace": "urn:ietf:params:xml:ns:yang:ietf-te-operations",
"revision": "2016-12-08",
"feature": [],
"conformance-type": "implement"
}
]
}
This operation does not accept a request body.
GET container ietf-yang-library:modules-state.
See the /data example
This operation does not accept a request body.
NorthStar supports the following RESTCONF RPCs
RPC ietf-te-operations:tunnel-atomic-create
Execute the RPC calls ietf-te-operations:tunnel-atomic-create defined in ietf-te-operations. Atomic request for tunnel operation in case of cooperative operation. Requested tunnel is created in the datastore only if feasible; in other terms resources are available at the time of the RPC. The creation is done according to requested attributes: so if compute-only flag is present, no resources are allocated in the network. The tunnels, created using this RPC, are not ephemeral. In case of no path found or of failure no tunnel must be created both in the datastore and in the network: no resource must remain allocated. The RPC MUST return only when all the operations are concluded, also in the network if requested.
NorthStar has additional restrictions, described by the following schema:
{"id":"ietf-te-operations-deviation.json","title":"NS restrictions","$schema":"http://json-schema.org/draft-04/schema#","$ref":"ietf-te-operations-deviation.json#/definitions/tunnelConfig","definitions":{"tunnelConfig":{"type":"object","required":["name","source","destination","identifier"],"additionalProperties":true,"properties":{"identifier":{"type":"integer"},"source":{"type":"string"},"destination":{"type":"string"},"type":{"type":"string","enum":["ietf-te-types:tunnel-p2p"]},"admin-status":{"type":"string","enum":["ietf-te-types:state-up"]},"lsp-protection-type":{"type":"string","enum":["lsp-prot-unprotected","lsp-prot-reroute-extra","lsp-prot-reroute","ietf-te-types:lsp-prot-unprotected","ietf-te-types:lsp-prot-reroute-extra","ietf-te-types:lsp-prot-reroute"]}}}}}
Request example:
{
"input": {
"tunnel-request": [
{
"id": "11",
"config": {
"identifier": 15,
"name": "tunnel-type=p2p&pce=174.59.0.12&tid=tunnel:15&id=15",
"source": "11.12.0.1",
"destination": "11.12.0.9",
"lsp-priority-setup": 3,
"lsp-priority-hold": 0,
"te-bandwidth": {
"psc": "SZiWgA=="
}
},
"primary-paths": [
{
"config": {
"name": "path=1&pce=174.59.0.12&tid=tunnel:15&id=15",
"preference": 1,
"dynamic": [
null
],
"path-constraints": {
"cost-limit": 20000000,
"metric-type": "ietf-te-types:path-metric-igp"
}
}
}
]
}
]
}
}
Response example:
{
"output": {
"response": [
{
"id": "11",
"source": "11.12.0.1",
"destination": "11.12.0.9",
"tunnel-name": "tunnel-type=p2p&pce=174.59.0.12&tid=tunnel:15&id=15 11.12.0.1",
"tunnel-identifier": 52,
"primary-paths": [
{
"state": {
"name": "path=1&pce=174.59.0.12&tid=tunnel:15&id=15",
"path-constraints": {
"metric-type": "ietf-te-types:path-metric-igp",
"cost-limit": 20000000
},
"dynamic": [
null
]
}
}
]
}
]
}
}
RPC ietf-te-operations:tunnel-atomic-delete
Execute the RPC calls ietf-te-operations:tunnel-atomic-delete defined in ietf-te-operations. The RPC is an Atomic request for tunnel operation in case of cooperative operation. Requested tunnel is removed in the datastore only if feasible; The RPC MUST return only when all the operations are concluded, also in the network if requested.
NorthStar has additional restrictions, described by the following schema:
{"id":"ietf-te-operations-deviation.json","title":"NS restrictions","$schema":"http://json-schema.org/draft-04/schema#","$ref":"ietf-te-operations-deviation.json#/definitions/tunnelConfig","definitions":{"tunnelConfig":{"type":"object","required":["name","source","destination","identifier"],"additionalProperties":true,"properties":{"identifier":{"type":"integer"},"source":{"type":"string"},"destination":{"type":"string"},"type":{"type":"string","enum":["ietf-te-types:tunnel-p2p"]},"admin-status":{"type":"string","enum":["ietf-te-types:state-up"]},"lsp-protection-type":{"type":"string","enum":["lsp-prot-unprotected","lsp-prot-reroute-extra","lsp-prot-reroute","ietf-te-types:lsp-prot-unprotected","ietf-te-types:lsp-prot-reroute-extra","ietf-te-types:lsp-prot-reroute"]}}}}}
Response example: