IPI-RSVP-TRUNK
Configure path name
Use this attribute to configure the path
Attribute Name: path-name
Attribute Type: string
Attribute Range: 1-128
Attribute Name: path-type
Attribute Type: enum (mpls|gmpls)
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<rsvp-paths>
<rsvp-path>
<path-name>PATHNAME</path-name>
<config>
<path-name>PATHNAME</path-name>
<path-type>mpls</path-type>
</config>
</rsvp-path>
</rsvp-paths>
</rsvp-te>
Command Syntax
rsvp-path PATHNAME (mpls|gmpls|)
Configure hop address
Use this attribute to define an explicit IPv4 or IPv6 route sub-object as either loose or strict hop. A list of sub-objects specifies an explicit route to the egress router for an LSP
Attribute Name: hop-address
Attribute Type: inet:ipv4-address
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<rsvp-paths>
<rsvp-path>
<path-name>PATHNAME</path-name>
<config>
<path-name>PATHNAME</path-name>
</config>
<explicit-route-object>
<mpls-hops>
<mpls-hop> <!-- operation="delete"-->
<hop-type>loose</hop-type>
<config>
<hop-type>loose</hop-type>
<hop-address>A.B.C.D</hop-address>
</config>
<hop-address>A.B.C.D</hop-address>
</mpls-hop>
</mpls-hops>
</explicit-route-object>
</rsvp-path>
</rsvp-paths>
</rsvp-te>
Command Syntax
A.B.C.D (loose|strict)
Configure strict hop address
Use this attribute to define an ERO path for a numbered (IPv4) interface. Only strict hops can be configured, and the strict type is implicit.
Attribute Name: strict-hop-address
Attribute Type: inet:ipv4-address
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<rsvp-paths>
<rsvp-path>
<path-name>PATHNAME</path-name>
<config>
<path-name>PATHNAME</path-name>
</config>
<explicit-route-object>
<gmpls-strict-hops>
<gmpls-strict-hop>
<strict-hop-address>A.B.C.D</strict-hop-address>
<config>
<strict-hop-address>A.B.C.D</strict-hop-address>
</config>
</gmpls-strict-hop>
</gmpls-strict-hops>
</explicit-route-object>
</rsvp-path>
</rsvp-paths>
</rsvp-te>
Command Syntax
strict-hop A.B.C.D
Configure unnumbered ip addr
Use this attribute to define an ERO path for an unnumbered interface. Both the router ID and the link ID must be entered.
Attribute Name: unnumbered-ip-addr
Attribute Type: inet:ipv4-address
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<rsvp-paths>
<rsvp-path>
<path-name>PATHNAME</path-name>
<config>
<path-name>PATHNAME</path-name>
</config>
<explicit-route-object>
<gmpls-unnumbered-entry>
<gmpls-unnumbered-hop>
<link-id>1</link-id>
<config>
<link-id>1</link-id>
<unnumbered-ip-addr>A.B.C.D</unnumbered-ip-addr>
</config>
<unnumbered-ip-addr>A.B.C.D</unnumbered-ip-addr>
</gmpls-unnumbered-hop>
</gmpls-unnumbered-entry>
</explicit-route-object>
</rsvp-path>
</rsvp-paths>
</rsvp-te>
Command Syntax
unnumbered A.B.C.D link-id <1-4294967295>
Configure bypass name
rsvp trunk bypass name
Attribute Name: bypass-name
Attribute Type: string
Attribute Range: 1-32
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
rsvp-bypass BYPASSNAME
Configure ingress
Use this attribute to specify a from IPv4 address for the RSVP daemon. In the RSVP trunk mode, this command indicates a sender’s address in the sender template object that is used in path messages.
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: ingress
Attribute Type: inet:ipv4-address
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<ingress>A.B.C.D</ingress> <!-- operation="delete"-->
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
from A.B.C.D
Configure egress
Use this attribute to specify an IPv4 egress for an LSP. When configuring an LSP, you must specify the address of the egress router by using this command in the trunk node. An egress definition is a mandatory attribute; no RSVP session is created when an egress is not defined.
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: egress
Attribute Type: inet:ipv4-address
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<egress>A.B.C.D</egress> <!-- operation="delete"-->
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
to A.B.C.D
Configure ext tunnel id
Use this attribute to configure an extended-tunnel identifier as an IPv4/IPv6 address. These identifiers are used in RSVP messages. If no extended-tunnel ID is specified, the LSR-ID for the router is used as the extended-tunnel ID for all LSPs. The extended-tunnel ID is a simple way of identifying all LSPs belonging to the same trunk.
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: ext-tunnel-id
Attribute Type: inet:ipv4-address
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<ext-tunnel-id>A.B.C.D</ext-tunnel-id> <!-- operation="delete"-->
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
ext-tunnel-id A.B.C.D
Configure update type
Use this attribute to change the method of updating attributes for sessions (primary/ secondary) for this trunk as either make-before-break (default) or break-before-make
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: update-type
Attribute Type: enum (break-before-make|make-before-break)
Default Value: make-before-break
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<update-type>make-before-break</update-type> <!-- operation="delete"-->
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
update-type (break-before-make|make-before-break)
Configure backup bandwidth type
rsvp bypass trunk backup bandwidth type
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: backup-bandwidth-type
Attribute Type: enum (best-effort|dedicated)
Default Value: best-effort
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<backup-bandwidth-type>best-effort</backup-bandwidth-type> <!-- operation="delete"-->
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
backup-bw-type (best-effort|dedicated)
Configure disable route record
Use this attribute to enable recording of the route taken by Path and Reservation Request (Resv) messages. These messages confirm the establishment of reservations and also identifies errors. Routes are recorded by means of the Route Record Object (RRO) in the RSVP message.
Attribute Name: disable-route-record
Attribute Type: uint8
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<session>
<config>
</disable-route-record><!-- operation="delete"-->
</config>
</session>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
no record
Configure enable reuse route record
Use this attribute to use the updated Route Record List as an Explicit Route (with all strict nodes) when a path message is sent out at the next refresh.
Attribute Name: enable-reuse-route-record
Attribute Type: uint8
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<session>
<config>
</enable-reuse-route-record><!-- operation="delete"-->
</config>
</session>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
reuse-route-record
Configure traffic type
Use this attribute to identify the traffic type for this RSVP Trunk/bypss/P2MP LSP’s
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: traffic-type
Attribute Type: enum (controlled-load|guaranteed)
Default Value: controlled-load
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<session>
<config>
<traffic-type>controlled-load</traffic-type> <!-- operation="delete"-->
</config>
</session>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
traffic (controlled-load|guaranteed)
Configure retry count
Use this attribute to specify a retry count for an RSVP Trunk.
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: retry-count
Attribute Type: uint16
Attribute Range: 1-65535
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<session>
<config>
<retry-count>1</retry-count> <!-- operation="delete"-->
</config>
</session>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
retry-limit <1-65535>
Configure retry interval
Use this attribute to specify a retry interval for an RSVP Trunk. When an ingress node tries to configure an LSP and the setup fails due to the receipt of a Path Error message, the system waits for the time configured with this command, before retrying the LSP setup process
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: retry-interval
Attribute Type: uint16
Default Value: 30
Attribute Range: 1-600
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<session>
<config>
<retry-interval>1</retry-interval> <!-- operation="delete"-->
</config>
</session>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
retry-timer <1-600>
Configure cspf retry count
Use this attribute to specify the number of retries that CSPF should carry out for a request received from RSVP.
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: cspf-retry-count
Attribute Type: uint16
Attribute Range: 1-65535
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<session>
<config>
<cspf-retry-count>1</cspf-retry-count> <!-- operation="delete"-->
</config>
</session>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
cspf-retry-limit <1-65535>
Configure cspf retry interval
Use this attribute to specify the time between each retry that CSPF might carry out for a request received from RSVP.
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: cspf-retry-interval
Attribute Type: uint16
Default Value: 30
Attribute Range: 1-600
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<session>
<config>
<cspf-retry-interval>1</cspf-retry-interval> <!-- operation="delete"-->
</config>
</session>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
cspf-retry-timer <1-600>
Configure exclude addr
Use this attribute to exclude an address link or address node from the LSP creation of the Bypass Tunnel.
Attribute Name: exclude-addr
Attribute Type: inet:ipv4-address
Attribute Name: exclude-type
Attribute Type: enum (link|node)
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<session>
<exclude-path>
<config>
<exclude-type>node</exclude-type>
<exclude-addr>A.B.C.D</exclude-addr>
</config>
</exclude-path>
</session>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
exclude-address (link|node) A.B.C.D
Configure bandwidth
Use this attribute to reserve the primary/secondary bandwidth in bits per second for the current trunk.
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: bandwidth
Attribute Type: string
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<session>
<path-state-block>
<config>
<bandwidth>BANDWIDTH</bandwidth> <!-- operation="delete"-->
</config>
</path-state-block>
</session>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
bandwidth BANDWIDTH
Configure enable label record
Use this attribute to record all labels exchanged between RSVP-enabled routers during the reservation setup process
Attribute Name: enable-label-record
Attribute Type: uint8
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<session>
<path-state-block>
<session-attributes>
<config>
</enable-label-record><!-- operation="delete"-->
</config>
</session-attributes>
</path-state-block>
</session>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
label-record
Configure hold priority
Use this attribute to configure the hold priority value for the selected trunk.
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: hold-priority
Attribute Type: uint8
Default Value: 0
Attribute Range: 0-7
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<session>
<path-state-block>
<session-attributes>
<config>
<hold-priority>0</hold-priority> <!-- operation="delete"-->
</config>
</session-attributes>
</path-state-block>
</session>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
hold-priority <0-7>
Configure setup priority
Use this attribute to configure the setup priority value for the selected trunk
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: setup-priority
Attribute Type: uint8
Default Value: 7
Attribute Range: 0-7
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<session>
<path-state-block>
<session-attributes>
<config>
<setup-priority>0</setup-priority> <!-- operation="delete"-->
</config>
</session-attributes>
</path-state-block>
</session>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
setup-priority <0-7>
Configure hop limit
Use this attribute to specify a limit of hops for an RSVP trunk. Hop-limit data is sent to the CSPF server if CSPF is used.
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: hop-limit
Attribute Type: uint16
Default Value: 255
Attribute Range: 1-255
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<session>
<path-state-block>
<session-attributes>
<config>
<hop-limit>1</hop-limit> <!-- operation="delete"-->
</config>
</session-attributes>
</path-state-block>
</session>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
hop-limit <1-255>
Configure filter type
Use this attribute to set the filter to fixed or shared filter style for RSVP trunk.
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: filter-type
Attribute Type: enum (fixed|shared-explicit)
Default Value: shared-explicit
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<session>
<path-state-block>
<session-attributes>
<config>
<filter-type>shared-explicit</filter-type> <!-- operation="delete"-->
</config>
</session-attributes>
</path-state-block>
</session>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
filter (fixed)
Configure llsp class
to configure a Differentiated Services Label-Only-Inferred-PSC (Diff-Serv L-LSP) that uses Diff-Serv Class as its PHB Scheduling Class (PSC).
This command is supported when following feature are enabled MPLS-FRR feature,diffserv feature
Attribute Name: llsp-class
Attribute Type: string
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<session>
<diff-serv-info>
<config>
<llsp-class>0</llsp-class> <!-- operation="delete"-->
</config>
</diff-serv-info>
</session>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
llsp class <0-7>
Configure dscp exp map exp val
rsvp trunk dsinfo exp val
Attribute Name: dscp-exp-map-exp-val
Attribute Type: int32
Attribute Range: 0-7
Attribute Name: dscp-exp-map-class-name
Attribute Type: string
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<bypass-trunks>
<bypass-trunk>
<bypass-name>BYPASSNAME</bypass-name>
<config>
<bypass-name>BYPASSNAME</bypass-name>
</config>
<session>
<diff-serv-info>
<dscp-exp-maps>
<dscp-exp-map>
<dscp-exp-map-exp-val>0</dscp-exp-map-exp-val>
<config>
<dscp-exp-map-exp-val>0</dscp-exp-map-exp-val>
<dscp-exp-map-class-name>CLASS</dscp-exp-map-class-name>
</config>
</dscp-exp-map>
</dscp-exp-maps>
</diff-serv-info>
</session>
</bypass-trunk>
</bypass-trunks>
</trunks>
</rsvp-te>
Command Syntax
class-to-exp-bit (CLASS|<0-7>) <0-7>
Configure trunk name
rsvp trunk name
Attribute Name: trunk-name
Attribute Type: string
Attribute Range: 1-32
Attribute Name: trunk-family
Attribute Type: enum (gmpls|ipv4)
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
<trunk-family>ipv4</trunk-family>
</config>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
rsvp-trunk TRUNKNAME (gmpls|ipv4|)
Configure enable igp shortcut
Use this attrinute to enable Interior Gateway Protocol (IGP) Shortcut. With IGP Shortcut, link-state IGPs calculate IP routes to forward traffic over tunnels configured by TE.
Attribute Name: enable-igp-shortcut
Attribute Type: uint8
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
</enable-igp-shortcut><!-- operation="delete"-->
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
enable-igp-shortcut
Configure enable reoptimize
Use this attribute to enable the reoptimization for the RSVP Trunk
Attribute Name: enable-reoptimize
Attribute Type: uint8
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
</enable-reoptimize><!-- operation="delete"-->
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
reoptimize
Configure absolute metric
Use this attribute to set LSP absolute metric metric for IGP Shortcut use
Attribute Name: absolute-metric
Attribute Type: uint32
Attribute Range: 1-65535
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<absolute-metric>1</absolute-metric> <!-- operation="delete"-->
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
lsp-metric absolute-metric <1-65535>
Configure relative metric
Use this attribute to set LSP relative metric metric for IGP Shortcut use
Attribute Name: relative-metric
Attribute Type: int32
Attribute Range: -65535-0,1-65535
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<relative-metric>-65535</relative-metric> <!-- operation="delete"-->
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
lsp-metric relative (<-65535-0>|<1-65535>)
Configure revert timer
Use this attribute configure the Hold-on timer before revert back to RSVP session
Attribute Name: revert-timer
Attribute Type: uint32
Default Value: 60
Attribute Range: 1-65535
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<revert-timer>1</revert-timer> <!-- operation="delete"-->
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
revert-timer <1-65535>
Configure bsid value
Use this attribute to configure static binding segment identifier value
Attribute Name: bsid-value
Attribute Type: uint32
Attribute Range: 16-15999
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<bsid-value>16</bsid-value> <!-- operation="delete"-->
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
binding-sid mpls label <16-15999>
Configure switching capability
Use this attribute to configure a switching capability for the RSVP Trunk
This command is supported when following feature are enabled gmpls feature
Attribute Name: switching-capability
Attribute Type: enum (psc-1|psc-2|psc-3|psc-4)
Default Value: psc-1
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<gmpls>
<config>
<switching-capability>psc-1</switching-capability> <!-- operation="delete"-->
</config>
</gmpls>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
capability (psc-1|psc-2|psc-3|psc-4)
Configure direction
Use this attribute to configure a direction for the RSVP Trunk
This command is supported when following feature are enabled gmpls feature
Attribute Name: direction
Attribute Type: enum (unidirectional|bidirectional)
Default Value: unidirectional
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<gmpls>
<config>
<direction>unidirectional</direction> <!-- operation="delete"-->
</config>
</gmpls>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
direction (unidirectional|bidirectional)
Configure generalized pid
Use this attribute to configure a generalized PID for the RSVP Trunk
This command is supported when following feature are enabled gmpls feature
Attribute Name: generalized-pid
Attribute Type: enum (ethernet|ipv4)
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<gmpls>
<config>
<generalized-pid>ethernet</generalized-pid> <!-- operation="delete"-->
</config>
</gmpls>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
gpid (ethernet|ipv4)
Configure address
rsvp trunk ipv4 map route address
Attribute Name: address
Attribute Type: string
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<mapped-ip-routes>
<mapped-ip-route>
<address>A.B.C.D/M</address>
<config>
<address>A.B.C.D/M|A.B.C.D A.B.C.D</address>
</config>
</mapped-ip-route>
</mapped-ip-routes>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
map-route (A.B.C.D/M|A.B.C.D A.B.C.D)
Configure dst addr
rsvp trunk map route address
Attribute Name: dst-addr
Attribute Type: string
Attribute Name: name
Attribute Type: string
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<mapped-prefix-class-routes>
<mapped-prefix-class-route>
<dst-addr>A.B.C.D/M</dst-addr>
<config>
<dst-addr>A.B.C.D/M</dst-addr>
<name>CLASS</name>
</config>
</mapped-prefix-class-route>
</mapped-prefix-class-routes>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
map-route (A.B.C.D/M|A.B.C.D A.B.C.D) CLASS
Configure priority value
Use this attribute to configure the secondary priorities of the RSVP Trunk.
Attribute Name: priority-value
Attribute Type: int32
Attribute Range: 1-5
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<secondary-priorities>
<secondary-priority> <!-- operation="delete"-->
<priority-value>1</priority-value>
<config>
<priority-value>1</priority-value>
</config>
</secondary-priority>
</secondary-priorities>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
secondary-priority <1-5>
Configure priority path
Use this attribute to configure the secondary priority path for the RSVP Trunk.
Attribute Name: priority-path
Attribute Type: string
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<secondary-priorities>
<secondary-priority>
<priority-value>1</priority-value>
<config>
<priority-value>1</priority-value>
</config>
<priority-path>PATHNAME</priority-path> <!-- operation="delete"-->
</secondary-priority>
</secondary-priorities>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
secondary-priority <1-5> path PATHNAME
Configure secondary priority srlg disjoint
Use this attribute to configure the SRLG disjoint path for the RSVP Trunk.
Attribute Name: secondary-priority-srlg-disjoint
Attribute Type: enum (forced|preferred)
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<secondary-priorities>
<secondary-priority>
<priority-value>1</priority-value>
<config>
<priority-value>1</priority-value>
</config>
<secondary-priority-srlg-disjoint>forced</secondary-priority-srlg-disjoint> <!-- operation="delete"-->
</secondary-priority>
</secondary-priorities>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
secondary-priority <1-5> srlg-disjoint (forced|preferred)
Configure end label range
Use this attribute to configure the gmpls label set end label
This command is supported when following feature are enabled gmpls feature
Attribute Name: end-label-range
Attribute Type: int32
Attribute Range: 16-1048575
Attribute Name: action-type
Attribute Type: boolean
Attribute Name: start-label-range
Attribute Type: int32
Attribute Range: 16-1048575
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<gmpls-label-set>
<config>
<action-type>true</action-type>
<start-label-range>16</start-label-range>
<end-label-range>16</end-label-range>
</config>
</gmpls-label-set>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
gmpls-label-set (packet|) range <16-1048575> <16-1048575>
Configure enable node protection
Use this attribute to configure fast-reroute node-protection
Attribute Name: enable-node-protection
Attribute Type: uint8
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<fast-reroute>
<config>
</enable-node-protection><!-- operation="delete"-->
</config>
</fast-reroute>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(primary) fast-reroute node-protection
Configure protection
Use this attribute to create an Fast Reroute backup and to set an LSP one-to-one protection mechanism. This command can also be used to create an FRR Facility (Bypass) backup and assign a Facility Backup (Bypass Tunnel) available to the protected LSP.
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: protection
Attribute Type: enum (one-to-one|facility)
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<fast-reroute>
<config>
<protection>one-to-one</protection> <!-- operation="delete"-->
</config>
</fast-reroute>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(primary) fast-reroute protection (one-to-one|facility)
Configure frr hold priority
Use this attribute to configure the hold priority value for the selected trunk.
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: frr-hold-priority
Attribute Type: uint32
Default Value: 0
Attribute Range: 0-7
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<fast-reroute>
<config>
<frr-hold-priority>0</frr-hold-priority> <!-- operation="delete"-->
</config>
</fast-reroute>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(primary) fast-reroute hold-priority <0-7>
Configure frr setup priority
Use this attribute to configure the setup priority value for the selected trunk
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: frr-setup-priority
Attribute Type: uint32
Default Value: 7
Attribute Range: 0-7
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<fast-reroute>
<config>
<frr-setup-priority>0</frr-setup-priority> <!-- operation="delete"-->
</config>
</fast-reroute>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(primary) fast-reroute setup-priority <0-7>
Configure frr hop limit
Use this attribute to specify a limit of hops for an RSVP trunk. Hop-limit data is sent to the CSPF server if CSPF is used.
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: frr-hop-limit
Attribute Type: uint32
Default Value: 255
Attribute Range: 1-255
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<fast-reroute>
<config>
<frr-hop-limit>1</frr-hop-limit> <!-- operation="delete"-->
</config>
</fast-reroute>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(primary) fast-reroute hop-limit <1-255>
Configure fast reroute bandwidth
Use this attribute to reserve the primary/secondary bandwidth in bits per second for the current trunk.
This command is supported when following feature are enabled MPLS-FRR feature
Attribute Name: fast-reroute-bandwidth
Attribute Type: string
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<fast-reroute>
<config>
<fast-reroute-bandwidth>BANDWIDTH</fast-reroute-bandwidth> <!-- operation="delete"-->
</config>
</fast-reroute>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(primary) fast-reroute bandwidth BANDWIDTH
Configure admin group name
rsvp admin group name
Attribute Name: admin-group-name
Attribute Type: string
Attribute Name: admin-group-type
Attribute Type: enum (exclude-any|include-any)
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<fast-reroute>
<frr-admin-groups>
<frr-admin-group>
<admin-group-name>ADMIN-GROUP-NAME</admin-group-name>
<config>
<admin-group-name>ADMIN-GROUP-NAME</admin-group-name>
<admin-group-type>exclude-any</admin-group-type>
</config>
</frr-admin-group>
</frr-admin-groups>
</fast-reroute>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(primary) fast-reroute (exclude-any|include-any) ADMIN-GROUP-NAME
Configure srlg disjoint secondary
Use this attribute to enable secondary srlg disjoint
This command is supported when following feature are enabled Shared Risk Link Group
Attribute Name: srlg-disjoint-secondary
Attribute Type: enum (forced|preferred)
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<srlg>
<config>
<srlg-disjoint-secondary>forced</srlg-disjoint-secondary> <!-- operation="delete"-->
</config>
</srlg>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(secondary) srlg-disjoint (forced|preferred)
Configure trunk session type
rsvp trunk session type
Attribute Name: trunk-session-type
Attribute Type: enum (secondary|primary)
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session> <!-- operation="delete"-->
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(secondary)
Configure disable affinity
Use this attribute to enable sending of session attribute objects with resource affinity data.
Attribute Name: disable-affinity
Attribute Type: uint8
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session>
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
</disable-affinity><!-- operation="delete"-->
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
no (secondary|primary) affinity
Configure disable cspf
Use this attribute to enable the use of Constrained Shortest Path First (CSPF) server for an explicit route to the egress, or all RSVP sessions. When CSPF is turned off globally, it cannot be enabled for any LSP.
Attribute Name: disable-cspf
Attribute Type: uint8
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session>
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
</disable-cspf><!-- operation="delete"-->
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
no (secondary|primary) cspf
Configure enable local protection
Use this attribute to enable the local repair of explicit routes for which this router is a transit node.
Attribute Name: enable-local-protection
Attribute Type: uint8
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session>
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
</enable-local-protection><!-- operation="delete"-->
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(secondary|primary) local-protection
Configure name
rsvp admin group name
Attribute Name: name
Attribute Type: string
Attribute Name: type
Attribute Type: enum (exclude-any|include-any|include-all)
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session>
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
<admin-groups>
<admin-group>
<name>ADMIN-GROUP-NAME</name>
<config>
<name>ADMIN-GROUP-NAME</name>
<type>exclude-any</type>
</config>
</admin-group>
</admin-groups>
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(secondary|primary) (exclude-any|include-any|include-all) ADMIN-GROUP-NAME
Configure link protection
Use this attribute to configure the gmpls link-protection for the RSVP Trunk
Attribute Name: link-protection
Attribute Type: enum (extra-traffic|unprotected|shared|dedicated-one-to-one|dedicated-one-plus-one|enhanced)
Default Value: unprotected
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session>
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
<gmpls-attributes>
<config>
<link-protection>unprotected</link-protection> <!-- operation="delete"-->
</config>
</gmpls-attributes>
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(secondary|primary) protection (extra-traffic|unprotected|shared|dedicated-one-to-one|dedicated-one-plus-one|enhanced)
Configure forward label value
Use this attribute to configure the explicit label supported for an LSP.
Attribute Name: forward-label-value
Attribute Type: uint32
Attribute Range: 16-1048575
Attribute Name: forward-direction
Attribute Type: enum (forward|packet forward)
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session>
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
<gmpls-attributes>
<explicit-forward>
<forward-label-value>16</forward-label-value>
<config>
<forward-label-value>16</forward-label-value>
<forward-direction>forward</forward-direction>
</config>
</explicit-forward>
</gmpls-attributes>
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(secondary|primary) explicit-label <16-1048575> (forward|packet forward)
Configure reverse label value
Use this attribute to configure the explicit label supported for an LSP.
Attribute Name: reverse-label-value
Attribute Type: uint32
Attribute Range: 16-1048575
Attribute Name: reverse-direction
Attribute Type: enum (reverse|packet reverse)
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session>
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
<gmpls-attributes>
<explicit-reverse>
<reverse-label-value>16</reverse-label-value>
<config>
<reverse-label-value>16</reverse-label-value>
<reverse-direction>reverse</reverse-direction>
</config>
</explicit-reverse>
</gmpls-attributes>
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(secondary|primary) explicit-label <16-1048575> (reverse|packet reverse)
Configure dscp exp map class name
rsvp trunk dsinfo exp val
Attribute Name: dscp-exp-map-exp-val
Attribute Type: int32
Attribute Range: 0-7
Attribute Name: dscp-exp-map-class-name
Attribute Type: string
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session>
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
<diff-serv-info>
<dscp-exp-maps>
<dscp-exp-map>
<dscp-exp-map-exp-val>0</dscp-exp-map-exp-val>
<config>
<dscp-exp-map-exp-val>0</dscp-exp-map-exp-val>
<dscp-exp-map-class-name>CLASS</dscp-exp-map-class-name>
</config>
</dscp-exp-map>
</dscp-exp-maps>
</diff-serv-info>
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(secondary|primary) class-to-exp-bit CLASS <0-7>
Configure elsp signal
Use this attribute to configure a primary Diff-Serv (Differentiated Services) explicitly signaled E-LSP (EXP-InferredPSC LSP) interface.
This command is supported when following feature are enabled diffserv feature
Attribute Name: elsp-signal
Attribute Type: empty
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session>
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
<diff-serv-info>
<elsp-class>
<config>
</elsp-signal>
</config>
</elsp-class>
</diff-serv-info>
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(secondary|primary) elsp-signaled
Configure elsp signal class1
Use this attribute to configure a primary Diff-Serv (Differentiated Services) explicitly signaled E-LSP (EXP-InferredPSC LSP) interface class1
This command is supported when following feature are enabled diffserv feature
Attribute Name: elsp-signal-class1
Attribute Type: string
Attribute Name: elsp-signal
Attribute Type: empty
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session>
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
<diff-serv-info>
<elsp-class>
<config>
</elsp-signal><!-- operation="delete"-->
<elsp-signal-class1>CLASS1</elsp-signal-class1> <!-- operation="delete"-->
</config>
</elsp-class>
</diff-serv-info>
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(secondary|primary) elsp-signaled CLASS1
Configure elsp signal class2
Use this attribute to configure a primary Diff-Serv (Differentiated Services) explicitly signaled E-LSP (EXP-InferredPSC LSP) interface class2
This command is supported when following feature are enabled diffserv feature
Attribute Name: elsp-signal-class2
Attribute Type: string
Attribute Name: elsp-signal
Attribute Type: empty
Attribute Name: elsp-signal-class1
Attribute Type: string
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session>
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
<diff-serv-info>
<elsp-class>
<config>
</elsp-signal><!-- operation="delete"-->
<elsp-signal-class1>CLASS1</elsp-signal-class1> <!-- operation="delete"-->
<elsp-signal-class2>CLASS2</elsp-signal-class2> <!-- operation="delete"-->
</config>
</elsp-class>
</diff-serv-info>
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(secondary|primary) elsp-signaled CLASS1 CLASS2
Configure elsp signal class3
Use this attribute to configure a primary Diff-Serv (Differentiated Services) explicitly signaled E-LSP (EXP-InferredPSC LSP) interface class3
This command is supported when following feature are enabled diffserv feature
Attribute Name: elsp-signal-class3
Attribute Type: string
Attribute Name: elsp-signal
Attribute Type: empty
Attribute Name: elsp-signal-class1
Attribute Type: string
Attribute Name: elsp-signal-class2
Attribute Type: string
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session>
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
<diff-serv-info>
<elsp-class>
<config>
</elsp-signal><!-- operation="delete"-->
<elsp-signal-class1>CLASS1</elsp-signal-class1> <!-- operation="delete"-->
<elsp-signal-class2>CLASS2</elsp-signal-class2> <!-- operation="delete"-->
<elsp-signal-class3>CLASS3</elsp-signal-class3> <!-- operation="delete"-->
</config>
</elsp-class>
</diff-serv-info>
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(secondary|primary) elsp-signaled CLASS1 CLASS2 CLASS3
Configure elsp signal class4
Use this attribute to configure a primary Diff-Serv (Differentiated Services) explicitly signaled E-LSP (EXP-InferredPSC LSP) interface class4
This command is supported when following feature are enabled diffserv feature
Attribute Name: elsp-signal-class4
Attribute Type: string
Attribute Name: elsp-signal
Attribute Type: empty
Attribute Name: elsp-signal-class1
Attribute Type: string
Attribute Name: elsp-signal-class2
Attribute Type: string
Attribute Name: elsp-signal-class3
Attribute Type: string
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session>
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
<diff-serv-info>
<elsp-class>
<config>
</elsp-signal><!-- operation="delete"-->
<elsp-signal-class1>CLASS1</elsp-signal-class1> <!-- operation="delete"-->
<elsp-signal-class2>CLASS2</elsp-signal-class2> <!-- operation="delete"-->
<elsp-signal-class3>CLASS3</elsp-signal-class3> <!-- operation="delete"-->
<elsp-signal-class4>CLASS4</elsp-signal-class4> <!-- operation="delete"-->
</config>
</elsp-class>
</diff-serv-info>
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(secondary|primary) elsp-signaled CLASS1 CLASS2 CLASS3 CLASS4
Configure elsp signal class5
Use this attribute to configure a primary Diff-Serv (Differentiated Services) explicitly signaled E-LSP (EXP-InferredPSC LSP) interface class5
This command is supported when following feature are enabled diffserv feature
Attribute Name: elsp-signal-class5
Attribute Type: string
Attribute Name: elsp-signal
Attribute Type: empty
Attribute Name: elsp-signal-class1
Attribute Type: string
Attribute Name: elsp-signal-class2
Attribute Type: string
Attribute Name: elsp-signal-class3
Attribute Type: string
Attribute Name: elsp-signal-class4
Attribute Type: string
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session>
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
<diff-serv-info>
<elsp-class>
<config>
</elsp-signal><!-- operation="delete"-->
<elsp-signal-class1>CLASS1</elsp-signal-class1> <!-- operation="delete"-->
<elsp-signal-class2>CLASS2</elsp-signal-class2> <!-- operation="delete"-->
<elsp-signal-class3>CLASS3</elsp-signal-class3> <!-- operation="delete"-->
<elsp-signal-class4>CLASS4</elsp-signal-class4> <!-- operation="delete"-->
<elsp-signal-class5>CLASS5</elsp-signal-class5> <!-- operation="delete"-->
</config>
</elsp-class>
</diff-serv-info>
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(secondary|primary) elsp-signaled CLASS1 CLASS2 CLASS3 CLASS4 CLASS5
Configure elsp signal class6
Use this attribute to configure a primary Diff-Serv (Differentiated Services) explicitly signaled E-LSP (EXP-InferredPSC LSP) interface class6
This command is supported when following feature are enabled diffserv feature
Attribute Name: elsp-signal-class6
Attribute Type: string
Attribute Name: elsp-signal
Attribute Type: empty
Attribute Name: elsp-signal-class1
Attribute Type: string
Attribute Name: elsp-signal-class2
Attribute Type: string
Attribute Name: elsp-signal-class3
Attribute Type: string
Attribute Name: elsp-signal-class4
Attribute Type: string
Attribute Name: elsp-signal-class5
Attribute Type: string
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session>
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
<diff-serv-info>
<elsp-class>
<config>
</elsp-signal><!-- operation="delete"-->
<elsp-signal-class1>CLASS1</elsp-signal-class1> <!-- operation="delete"-->
<elsp-signal-class2>CLASS2</elsp-signal-class2> <!-- operation="delete"-->
<elsp-signal-class3>CLASS3</elsp-signal-class3> <!-- operation="delete"-->
<elsp-signal-class4>CLASS4</elsp-signal-class4> <!-- operation="delete"-->
<elsp-signal-class5>CLASS5</elsp-signal-class5> <!-- operation="delete"-->
<elsp-signal-class6>CLASS6</elsp-signal-class6> <!-- operation="delete"-->
</config>
</elsp-class>
</diff-serv-info>
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(secondary|primary) elsp-signaled CLASS1 CLASS2 CLASS3 CLASS4 CLASS5 CLASS6
Configure elsp signal class7
Use this attribute to configure a primary Diff-Serv (Differentiated Services) explicitly signaled E-LSP (EXP-InferredPSC LSP) interface class7
This command is supported when following feature are enabled diffserv feature
Attribute Name: elsp-signal-class7
Attribute Type: string
Attribute Name: elsp-signal
Attribute Type: empty
Attribute Name: elsp-signal-class1
Attribute Type: string
Attribute Name: elsp-signal-class2
Attribute Type: string
Attribute Name: elsp-signal-class3
Attribute Type: string
Attribute Name: elsp-signal-class4
Attribute Type: string
Attribute Name: elsp-signal-class5
Attribute Type: string
Attribute Name: elsp-signal-class6
Attribute Type: string
Netconf edit-config payload
<rsvp-te xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunks>
<ingress-trunks>
<ingress-trunk>
<trunk-name>TRUNKNAME</trunk-name>
<config>
<trunk-name>TRUNKNAME</trunk-name>
</config>
<sessions>
<session>
<trunk-session-type>secondary</trunk-session-type>
<config>
<trunk-session-type>secondary</trunk-session-type>
</config>
<diff-serv-info>
<elsp-class>
<config>
</elsp-signal><!-- operation="delete"-->
<elsp-signal-class1>CLASS1</elsp-signal-class1> <!-- operation="delete"-->
<elsp-signal-class2>CLASS2</elsp-signal-class2> <!-- operation="delete"-->
<elsp-signal-class3>CLASS3</elsp-signal-class3> <!-- operation="delete"-->
<elsp-signal-class4>CLASS4</elsp-signal-class4> <!-- operation="delete"-->
<elsp-signal-class5>CLASS5</elsp-signal-class5> <!-- operation="delete"-->
<elsp-signal-class6>CLASS6</elsp-signal-class6> <!-- operation="delete"-->
<elsp-signal-class7>CLASS7</elsp-signal-class7> <!-- operation="delete"-->
</config>
</elsp-class>
</diff-serv-info>
</session>
</sessions>
</ingress-trunk>
</ingress-trunks>
</trunks>
</rsvp-te>
Command Syntax
(secondary|primary) elsp-signaled CLASS1 CLASS2 CLASS3 CLASS4 CLASS5 CLASS6 CLASS7
clear rsvp session *
Netconf RPC payload
<ipi-rsvp-trunk_clear-rsvp-session xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp"/>
Command Syntax
clear rsvp session *
clear rsvp trunk (TRUNKNAME|*)
Attribute Name: trunk-name
Attribute Type: string
Netconf RPC payload
<ipi-rsvp-trunk_clear-rsvp-trunk xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunk-name>TRUNKNAME</trunk-name>
</ipi-rsvp-trunk_clear-rsvp-trunk>
Command Syntax
clear rsvp trunk (TRUNKNAME|*)
clear rsvp trunk (TRUNKNAME|*) (primary)
Attribute Name: trunk-name
Attribute Type: string
Netconf RPC payload
<ipi-rsvp-trunk_clear-rsvp-primary-trunk xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunk-name>TRUNKNAME</trunk-name>
</ipi-rsvp-trunk_clear-rsvp-primary-trunk>
Command Syntax
clear rsvp trunk (TRUNKNAME|*) (primary)
clear rsvp trunk (TRUNKNAME|*) (secondary)
Attribute Name: trunk-name
Attribute Type: string
Netconf RPC payload
<ipi-rsvp-trunk_clear-rsvp-secondary-trunk xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunk-name>TRUNKNAME</trunk-name>
</ipi-rsvp-trunk_clear-rsvp-secondary-trunk>
Command Syntax
clear rsvp trunk (TRUNKNAME|*) (secondary)
clear rsvp trunk ingress (TRUNKNAME|*)
Attribute Name: trunk-name
Attribute Type: string
Netconf RPC payload
<ipi-rsvp-trunk_clear-rsvp-ingress-trunk xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunk-name>TRUNKNAME</trunk-name>
</ipi-rsvp-trunk_clear-rsvp-ingress-trunk>
Command Syntax
clear rsvp trunk ingress (TRUNKNAME|*)
clear rsvp trunk non-ingress (TRUNKNAME|*)
Attribute Name: trunk-name
Attribute Type: string
Netconf RPC payload
<ipi-rsvp-trunk_clear-rsvp-non-ingress-trunk xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunk-name>TRUNKNAME</trunk-name>
</ipi-rsvp-trunk_clear-rsvp-non-ingress-trunk>
Command Syntax
clear rsvp trunk non-ingress (TRUNKNAME|*)
rsvp-trunk TRUNKNAME force-reoptimize
Attribute Name: trunk-name
Attribute Type: string
Netconf RPC payload
<ipi-rsvp-trunk_rsvp-trunk-force-reoptimize-on xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunk-name>TRUNKNAME</trunk-name>
</ipi-rsvp-trunk_rsvp-trunk-force-reoptimize-on>
Command Syntax
rsvp-trunk TRUNKNAME force-reoptimize
rsvp-trunk TRUNKNAME force-switchover-secondary (off|on)
Attribute Name: trunk-name
Attribute Type: string
Attribute Name: action
Attribute Type: enum (off|on)
Netconf RPC payload
<ipi-rsvp-trunk_rsvp-trunk-force-switchover-secondary xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunk-name>TRUNKNAME</trunk-name>
<action>off</action>
</ipi-rsvp-trunk_rsvp-trunk-force-switchover-secondary>
Command Syntax
rsvp-trunk TRUNKNAME force-switchover-secondary (off|on)
rsvp-trunk-restart
Attribute Name: trunk-name
Attribute Type: string
Netconf RPC payload
<ipi-rsvp-trunk_rsvp-trunk-restart xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<trunk-name>WORD</trunk-name>
</ipi-rsvp-trunk_rsvp-trunk-restart>
Command Syntax
rsvp-trunk-restart
clear rsvp session TUNNEL-ID LSP-ID INGRESS EGRESS
Attribute Name: tunnel-id
Attribute Type: uint32
Attribute Name: lsp-id
Attribute Type: uint32
Attribute Name: ingress
Attribute Type: inet:ipv4-address
Attribute Name: egress
Attribute Type: inet:ipv4-address
Netconf RPC payload
<ipi-rsvp-trunk_rsvp-session-reset xmlns="http://www.ipinfusion.com/yang/ocnos/ipi-rsvp">
<tunnel-id>TUNNEL-ID</tunnel-id>
<lsp-id>LSP-ID</lsp-id>
<ingress>INGRESS</ingress>
<egress>EGRESS</egress>
</ipi-rsvp-trunk_rsvp-session-reset>
Command Syntax
clear rsvp session TUNNEL-ID LSP-ID INGRESS EGRESS
Last modified date: 07-14-2023