Step 6: Determine and Correct the Problem on the Egress Router
Purpose
Check the configuration of interface
so-0/0/0.0on egress routerR5to determine the reason it was disabled.Action
To determine the problem on
R5, enter the following JUNOS CLI commands:user@R5>show configuration protocols rsvpuser@R5>edit[edit protocols rsvp]user@R5#rename interface so-0/0/3 to interface so-0/0/0user@R5#showuser@R5#commituser@R5#run show rsvp session ingress detailSample Output 1
user@R5>show configuration protocols rsvptraceoptions {file rsvp-log;flag error detail;flag path detail;flag pathtear detail;}interface so-0/0/3.0; <<< so-0/0/3 incorrectly includedinterface so-0/0/1.0;interface so-0/0/2.0;interface fxp0.0 {disable;}Sample Output 2
[edit protocols rsvp]user@R5#rename interface so-0/0/3 to interface so-0/0/0[edit protocols rsvp]user@R5#showtraceoptions {file rsvp-log;flag packets detail;flag error detail;}interface so-0/0/0.0;interface so-0/0/1.0;interface so-0/0/2.0;interface fxp0.0 {disable;}[edit protocols rsvp]user@R5#commitcommit completeSample Output 3
[edit protocols mpls]user@R5#run show rsvp session ingress detailIngress RSVP: 1 sessionsTo From State Rt Style Labelin Labelout LSPname10.0.0.1 10.0.0.5 Up 1 1 FF - 103104 R5-to-R1Total 1 displayed, Up 1, Down 0Egress RSVP: 1 sessionsTo From State Rt Style Labelin Labelout LSPname10.0.0.5 10.0.0.1 Up 0 1 FF 3 - R1-to-R5Total 1 displayed, Up 1, Down 0Transit RSVP: 0 sessionsTotal 0 displayed, Up 0, Down 0What It Means
Sample Output 1 from egress router
R5shows three interfaces configured at the [edit protocols rsvp] hierarchy level, non of which isso-0/0/0.0. On examination of the network topology, it is apparent that theso-0/0/0.0interface was configured incorrectly asso-0/0/3.0.Sample Output 2 shows the correct configuration of interfaces at the [
edit protocols rsvp] hierarchy level, and therenamecommand issued to correct the configuration error.Sample Output 3 shows that the RSVP-signaled LSP (
R1-to-R5) is correctly established after the changes to the RSVP configuration are committed.