home

Supported platforms

Vyatta documentation

Learn how to install, configure, and operate the Vyatta Network Operating System (Vyatta NOS) and Orchestrator, which help drive our virtual networking and physical platforms portfolio.

protocols mpls-rsvp globals explicit-paths explicit-route-objects address

Creates an explicit route object with a specified next-hop address for a specified path at a position indicated by an index value.

set protocols mpls-rsvp globals explicit-paths name explicit-route-objects 0-255 address x.x.x.x
delete protocols mpls-rsvp globals explicit-paths name explicit-route-objects 0-255 address x.x.x.x
show protocols mpls-rsvp globals explicit-paths name explicit-route-objects 0-255 address x.x.x.x
name
A path name.
0-255
The index value, which ranges from 0 through 255, that indicates a position in the path.
x.x.x.x
The address of the next-hop.

Configuration mode


protocols {
    mpls-rsvp {
        globals  {
            explicit-paths <name> {
                explicite-route-objects <0-255>  {
                    address X.X.X.X
                }
            } 
        }
    }
}

Use this command to create an explicit route object (where the object is a next-hop at the specified address) for a specified path at a position indicated by the specified index value. The explicit route object is configured with the address of the next hop in the path.

Use the set form of this command to create an explicit route object.

Use the delete form of this command to delete an explicit route object.

Use the show form of this command to display an explicit route object.

Example

The following example shows how to create an explicit route object with next-hop address 10.10.10.10 and the object is positioned at index value 100 in the path named path1.

vyatta@R1# set protocols mpls-rsvp globals explicit-path path1 explicit-route-objects 100 address 10.10.10.10