Step 4: Check the Administrative Group Configuration on R5
Purpose
Focus on R5 to determine which interfaces are associated with the red color, and make any necessary corrections.
Action
To check the administrative group configuration on R5 and make any necessary corrections, enter the following JUNOS CLI commands:
user@R5>edit[edit protocols mpls]user@R5#showuser@R5#delete interface so-0/0/1 admin-groupuser@R5#set interface so-0/0/0 admin-group reduser@R5#showuser@R5#commitSample Output 1
user@R5>editEntering configuration mode[edit protocols mpls]user@R5#showadmin-groups {red 8;}interface fxp0.0 {disable;}interface so-0/0/0.0;interface so-0/0/1.0 {<<<incorrect interface configured with admin-groupadmin-group red;}interface so-0/0/2.0;Sample Output 2
[edit protocols mpls]user@R5#delete interface so-0/0/1 admin-group[edit protocols mpls]user@R5#set interface so-0/0/0 admin-group red[edit protocols mpls]user@R5#showadmin-groups {red 8;blue 4;}interface fxp0.0 {disable;}interface so-0/0/0.0 {<<<correct interface configured with admin-groupadmin-group red;}interface so-0/0/1.0;interface so-0/0/2.0;[edit protocols mpls]user@R5#commitcommit completeSample Output 3
user@R1>show mpls lspIngress LSP: 1 sessionsTo From State Rt ActivePath P LSPname10.0.0.6 10.0.0.1 Up 1 * R1-to-R6Total 1 displayed, Up 1, Down 0Egress LSP: 1 sessionsTo From State Rt Style Labelin Labelout LSPname10.0.0.1 10.0.0.6 Up 0 1 FF 3 - R6-to-R1Total 1 displayed, Up 1, Down 0Transit LSP: 0 sessionsTotal 0 displayed, Up 0, Down 0What It Means
Sample Output 1 from transit router
R5shows that at the [edit protocols mpls] hierarchy level, interfaceso-0/0/1is incorrectly configured with theadmin-group redstatement. Theso-0/0/0interface should be configured with theadmin-group redstatement.Sample Output 2 shows the steps taken to correct the configuration. The administration group has been deleted from
so-0/0/1andso-0/0/0is now associated with the red color.