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.

Minimum MPLS RSVP example

Minimum configuration example for MPLS RSVP

MPLS RSVP must be enabled on interfaces before MPLS RSVP is supported.

This configuration example shows how to configure MPLS RSVP on the Head node with the vyatta@vm-mpls8-5# prompt, the Midpoint node with the vyatta@vm-mpls8-2# prompt, and the Tail node with the vyatta@vm-mpls8-7# prompt in the following topology:

Head --- Midpoint --- Tail

  1. Enter the following configuration commands for the Head node at the vyatta@vm-mpls8-5# prompt.
    
    set interfaces dataplane dp0p1s15 address 10.10.15.5/24
    set interfaces loopback lo address 5.5.5.5/32
    set protocols mpls-rsvp interfaces interface dp0p1s15
    set protocols mpls-rsvp tunnels tunnel t7 destination 7.7.7.7
    set protocols ospf area 0 network 5.5.5.5/32
    set protocols ospf area 0 network 10.10.15.0/24
    commit
    
    
  2. Enter the following command at the vyatta@vm-mpls8-5# prompt to verify the Head node configuration.
    
    vyatta@vm-mpls8-5# run show mpls rsvp session
    Ingress RSVP:
    To              From            State Pri Rt Style Labelin Labelout LSPname
    7.7.7.7         5.5.5.5         Up    Yes  1  1 SE       -   53120 t7          
    Total 1 displayed, Up 1, Down 0.
    
     
  3. Enter the following configuration commands for the Midpoint node at the vyatta@vm-mpls8-2# prompt.
    
    set interfaces dataplane dp0p1s15 address 10.10.15.2/24
    set interfaces dataplane dp0p1s16 address 10.10.16.2/24
    set interfaces loopback lo address 2.2.2.2/32
    set protocols mpls-rsvp interfaces interface dp0p1s15
    set protocols mpls-rsvp interfaces interface dp0p1s16
    set protocols ospf area 0 network 2.2.2.2/32
    set protocols ospf area 0 network 10.10.15.0/24
    set protocols ospf area 0 network 10.10.16.0/24
    commit
    
  4. Enter the following command at the vyatta@vm-mpls8-2# prompt to verify the Midpoint node configuration.
    
    vyatta@vm-mpls8-2# run show mpls rsvp session 
    Transit RSVP:
    To              From            State Pri Rt Style Labelin Labelout LSPname
    7.7.7.7         5.5.5.5         Up    Yes  1  1 SE   53120       3 t7          
    Total 1 displayed, Up 1, Down 0.
    
     
  5. Enter the following configuration commands for the Tail node at the vyatta@vm-mpls8-7# prompt.
    
    set interfaces dataplane dp0p1s16 address 10.10.16.7/24
    set interfaces loopback lo address 7.7.7.7/32
    set protocols mpls-rsvp interfaces interface dp0p1s16
    set protocols ospf area 0 network 7.7.7.7/32
    set protocols ospf area 0 network 10.10.16.0/24
    commit
    
  6. Enter the following command at the vyatta@vm-mpls8-7# prompt to verify the Tail node configuration.
    
    vyatta@vm-mpls8-7# run show mpls rsvp session
    Egress RSVP:
    To              From            State Pri Rt Style Labelin Labelout LSPname
    7.7.7.7         5.5.5.5         Up    Yes  1  1 SE       3        - t7          
    Total 1 displayed, Up 1, Down 0.