OcNOS-SP : Multi-Protocol Label Switching Guide : Multi-Protocol Label Switching Configuration Guide : LDP-FRR Configuration
LDP-FRR Configuration
LDP Fast Re-route (FRR) is a technology which helps the router to reduce the MPLS traffic loss in cases of convergence during network failure. A router's convergence time is in general in the order of hundreds of milliseconds, but some applications may be very sensitive to data-loss. This technology helps the router to minimize the MPLS traffic loss by calculating and installing alternate backup paths prior to failure.
LDP FRR improves convergence in case of a single link or single node failure in the network. Convergence times will be in the order of 10s of milliseconds (Max convergence - 50 milliseconds). This is important to some application services (like VoIP) which are sensitive to traffic loss when running over the MPLS network.
Without FRR, link and/or node failures inside an MPLS LDP network result in traffic loss in the order of 100s of milliseconds. The reason for that is that LDP depends on the convergence of the underlying IGP (IS-IS sending LSPs/ OSPF sending LSAs in this case). Post IGP convergence, LDP itself needs to compute new primary Next-Hop Label Forwarding Entries (NHLFEs) for all affected Forwarding Equivalence Classes (FECs). Finally, the different Label Forwarding Information Bases (LFIBs) are updated.
When FRR is configured on a node, the node pre-computes primary NHLFEs for all FECs and in addition it will pre-compute backup NHLFEs for all FECs. The backup NHLFE corresponds to the label received for the same FEC from a Loop-Free Alternate (LFA) next-hop.
Note: This implementation requires either ISIS LFA or OSPF LFA and LDP IGP synchronization.
Topology
LDP-FRR Topology
LDP-FRR with OSPF as IGP Configuration
Below are the configurations and validations involving NSM, OSPF, LDP before configuring fast-reroute for IGP and LDP
PE1
 
#configure terminal
Enter configuration mode.
(config)#interface lo
Specify the loopback (lo) interface to be configured.
(config-if)#ip address 1.1.1.1/32 secondary
Set the IP address of the loopback interface
(config-if)#exit
Exit interface mode.
(config)#router ldp
Enter router mode for LDP.
(config-router)#router-id 1.1.1.1
Set the router ID to IP address 1.1.1.1
(config-router)#transport-address ipv4 1.1.1.1 0
Configure the transport address for IPv4 (for IPv6 use ipv6) to be used for a TCP session over which LDP will run.
Note: It is preferable to use the loopback address as the transport address.
(config-router)#targeted-peer ipv4 5.5.5.5
Configure targeted peer.
(config-router-targeted-peer)#exit
Exit-targeted-peer-mode
(config-router)#exit
Exit router mode
(config)#interface xe1
Enter interface mode.
(config-if)#ip address 10.10.10.1/24
Configure IPv4 address for xe1.
(config-if)#label-switching
Enable label switching on interface xe1.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe1.
(config-if)#ip ospf cost 10
Assign ospf cost to the interface
(config-if)#mpls ldp-igp sync ospf holddown-timer 500
Enable LDP-IGP Synchronization for xe1 belonging to an OSPF process.500 seconds is holddown-timer value for IGP to wait until LDP converges.
OSPF: This command is part of OSPF Process.
Note: Holddown-timer range is 1 to 2147483 seconds. If holddown timer is not configured, IGP waits indefinitely for LDP to converge. Use the command mpls ldp-igp sync ospf to configure without a holddown-timer.
(config-if)#exit
Exit interface mode
(config)#interface xe2
Enter interface mode.
(config-if)#ip address 20.20.20.1/24
Configure IPv4 address for xe2
(config-if)#label-switching
Enable label switching on interface xe2.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe2.
(config-if)#ip ospf cost 15
Assign ospf cost to the interface
(config-if)#mpls ldp-igp sync ospf holddown-timer 500
Enable LDP-IGP Synchronization for xe1 belonging to an OSPF process.500 seconds is holddown-timer value for IGP to wait until LDP converges.
OSPF: This command is part of OSPF Process.
Note: Holddown-timer range is 1 to 2147483 seconds. If holddown timer is not configured, IGP waits indefinitely for LDP to converge. Use the command mpls ldp-igp sync ospf to configure without a holddown-timer.
(config-if)#exit
Exit interface mode
(config)#interface xe3
Enter interface mode.
(config-if)#ip address 30.30.30.1/24
Configure IPv4 address for xe3
(config-if)#label-switching
Enable label switching on interface xe3
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe3
(config-if)#ip ospf cost 20
Assign OSPF cost to the interface
(config-if)#mpls ldp-igp sync ospf holddown-timer 500
Enable LDP-IGP Synchronization for xe1 belonging to an OSPF process.500 seconds is holddown-timer value for IGP to wait until LDP converges.
OSPF: This command is part of OSPF Process.
Note: Holddown-timer range is 1 to 2147483 seconds. If holddown timer is not configured, IGP waits indefinitely for LDP to converge. Use the command mpls ldp-igp sync OSPF to configure without a holddown-timer.
(config-if)#exit
Exit interface mode
(config)#router ospf 1
Configure the routing process and specify the Process ID 100. The Process ID should be a unique positive integer identifying the routing process.
 
(config)#ospf router-id 1.1.1.1
Configure OSPF router-ID same as loopback interface IP address
(config-router)#network 1.1.1.1/32 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface.
(config-router)#network 10.10.10.0/24 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface.
(config-router)#network 20.20.20.0/24 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface.
(config-router)#network 30.30.30.0/24 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface.
(config-router)#bfd all-interfaces
Enable the OSPF enabled interfaces with bfd
(config-if)#exit
Exit interface mode.
(config)#bfd interval 3 minrx 3 multiplier 3
Configure BFD interval
(config)#commit
Commit all the configurations
 
P1
 
#configure terminal
Enter configuration mode.
(config)#interface lo
Specify the loopback (lo) interface to be configured.
(config-if)#ip address 2.2.2.2/32 secondary
Set the IP address of the loopback interface to 2.2.2.2/32
(config-if)#exit
Exit interface mode.
(config)#router ldp
Enter router mode for LDP.
(config-router)#router-id 2.2.2.2
Set the router ID to IP address 2.2.2.2
(config-router)#transport-address ipv4 2.2.2.2 0
Configure the transport address for IPv4 (for IPv6 use ipv6) to be used for a TCP session over which LDP will run.
Note: It is preferable to use the loopback address as the transport address.
(config-router)#exit
Exit router mode
(config)#interface xe1
Enter interface mode.
(config-if)#ip address 10.10.10.2/24
Configure IPv4 address for xe1.
(config-if)#label-switching
Enable label switching on interface xe1.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe1.
(config-if)#mpls ldp-igp sync ospf holddown-timer 500
Enable LDP-IGP Synchronization for xe1 belonging to an OSPF process.500 seconds is holddown-timer value for IGP to wait until LDP converges.
OSPF: This command is part of OSPF Process.
Note: Holddown-timer range is 1 to 2147483 seconds. If holddown timer is not configured, IGP waits indefinitely for LDP to converge. Use the command mpls ldp-igp sync ospf to configure without a holddown-timer.
 
(config-if)#exit
Exit interface mode
(config)#interface xe2
Enter interface mode.
(config-if)#ip address 40.40.40.1/24
Configure IPv4 address for xe2
(config-if)#label-switching
Enable label switching on interface xe2.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe2.
(config-if)#mpls ldp-igp sync ospf holddown-timer 500
Enable LDP-IGP Synchronization for xe1 belonging to an OSPF process.500 seconds is holddown-timer value for IGP to wait until LDP converges.
OSPF: This command is part of OSPF Process.
Note: Holddown-timer range is 1 to 2147483 seconds. If holddown timer is not configured, IGP waits indefinitely for LDP to converge. Use the command mpls ldp-igp sync ospf to configure without a holddown-timer.
(config-if)#exit
Exit interface mode
(config)#router ospf 1
Configure the routing process and specify the Process ID
The Process ID should be a unique positive integer
identifying the routing process.
(config)#ospf router-id 2.2.2.2
Configure OSPF router-ID same as loopback interface IP address
(config-router)#network 2.2.2.2/32 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface
(config-router)#network 10.10.10.0/24 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface
(config-router)#network 40.40.40.0/24 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface
(config-router)#bfd all-interfaces
Enable the OSPF enabled interfaces with bfd
(config-if)#exit
Exit interface mode.
(config)#bfd interval 3 minrx 3 multiplier 3
Configure BFD interval
(config)#commit
Commit all the configurations
P2
 
#configure terminal
Enter configuration mode.
(config)#interface lo
Specify the loopback (lo) interface to be configured.
(config-if)#ip address 3.3.3.3/32 secondary
Set the IP address of the loopback interface
(config-if)#exit
Exit interface mode.
(config)#router ldp
Enter router mode for LDP.
(config-router)#router-id 3.3.3.3
Set the router ID to IP address 3.3.3.3
(config-router)#transport-address ipv4 3.3.3.3 0
Configure the transport address for IPv4 (for IPv6 use ipv6) to be used for a TCP session over which LDP will run.
Note: It is preferable to use the loopback address as the transport address.
(config-router)#exit
Exit router mode
(config)#interface xe1
Enter interface mode.
(config-if)#ip address 20.20.20.2/24
Configure IPv4 address for xe1.
(config-if)#label-switching
Enable label switching on interface xe1.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe1.
(config-if)#mpls ldp-igp sync ospf holddown-timer 500
Enable LDP-IGP Synchronization for xe1 belonging to an OSPF process.500 seconds is holddown-timer value for IGP to wait until LDP converges.
OSPF: This command is part of OSPF Process.
Note: Holddown-timer range is 1 to 2147483 seconds. If holddown timer is not configured, IGP waits indefinitely for LDP to converge. Use the command mpls ldp-igp sync ospf to configure without a holddown-timer.
(config-if)#exit
Exit interface mode
(config)#interface xe2
Enter interface mode.
(config-if)#ip address 50.50.50.1/24
Configure IPv4 address for xe2
(config-if)#label-switching
Enable label switching on interface xe2.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe2.
(config-if)#mpls ldp-igp sync ospf holddown-timer 500
Enable LDP-IGP Synchronization for xe1 belonging to an OSPF process.500 seconds is holddown-timer value for IGP to wait until LDP converges.
OSPF: This command is part of OSPF Process.
Note: Holddown-timer range is 1 to 2147483 seconds. If holddown timer is not configured, IGP waits indefinitely for LDP to converge. Use the command mpls ldp-igp sync ospf to configure without a holddown-timer.
(config-if)#exit
Exit interface mode
(config)#router ospf 1
Configure the routing process and specify the Process ID
The Process ID should be a unique positive integer identifying the routing process.
(config)#ospf router-id 3.3.3.3
Configure OSPF router-ID same as loopback interface IP address
(config-router)#network 3.3.3.3/32 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface
(config-router)#network 20.20.20.0/24 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface
(config-router)#network 50.50.50.0/24 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface
(config-router)#bfd all-interfaces
Enable the OSPF enabled interfaces with bfd
(config-if)#exit
Exit interface mode.
(config)#bfd interval 3 minrx 3 multiplier 3
Configure BFD interval
(config)#commit
Commit all the configurations
P3
 
#configure terminal
Enter configuration mode.
(config)#interface lo
Specify the loopback (lo) interface to be configured.
(config-if)#ip address 4.4.4.4/32 secondary
Set the IP address of the loopback interface
(config-if)#exit
Exit interface mode.
(config)#router ldp
Enter router mode for LDP.
(config-router)#router-id 4.4.4.4
Set the router ID to IP address 4.4.4.4
(config-router)#transport-address ipv4 4.4.4.4 0
Configure the transport address for IPv4 (for IPv6 use ipv6) to be used for a TCP session over which LDP will run.
Note: It is preferable to use the loopback address as the transport address.
(config-router)#exit
Exit router mode
(config)#interface xe1
Enter interface mode.
(config-if)#ip address 30.30.30.2/24
Configure IPv4 address for xe1.
(config-if)#label-switching
Enable label switching on interface xe1.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe1.
(config-if)#mpls ldp-igp sync ospf holddown-timer 500
Enable LDP-IGP Synchronization for xe1 belonging to an OSPF process.500 seconds is holddown-timer value for IGP to wait until LDP converges.
OSPF: This command is part of OSPF Process.
Note: Holddown-timer range is 1 to 2147483 seconds. If holddown timer is not configured, IGP waits indefinitely for LDP to converge. Use the command mpls ldp-igp sync ospf to configure without a holddown-timer.
(config-if)#exit
Exit interface mode
(config)#interface xe2
Enter interface mode.
(config-if)#ip address 60.60.60.1/24
Configure IPv4 address for xe2
(config-if)#label-switching
Enable label switching on interface xe2.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe2.
(config-if)#mpls ldp-igp sync ospf holddown-timer 500
Enable LDP-IGP Synchronization for xe1 belonging to an OSPF process.500 seconds is holddown-timer value for IGP to wait until LDP converges.
OSPF: This command is part of OSPF Process.
Note: Holddown-timer range is 1 to 2147483 seconds. If holddown timer is not configured, IGP waits indefinitely for LDP to converge. Use the command mpls ldp-igp sync ospf to configure without a holddown-timer.
(config-if)#exit
Exit interface mode
(config)#router ospf 1
Configure the routing process and specify the Process ID
The Process ID should be a unique positive integer identifying the routing process.
(config)#ospf router-id 4.4.4.4
Configure OSPF router-ID same as loopback interface IP address.
(config-router)#network 4.4.4.4/32 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface.
(config-router)#network 30.30.30.0/24 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface.
(config-router)#network 60.60.60.0/24 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface.
(config-router)#bfd all-interfaces
Enable the OSPF enabled interfaces with bfd
(config-if)#exit
Exit interface mode.
(config)#bfd interval 3 minrx 3 multiplier 3
Configure BFD interval
(config)#commit
Commit all the configurations
 
PE2
 
#configure terminal
Enter configuration mode.
(config)#interface lo
Specify the loopback (lo) interface to be configured.
(config-if)#ip address 5.5.5.5/32 secondary
Set the IP address of the loopback interface to 5.5.5.5/32
(config-if)#exit
Exit interface mode.
(config)#router ldp
Enter router mode for LDP.
(config-router)#router-id 5.5.5.5
Set the router ID to IP address 5.5.5.5
(config-router)#transport-address ipv4 5.5.5.5 0
Configure the transport address for IPv4 (for IPv6 use ipv6) to be used for a TCP session over which LDP will run.
Note: It is preferable to use the loopback address as the transport address.
(config-router)#targeted-peer ipv4 1.1.1.1
Configure targeted peer.
(config-router-targeted-peer)#exit
Exit-targeted-peer-mode
(config-router)#exit
Exit router mode
(config)#interface xe1
Enter interface mode.
(config-if)#ip address 40.40.40.2/24
Configure IPv4 address for xe1.
(config-if)#label-switching
Enable label switching on interface xe1.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe1.
(config-if)#mpls ldp-igp sync ospf holddown-timer 500
Enable LDP-IGP Synchronization for xe1 belonging to an OSPF process.500 seconds is holddown-timer value for IGP to wait until LDP converges.
OSPF: This command is part of OSPF Process.
Note: Holddown-timer range is 1 to 2147483 seconds. If holddown timer is not configured, IGP waits indefinitely for LDP to converge. Use the command mpls ldp-igp sync ospf to configure without a holddown-timer.
(config-if)#exit
Exit interface mode
(config)#interface xe2
Enter interface mode.
(config-if)#ip address 50.50.50.2/24
Configure IPv4 address for xe2
(config-if)#label-switching
Enable label switching on interface xe2.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe2.
(config-if)#mpls ldp-igp sync ospf holddown-timer 500
Enable LDP-IGP Synchronization for xe1 belonging to an OSPF process.500 seconds is holddown-timer value for IGP to wait until LDP converges.
OSPF: This command is part of OSPF Process.
Note: Holddown-timer range is 1 to 2147483 seconds. If holddown timer is not configured, IGP waits indefinitely for LDP to converge. Use the command mpls ldp-igp sync ospf to configure without a holddown-timer.
(config-if)#exit
Exit interface mode
(config)#interface xe3
Enter interface mode.
(config-if)#ip address 60.60.60.2/24
Configure IPv4 address for xe3
(config-if)#label-switching
Enable label switching on interface xe3
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe3
(config-if)#mpls ldp-igp sync ospf holddown-timer 500
Enable LDP-IGP Synchronization for xe1 belonging to an OSPF process.500 seconds is holddown-timer value for IGP to wait until LDP converges.
OSPF: This command is part of OSPF Process.
Note: Holddown-timer range is 1 to 2147483 seconds. If holddown timer is not configured, IGP waits indefinitely for LDP to converge. Use the command mpls ldp-igp sync ospf to configure without a holddown-timer.
(config-if)#exit
Exit interface mode
(config)#router ospf 1
Configure the routing process and specify the Process ID
The Process ID should be a unique positive integer identifying the routing process.
(config)#ospf router-id 5.5.5.5
Configure OSPF router-ID same as loopback interface IP address
(config-router)#network 5.5.5.5/32 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface.
(config-router)#network 40.40.40.0/24 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface.
(config-router)#network 50.50.50.0/24 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface.
(config-router)#network 60.60.60.0/24 area 0
Define the interface on which OSPF runs and associate the area ID (0) with the interface.
(config-router)#bfd all-interfaces
Enable the OSPF enabled interfaces with bfd
(config-if)#exit
Exit interface mode.
(config)#bfd interval 3 minrx 3 multiplier 3
Configure BFD interval
(config)#commit
Commit all the configurations
Validation
PE1
PE1#show ip ospf neighbor
 
Total number of full neighbors: 3
OSPF process 1 VRF(default):
Neighbor ID Pri State Dead Time Address Interface Instance ID
2.2.2.2 1 Full/Backup 00:00:31 10.10.10.2 xe1 0
3.3.3.3 1 Full/Backup 00:00:32 20.20.20.2 xe2 0
4.4.4.4 1 Full/Backup 00:00:33 30.30.30.2 xe3 0
 
 
PE1#show ip ospf interface brief
Interface PID Area Intf ID Cost State Neighbors Status
lo 1 0.0.0.0 1 1 Loopback 0 Up
 
Interface PID Area Intf ID Cost State Neighbors Status
xe1 1 0.0.0.0 4 10 DR 1 Up
 
Interface PID Area Intf ID Cost State Neighbors Status
xe2 1 0.0.0.0 14 15 DR 1 Up
 
Interface PID Area Intf ID Cost State Neighbors Status
xe3 1 0.0.0.0 15 20 DR 1 Up
 
PE1#show ip ospf database
 
OSPF Router with ID (1.1.1.1) (Process ID 1 VRF default)
 
Router Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Link count
1.1.1.1 1.1.1.1 66 0x8000000e 0x5cf2 4
2.2.2.2 2.2.2.2 48 0x80000008 0x615f 3
3.3.3.3 3.3.3.3 48 0x80000008 0x64d7 3
4.4.4.4 4.4.4.4 44 0x80000008 0x6750 3
5.5.5.5 5.5.5.5 47 0x80000004 0xd65b 4
 
Net Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum
10.10.10.1 1.1.1.1 249 0x80000001 0x9476
20.20.20.1 1.1.1.1 152 0x80000001 0x5d8b
30.30.30.1 1.1.1.1 106 0x80000001 0x26a0
40.40.40.1 2.2.2.2 55 0x80000001 0xf2a9
50.50.50.1 3.3.3.3 53 0x80000001 0x8de8
60.60.60.1 4.4.4.4 50 0x80000001 0x2828
 
Area-Local Opaque-LSA (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Opaque ID
1.0.0.1 1.1.1.1 150 0x80000003 0x2cf8 1
1.0.0.1 2.2.2.2 54 0x80000002 0x32eb 1
1.0.0.1 3.3.3.3 51 0x80000003 0x34e0 1
1.0.0.1 4.4.4.4 48 0x80000003 0x38d4 1
1.0.0.1 5.5.5.5 54 0x80000001 0x40c6 1
1.0.0.8 4.4.4.4 48 0x80000001 0x7b37 8
1.0.0.8 5.5.5.5 49 0x80000001 0x7b32 8
1.0.0.10 1.1.1.1 236 0x80000002 0xda05 10
1.0.0.10 2.2.2.2 237 0x80000002 0x8360 10
1.0.0.12 3.3.3.3 46 0x80000002 0xc924 12
1.0.0.12 5.5.5.5 49 0x80000002 0xab39 12
1.0.0.22 2.2.2.2 46 0x80000002 0xdd46 22
1.0.0.22 5.5.5.5 47 0x80000002 0xa175 22
1.0.0.30 1.1.1.1 109 0x80000002 0x7614 30
1.0.0.30 3.3.3.3 110 0x80000002 0x424d 30
1.0.0.32 1.1.1.1 64 0x80000002 0xc680 32
1.0.0.32 4.4.4.4 65 0x80000002 0xb597 32
 
PE1#show ip route summary
 
-----------------------------------------------
IP routing table name is Default-IP-Routing-Table(0)
-----------------------------------------------
IP routing table maximum-paths : 8
Total number of IPv4 routes : 14
Total number of IPv4 paths : 14
Pending routes (due to route max reached): 0
Route Source Networks
kernel 1
connected 6
ospf 7
Total 14
FIB 14
 
ECMP statistics (active in ASIC):
Total number of IPv4 ECMP routes : 0
Total number of IPv4 ECMP paths : 0
 
PE1#show ip interface brief
 
'*' - address is assigned by dhcp client
 
Interface IP-Address Admin-Status Link-Status
xe0 *10.12.49.172 up up
xe1 unassigned up up
xe1 10.10.10.1 up up
xe3 unassigned up up
xe4 unassigned up up
xe5 unassigned up up
xe6 unassigned up up
xe7 unassigned up up
xe8 unassigned up up
xe9 unassigned up up
xe10 unassigned up up
xe11 unassigned up up
xe2 20.20.20.1 up up
xe3 30.30.30.1 up up
lo 127.0.0.1 up up
 
PE1#show ldp session
Peer IP Address IF Name My Role State KeepAlive UpTime
5.5.5.5 xe2 Passive OPERATIONAL 30 00:01:06
2.2.2.2 xe1 Passive OPERATIONAL 30 00:04:34
3.3.3.3 xe2 Passive OPERATIONAL 30 00:02:28
4.4.4.4 xe3 Passive OPERATIONAL 30 00:01:43
 
PE1#show ip route
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
 
IP Route Table for VRF "default"
Gateway of last resort is 10.12.49.1 to network 0.0.0.0
 
K* 0.0.0.0/0 [0/0] via 10.12.49.1, xe0
C 1.1.1.1/32 is directly connected, lo, 00:10:42
O 2.2.2.2/32 [110/11] via 10.10.10.2, xe1, 00:04:54
O 3.3.3.3/32 [110/13] via 10.10.10.2, xe1, 00:01:41
O 4.4.4.4/32 [110/13] via 10.10.10.2, xe1, 00:01:41
O 5.5.5.5/32 [110/12] via 10.10.10.2, xe1, 00:01:43
C 10.10.10.0/24 is directly connected, xe1, 00:08:51
C 10.12.49.0/24 is directly connected, xe0, 16:20:51
C 20.20.20.0/24 is directly connected, xe2, 00:08:51
C 30.30.30.0/24 is directly connected, xe3, 00:08:51
O 40.40.40.0/24 [110/11] via 10.10.10.2, xe1, 00:01:43
O 50.50.50.0/24 [110/12] via 10.10.10.2, xe1, 00:01:41
O 60.60.60.0/24 [110/12] via 10.10.10.2, xe1, 00:01:41
C 127.0.0.0/8 is directly connected, lo, 16:34:27
 
PE1#show ldp routes
Prefix Addr Nexthop Addr Intf Owner
0.0.0.0/0 10.12.49.1 xe0 kernel
1.1.1.1/32 0.0.0.0 lo connected
2.2.2.2/32 10.10.10.2 xe1 ospf
3.3.3.3/32 10.10.10.2 xe1 ospf
4.4.4.4/32 10.10.10.2 xe1 ospf
5.5.5.5/32 10.10.10.2 xe1 ospf
10.10.10.0/24 0.0.0.0 xe1 connected
10.12.49.0/24 0.0.0.0 xe0 connected
20.20.20.0/24 0.0.0.0 xe2 connected
30.30.30.0/24 0.0.0.0 xe3 connected
40.40.40.0/24 10.10.10.2 xe1 ospf
50.50.50.0/24 10.10.10.2 xe1 ospf
60.60.60.0/24 10.10.10.2 xe1 ospf
 
PE1#show mpls forwarding-table
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 2.2.2.2/32 1 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
L> 3.3.3.3/32 3 9 - Yes LSP_DEFAULT 25601 xe1 No 10.10.10.2
L> 4.4.4.4/32 5 10 - Yes LSP_DEFAULT 25602 xe1 No 10.10.10.2
L> 5.5.5.5/32 7 7 - Yes LSP_DEFAULT 25600 xe1 No 10.10.10.2
L> 40.40.40.0/24 2 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
L> 50.50.50.0/24 4 11 - Yes LSP_DEFAULT 25612 xe1 No 10.10.10.2
L> 60.60.60.0/24 6 8 - Yes LSP_DEFAULT 25609 xe1 No 10.10.10.2
 
PE1#show mpls forwarding-table 5.5.5.5/32
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 5.5.5.5/32 7 7 - Yes LSP_DEFAULT 25600 xe1 No 10.10.10.2
 
 
PE1#show ldp fec
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
1.1.1.1/32 E > non-existent none No connected
2.2.2.2/32 NL 4.4.4.4 25608 No no nexthop
NL 3.3.3.3 25607 No no nexthop
NL> 2.2.2.2 impl-null No 10.10.10.2
3.3.3.3/32 NL 4.4.4.4 25609 No no nexthop
NL> 2.2.2.2 25601 No 10.10.10.2
NL 3.3.3.3 impl-null No no nexthop
4.4.4.4/32 NL 3.3.3.3 25608 No no nexthop
NL> 2.2.2.2 25602 No 10.10.10.2
NL 4.4.4.4 impl-null No no nexthop
5.5.5.5/32 NL 4.4.4.4 25610 No no nexthop
NL> 2.2.2.2 25600 No 10.10.10.2
NL 3.3.3.3 25600 No no nexthop
10.10.10.0/24 NL 4.4.4.4 25611 No connected
NL 3.3.3.3 25610 No connected
NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
10.12.49.0/24 NL 4.4.4.4 impl-null No connected
NL 3.3.3.3 impl-null No connected
NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
20.20.20.0/24 NL 4.4.4.4 25612 No connected
NL 2.2.2.2 25610 No connected
NL 3.3.3.3 impl-null No connected
E > non-existent none No connected
30.30.30.0/24 NL 3.3.3.3 25611 No connected
NL 2.2.2.2 25611 No connected
NL 4.4.4.4 impl-null No connected
E > non-existent none No connected
40.40.40.0/24 NL 4.4.4.4 25613 No no nexthop
NL 3.3.3.3 25612 No no nexthop
NL> 2.2.2.2 impl-null No 10.10.10.2
50.50.50.0/24 NL 4.4.4.4 25614 No no nexthop
NL> 2.2.2.2 25612 No 10.10.10.2
NL 3.3.3.3 impl-null No no nexthop
60.60.60.0/24 NL> 2.2.2.2 25609 No 10.10.10.2
NL 3.3.3.3 25609 No no nexthop
NL 4.4.4.4 impl-null No no nexthop
 
PE1#show ldp downstream
gSession peer 5.5.5.5:
FEC Nexthop Addr State Label Req.ID Attr
Session peer 2.2.2.2:
FEC Nexthop Addr State Label Req.ID Attr
50.50.50.0/24 10.10.10.2 Established 25612 0
30.30.30.0/24 connected Established 25611 0
20.20.20.0/24 connected Established 25610 0
4.4.4.4/32 10.10.10.2 Established 25602 0
3.3.3.3/32 10.10.10.2 Established 25601 0
60.60.60.0/24 10.10.10.2 Established 25609 0
5.5.5.5/32 10.10.10.2 Established 25600 0
40.40.40.0/24 10.10.10.2 Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.10.10.0/24 connected Established impl-null 0
2.2.2.2/32 10.10.10.2 Established impl-null 0
Session peer 3.3.3.3:
FEC Nexthop Addr State Label Req.ID Attr
40.40.40.0/24 connected Established 25612 0
30.30.30.0/24 connected Established 25611 0
10.10.10.0/24 connected Established 25610 0
4.4.4.4/32 connected Established 25608 0
2.2.2.2/32 connected Established 25607 0
60.60.60.0/24 connected Established 25609 0
5.5.5.5/32 connected Established 25600 0
50.50.50.0/24 connected Established impl-null 0
20.20.20.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
3.3.3.3/32 connected Established impl-null 0
Session peer 4.4.4.4:
FEC Nexthop Addr State Label Req.ID Attr
50.50.50.0/24 connected Established 25614 0
40.40.40.0/24 connected Established 25613 0
20.20.20.0/24 connected Established 25612 0
10.10.10.0/24 connected Established 25611 0
5.5.5.5/32 connected Established 25610 0
3.3.3.3/32 connected Established 25609 0
2.2.2.2/32 connected Established 25608 0
60.60.60.0/24 connected Established impl-null 0
30.30.30.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
4.4.4.4/32 connected Established impl-null 0
 
PE1#show ldp lsp
DOWNSTREAM LSP :
FEC Nexthop Addr State Label Req.ID Attr
1.1.1.1/32 connected Established none 0 None
2.2.2.2/32 connected Established 25608 0
2.2.2.2/32 connected Established 25607 0
2.2.2.2/32 10.10.10.2 Established impl-null 0
3.3.3.3/32 connected Established 25609 0
3.3.3.3/32 10.10.10.2 Established 25601 0
3.3.3.3/32 connected Established impl-null 0
4.4.4.4/32 connected Established 25608 0
4.4.4.4/32 10.10.10.2 Established 25602 0
4.4.4.4/32 connected Established impl-null 0
5.5.5.5/32 connected Established 25610 0
5.5.5.5/32 10.10.10.2 Established 25600 0
5.5.5.5/32 connected Established 25600 0
10.10.10.0/24 connected Established 25611 0
10.10.10.0/24 connected Established 25610 0
10.10.10.0/24 connected Established impl-null 0
10.10.10.0/24 connected Established none 0 None
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established none 0 None
20.20.20.0/24 connected Established 25612 0
20.20.20.0/24 connected Established 25610 0
20.20.20.0/24 connected Established impl-null 0
20.20.20.0/24 connected Established none 0 None
30.30.30.0/24 connected Established 25611 0
30.30.30.0/24 connected Established 25611 0
30.30.30.0/24 connected Established impl-null 0
30.30.30.0/24 connected Established none 0 None
40.40.40.0/24 connected Established 25613 0
40.40.40.0/24 connected Established 25612 0
40.40.40.0/24 10.10.10.2 Established impl-null 0
50.50.50.0/24 connected Established 25614 0
50.50.50.0/24 10.10.10.2 Established 25612 0
50.50.50.0/24 connected Established impl-null 0
60.60.60.0/24 10.10.10.2 Established 25609 0
60.60.60.0/24 connected Established 25609 0
60.60.60.0/24 connected Established impl-null 0
 
UPSTREAM LSP :
FEC State Label Req.ID Attr
1.1.1.1/32 Established impl-null 0 None
1.1.1.1/32 Established impl-null 0 None
1.1.1.1/32 Established impl-null 0 None
2.2.2.2/32 Established 25602 0 None
2.2.2.2/32 Established 25608 0 None
3.3.3.3/32 Established 25614 0 None
3.3.3.3/32 Established 25609 0 None
3.3.3.3/32 Established 25609 0 None
4.4.4.4/32 Established 25605 0 None
4.4.4.4/32 Established 25615 0 None
4.4.4.4/32 Established 25605 0 None
5.5.5.5/32 Established 25606 0 None
5.5.5.5/32 Established 25613 0 None
5.5.5.5/32 Established 25613 0 None
10.10.10.0/24 Established impl-null 0 None
10.10.10.0/24 Established impl-null 0 None
10.10.10.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
40.40.40.0/24 Established 25603 0 None
40.40.40.0/24 Established 25610 0 None
50.50.50.0/24 Established 25616 0 None
50.50.50.0/24 Established 25611 0 None
50.50.50.0/24 Established 25611 0 None
60.60.60.0/24 Established 25607 0 None
60.60.60.0/24 Established 25612 0 None
60.60.60.0/24 Established 25612 0 None
60.60.60.0/24 Established 25607 0 None
 
PE1#show ldp lsp
DOWNSTREAM LSP :
FEC Nexthop Addr State Label Req.ID Attr
1.1.1.1/32 connected Established none 0 None
2.2.2.2/32 connected Established 25608 0
2.2.2.2/32 connected Established 25607 0
2.2.2.2/32 10.10.10.2 Established impl-null 0
3.3.3.3/32 connected Established 25609 0
3.3.3.3/32 10.10.10.2 Established 25601 0
3.3.3.3/32 connected Established impl-null 0
4.4.4.4/32 connected Established 25608 0
4.4.4.4/32 10.10.10.2 Established 25602 0
4.4.4.4/32 connected Established impl-null 0
5.5.5.5/32 connected Established 25610 0
5.5.5.5/32 10.10.10.2 Established 25600 0
5.5.5.5/32 connected Established 25600 0
10.10.10.0/24 connected Established 25611 0
10.10.10.0/24 connected Established 25610 0
10.10.10.0/24 connected Established impl-null 0
10.10.10.0/24 connected Established none 0 None
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established none 0 None
20.20.20.0/24 connected Established 25612 0
20.20.20.0/24 connected Established 25610 0
20.20.20.0/24 connected Established impl-null 0
20.20.20.0/24 connected Established none 0 None
30.30.30.0/24 connected Established 25611 0
30.30.30.0/24 connected Established 25611 0
30.30.30.0/24 connected Established impl-null 0
30.30.30.0/24 connected Established none 0 None
40.40.40.0/24 connected Established 25613 0
40.40.40.0/24 connected Established 25612 0
40.40.40.0/24 10.10.10.2 Established impl-null 0
50.50.50.0/24 connected Established 25614 0
50.50.50.0/24 10.10.10.2 Established 25612 0
50.50.50.0/24 connected Established impl-null 0
60.60.60.0/24 10.10.10.2 Established 25609 0
60.60.60.0/24 connected Established 25609 0
60.60.60.0/24 connected Established impl-null 0
 
UPSTREAM LSP :
FEC State Label Req.ID Attr
1.1.1.1/32 Established impl-null 0 None
1.1.1.1/32 Established impl-null 0 None
1.1.1.1/32 Established impl-null 0 None
2.2.2.2/32 Established 25602 0 None
2.2.2.2/32 Established 25608 0 None
3.3.3.3/32 Established 25614 0 None
3.3.3.3/32 Established 25609 0 None
3.3.3.3/32 Established 25609 0 None
4.4.4.4/32 Established 25605 0 None
4.4.4.4/32 Established 25615 0 None
4.4.4.4/32 Established 25605 0 None
5.5.5.5/32 Established 25606 0 None
5.5.5.5/32 Established 25613 0 None
5.5.5.5/32 Established 25613 0 None
10.10.10.0/24 Established impl-null 0 None
10.10.10.0/24 Established impl-null 0 None
10.10.10.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
40.40.40.0/24 Established 25603 0 None
40.40.40.0/24 Established 25610 0 None
50.50.50.0/24 Established 25616 0 None
50.50.50.0/24 Established 25611 0 None
50.50.50.0/24 Established 25611 0 None
60.60.60.0/24 Established 25607 0 None
60.60.60.0/24 Established 25612 0 None
60.60.60.0/24 Established 25612 0 None
60.60.60.0/24 Established 25607 0 None
 
PE1#show ldp fec prefix 5.5.5.5/32
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
5.5.5.5/32 NL 4.4.4.4 25610 No no nexthop
NL> 2.2.2.2 25600 No 10.10.10.2
NL 3.3.3.3 25600 No no nexthop
 
PE1#show mpls ftn-table
Primary FTN entry with FEC: 2.2.2.2/32, id: 1, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 3.3.3.3/32, id: 3, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 9
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 9, owner: LDP, Stale: NO, out intf: xe1, out label: 25601
Nexthop addr: 10.10.10.2 cross connect ix: 5, op code: Push
 
 
Primary FTN entry with FEC: 4.4.4.4/32, id: 5, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 6, in intf: - in label: 0 out-segment ix: 10
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 10, owner: LDP, Stale: NO, out intf: xe1, out label: 25602
Nexthop addr: 10.10.10.2 cross connect ix: 6, op code: Push
 
 
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:391, pkts:5, TX bytes:411, Pushed pkts:5
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 7
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 7, owner: LDP, Stale: NO, out intf: xe1, out label: 25600
Nexthop addr: 10.10.10.2 cross connect ix: 2, op code: Push
 
 
Primary FTN entry with FEC: 40.40.40.0/24, id: 2, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 50.50.50.0/24, id: 4, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 11
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 11, owner: LDP, Stale: NO, out intf: xe1, out label: 25612
Nexthop addr: 10.10.10.2 cross connect ix: 7, op code: Push
 
 
Primary FTN entry with FEC: 60.60.60.0/24, id: 6, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 8, in intf: - in label: 0 out-segment ix: 8
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 8, owner: LDP, Stale: NO, out intf: xe1, out label: 25609
Nexthop addr: 10.10.10.2 cross connect ix: 8, op code: Push
 
 
PE1#show mpls ftn-table 5.5.5.5/32
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:391, pkts:5, TX bytes:411, Pushed pkts:5
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 7
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 7, owner: LDP, Stale: NO, out intf: xe1, out label: 25600
Nexthop addr: 10.10.10.2 cross connect ix: 2, op code: Push
 
 
PE1#show mpls ilm-table
Codes: > - installed ILM, * - selected ILM, p - stale ILM, ! - using backup
K - CLI ILM, T - MPLS-TP, s - Stitched ILM
S - SNMP, L - LDP, R - RSVP, C - CRLDP
B - BGP , K - CLI , V - LDP_VC, I - IGP_SHORTCUT
O - OSPF/OSPF6 SR, i - ISIS SR, k - SR CLI
P - SR Policy, U - unknown
 
Code FEC/VRF/L2CKT ILM-ID In-Label Out-Label In-Intf Out-Intf/VRF Nexthop pri LSP-Type
L> 2.2.2.2/32 9 25608 3 N/A xe1 10.10.10.2 Yes LSP_DEFAULT
L> 4.4.4.4/32 6 25605 25602 N/A xe1 10.10.10.2 Yes LSP_DEFAULT
L> 2.2.2.2/32 3 25602 3 N/A xe1 10.10.10.2 Yes LSP_DEFAULT
L> 40.40.40.0/24 4 25603 3 N/A xe1 10.10.10.2 Yes LSP_DEFAULT
L> 5.5.5.5/32 7 25606 25600 N/A xe1 10.10.10.2 Yes LSP_DEFAULT
L> 60.60.60.0/24 8 25607 25609 N/A xe1 10.10.10.2 Yes LSP_DEFAULT
L> 60.60.60.0/24 13 25612 25609 N/A xe1 10.10.10.2 Yes LSP_DEFAULT
L> 40.40.40.0/24 11 25610 3 N/A xe1 10.10.10.2 Yes LSP_DEFAULT
L> 3.3.3.3/32 10 25609 25601 N/A xe1 10.10.10.2 Yes LSP_DEFAULT
L> 50.50.50.0/24 12 25611 25612 N/A xe1 10.10.10.2 Yes LSP_DEFAULT
L> 3.3.3.3/32 15 25614 25601 N/A xe1 10.10.10.2 Yes LSP_DEFAULT
L> 5.5.5.5/32 14 25613 25600 N/A xe1 10.10.10.2 Yes LSP_DEFAULT
L> 4.4.4.4/32 16 25615 25602 N/A xe1 10.10.10.2 Yes LSP_DEFAULT
L> 50.50.50.0/24 17 25616 25612 N/A xe1 10.10.10.2 Yes LSP_DEFAULT
 
PE2
PE2#show ip ospf neighbor
 
Total number of full neighbors: 3
OSPF process 1 VRF(default):
Neighbor ID Pri State Dead Time Address Interface Instance ID
2.2.2.2 1 Full/DR 00:00:36 40.40.40.1 xe1 0
3.3.3.3 1 Full/DR 00:00:37 50.50.50.1 xe2 0
4.4.4.4 1 Full/DR 00:00:31 60.60.60.1 xe3 0
 
PE2#show ip ospf interface brief
Interface PID Area Intf ID Cost State Neighbors Status
lo 1 0.0.0.0 1 1 Loopback 0 Up
 
Interface PID Area Intf ID Cost State Neighbors Status
xe3 1 0.0.0.0 3 1 Backup 1 Up
 
Interface PID Area Intf ID Cost State Neighbors Status
xe2 1 0.0.0.0 5 1 Backup 1 Up
 
Interface PID Area Intf ID Cost State Neighbors Status
xe1 1 0.0.0.0 10 1 Backup 1 Up
 
PE2#show ip ospf database
 
OSPF Router with ID (5.5.5.5) (Process ID 1 VRF default)
 
Router Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Link count
1.1.1.1 1.1.1.1 650 0x8000000e 0x5cf2 4
2.2.2.2 2.2.2.2 630 0x80000008 0x615f 3
3.3.3.3 3.3.3.3 631 0x80000008 0x64d7 3
4.4.4.4 4.4.4.4 627 0x80000008 0x6750 3
5.5.5.5 5.5.5.5 628 0x80000004 0xd65b 4
 
Net Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum
10.10.10.1 1.1.1.1 833 0x80000001 0x9476
20.20.20.1 1.1.1.1 736 0x80000001 0x5d8b
30.30.30.1 1.1.1.1 690 0x80000001 0x26a0
40.40.40.1 2.2.2.2 637 0x80000001 0xf2a9
50.50.50.1 3.3.3.3 636 0x80000001 0x8de8
60.60.60.1 4.4.4.4 632 0x80000001 0x2828
 
Area-Local Opaque-LSA (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Opaque ID
1.0.0.1 1.1.1.1 734 0x80000003 0x2cf8 1
1.0.0.1 2.2.2.2 638 0x80000002 0x32eb 1
1.0.0.1 3.3.3.3 634 0x80000003 0x34e0 1
1.0.0.1 4.4.4.4 630 0x80000003 0x38d4 1
1.0.0.1 5.5.5.5 634 0x80000001 0x40c6 1
1.0.0.8 4.4.4.4 630 0x80000001 0x7b37 8
1.0.0.8 5.5.5.5 629 0x80000001 0x7b32 8
1.0.0.10 1.1.1.1 819 0x80000002 0xda05 10
1.0.0.10 2.2.2.2 818 0x80000002 0x8360 10
1.0.0.12 3.3.3.3 629 0x80000002 0xc924 12
1.0.0.12 5.5.5.5 629 0x80000002 0xab39 12
1.0.0.22 2.2.2.2 628 0x80000002 0xdd46 22
1.0.0.22 5.5.5.5 627 0x80000002 0xa175 22
1.0.0.30 1.1.1.1 693 0x80000002 0x7614 30
1.0.0.30 3.3.3.3 694 0x80000002 0x424d 30
1.0.0.32 1.1.1.1 648 0x80000002 0xc680 32
1.0.0.32 4.4.4.4 649 0x80000002 0xb597 32
PE2#show ip route summary
 
-----------------------------------------------
IP routing table name is Default-IP-Routing-Table(0)
-----------------------------------------------
IP routing table maximum-paths : 8
Total number of IPv4 routes : 14
Total number of IPv4 paths : 16
Pending routes (due to route max reached): 0
Route Source Networks
kernel 1
connected 6
ospf 7
Total 14
FIB 14
 
ECMP statistics (active in ASIC):
Total number of IPv4 ECMP routes : 1
Total number of IPv4 ECMP paths : 3
Number of routes with 3 ECMP paths: 1
 
PE2#show ip interface brief
 
'*' - address is assigned by dhcp client
 
Interface IP-Address Admin-Status Link-Status
xe0 *10.12.49.174 up up
xe3 60.60.60.2 up up
xe2 unassigned up up
xe2 50.50.50.2 up up
xe4 unassigned up up
xe5 unassigned up up
xe6 unassigned up up
xe7 unassigned up up
xe1 40.40.40.2 up up
xe9 unassigned up up
xe30 unassigned up up
xe31 unassigned up up
xe32 unassigned up up
xe33 unassigned up up
lo 127.0.0.1 up up
 
PE2#show ldp session
Peer IP Address IF Name My Role State KeepAlive UpTime
1.1.1.1 xe1 Active OPERATIONAL 30 00:10:40
2.2.2.2 xe1 Active OPERATIONAL 30 00:10:58
3.3.3.3 xe2 Active OPERATIONAL 30 00:10:58
4.4.4.4 xe3 Active OPERATIONAL 30 00:10:59
 
PE2#show ip route
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
 
IP Route Table for VRF "default"
Gateway of last resort is 10.12.49.1 to network 0.0.0.0
 
K* 0.0.0.0/0 [0/0] via 10.12.49.1, xe0
O 1.1.1.1/32 [110/3] via 60.60.60.1, xe3, 00:11:10
[110/3] via 40.40.40.1, xe1
[110/3] via 50.50.50.1, xe2
O 2.2.2.2/32 [110/2] via 40.40.40.1, xe1, 00:11:04
O 3.3.3.3/32 [110/2] via 50.50.50.1, xe2, 00:11:04
O 4.4.4.4/32 [110/2] via 60.60.60.1, xe3, 00:11:10
C 5.5.5.5/32 is directly connected, lo, 00:11:16
O 10.10.10.0/24 [110/2] via 40.40.40.1, xe1, 00:11:04
C 10.12.49.0/24 is directly connected, xe0, 16:28:18
O 20.20.20.0/24 [110/2] via 50.50.50.1, xe2, 00:11:04
O 30.30.30.0/24 [110/2] via 60.60.60.1, xe3, 00:11:10
C 40.40.40.0/24 is directly connected, xe1, 00:11:16
C 50.50.50.0/24 is directly connected, xe2, 00:11:16
C 60.60.60.0/24 is directly connected, xe3, 00:11:16
C 127.0.0.0/8 is directly connected, lo, 16:43:24
 
PE2#show ldp routes
Prefix Addr Nexthop Addr Intf Owner
0.0.0.0/0 10.12.49.1 xe0 kernel
1.1.1.1/32 50.50.50.1 xe2 ospf
40.40.40.1 xe1 ospf
60.60.60.1 xe3 ospf
2.2.2.2/32 40.40.40.1 xe1 ospf
3.3.3.3/32 50.50.50.1 xe2 ospf
4.4.4.4/32 60.60.60.1 xe3 ospf
5.5.5.5/32 0.0.0.0 lo connected
10.10.10.0/24 40.40.40.1 xe1 ospf
10.12.49.0/24 0.0.0.0 xe0 connected
20.20.20.0/24 50.50.50.1 xe2 ospf
30.30.30.0/24 60.60.60.1 xe3 ospf
40.40.40.0/24 0.0.0.0 xe1 connected
50.50.50.0/24 0.0.0.0 xe2 connected
60.60.60.0/24 0.0.0.0 xe3 connected
 
PE2#show mpls forwarding-table
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 1.1.1.1/32 1 1 - Yes LSP_DEFAULT 25601 xe2 No 50.50.50.1
5 - Yes LSP_DEFAULT 25603 xe1 No 40.40.40.1
9 - Yes LSP_DEFAULT 25600 xe3 No 60.60.60.1
L> 2.2.2.2/32 6 6 - Yes LSP_DEFAULT 3 xe1 No 40.40.40.1
L> 3.3.3.3/32 2 2 - Yes LSP_DEFAULT 3 xe2 No 50.50.50.1
L> 4.4.4.4/32 3 10 - Yes LSP_DEFAULT 3 xe3 No 60.60.60.1
L> 10.10.10.0/24 7 6 - Yes LSP_DEFAULT 3 xe1 No 40.40.40.1
L> 20.20.20.0/24 4 2 - Yes LSP_DEFAULT 3 xe2 No 50.50.50.1
L> 30.30.30.0/24 5 10 - Yes LSP_DEFAULT 3 xe3 No 60.60.60.1
 
PE2#show mpls forwarding-table 5.5.5.5/32
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
 
PE2#show mpls forwarding-table 1.1.1.1/32
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 1.1.1.1/32 1 1 - Yes LSP_DEFAULT 25601 xe2 No 50.50.50.1
5 - Yes LSP_DEFAULT 25603 xe1 No 40.40.40.1
9 - Yes LSP_DEFAULT 25600 xe3 No 60.60.60.1
 
PE2#show ldp routes
Prefix Addr Nexthop Addr Intf Owner
0.0.0.0/0 10.12.49.1 xe0 kernel
1.1.1.1/32 50.50.50.1 xe2 ospf
40.40.40.1 xe1 ospf
60.60.60.1 xe3 ospf
2.2.2.2/32 40.40.40.1 xe1 ospf
3.3.3.3/32 50.50.50.1 xe2 ospf
4.4.4.4/32 60.60.60.1 xe3 ospf
5.5.5.5/32 0.0.0.0 lo connected
10.10.10.0/24 40.40.40.1 xe1 ospf
10.12.49.0/24 0.0.0.0 xe0 connected
20.20.20.0/24 50.50.50.1 xe2 ospf
30.30.30.0/24 60.60.60.1 xe3 ospf
40.40.40.0/24 0.0.0.0 xe1 connected
50.50.50.0/24 0.0.0.0 xe2 connected
60.60.60.0/24 0.0.0.0 xe3 connected
PE2#show ldp fec
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
1.1.1.1/32 NL> 2.2.2.2 25603 No 40.40.40.1
NL> 3.3.3.3 25601 No 50.50.50.1
NL> 4.4.4.4 25600 No 60.60.60.1
2.2.2.2/32 NL> 2.2.2.2 impl-null No 40.40.40.1
3.3.3.3/32 NL> 3.3.3.3 impl-null No 50.50.50.1
4.4.4.4/32 NL> 4.4.4.4 impl-null No 60.60.60.1
5.5.5.5/32 E > non-existent none No connected
10.10.10.0/24 NL> 2.2.2.2 impl-null No 40.40.40.1
10.12.49.0/24 NL 2.2.2.2 impl-null No connected
NL 3.3.3.3 impl-null No connected
NL 4.4.4.4 impl-null No connected
E > non-existent none No connected
20.20.20.0/24 NL> 3.3.3.3 impl-null No 50.50.50.1
30.30.30.0/24 NL> 4.4.4.4 impl-null No 60.60.60.1
40.40.40.0/24 NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
50.50.50.0/24 NL 3.3.3.3 impl-null No connected
E > non-existent none No connected
60.60.60.0/24 NL 4.4.4.4 impl-null No connected
E > non-existent none No connected
 
PE2#show ldp downstream
Session peer 1.1.1.1:
FEC Nexthop Addr State Label Req.ID Attr
Session peer 2.2.2.2:
FEC Nexthop Addr State Label Req.ID Attr
40.40.40.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.10.10.0/24 40.40.40.1 Established impl-null 0
2.2.2.2/32 40.40.40.1 Established impl-null 0
1.1.1.1/32 40.40.40.1 Established 25603 0
Session peer 3.3.3.3:
FEC Nexthop Addr State Label Req.ID Attr
50.50.50.0/24 connected Established impl-null 0
20.20.20.0/24 50.50.50.1 Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
3.3.3.3/32 50.50.50.1 Established impl-null 0
1.1.1.1/32 50.50.50.1 Established 25601 0
Session peer 4.4.4.4:
FEC Nexthop Addr State Label Req.ID Attr
60.60.60.0/24 connected Established impl-null 0
30.30.30.0/24 60.60.60.1 Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
4.4.4.4/32 60.60.60.1 Established impl-null 0
1.1.1.1/32 60.60.60.1 Established 25600 0
 
PE2#show ldp lsp
DOWNSTREAM LSP :
FEC Nexthop Addr State Label Req.ID Attr
1.1.1.1/32 40.40.40.1 Established 25603 0
1.1.1.1/32 50.50.50.1 Established 25601 0
1.1.1.1/32 60.60.60.1 Established 25600 0
2.2.2.2/32 40.40.40.1 Established impl-null 0
3.3.3.3/32 50.50.50.1 Established impl-null 0
4.4.4.4/32 60.60.60.1 Established impl-null 0
5.5.5.5/32 connected Established none 0 None
10.10.10.0/24 40.40.40.1 Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established none 0 None
20.20.20.0/24 50.50.50.1 Established impl-null 0
30.30.30.0/24 60.60.60.1 Established impl-null 0
40.40.40.0/24 connected Established impl-null 0
40.40.40.0/24 connected Established none 0 None
50.50.50.0/24 connected Established impl-null 0
50.50.50.0/24 connected Established none 0 None
60.60.60.0/24 connected Established impl-null 0
60.60.60.0/24 connected Established none 0 None
 
UPSTREAM LSP :
FEC State Label Req.ID Attr
2.2.2.2/32 Established 25607 0 None
2.2.2.2/32 Established 25601 0 None
3.3.3.3/32 Established 25602 0 None
3.3.3.3/32 Established 25609 0 None
4.4.4.4/32 Established 25611 0 None
4.4.4.4/32 Established 25612 0 None
5.5.5.5/32 Established impl-null 0 None
5.5.5.5/32 Established impl-null 0 None
5.5.5.5/32 Established impl-null 0 None
10.10.10.0/24 Established 25608 0 None
10.10.10.0/24 Established 25604 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
20.20.20.0/24 Established 25605 0 None
20.20.20.0/24 Established 25610 0 None
30.30.30.0/24 Established 25613 0 None
30.30.30.0/24 Established 25614 0 None
40.40.40.0/24 Established impl-null 0 None
40.40.40.0/24 Established impl-null 0 None
40.40.40.0/24 Established impl-null 0 None
50.50.50.0/24 Established impl-null 0 None
50.50.50.0/24 Established impl-null 0 None
50.50.50.0/24 Established impl-null 0 None
60.60.60.0/24 Established impl-null 0 None
60.60.60.0/24 Established impl-null 0 None
60.60.60.0/24 Established impl-null 0 None
60.60.60.0/24 Established impl-null 0 None
60.60.60.0/24 Established impl-null 0 None
 
PE2#show ldp fec prefix 1.1.1.1/32
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
1.1.1.1/32 NL> 2.2.2.2 25603 No 40.40.40.1
NL> 3.3.3.3 25601 No 50.50.50.1
NL> 4.4.4.4 25600 No 60.60.60.1
 
PE2#show router-id
Name: management
Router ID is not set
Name: default
Router ID: 10.12.49.174 (automatic)
 
PE2#show mpls ftn-table
Primary FTN entry with FEC: 1.1.1.1/32, id: 1, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 1
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: LDP, Stale: NO, out intf: xe2, out label: 25601
Nexthop addr: 50.50.50.1 cross connect ix: 2, op code: Push
 
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Down, Oper Status: Not present
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe1, out label: 25603
Nexthop addr: 40.40.40.1 cross connect ix: 2, op code: Push
 
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 9
Owner: LDP, Persistent: No, Admin Status: Down, Oper Status: Not present
Out-segment with ix: 9, owner: LDP, Stale: NO, out intf: xe3, out label: 25600
Nexthop addr: 60.60.60.1 cross connect ix: 2, op code: Push
 
 
Primary FTN entry with FEC: 2.2.2.2/32, id: 6, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 6, in intf: - in label: 0 out-segment ix: 6
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 6, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 40.40.40.1 cross connect ix: 6, op code: Push
 
 
Primary FTN entry with FEC: 3.3.3.3/32, id: 2, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 3, in intf: - in label: 0 out-segment ix: 2
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 2, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 50.50.50.1 cross connect ix: 3, op code: Push
 
 
Primary FTN entry with FEC: 4.4.4.4/32, id: 3, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 10
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 10, owner: N/A, Stale: NO, out intf: xe3, out label: 3
Nexthop addr: 60.60.60.1 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 10.10.10.0/24, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 6, in intf: - in label: 0 out-segment ix: 6
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 6, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 40.40.40.1 cross connect ix: 6, op code: Push
 
 
Primary FTN entry with FEC: 20.20.20.0/24, id: 4, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 3, in intf: - in label: 0 out-segment ix: 2
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 2, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 50.50.50.1 cross connect ix: 3, op code: Push
 
 
Primary FTN entry with FEC: 30.30.30.0/24, id: 5, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 10
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 10, owner: N/A, Stale: NO, out intf: xe3, out label: 3
Nexthop addr: 60.60.60.1 cross connect ix: 1, op code: Push
 
 
PE2#show mpls ftn-table 1.1.1.1/32
Primary FTN entry with FEC: 1.1.1.1/32, id: 1, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 1
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: LDP, Stale: NO, out intf: xe2, out label: 25601
Nexthop addr: 50.50.50.1 cross connect ix: 2, op code: Push
 
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Down, Oper Status: Not present
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe1, out label: 25603
Nexthop addr: 40.40.40.1 cross connect ix: 2, op code: Push
 
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 9
Owner: LDP, Persistent: No, Admin Status: Down, Oper Status: Not present
Out-segment with ix: 9, owner: LDP, Stale: NO, out intf: xe3, out label: 25600
Nexthop addr: 60.60.60.1 cross connect ix: 2, op code: Push
 
 
PE2#show mpls ilm-table
Codes: > - installed ILM, * - selected ILM, p - stale ILM, ! - using backup
K - CLI ILM, T - MPLS-TP, s - Stitched ILM
S - SNMP, L - LDP, R - RSVP, C - CRLDP
B - BGP , K - CLI , V - LDP_VC, I - IGP_SHORTCUT
O - OSPF/OSPF6 SR, i - ISIS SR, k - SR CLI
P - SR Policy, U - unknown
 
Code FEC/VRF/L2CKT ILM-ID In-Label Out-Label In-Intf Out-Intf/VRF Nexthop pri LSP-Type
L> 3.3.3.3/32 10 25609 3 N/A xe2 50.50.50.1 Yes LSP_DEFAULT
L> 20.20.20.0/24 6 25605 3 N/A xe2 50.50.50.1 Yes LSP_DEFAULT
L> 3.3.3.3/32 3 25602 3 N/A xe2 50.50.50.1 Yes LSP_DEFAULT
L> 2.2.2.2/32 2 25601 3 N/A xe1 40.40.40.1 Yes LSP_DEFAULT
L> 10.10.10.0/24 5 25604 3 N/A xe1 40.40.40.1 Yes LSP_DEFAULT
L> 2.2.2.2/32 8 25607 3 N/A xe1 40.40.40.1 Yes LSP_DEFAULT
L> 10.10.10.0/24 9 25608 3 N/A xe1 40.40.40.1 Yes LSP_DEFAULT
L> 4.4.4.4/32 12 25611 3 N/A xe3 60.60.60.1 Yes LSP_DEFAULT
L> 20.20.20.0/24 11 25610 3 N/A xe2 50.50.50.1 Yes LSP_DEFAULT
L> 30.30.30.0/24 14 25613 3 N/A xe3 60.60.60.1 Yes LSP_DEFAULT
L> 4.4.4.4/32 13 25612 3 N/A xe3 60.60.60.1 Yes LSP_DEFAULT
L> 30.30.30.0/24 15 25614 3 N/A xe3 60.60.60.1 Yes LSP_DEFAULT
 
RTR1 - FRR Configuration
Now that NSM, OSPF and LDP are all configured, FRR for IGP and LDP can be enabled using below configurations.
 
#configure terminal
Enter configuration mode.
(config)#router ospf 1
Configure the routing process and specify the Process ID
The Process ID should be a unique positive integer identifying the routing process.
 
(config-router)#fast-reroute keep-all-paths
Configure OSPF LFA-FRR to calculate the available backup path
(config-router)#exit
Exit router mode.
(config)#router ldp
Enter router mode for LDP.
(config-router)#fast-reroute
Configure LDP LFA-FRR to calculate the available backup path
(config-router)#exit
Exit router mode.
(config)#commit
Commit all the configurations
Validation
 
PE1#show ip route fast-reroute
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area ,p - stale info, E - EVPN
* - candidate default
 
IP Route Table for VRF "default"
O 2.2.2.2/32 [110/11] via 10.10.10.2, xe2, 00:38:00
[FRR-NH] via 20.20.20.2, xe12
 
O 3.3.3.3/32 [110/13] via 10.10.10.2, xe2, 00:34:47
[FRR-NH] via 20.20.20.2, xe12
 
O 4.4.4.4/32 [110/13] via 10.10.10.2, xe2, 00:34:47
[FRR-NH] via 20.20.20.2, xe12
 
O 5.5.5.5/32 [110/12] via 10.10.10.2, xe2, 00:34:49
[FRR-NH] via 20.20.20.2, xe12
 
O 40.40.40.0/24 [110/11] via 10.10.10.2, xe2, 00:34:49
[FRR-NH] via 20.20.20.2, xe12
 
O 50.50.50.0/24 [110/12] via 10.10.10.2, xe2, 00:34:47
[FRR-NH] via 20.20.20.2, xe12
 
O 60.60.60.0/24 [110/12] via 10.10.10.2, xe2, 00:34:47
[FRR-NH] via 20.20.20.2, xe12
 
PE1#show ip ospf route fast-reroute
 
OSPF process 1:
Codes: C - connected, D - Discard, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
OSPF LFA attributes:
P - Primary, SP - Secondary-Path, LP - Link Protecting,
NP - Node Protecting, BID - Broadcast Link Protecting
DP - Downstream Protecting
 
O 2.2.2.2/32 [11] via 10.10.10.2, xe2, Area 0.0.0.0
Backup path:
via 20.20.20.2, xe12, Area 0.0.0.0
Attributes: Metric: [18] ,SP ,BID ,DP
O 3.3.3.3/32 [13] via 10.10.10.2, xe2, Area 0.0.0.0
Backup path:
via 20.20.20.2, xe12, Area 0.0.0.0
Attributes: Metric: [16] ,SP ,NP ,BID ,DP
O 4.4.4.4/32 [13] via 10.10.10.2, xe2, Area 0.0.0.0
Backup path:
via 20.20.20.2, xe12, Area 0.0.0.0
Attributes: Metric: [18] ,SP ,NP ,BID ,DP
O 5.5.5.5/32 [12] via 10.10.10.2, xe2, Area 0.0.0.0
Backup path:
via 20.20.20.2, xe12, Area 0.0.0.0
Attributes: Metric: [17] ,SP ,NP ,BID ,DP
O 20.20.20.0/24 [13] via 10.10.10.2, xe2, Area 0.0.0.0
Backup path:
via 20.20.20.2, xe12, Area 0.0.0.0
Attributes: Metric: [16] ,SP ,NP ,BID ,DP
O 30.30.30.0/24 [13] via 10.10.10.2, xe2, Area 0.0.0.0
Backup path:
via 20.20.20.2, xe12, Area 0.0.0.0
Attributes: Metric: [18] ,SP ,NP ,BID ,DP
O 40.40.40.0/24 [11] via 10.10.10.2, xe2, Area 0.0.0.0
Backup path:
via 20.20.20.2, xe12, Area 0.0.0.0
Attributes: Metric: [17] ,SP ,NP ,BID ,DP
O 50.50.50.0/24 [12] via 10.10.10.2, xe2, Area 0.0.0.0
Backup path:
via 20.20.20.2, xe12, Area 0.0.0.0
Attributes: Metric: [16] ,SP ,NP ,BID ,DP
O 60.60.60.0/24 [12] via 10.10.10.2, xe2, Area 0.0.0.0
Backup path:
via 20.20.20.2, xe12, Area 0.0.0.0
Attributes: Metric: [17] ,SP ,NP ,BID ,DP
 
PE1#show ldp routes
Prefix Addr Nexthop Addr Intf Backup Addr Backup Intf Owner
0.0.0.0/0 10.12.49.1 xe0 - - kernel
1.1.1.1/32 0.0.0.0 lo - - connected
2.2.2.2/32 10.10.10.2 xe2 20.20.20.2 xe12 ospf
3.3.3.3/32 10.10.10.2 xe2 20.20.20.2 xe12 ospf
4.4.4.4/32 10.10.10.2 xe2 20.20.20.2 xe12 ospf
5.5.5.5/32 10.10.10.2 xe2 20.20.20.2 xe12 ospf
10.10.10.0/24 0.0.0.0 xe2 - - connected
10.12.49.0/24 0.0.0.0 xe0 - - connected
20.20.20.0/24 0.0.0.0 xe12 - - connected
30.30.30.0/24 0.0.0.0 xe13 - - connected
40.40.40.0/24 10.10.10.2 xe2 20.20.20.2 xe12 ospf
50.50.50.0/24 10.10.10.2 xe2 20.20.20.2 xe12 ospf
60.60.60.0/24 10.10.10.2 xe2 20.20.20.2 xe12 ospf
 
PE1#show ldp fec
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
P - Primary route, B - LFA Backup route,
R - Remote LFA Backup route,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
1.1.1.1/32 E > non-existent none No connected
2.2.2.2/32 NL 4.4.4.4 25608 No no nexthop
NLB> 3.3.3.3 25607 No 20.20.20.2
NLP> 2.2.2.2 impl-null No 10.10.10.2
3.3.3.3/32 NL 4.4.4.4 25609 No no nexthop
NLP> 2.2.2.2 25601 No 10.10.10.2
NLB> 3.3.3.3 impl-null No 20.20.20.2
4.4.4.4/32 NLB> 3.3.3.3 25608 No 20.20.20.2
NLP> 2.2.2.2 25602 No 10.10.10.2
NL 4.4.4.4 impl-null No no nexthop
5.5.5.5/32 NL 4.4.4.4 25610 No no nexthop
NLP> 2.2.2.2 25600 No 10.10.10.2
NLB> 3.3.3.3 25600 No 20.20.20.2
10.10.10.0/24 NL 4.4.4.4 25611 No connected
NL 3.3.3.3 25610 No connected
NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
10.12.49.0/24 NL 4.4.4.4 impl-null No connected
NL 3.3.3.3 impl-null No connected
NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
20.20.20.0/24 NL 4.4.4.4 25612 No connected
NL 2.2.2.2 25610 No connected
NL 3.3.3.3 impl-null No connected
E > non-existent none No connected
30.30.30.0/24 NL 3.3.3.3 25611 No connected
NL 2.2.2.2 25611 No connected
NL 4.4.4.4 impl-null No connected
E > non-existent none No connected
40.40.40.0/24 NL 4.4.4.4 25613 No no nexthop
NLB> 3.3.3.3 25612 No 20.20.20.2
NLP> 2.2.2.2 impl-null No 10.10.10.2
50.50.50.0/24 NL 4.4.4.4 25614 No no nexthop
NLP> 2.2.2.2 25612 No 10.10.10.2
NLB> 3.3.3.3 impl-null No 20.20.20.2
60.60.60.0/24 NLP> 2.2.2.2 25609 No 10.10.10.2
NLB> 3.3.3.3 25609 No 20.20.20.2
NL 4.4.4.4 impl-null No no nexthop
PE1#show ldp downstream
Codes: P - Primary route, B - Backup route
Session peer 5.5.5.5:
FEC Nexthop Addr State Label Req.ID Attr Code
Codes: P - Primary route, B - Backup route
Session peer 2.2.2.2:
FEC Nexthop Addr State Label Req.ID Attr Code
50.50.50.0/24 10.10.10.2 Established 25612 0 P
30.30.30.0/24 connected Established 25611 0
20.20.20.0/24 connected Established 25610 0
4.4.4.4/32 10.10.10.2 Established 25602 0 P
3.3.3.3/32 10.10.10.2 Established 25601 0 P
60.60.60.0/24 10.10.10.2 Established 25609 0 P
5.5.5.5/32 10.10.10.2 Established 25600 0 P
40.40.40.0/24 10.10.10.2 Established impl-null 0 P
10.12.49.0/24 connected Established impl-null 0
10.10.10.0/24 connected Established impl-null 0
2.2.2.2/32 10.10.10.2 Established impl-null 0 P
Codes: P - Primary route, B - Backup route
Session peer 3.3.3.3:
FEC Nexthop Addr State Label Req.ID Attr Code
40.40.40.0/24 connected Established 25612 0
40.40.40.0/24 20.20.20.2 Established 25612 0 B
30.30.30.0/24 connected Established 25611 0
10.10.10.0/24 connected Established 25610 0
4.4.4.4/32 connected Established 25608 0
4.4.4.4/32 20.20.20.2 Established 25608 0 B
2.2.2.2/32 connected Established 25607 0
2.2.2.2/32 20.20.20.2 Established 25607 0 B
60.60.60.0/24 connected Established 25609 0
60.60.60.0/24 20.20.20.2 Established 25609 0 B
5.5.5.5/32 connected Established 25600 0
5.5.5.5/32 20.20.20.2 Established 25600 0 B
50.50.50.0/24 connected Established impl-null 0
50.50.50.0/24 20.20.20.2 Established impl-null 0 B
20.20.20.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
3.3.3.3/32 connected Established impl-null 0
3.3.3.3/32 20.20.20.2 Established impl-null 0 B
Codes: P - Primary route, B - Backup route
Session peer 4.4.4.4:
FEC Nexthop Addr State Label Req.ID Attr Code
50.50.50.0/24 connected Established 25614 0
40.40.40.0/24 connected Established 25613 0
20.20.20.0/24 connected Established 25612 0
10.10.10.0/24 connected Established 25611 0
5.5.5.5/32 connected Established 25610 0
3.3.3.3/32 connected Established 25609 0
2.2.2.2/32 connected Established 25608 0
60.60.60.0/24 connected Established impl-null 0
30.30.30.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
4.4.4.4/32 connected Established impl-null 0
 
PE1#show ldp lsp
DOWNSTREAM LSP :
FEC Nexthop Addr State Label Req.ID Attr Code
1.1.1.1/32 connected Established none 0 None
2.2.2.2/32 connected Established 25608 0
2.2.2.2/32 connected Established 25607 0
2.2.2.2/32 20.20.20.2 Established 25607 0 B
2.2.2.2/32 10.10.10.2 Established impl-null 0 P
3.3.3.3/32 connected Established 25609 0
3.3.3.3/32 10.10.10.2 Established 25601 0 P
3.3.3.3/32 connected Established impl-null 0
3.3.3.3/32 20.20.20.2 Established impl-null 0 B
4.4.4.4/32 connected Established 25608 0
4.4.4.4/32 20.20.20.2 Established 25608 0 B
4.4.4.4/32 10.10.10.2 Established 25602 0 P
4.4.4.4/32 connected Established impl-null 0
5.5.5.5/32 connected Established 25610 0
5.5.5.5/32 10.10.10.2 Established 25600 0 P
5.5.5.5/32 connected Established 25600 0
5.5.5.5/32 20.20.20.2 Established 25600 0 B
10.10.10.0/24 connected Established 25611 0
10.10.10.0/24 connected Established 25610 0
10.10.10.0/24 connected Established impl-null 0
10.10.10.0/24 connected Established none 0 None
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established none 0 None
20.20.20.0/24 connected Established 25612 0
20.20.20.0/24 connected Established 25610 0
20.20.20.0/24 connected Established impl-null 0
20.20.20.0/24 connected Established none 0 None
30.30.30.0/24 connected Established 25611 0
30.30.30.0/24 connected Established 25611 0
30.30.30.0/24 connected Established impl-null 0
30.30.30.0/24 connected Established none 0 None
40.40.40.0/24 connected Established 25613 0
40.40.40.0/24 connected Established 25612 0
40.40.40.0/24 20.20.20.2 Established 25612 0 B
40.40.40.0/24 10.10.10.2 Established impl-null 0 P
50.50.50.0/24 connected Established 25614 0
50.50.50.0/24 10.10.10.2 Established 25612 0 P
50.50.50.0/24 connected Established impl-null 0
50.50.50.0/24 20.20.20.2 Established impl-null 0 B
60.60.60.0/24 10.10.10.2 Established 25609 0 P
60.60.60.0/24 connected Established 25609 0
60.60.60.0/24 20.20.20.2 Established 25609 0 B
60.60.60.0/24 connected Established impl-null 0
 
UPSTREAM LSP :
FEC State Label Req.ID Attr
1.1.1.1/32 Established impl-null 0 None
1.1.1.1/32 Established impl-null 0 None
1.1.1.1/32 Established impl-null 0 None
2.2.2.2/32 Established 25608 0 None
2.2.2.2/32 Established 25602 0 None
2.2.2.2/32 Established 25608 0 None
3.3.3.3/32 Established 25614 0 None
3.3.3.3/32 Established 25609 0 None
3.3.3.3/32 Established 25609 0 None
4.4.4.4/32 Established 25615 0 None
4.4.4.4/32 Established 25605 0 None
4.4.4.4/32 Established 25615 0 None
4.4.4.4/32 Established 25605 0 None
5.5.5.5/32 Established 25606 0 None
5.5.5.5/32 Established 25613 0 None
5.5.5.5/32 Established 25613 0 None
10.10.10.0/24 Established impl-null 0 None
10.10.10.0/24 Established impl-null 0 None
10.10.10.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
40.40.40.0/24 Established 25610 0 None
40.40.40.0/24 Established 25603 0 None
40.40.40.0/24 Established 25610 0 None
50.50.50.0/24 Established 25616 0 None
50.50.50.0/24 Established 25611 0 None
50.50.50.0/24 Established 25611 0 None
60.60.60.0/24 Established 25607 0 None
60.60.60.0/24 Established 25612 0 None
60.60.60.0/24 Established 25612 0 None
60.60.60.0/24 Established 25607 0 None
 
PE1#show ldp fec prefix 5.5.5.5/32
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
P - Primary route, B - LFA Backup route,
R - Remote LFA Backup route,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
5.5.5.5/32 NL 4.4.4.4 25610 No no nexthop
NLP> 2.2.2.2 25600 No 10.10.10.2
NLB> 3.3.3.3 25600 No 20.20.20.2
 
PE1#show mpls forwarding-table
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 2.2.2.2/32 1 1 - Yes LSP_DEFAULT 3 xe2 No 10.10.10.2
2 - No LSP_DEFAULT 25607 xe12 No 20.20.20.2
L> 3.3.3.3/32 3 9 - Yes LSP_DEFAULT 25601 xe2 No 10.10.10.2
3 - No LSP_DEFAULT 3 xe12 No 20.20.20.2
L> 4.4.4.4/32 5 10 - Yes LSP_DEFAULT 25602 xe2 No 10.10.10.2
4 - No LSP_DEFAULT 25608 xe12 No 20.20.20.2
L> 5.5.5.5/32 7 7 - Yes LSP_DEFAULT 25600 xe2 No 10.10.10.2
5 - No LSP_DEFAULT 25600 xe12 No 20.20.20.2
L> 40.40.40.0/24 2 1 - Yes LSP_DEFAULT 3 xe2 No 10.10.10.2
6 - No LSP_DEFAULT 25612 xe12 No 20.20.20.2
L> 50.50.50.0/24 4 11 - Yes LSP_DEFAULT 25612 xe2 No 10.10.10.2
3 - No LSP_DEFAULT 3 xe12 No 20.20.20.2
L> 60.60.60.0/24 6 8 - Yes LSP_DEFAULT 25609 xe2 No 10.10.10.2
12 - No LSP_DEFAULT 25609 xe12 No 20.20.20.2
 
PE1#show mpls forwarding-table 5.5.5.5/32
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 5.5.5.5/32 7 7 - Yes LSP_DEFAULT 25600 xe2 No 10.10.10.2
5 - No LSP_DEFAULT 25600 xe12 No 20.20.20.2
 
PE1#show mpls ftn-table
Primary FTN entry with FEC: 2.2.2.2/32, id: 1, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
Backup Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 2
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 2, owner: LDP, Stale: NO, out intf: xe12, out label: 25607
Nexthop addr: 20.20.20.2 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 3.3.3.3/32, id: 3, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 9
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 9, owner: LDP, Stale: NO, out intf: xe2, out label: 25601
Nexthop addr: 10.10.10.2 cross connect ix: 5, op code: Push
 
Backup Cross connect ix: 3, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe12, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 3, op code: Push
 
 
Primary FTN entry with FEC: 4.4.4.4/32, id: 5, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 6, in intf: - in label: 0 out-segment ix: 10
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 10, owner: LDP, Stale: NO, out intf: xe2, out label: 25602
Nexthop addr: 10.10.10.2 cross connect ix: 6, op code: Push
 
Backup Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 4
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 4, owner: LDP, Stale: NO, out intf: xe12, out label: 25608
Nexthop addr: 20.20.20.2 cross connect ix: 5, op code: Push
 
 
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:391, pkts:5, TX bytes:411, Pushed pkts:5
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 7
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 7, owner: LDP, Stale: NO, out intf: xe2, out label: 25600
Nexthop addr: 10.10.10.2 cross connect ix: 2, op code: Push
 
Backup Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe12, out label: 25600
Nexthop addr: 20.20.20.2 cross connect ix: 7, op code: Push
 
 
Primary FTN entry with FEC: 40.40.40.0/24, id: 2, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
Backup Cross connect ix: 9, in intf: - in label: 0 out-segment ix: 6
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 6, owner: LDP, Stale: NO, out intf: xe12, out label: 25612
Nexthop addr: 20.20.20.2 cross connect ix: 9, op code: Push
 
 
Primary FTN entry with FEC: 50.50.50.0/24, id: 4, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 11
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 11, owner: LDP, Stale: NO, out intf: xe2, out label: 25612
Nexthop addr: 10.10.10.2 cross connect ix: 7, op code: Push
 
Backup Cross connect ix: 11, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe12, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 3, op code: Push
 
 
Primary FTN entry with FEC: 60.60.60.0/24, id: 6, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 8, in intf: - in label: 0 out-segment ix: 8
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 8, owner: LDP, Stale: NO, out intf: xe2, out label: 25609
Nexthop addr: 10.10.10.2 cross connect ix: 8, op code: Push
 
Backup Cross connect ix: 13, in intf: - in label: 0 out-segment ix: 12
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 12, owner: LDP, Stale: NO, out intf: xe12, out label: 25609
Nexthop addr: 20.20.20.2 cross connect ix: 13, op code: Push
 
 
PE1#show mpls ftn-table 5.5.5.5/32
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:391, pkts:5, TX bytes:411, Pushed pkts:5
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 7
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 7, owner: LDP, Stale: NO, out intf: xe2, out label: 25600
Nexthop addr: 10.10.10.2 cross connect ix: 2, op code: Push
 
Backup Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe12, out label: 25600
Nexthop addr: 20.20.20.2 cross connect ix: 7, op code: Push
 
 
PE1#show mpls ilm-table
Codes: > - installed ILM, * - selected ILM, p - stale ILM, ! - using backup
K - CLI ILM, T - MPLS-TP, s - Stitched ILM
S - SNMP, L - LDP, R - RSVP, C - CRLDP
B - BGP , K - CLI , V - LDP_VC, I - IGP_SHORTCUT
O - OSPF/OSPF6 SR, i - ISIS SR, k - SR CLI
P - SR Policy, U - unknown
 
Code FEC/VRF/L2CKT ILM-ID In-Label Out-Label In-Intf Out-Intf/VRF Nexthop pri LSP-
Type
L> 2.2.2.2/32 9 25608 3 N/A xe2 10.10.10.2 Yes LSP_
DEFAULT
25608 25607 N/A xe12 20.20.20.2 No LSP_
DEFAULT
L> 4.4.4.4/32 6 25605 25602 N/A xe2 10.10.10.2 Yes LSP_
DEFAULT
L> 2.2.2.2/32 3 25602 3 N/A xe2 10.10.10.2 Yes LSP_
DEFAULT
L> 40.40.40.0/24 4 25603 3 N/A xe2 10.10.10.2 Yes LSP_
DEFAULT
L> 5.5.5.5/32 7 25606 25600 N/A xe2 10.10.10.2 Yes LSP_
DEFAULT
L> 60.60.60.0/24 8 25607 25609 N/A xe2 10.10.10.2 Yes LSP_
DEFAULT
L> 60.60.60.0/24 13 25612 25609 N/A xe2 10.10.10.2 Yes LSP_
DEFAULT
25612 25609 N/A xe12 20.20.20.2 No LSP_
DEFAULT
L> 40.40.40.0/24 11 25610 3 N/A xe2 10.10.10.2 Yes LSP_
DEFAULT
25610 25612 N/A xe12 20.20.20.2 No LSP_
DEFAULT
L> 3.3.3.3/32 10 25609 25601 N/A xe2 10.10.10.2 Yes LSP_
DEFAULT
25609 3 N/A xe12 20.20.20.2 No LSP_
DEFAULT
L> 50.50.50.0/24 12 25611 25612 N/A xe2 10.10.10.2 Yes LSP_
DEFAULT
25611 3 N/A xe12 20.20.20.2 No LSP_
DEFAULT
L> 3.3.3.3/32 15 25614 25601 N/A xe2 10.10.10.2 Yes LSP_
DEFAULT
L> 5.5.5.5/32 14 25613 25600 N/A xe2 10.10.10.2 Yes LSP_
DEFAULT
25613 25600 N/A xe12 20.20.20.2 No LSP_
DEFAULT
L> 4.4.4.4/32 16 25615 25602 N/A xe2 10.10.10.2 Yes LSP_
DEFAULT
25615 25608 N/A xe12 20.20.20.2 No LSP_
DEFAULT
L> 50.50.50.0/24 17 25616 25612 N/A xe2 10.10.10.2 Yes LSP_
DEFAULT
 
PE1#show ip ospf neighbor
 
Total number of full neighbors: 3
OSPF process 1 VRF(default):
Neighbor ID Pri State Dead Time Address Interface Instance ID
2.2.2.2 1 Full/Backup 00:00:31 10.10.10.2 xe2 0
3.3.3.3 1 Full/Backup 00:00:29 20.20.20.2 xe12 0
4.4.4.4 1 Full/Backup 00:00:39 30.30.30.2 xe13 0
 
PE1#show ip ospf interface brief
Interface PID Area Intf ID Cost State Neighbors Status
lo 1 0.0.0.0 1 1 Loopback 0 Up
 
Interface PID Area Intf ID Cost State Neighbors Status
xe2 1 0.0.0.0 4 10 DR 1 Up
 
Interface PID Area Intf ID Cost State Neighbors Status
xe12 1 0.0.0.0 14 15 DR 1 Up
 
Interface PID Area Intf ID Cost State Neighbors Status
xe13 1 0.0.0.0 15 20 DR 1 Up
 
PE1#show ip ospf database
 
OSPF Router with ID (1.1.1.1) (Process ID 1 VRF default)
 
Router Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Link count
1.1.1.1 1.1.1.1 473 0x8000000f 0x5af3 4
2.2.2.2 2.2.2.2 504 0x80000009 0x5f60 3
3.3.3.3 3.3.3.3 430 0x80000009 0x62d8 3
4.4.4.4 4.4.4.4 425 0x80000009 0x6551 3
5.5.5.5 5.5.5.5 505 0x80000005 0xd45c 4
 
Net Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum
10.10.10.1 1.1.1.1 913 0x80000002 0x9277
20.20.20.1 1.1.1.1 1133 0x80000002 0x5b8c
30.30.30.1 1.1.1.1 1053 0x80000002 0x24a1
40.40.40.1 2.2.2.2 2263 0x80000001 0xf2a9
50.50.50.1 3.3.3.3 600 0x80000002 0x8be9
60.60.60.1 4.4.4.4 595 0x80000002 0x2629
 
Area-Local Opaque-LSA (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Opaque ID
1.0.0.1 1.1.1.1 553 0x80000004 0x2af9 1
1.0.0.1 2.2.2.2 454 0x80000003 0x30ec 1
1.0.0.1 3.3.3.3 460 0x80000004 0x32e1 1
1.0.0.1 4.4.4.4 465 0x80000004 0x36d5 1
1.0.0.1 5.5.5.5 985 0x80000002 0x3ec7 1
1.0.0.8 4.4.4.4 705 0x80000002 0x7938 8
1.0.0.8 5.5.5.5 2257 0x80000001 0x7b32 8
1.0.0.10 1.1.1.1 693 0x80000003 0xd806 10
1.0.0.10 2.2.2.2 694 0x80000003 0x8161 10
1.0.0.12 3.3.3.3 470 0x80000003 0xc725 12
1.0.0.12 5.5.5.5 505 0x80000003 0xa93a 12
1.0.0.22 2.2.2.2 424 0x80000003 0xdb47 22
1.0.0.22 5.5.5.5 445 0x80000003 0x9f76 22
1.0.0.30 1.1.1.1 563 0x80000003 0x7415 30
1.0.0.30 3.3.3.3 570 0x80000003 0x404e 30
1.0.0.32 1.1.1.1 473 0x80000003 0xc481 32
1.0.0.32 4.4.4.4 525 0x80000003 0xb398 32
PE1#
PE1#show ip route summary
 
-----------------------------------------------
IP routing table name is Default-IP-Routing-Table(0)
-----------------------------------------------
IP routing table maximum-paths : 8
Total number of IPv4 routes : 14
Total number of IPv4 paths : 14
Pending routes (due to route max reached): 0
Route Source Networks
kernel 1
connected 6
ospf 7
Total 14
FIB 14
 
ECMP statistics (active in ASIC):
Total number of IPv4 ECMP routes : 0
Total number of IPv4 ECMP paths : 0
 
LFA Non ECMP statistics
--------------
Total number of Routes : 7
Total number of Primary Paths : 7
Total number of Backup Paths : 7
PE1#
PE1#show ldp session
Peer IP Address IF Name My Role State KeepAlive UpTime
5.5.5.5 xe12 Passive OPERATIONAL 30 00:38:05
2.2.2.2 xe2 Passive OPERATIONAL 30 00:41:33
3.3.3.3 xe12 Passive OPERATIONAL 30 00:39:27
4.4.4.4 xe13 Passive OPERATIONAL 30 00:38:42
PE1#
PE1#show ip route
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
 
IP Route Table for VRF "default"
Gateway of last resort is 10.12.49.1 to network 0.0.0.0
 
K* 0.0.0.0/0 [0/0] via 10.12.49.1, xe0
C 1.1.1.1/32 is directly connected, lo, 00:47:32
O 2.2.2.2/32 [110/11] via 10.10.10.2, xe2, 00:41:44
O 3.3.3.3/32 [110/13] via 10.10.10.2, xe2, 00:38:31
O 4.4.4.4/32 [110/13] via 10.10.10.2, xe2, 00:38:31
O 5.5.5.5/32 [110/12] via 10.10.10.2, xe2, 00:38:33
C 10.10.10.0/24 is directly connected, xe2, 00:45:41
C 10.12.49.0/24 is directly connected, xe0, 16:57:41
C 20.20.20.0/24 is directly connected, xe12, 00:45:41
C 30.30.30.0/24 is directly connected, xe13, 00:45:41
O 40.40.40.0/24 [110/11] via 10.10.10.2, xe2, 00:38:33
O 50.50.50.0/24 [110/12] via 10.10.10.2, xe2, 00:38:31
O 60.60.60.0/24 [110/12] via 10.10.10.2, xe2, 00:38:31
C 127.0.0.0/8 is directly connected, lo, 17:11:17
 
 
To prohibit an interface from being used as a repair path, disable fast reroute calculation on the interface:
 
#configure terminal
Enter configuration mode.
(config)#interface xe2
Enter interface mode.
(config-if)#ip ospf fast-reroute per-prefix candidate disable
Disable fast reroute calculation on the interface.
(config-if)#exit
Exit interface mode
(config)#commit
Commit all the configurations
Verify that the xe2 interface is not used for backup path calculation.
 
PE1#show ip route fast-reroute
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area ,p - stale info, E - EVPN
* - candidate default
 
IP Route Table for VRF "default"
O 2.2.2.2/32 [110/11] via 10.10.10.2, xe1, 00:47:05
[FRR-NH] via 30.30.30.2, xe3
 
O 3.3.3.3/32 [110/13] via 10.10.10.2, xe1, 00:43:52
[FRR-NH] via 30.30.30.2, xe3
 
O 4.4.4.4/32 [110/13] via 10.10.10.2, xe1, 00:43:52
[FRR-NH] via 30.30.30.2, xe3
 
O 5.5.5.5/32 [110/12] via 10.10.10.2, xe1, 00:43:54
[FRR-NH] via 30.30.30.2, xe3
 
O 40.40.40.0/24 [110/11] via 10.10.10.2, xe1, 00:43:54
[FRR-NH] via 30.30.30.2, xe3
 
O 50.50.50.0/24 [110/12] via 10.10.10.2, xe1, 00:43:52
[FRR-NH] via 30.30.30.2, xe3
 
O 60.60.60.0/24 [110/12] via 10.10.10.2, xe1, 00:43:52
[FRR-NH] via 30.30.30.2, xe3
 
PE1#show ip ospf route fast-reroute
 
OSPF process 1:
Codes: C - connected, D - Discard, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
OSPF LFA attributes:
P - Primary, SP - Secondary-Path, LP - Link Protecting,
NP - Node Protecting, BID - Broadcast Link Protecting
DP - Downstream Protecting
 
O 2.2.2.2/32 [11] via 10.10.10.2, xe1, Area 0.0.0.0
Backup path:
via 30.30.30.2, xe3, Area 0.0.0.0
Attributes: Metric: [23] ,SP ,BID ,DP
O 3.3.3.3/32 [13] via 10.10.10.2, xe1, Area 0.0.0.0
Backup path:
via 30.30.30.2, xe3, Area 0.0.0.0
Attributes: Metric: [23] ,SP ,NP ,BID ,DP
O 4.4.4.4/32 [13] via 10.10.10.2, xe1, Area 0.0.0.0
Backup path:
via 30.30.30.2, xe3, Area 0.0.0.0
Attributes: Metric: [21] ,SP ,NP ,BID ,DP
O 5.5.5.5/32 [12] via 10.10.10.2, xe1, Area 0.0.0.0
Backup path:
via 30.30.30.2, xe3, Area 0.0.0.0
Attributes: Metric: [22] ,SP ,NP ,BID ,DP
O 20.20.20.0/24 [13] via 10.10.10.2, xe1, Area 0.0.0.0
Backup path:
via 30.30.30.2, xe3, Area 0.0.0.0
Attributes: Metric: [23] ,SP ,NP ,BID ,DP
O 30.30.30.0/24 [13] via 10.10.10.2, xe1, Area 0.0.0.0
Backup path:
via 30.30.30.2, xe3, Area 0.0.0.0
Attributes: Metric: [21] ,SP ,NP ,BID ,DP
O 40.40.40.0/24 [11] via 10.10.10.2, xe1, Area 0.0.0.0
Backup path:
via 30.30.30.2, xe3, Area 0.0.0.0
Attributes: Metric: [22] ,SP ,NP ,BID ,DP
O 50.50.50.0/24 [12] via 10.10.10.2, xe1, Area 0.0.0.0
Backup path:
via 30.30.30.2, xe3, Area 0.0.0.0
Attributes: Metric: [22] ,SP ,NP ,BID ,DP
O 60.60.60.0/24 [12] via 10.10.10.2, xe1, Area 0.0.0.0
Backup path:
via 30.30.30.2, xe3, Area 0.0.0.0
Attributes: Metric: [21] ,SP ,NP ,BID ,DP
 
PE1#show ldp routes
Prefix Addr Nexthop Addr Intf Backup Addr Backup Intf Owner
0.0.0.0/0 10.12.49.1 xe0 - - kernel
1.1.1.1/32 0.0.0.0 lo - - connected
2.2.2.2/32 10.10.10.2 xe1 30.30.30.2 xe3 ospf
3.3.3.3/32 10.10.10.2 xe1 30.30.30.2 xe3 ospf
4.4.4.4/32 10.10.10.2 xe1 30.30.30.2 xe3 ospf
5.5.5.5/32 10.10.10.2 xe1 30.30.30.2 xe3 ospf
10.10.10.0/24 0.0.0.0 xe1 - - connected
10.12.49.0/24 0.0.0.0 xe0 - - connected
20.20.20.0/24 0.0.0.0 xe2 - - connected
30.30.30.0/24 0.0.0.0 xe3 - - connected
40.40.40.0/24 10.10.10.2 xe1 30.30.30.2 xe3 ospf
50.50.50.0/24 10.10.10.2 xe1 30.30.30.2 xe3 ospf
60.60.60.0/24 10.10.10.2 xe1 30.30.30.2 xe3 ospf
 
PE1#show ldp fec
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
P - Primary route, B - LFA Backup route,
R - Remote LFA Backup route,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
1.1.1.1/32 E > non-existent none No connected
2.2.2.2/32 NLB> 4.4.4.4 25608 No 30.30.30.2
NL 3.3.3.3 25607 No no nexthop
NLP> 2.2.2.2 impl-null No 10.10.10.2
3.3.3.3/32 NLB> 4.4.4.4 25609 No 30.30.30.2
NLP> 2.2.2.2 25601 No 10.10.10.2
NL 3.3.3.3 impl-null No no nexthop
4.4.4.4/32 NL 3.3.3.3 25608 No no nexthop
NLP> 2.2.2.2 25602 No 10.10.10.2
NLB> 4.4.4.4 impl-null No 30.30.30.2
5.5.5.5/32 NLB> 4.4.4.4 25610 No 30.30.30.2
NLP> 2.2.2.2 25600 No 10.10.10.2
NL 3.3.3.3 25600 No no nexthop
10.10.10.0/24 NL 4.4.4.4 25611 No connected
NL 3.3.3.3 25610 No connected
NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
10.12.49.0/24 NL 4.4.4.4 impl-null No connected
NL 3.3.3.3 impl-null No connected
NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
20.20.20.0/24 NL 4.4.4.4 25612 No connected
NL 2.2.2.2 25610 No connected
NL 3.3.3.3 impl-null No connected
E > non-existent none No connected
30.30.30.0/24 NL 3.3.3.3 25611 No connected
NL 2.2.2.2 25611 No connected
NL 4.4.4.4 impl-null No connected
E > non-existent none No connected
40.40.40.0/24 NLB> 4.4.4.4 25613 No 30.30.30.2
NL 3.3.3.3 25612 No no nexthop
NLP> 2.2.2.2 impl-null No 10.10.10.2
50.50.50.0/24 NLB> 4.4.4.4 25614 No 30.30.30.2
NLP> 2.2.2.2 25612 No 10.10.10.2
NL 3.3.3.3 impl-null No no nexthop
60.60.60.0/24 NLP> 2.2.2.2 25609 No 10.10.10.2
NL 3.3.3.3 25609 No no nexthop
NLB> 4.4.4.4 impl-null No 30.30.30.2
 
PE1#show ldp downstream
Codes: P - Primary route, B - Backup route
Session peer 5.5.5.5:
FEC Nexthop Addr State Label Req.ID Attr Code
Codes: P - Primary route, B - Backup route
Session peer 2.2.2.2:
FEC Nexthop Addr State Label Req.ID Attr Code
50.50.50.0/24 10.10.10.2 Established 25612 0 P
30.30.30.0/24 connected Established 25611 0
20.20.20.0/24 connected Established 25610 0
4.4.4.4/32 10.10.10.2 Established 25602 0 P
3.3.3.3/32 10.10.10.2 Established 25601 0 P
60.60.60.0/24 10.10.10.2 Established 25609 0 P
5.5.5.5/32 10.10.10.2 Established 25600 0 P
40.40.40.0/24 10.10.10.2 Established impl-null 0 P
10.12.49.0/24 connected Established impl-null 0
10.10.10.0/24 connected Established impl-null 0
2.2.2.2/32 10.10.10.2 Established impl-null 0 P
Codes: P - Primary route, B - Backup route
Session peer 3.3.3.3:
FEC Nexthop Addr State Label Req.ID Attr Code
40.40.40.0/24 connected Established 25612 0
30.30.30.0/24 connected Established 25611 0
10.10.10.0/24 connected Established 25610 0
4.4.4.4/32 connected Established 25608 0
2.2.2.2/32 connected Established 25607 0
60.60.60.0/24 connected Established 25609 0
5.5.5.5/32 connected Established 25600 0
50.50.50.0/24 connected Established impl-null 0
20.20.20.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
3.3.3.3/32 connected Established impl-null 0
Codes: P - Primary route, B - Backup route
Session peer 4.4.4.4:
FEC Nexthop Addr State Label Req.ID Attr Code
50.50.50.0/24 connected Established 25614 0
50.50.50.0/24 30.30.30.2 Established 25614 0 B
40.40.40.0/24 connected Established 25613 0
40.40.40.0/24 30.30.30.2 Established 25613 0 B
20.20.20.0/24 connected Established 25612 0
10.10.10.0/24 connected Established 25611 0
5.5.5.5/32 connected Established 25610 0
5.5.5.5/32 30.30.30.2 Established 25610 0 B
3.3.3.3/32 connected Established 25609 0
3.3.3.3/32 30.30.30.2 Established 25609 0 B
2.2.2.2/32 connected Established 25608 0
2.2.2.2/32 30.30.30.2 Established 25608 0 B
60.60.60.0/24 connected Established impl-null 0
60.60.60.0/24 30.30.30.2 Established impl-null 0 B
30.30.30.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
4.4.4.4/32 connected Established impl-null 0
4.4.4.4/32 30.30.30.2 Established impl-null 0 B
 
PE1#show ldp lsp
DOWNSTREAM LSP :
FEC Nexthop Addr State Label Req.ID Attr Code
1.1.1.1/32 connected Established none 0 None
2.2.2.2/32 connected Established 25608 0
2.2.2.2/32 30.30.30.2 Established 25608 0 B
2.2.2.2/32 connected Established 25607 0
2.2.2.2/32 10.10.10.2 Established impl-null 0 P
3.3.3.3/32 connected Established 25609 0
3.3.3.3/32 30.30.30.2 Established 25609 0 B
3.3.3.3/32 10.10.10.2 Established 25601 0 P
3.3.3.3/32 connected Established impl-null 0
4.4.4.4/32 connected Established 25608 0
4.4.4.4/32 10.10.10.2 Established 25602 0 P
4.4.4.4/32 connected Established impl-null 0
4.4.4.4/32 30.30.30.2 Established impl-null 0 B
5.5.5.5/32 connected Established 25610 0
5.5.5.5/32 30.30.30.2 Established 25610 0 B
5.5.5.5/32 10.10.10.2 Established 25600 0 P
5.5.5.5/32 connected Established 25600 0
10.10.10.0/24 connected Established 25611 0
10.10.10.0/24 connected Established 25610 0
10.10.10.0/24 connected Established impl-null 0
10.10.10.0/24 connected Established none 0 None
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established none 0 None
20.20.20.0/24 connected Established 25612 0
20.20.20.0/24 connected Established 25610 0
20.20.20.0/24 connected Established impl-null 0
20.20.20.0/24 connected Established none 0 None
30.30.30.0/24 connected Established 25611 0
30.30.30.0/24 connected Established 25611 0
30.30.30.0/24 connected Established impl-null 0
30.30.30.0/24 connected Established none 0 None
40.40.40.0/24 connected Established 25613 0
40.40.40.0/24 30.30.30.2 Established 25613 0 B
40.40.40.0/24 connected Established 25612 0
40.40.40.0/24 10.10.10.2 Established impl-null 0 P
50.50.50.0/24 connected Established 25614 0
50.50.50.0/24 30.30.30.2 Established 25614 0 B
50.50.50.0/24 10.10.10.2 Established 25612 0 P
50.50.50.0/24 connected Established impl-null 0
60.60.60.0/24 10.10.10.2 Established 25609 0 P
60.60.60.0/24 connected Established 25609 0
60.60.60.0/24 connected Established impl-null 0
60.60.60.0/24 30.30.30.2 Established impl-null 0 B
 
UPSTREAM LSP :
FEC State Label Req.ID Attr
1.1.1.1/32 Established impl-null 0 None
1.1.1.1/32 Established impl-null 0 None
1.1.1.1/32 Established impl-null 0 None
2.2.2.2/32 Established 25602 0 None
2.2.2.2/32 Established 25608 0 None
2.2.2.2/32 Established 25602 0 None
2.2.2.2/32 Established 25608 0 None
3.3.3.3/32 Established 25614 0 None
3.3.3.3/32 Established 25614 0 None
3.3.3.3/32 Established 25609 0 None
3.3.3.3/32 Established 25609 0 None
4.4.4.4/32 Established 25615 0 None
4.4.4.4/32 Established 25605 0 None
4.4.4.4/32 Established 25615 0 None
4.4.4.4/32 Established 25605 0 None
5.5.5.5/32 Established 25606 0 None
5.5.5.5/32 Established 25606 0 None
5.5.5.5/32 Established 25613 0 None
5.5.5.5/32 Established 25613 0 None
10.10.10.0/24 Established impl-null 0 None
10.10.10.0/24 Established impl-null 0 None
10.10.10.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
40.40.40.0/24 Established 25603 0 None
40.40.40.0/24 Established 25610 0 None
40.40.40.0/24 Established 25603 0 None
40.40.40.0/24 Established 25610 0 None
50.50.50.0/24 Established 25616 0 None
50.50.50.0/24 Established 25616 0 None
50.50.50.0/24 Established 25611 0 None
50.50.50.0/24 Established 25611 0 None
60.60.60.0/24 Established 25607 0 None
60.60.60.0/24 Established 25612 0 None
60.60.60.0/24 Established 25612 0 None
60.60.60.0/24 Established 25607 0 None
 
PE1#show ldp fec prefix 5.5.5.5/32
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
P - Primary route, B - LFA Backup route,
R - Remote LFA Backup route,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
5.5.5.5/32 NLB> 4.4.4.4 25610 No 30.30.30.2
NLP> 2.2.2.2 25600 No 10.10.10.2
NL 3.3.3.3 25600 No no nexthop
 
PE1#show mpls forwarding-table
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 2.2.2.2/32 1 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
13 - No LSP_DEFAULT 25608 xe3 No 30.30.30.2
L> 3.3.3.3/32 3 9 - Yes LSP_DEFAULT 25601 xe1 No 10.10.10.2
14 - No LSP_DEFAULT 25609 xe3 No 30.30.30.2
L> 4.4.4.4/32 5 10 - Yes LSP_DEFAULT 25602 xe1 No 10.10.10.2
15 - No LSP_DEFAULT 3 xe3 No 30.30.30.2
L> 5.5.5.5/32 7 7 - Yes LSP_DEFAULT 25600 xe1 No 10.10.10.2
16 - No LSP_DEFAULT 25610 xe3 No 30.30.30.2
L> 40.40.40.0/24 2 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
17 - No LSP_DEFAULT 25613 xe3 No 30.30.30.2
L> 50.50.50.0/24 4 11 - Yes LSP_DEFAULT 25612 xe1 No 10.10.10.2
18 - No LSP_DEFAULT 25614 xe3 No 30.30.30.2
L> 60.60.60.0/24 6 8 - Yes LSP_DEFAULT 25609 xe1 No 10.10.10.2
15 - No LSP_DEFAULT 3 xe3 No 30.30.30.2
 
 
PE1#show mpls forwarding-table 5.5.5.5/32
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 5.5.5.5/32 7 7 - Yes LSP_DEFAULT 25600 xe1 No 10.10.10.2
16 - No LSP_DEFAULT 25610 xe3 No 30.30.30.2
 
 
PE1#show mpls ftn-table
Primary FTN entry with FEC: 2.2.2.2/32, id: 1, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
Backup Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 13
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 13, owner: LDP, Stale: NO, out intf: xe3, out label: 25608
Nexthop addr: 30.30.30.2 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 3.3.3.3/32, id: 3, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 9
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 9, owner: LDP, Stale: NO, out intf: xe1, out label: 25601
Nexthop addr: 10.10.10.2 cross connect ix: 5, op code: Push
 
Backup Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 14
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 14, owner: LDP, Stale: NO, out intf: xe3, out label: 25609
Nexthop addr: 30.30.30.2 cross connect ix: 2, op code: Push
 
 
Primary FTN entry with FEC: 4.4.4.4/32, id: 5, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 6, in intf: - in label: 0 out-segment ix: 10
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 10, owner: LDP, Stale: NO, out intf: xe1, out label: 25602
Nexthop addr: 10.10.10.2 cross connect ix: 6, op code: Push
 
Backup Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 15
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 15, owner: N/A, Stale: NO, out intf: xe3, out label: 3
Nexthop addr: 30.30.30.2 cross connect ix: 4, op code: Push
 
 
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 7
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 7, owner: LDP, Stale: NO, out intf: xe1, out label: 25600
Nexthop addr: 10.10.10.2 cross connect ix: 2, op code: Push
 
Backup Cross connect ix: 6, in intf: - in label: 0 out-segment ix: 16
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 16, owner: LDP, Stale: NO, out intf: xe3, out label: 25610
Nexthop addr: 30.30.30.2 cross connect ix: 6, op code: Push
 
 
Primary FTN entry with FEC: 40.40.40.0/24, id: 2, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
Backup Cross connect ix: 8, in intf: - in label: 0 out-segment ix: 17
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 17, owner: LDP, Stale: NO, out intf: xe3, out label: 25613
Nexthop addr: 30.30.30.2 cross connect ix: 8, op code: Push
 
 
Primary FTN entry with FEC: 50.50.50.0/24, id: 4, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 11
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 11, owner: LDP, Stale: NO, out intf: xe1, out label: 25612
Nexthop addr: 10.10.10.2 cross connect ix: 7, op code: Push
 
Backup Cross connect ix: 10, in intf: - in label: 0 out-segment ix: 18
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 18, owner: LDP, Stale: NO, out intf: xe3, out label: 25614
Nexthop addr: 30.30.30.2 cross connect ix: 10, op code: Push
 
 
Primary FTN entry with FEC: 60.60.60.0/24, id: 6, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 8, in intf: - in label: 0 out-segment ix: 8
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 8, owner: LDP, Stale: NO, out intf: xe1, out label: 25609
Nexthop addr: 10.10.10.2 cross connect ix: 8, op code: Push
 
Backup Cross connect ix: 12, in intf: - in label: 0 out-segment ix: 15
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 15, owner: N/A, Stale: NO, out intf: xe3, out label: 3
Nexthop addr: 30.30.30.2 cross connect ix: 4, op code: Push
 
 
 
PE1#show mpls ftn-table 5.5.5.5/32
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 7
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 7, owner: LDP, Stale: NO, out intf: xe1, out label: 25600
Nexthop addr: 10.10.10.2 cross connect ix: 2, op code: Push
 
Backup Cross connect ix: 6, in intf: - in label: 0 out-segment ix: 16
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 16, owner: LDP, Stale: NO, out intf: xe3, out label: 25610
Nexthop addr: 30.30.30.2 cross connect ix: 6, op code: Push
 
 
PE1#show mpls ilm-table
Codes: > - installed ILM, * - selected ILM, p - stale ILM, ! - using backup
K - CLI ILM, T - MPLS-TP, s - Stitched ILM
S - SNMP, L - LDP, R - RSVP, C - CRLDP
B - BGP , K - CLI , V - LDP_VC, I - IGP_SHORTCUT
O - OSPF/OSPF6 SR, i - ISIS SR, k - SR CLI
P - SR Policy, U - unknown
 
Code FEC/VRF/L2CKT ILM-ID In-Label Out-Label In-Intf Out-Intf/VRF Nexthop pri LSP-
Type
L> 2.2.2.2/32 9 25608 3 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
L> 4.4.4.4/32 6 25605 25602 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
25605 3 N/A xe3 30.30.30.2 No LSP_
DEFAULT
L> 2.2.2.2/32 3 25602 3 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
25602 25608 N/A xe3 30.30.30.2 No LSP_
DEFAULT
L> 40.40.40.0/24 4 25603 3 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
25603 25613 N/A xe3 30.30.30.2 No LSP_
DEFAULT
L> 5.5.5.5/32 7 25606 25600 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
25606 25610 N/A xe3 30.30.30.2 No LSP_
DEFAULT
L> 60.60.60.0/24 8 25607 25609 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
25607 3 N/A xe3 30.30.30.2 No LSP_
DEFAULT
L> 60.60.60.0/24 13 25612 25609 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
L> 40.40.40.0/24 11 25610 3 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
L> 3.3.3.3/32 10 25609 25601 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
L> 50.50.50.0/24 12 25611 25612 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
L> 3.3.3.3/32 15 25614 25601 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
25614 25609 N/A xe3 30.30.30.2 No LSP_
DEFAULT
L> 5.5.5.5/32 14 25613 25600 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
L> 4.4.4.4/32 16 25615 25602 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
L> 50.50.50.0/24 17 25616 25612 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
25616 25614 N/A xe3 30.30.30.2 No LSP_
DEFAULT
 
PE1#show ip ospf neighbor
 
Total number of full neighbors: 3
OSPF process 1 VRF(default):
Neighbor ID Pri State Dead Time Address Interface Instance ID
2.2.2.2 1 Full/Backup 00:00:34 10.10.10.2 xe1 0
3.3.3.3 1 Full/Backup 00:00:31 20.20.20.2 xe2 0
4.4.4.4 1 Full/Backup 00:00:32 30.30.30.2 xe3 0
 
PE1#show ip ospf interface brief
Interface PID Area Intf ID Cost State Neighbors Status
lo 1 0.0.0.0 1 1 Loopback 0 Up
 
Interface PID Area Intf ID Cost State Neighbors Status
xe1 1 0.0.0.0 4 10 DR 1 Up
 
Interface PID Area Intf ID Cost State Neighbors Status
xe2 1 0.0.0.0 14 15 DR 1 Up
 
Interface PID Area Intf ID Cost State Neighbors Status
xe3 1 0.0.0.0 15 20 DR 1 Up
 
 
PE1#show ip ospf database
 
OSPF Router with ID (1.1.1.1) (Process ID 1 VRF default)
 
Router Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Link count
1.1.1.1 1.1.1.1 961 0x8000000f 0x5af3 4
2.2.2.2 2.2.2.2 992 0x80000009 0x5f60 3
3.3.3.3 3.3.3.3 918 0x80000009 0x62d8 3
4.4.4.4 4.4.4.4 913 0x80000009 0x6551 3
5.5.5.5 5.5.5.5 994 0x80000005 0xd45c 4
 
Net Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum
10.10.10.1 1.1.1.1 1401 0x80000002 0x9277
20.20.20.1 1.1.1.1 1621 0x80000002 0x5b8c
30.30.30.1 1.1.1.1 1541 0x80000002 0x24a1
40.40.40.1 2.2.2.2 422 0x80000002 0xf0aa
50.50.50.1 3.3.3.3 1088 0x80000002 0x8be9
60.60.60.1 4.4.4.4 1083 0x80000002 0x2629
 
Area-Local Opaque-LSA (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Opaque ID
1.0.0.1 1.1.1.1 1041 0x80000004 0x2af9 1
1.0.0.1 2.2.2.2 942 0x80000003 0x30ec 1
1.0.0.1 3.3.3.3 948 0x80000004 0x32e1 1
1.0.0.1 4.4.4.4 953 0x80000004 0x36d5 1
1.0.0.1 5.5.5.5 1474 0x80000002 0x3ec7 1
1.0.0.8 4.4.4.4 1193 0x80000002 0x7938 8
1.0.0.8 5.5.5.5 464 0x80000002 0x7933 8
1.0.0.10 1.1.1.1 1181 0x80000003 0xd806 10
1.0.0.10 2.2.2.2 1182 0x80000003 0x8161 10
1.0.0.12 3.3.3.3 958 0x80000003 0xc725 12
1.0.0.12 5.5.5.5 994 0x80000003 0xa93a 12
1.0.0.22 2.2.2.2 912 0x80000003 0xdb47 22
1.0.0.22 5.5.5.5 934 0x80000003 0x9f76 22
1.0.0.30 1.1.1.1 1051 0x80000003 0x7415 30
1.0.0.30 3.3.3.3 1058 0x80000003 0x404e 30
1.0.0.32 1.1.1.1 961 0x80000003 0xc481 32
1.0.0.32 4.4.4.4 1013 0x80000003 0xb398 32
 
PE1#show ip route summary
 
-----------------------------------------------
IP routing table name is Default-IP-Routing-Table(0)
-----------------------------------------------
IP routing table maximum-paths : 8
Total number of IPv4 routes : 14
Total number of IPv4 paths : 14
Pending routes (due to route max reached): 0
Route Source Networks
kernel 1
connected 6
ospf 7
Total 14
FIB 14
 
ECMP statistics (active in ASIC):
Total number of IPv4 ECMP routes : 0
Total number of IPv4 ECMP paths : 0
 
LFA Non ECMP statistics
--------------
Total number of Routes : 7
Total number of Primary Paths : 7
Total number of Backup Paths : 7
 
PE1#show ip interface brief
 
'*' - address is assigned by dhcp client
 
Interface IP-Address Admin-Status Link-Status
xe0 *10.12.49.172 up up
xe1 unassigned up up
xe1 10.10.10.1 up up
xe3 unassigned up up
xe4 unassigned up up
xe5 unassigned up up
xe6 unassigned up up
xe7 unassigned up up
xe8 unassigned up up
xe9 unassigned up up
xe10 unassigned up up
xe11 unassigned up up
xe2 20.20.20.1 up up
xe3 30.30.30.1 up up
lo 127.0.0.1 up up
 
PE1#show ldp session
Peer IP Address IF Name My Role State KeepAlive UpTime
5.5.5.5 xe2 Passive OPERATIONAL 30 00:45:56
2.2.2.2 xe1 Passive OPERATIONAL 30 00:49:24
3.3.3.3 xe2 Passive OPERATIONAL 30 00:47:18
4.4.4.4 xe3 Passive OPERATIONAL 30 00:46:33
 
PE1#show ip route
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
 
IP Route Table for VRF "default"
Gateway of last resort is 10.12.49.1 to network 0.0.0.0
 
K* 0.0.0.0/0 [0/0] via 10.12.49.1, xe0
C 1.1.1.1/32 is directly connected, lo, 00:55:17
O 2.2.2.2/32 [110/11] via 10.10.10.2, xe1, 00:49:29
O 3.3.3.3/32 [110/13] via 10.10.10.2, xe1, 00:46:16
O 4.4.4.4/32 [110/13] via 10.10.10.2, xe1, 00:46:16
O 5.5.5.5/32 [110/12] via 10.10.10.2, xe1, 00:46:18
C 10.10.10.0/24 is directly connected, xe1, 00:53:26
C 10.12.49.0/24 is directly connected, xe0, 17:05:26
C 20.20.20.0/24 is directly connected, xe2, 00:53:26
C 30.30.30.0/24 is directly connected, xe3, 00:53:26
O 40.40.40.0/24 [110/11] via 10.10.10.2, xe1, 00:46:18
O 50.50.50.0/24 [110/12] via 10.10.10.2, xe1, 00:46:16
O 60.60.60.0/24 [110/12] via 10.10.10.2, xe1, 00:46:16
C 127.0.0.0/8 is directly connected, lo, 17:19:02
PE1#show ldp routes
Prefix Addr Nexthop Addr Intf Backup Addr Backup Intf Owner
0.0.0.0/0 10.12.49.1 xe0 - - kernel
1.1.1.1/32 0.0.0.0 lo - - connected
2.2.2.2/32 10.10.10.2 xe1 30.30.30.2 xe3 ospf
3.3.3.3/32 10.10.10.2 xe1 30.30.30.2 xe3 ospf
4.4.4.4/32 10.10.10.2 xe1 30.30.30.2 xe3 ospf
5.5.5.5/32 10.10.10.2 xe1 30.30.30.2 xe3 ospf
10.10.10.0/24 0.0.0.0 xe1 - - connected
10.12.49.0/24 0.0.0.0 xe0 - - connected
20.20.20.0/24 0.0.0.0 xe2 - - connected
30.30.30.0/24 0.0.0.0 xe3 - - connected
40.40.40.0/24 10.10.10.2 xe1 30.30.30.2 xe3 ospf
50.50.50.0/24 10.10.10.2 xe1 30.30.30.2 xe3 ospf
60.60.60.0/24 10.10.10.2 xe1 30.30.30.2 xe3 ospf
 
PE1#show mpls forwarding-table
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 2.2.2.2/32 1 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
13 - No LSP_DEFAULT 25608 xe3 No 30.30.30.2
L> 3.3.3.3/32 3 9 - Yes LSP_DEFAULT 25601 xe1 No 10.10.10.2
14 - No LSP_DEFAULT 25609 xe3 No 30.30.30.2
L> 4.4.4.4/32 5 10 - Yes LSP_DEFAULT 25602 xe1 No 10.10.10.2
15 - No LSP_DEFAULT 3 xe3 No 30.30.30.2
L> 5.5.5.5/32 7 7 - Yes LSP_DEFAULT 25600 xe1 No 10.10.10.2
16 - No LSP_DEFAULT 25610 xe3 No 30.30.30.2
L> 40.40.40.0/24 2 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
17 - No LSP_DEFAULT 25613 xe3 No 30.30.30.2
L> 50.50.50.0/24 4 11 - Yes LSP_DEFAULT 25612 xe1 No 10.10.10.2
18 - No LSP_DEFAULT 25614 xe3 No 30.30.30.2
L> 60.60.60.0/24 6 8 - Yes LSP_DEFAULT 25609 xe1 No 10.10.10.2
15 - No LSP_DEFAULT 3 xe3 No 30.30.30.2
 
PE1#show mpls forwarding-table 5.5.5.5/32
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 5.5.5.5/32 7 7 - Yes LSP_DEFAULT 25600 xe1 No 10.10.10.2
16 - No LSP_DEFAULT 25610 xe3 No 30.30.30.2
 
PE1#show mpls ilm-table
Codes: > - installed ILM, * - selected ILM, p - stale ILM, ! - using backup
K - CLI ILM, T - MPLS-TP, s - Stitched ILM
S - SNMP, L - LDP, R - RSVP, C - CRLDP
B - BGP , K - CLI , V - LDP_VC, I - IGP_SHORTCUT
O - OSPF/OSPF6 SR, i - ISIS SR, k - SR CLI
P - SR Policy, U - unknown
 
Code FEC/VRF/L2CKT ILM-ID In-Label Out-Label In-Intf Out-Intf/VRF Nexthop pri LSP-
Type
L> 2.2.2.2/32 9 25608 3 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
L> 4.4.4.4/32 6 25605 25602 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
25605 3 N/A xe3 30.30.30.2 No LSP_
DEFAULT
L> 2.2.2.2/32 3 25602 3 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
25602 25608 N/A xe3 30.30.30.2 No LSP_
DEFAULT
L> 40.40.40.0/24 4 25603 3 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
25603 25613 N/A xe3 30.30.30.2 No LSP_
DEFAULT
L> 5.5.5.5/32 7 25606 25600 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
25606 25610 N/A xe3 30.30.30.2 No LSP_
DEFAULT
L> 60.60.60.0/24 8 25607 25609 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
25607 3 N/A xe3 30.30.30.2 No LSP_
DEFAULT
L> 60.60.60.0/24 13 25612 25609 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
L> 40.40.40.0/24 11 25610 3 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
L> 3.3.3.3/32 10 25609 25601 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
L> 50.50.50.0/24 12 25611 25612 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
L> 3.3.3.3/32 15 25614 25601 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
25614 25609 N/A xe3 30.30.30.2 No LSP_
DEFAULT
L> 5.5.5.5/32 14 25613 25600 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
L> 4.4.4.4/32 16 25615 25602 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
L> 50.50.50.0/24 17 25616 25612 N/A xe1 10.10.10.2 Yes LSP_
DEFAULT
25616 25614 N/A xe3 30.30.30.2 No LSP_
DEFAULT
LDP-FRR with ISIS as IGP Configuration
Below are the configurations and validations involving NSM, ISIS, LDP before configuring fast-reroute for IGP and LDP.
PE1
 
#configure terminal
Enter configuration mode.
(config)#interface lo
Specify the loopback (lo) interface to be configured.
(config-if)#ip address 1.1.1.1/32 secondary
Set the IP address of the loopback interface
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#exit
Exit interface mode.
(config)#router ldp
Enter router mode for LDP.
(config-router)#router-id 1.1.1.1
Set the router ID to IP address 1.1.1.1
(config-router)#transport-address ipv4 1.1.1.1 0
Configure the transport address for IPv4 (for IPv6 use ipv6) to be used for a TCP session over which LDP will run.
Note: It is preferable to use the loopback address as the transport address.
(config-router)#targeted-peer ipv4 5.5.5.5
Configure targeted peer.
(config-router-targeted-peer)#exit
Exit-targeted-peer-mode
(config-router)#exit
Exit router mode
(config)#interface xe1
Enter interface mode.
(config-if)#ip address 10.10.10.1/24
Configure IPv4 address for xe1.
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#label-switching
Enable label switching on interface xe1.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe1.
(config-if)#isis wide-metric 20 level-1
Assign isis wide-metric to the interface
(config-if)#mpls ldp-igp sync isis level-1
Configure LDP-IGP Synchronization for interface xe1 belonging to an IS-IS process with corresponding IS-IS level. The values level-1|level-2-only|level-1-2 identify the IS-IS level instance. The interface can be acting on any level, but the sync is applicable only when it matches with the level given in IGP sync command.
IS-IS: This command is part of ISIS Process.
Default: Mandatory configuration. No default option.
(config-if)#exit
Exit interface mode
(config)#interface xe2
Enter interface mode.
(config-if)#ip address 20.20.20.1/24
Configure IPv4 address for xe2
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#label-switching
Enable label switching on interface xe2.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe2.
(config-if)#isis wide-metric 15 level-1
Assign isis wide-metric to the interface
(config-if)#mpls ldp-igp sync isis level-1
Configure LDP-IGP Synchronization for interface xe2 belonging to an IS-IS process with corresponding IS-IS level. The values level-1|level-2-only|level-1-2 identify the IS-IS level instance. The interface can be acting on any level, but the sync is applicable only when it matches with the level given in IGP sync command.
IS-IS: This command is part of ISIS Process.
Default: Mandatory configuration. No default option.
(config-if)#exit
Exit interface mode
(config)#interface xe3
Enter interface mode.
(config-if)#ip address 30.30.30.1/24
Configure IPv4 address for xe3
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#label-switching
Enable label switching on interface xe3
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe3
(config-if)#isis wide-metric 60 level-1
Assign isis wide-metric to the interface
(config-if)#mpls ldp-igp sync isis level-1
Configure LDP-IGP Synchronization for interface xe3 belonging to an IS-IS process with corresponding IS-IS level. The values level-1|level-2-only|level-1-2 identify the IS-IS level instance. The interface can be acting on any level, but the sync is applicable only when it matches with the level given in IGP sync command.
IS-IS: This command is part of ISIS Process.
Default: Mandatory configuration. No default option.
(config-if)#exit
Exit interface mode
(config)#router isis 1
Create an IS-IS routing instance for area 49 with instance 1
(config-router)#net 49.0001.0000.0000.0001.00
Establish a Network Entity Title for this instance, specifying the area address and the system ID
(config-router)#dynamic-hostname
Configure the hostname to be advertised for an ISIS instance
(config-router)#is-type level-1
Configure instance as level-1-only routing.
(config-router)#metric-style wide
Configure the new style of metric type as wide
(config-router)#mpls traffic-eng level-1
Enable MPLS-TE in is-type Level-1.
(config-router)#bfd all-interfaces
Enable BFD for ISIS on all interfaces
(config-router)#capability cspf
Enable CSPF feature for ISIS instance.
(config-if)#exit
Exit interface mode.
(config)#bfd interval 3 minrx 3 multiplier 3
Configure BFD interval
(config)#commit
Commit all the configurations
P1
 
#configure terminal
Enter configuration mode.
(config)#interface lo
Specify the loopback (lo) interface to be configured.
(config-if)#ip address 2.2.2.2/32 secondary
Set the IP address of the loopback interface to 2.2.2.2/32
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#exit
Exit interface mode.
(config)#router ldp
Enter router mode for LDP.
(config-router)#router-id 2.2.2.2
Set the router ID to IP address 2.2.2.2
(config-router)#transport-address ipv4 2.2.2.2 0
Configure the transport address for IPv4 (for IPv6 use ipv6) to be used for a TCP session over which LDP will run.
Note: It is preferable to use the loopback address as the transport address.
(config-router)#exit
Exit router mode
(config)#interface xe1
Enter interface mode.
(config-if)#ip address 10.10.10.2/24
Configure IPv4 address for xe1.
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#label-switching
Enable label switching on interface xe1.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe1.
(config-if)#mpls ldp-igp sync isis level-1
Configure LDP-IGP Synchronization for interface xe1 belonging to an IS-IS process with corresponding IS-IS level. The values level-1|level-2-only|level-1-2 identify the IS-IS level instance. The interface can be acting on any level, but the sync is applicable only when it matches with the level given in IGP sync command.
IS-IS: This command is part of ISIS Process.
Default: Mandatory configuration. No default option.
(config-if)#exit
Exit interface mode
(config)#interface xe2
Enter interface mode.
(config-if)#ip address 40.40.40.1/24
Configure IPv4 address for xe2
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#label-switching
Enable label switching on interface xe2.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe2.
(config-if)#mpls ldp-igp sync isis level-1
Configure LDP-IGP Synchronization for interface xe2 belonging to an IS-IS process with corresponding IS-IS level. The values level-1|level-2-only|level-1-2 identify the IS-IS level instance. The interface can be acting on any level, but the sync is applicable only when it matches with the level given in IGP sync command.
IS-IS: This command is part of ISIS Process.
Default: Mandatory configuration. No default option.
(config-if)#exit
Exit interface mode
(config)#router isis 1
Create an IS-IS routing instance for area 49 with instance 1
(config-router)#net 49.0001.0000.0000.0002.00
Establish a Network Entity Title for this instance, specifying the area address and the system ID
(config-router)#dynamic-hostname
Configure the hostname to be advertised for an ISIS instance
(config-router)#is-type level-1
Configure instance as level-1-only routing.
(config-router)#metric-style wide
Configure the new style of metric type as wide
(config-router)#mpls traffic-eng level-1
Enable MPLS-TE in is-type Level-1.
(config-router)#bfd all-interfaces
Enable BFD for ISIS on all interfaces
(config-router)#capability cspf
Enable CSPF feature for ISIS instance.
(config-if)#exit
Exit interface mode.
(config)#bfd interval 3 minrx 3 multiplier 3
Configure BFD interval
(config)#commit
Commit all the configurations
P2
 
#configure terminal
Enter configuration mode.
(config)#interface lo
Specify the loopback (lo) interface to be configured.
(config-if)#ip address 3.3.3.3/32 secondary
Set the IP address of the loopback interface to 3.3.3.3/32
 
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#exit
Exit interface mode.
(config)#router ldp
Enter router mode for LDP.
(config-router)#router-id 3.3.3.3
Set the router ID to IP address 3.3.3.3
(config-router)#transport-address ipv4 3.3.3.3 0
Configure the transport address for IPv4 (for IPv6 use ipv6) to be used for a TCP session over which LDP will run.
Note: It is preferable to use the loopback address as the transport address.
(config-router)#exit
Exit router mode
(config)#interface xe1
Enter interface mode.
(config-if)#ip address 20.20.20.2/24
Configure IPv4 address for xe1.
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#label-switching
Enable label switching on interface xe1.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe1.
(config-if)#mpls ldp-igp sync isis level-1
Configure LDP-IGP Synchronization for interface xe1 belonging to an IS-IS process with corresponding IS-IS level. The values level-1|level-2-only|level-1-2 identify the IS-IS level instance. The interface can be acting on any level, but the sync is applicable only when it matches with the level given in IGP sync command.
IS-IS: This command is part of ISIS Process.
Default: Mandatory configuration. No default option.
(config-if)#exit
Exit interface mode
(config)#interface xe2
Enter interface mode.
(config-if)#ip address 50.50.50.1/24
Configure IPv4 address for xe2
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#label-switching
Enable label switching on interface xe2.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe2.
(config-if)#mpls ldp-igp sync isis level-1
Configure LDP-IGP Synchronization for interface xe2 belonging to an IS-IS process with corresponding IS-IS level. The values level-1|level-2-only|level-1-2 identify the IS-IS level instance. The interface can be acting on any level, but the sync is applicable only when it matches with the level given in IGP sync command.
IS-IS: This command is part of ISIS Process.
Default: Mandatory configuration. No default option.
(config-if)#exit
Exit interface mode
(config)#router isis 1
Create an IS-IS routing instance for area 49 with instance 1
(config-router)#net 49.0001.0000.0000.0003.00
Establish a Network Entity Title for this instance, specifying the area address and the system ID
(config-router)#dynamic-hostname
Configure the hostname to be advertised for an ISIS instance
(config-router)#is-type level-1
Configure instance as level-1-only routing.
(config-router)#metric-style wide
Configure the new style of metric type as wide
(config-router)#mpls traffic-eng level-1
Enable MPLS-TE in is-type Level-1.
(config-router)#bfd all-interfaces
Enable BFD for ISIS on all interfaces
(config-router)#capability cspf
Enable CSPF feature for ISIS instance.
(config-if)#exit
Exit interface mode.
(config)#bfd interval 3 minrx 3 multiplier 3
Configure BFD interval
(config)#commit
Commit all the configurations
P3
 
#configure terminal
Enter configuration mode.
(config)#interface lo
Specify the loopback (lo) interface to be configured.
(config-if)#ip address 4.4.4.4/32 secondary
Set the IP address of the loopback interface to 4.4.4.4/32
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#exit
Exit interface mode.
(config)#router ldp
Enter router mode for LDP.
(config-router)#router-id 4.4.4.4
Set the router ID to IP address 4.4.4.4
(config-router)#transport-address ipv4 4.4.4.4 0
Configure the transport address for IPv4 (for IPv6 use ipv6) to be used for a TCP session over which LDP will run.
Note: It is preferable to use the loopback address as the transport address.
(config-router)#exit
Exit router mode
(config)#interface xe1
Enter interface mode.
(config-if)#ip address 30.30.30.2/24
Configure IPv4 address for xe1.
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#label-switching
Enable label switching on interface xe1.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe1.
(config-if)#mpls ldp-igp sync isis level-1
Configure LDP-IGP Synchronization for interface xe1 belonging to an IS-IS process with corresponding IS-IS level. The values level-1|level-2-only|level-1-2 identify the IS-IS level instance. The interface can be acting on any level, but the sync is applicable only when it matches with the level given in IGP sync command.
IS-IS: This command is part of ISIS Process.
Default: Mandatory configuration. No default option.
(config-if)#exit
Exit interface mode
(config)#interface xe2
Enter interface mode.
(config-if)#ip address 60.60.60.1/24
Configure IPv4 address for xe2
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#label-switching
Enable label switching on interface xe2.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe2.
(config-if)#mpls ldp-igp sync isis level-1
Configure LDP-IGP Synchronization for interface xe2 belonging to an IS-IS process with corresponding IS-IS level. The values level-1|level-2-only|level-1-2 identify the IS-IS level instance. The interface can be acting on any level, but the sync is applicable only when it matches with the level given in IGP sync command.
IS-IS: This command is part of ISIS Process.
Default: Mandatory configuration. No default option.
(config-if)#exit
Exit interface mode
(config)#router isis 1
Create an IS-IS routing instance for area 49 with instance 1
(config-router)#net 49.0001.0000.0000.0004.00
Establish a Network Entity Title for this instance, specifying the area address and the system ID
(config-router)#dynamic-hostname
Configure the hostname to be advertised for an ISIS instance
(config-router)#is-type level-1
Configure instance as level-1-only routing.
(config-router)#metric-style wide
Configure the new style of metric type as wide
(config-router)#mpls traffic-eng level-1
Enable MPLS-TE in is-type Level-1.
(config-router)#bfd all-interfaces
Enable BFD for ISIS on all interfaces
(config-router)#capability cspf
Enable CSPF feature for ISIS instance.
(config-if)#exit
Exit interface mode.
(config)#bfd interval 3 minrx 3 multiplier 3
Configure BFD interval
(config)#commit
Commit all the configurations
PE2
 
#configure terminal
Enter configuration mode.
(config)#interface lo
Specify the loopback (lo) interface to be configured.
(config-if)#ip address 5.5.5.5/32 secondary
Set the IP address of the loopback interface to 5.5.5.5/32
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#exit
Exit interface mode.
(config)#router ldp
Enter router mode for LDP.
(config-router)#router-id 5.5.5.5
Set the router ID to IP address 5.5.5.5
(config-router)#transport-address ipv4 5.5.5.5 0
Configure the transport address for IPv4 (for IPv6 use ipv6) to be used for a TCP session over which LDP will run.
Note: It is preferable to use the loopback address as the transport address.
(config-router)#targeted-peer ipv4 1.1.1.1
Configure targeted peer.
(config-router-targeted-peer)#exit
Exit-targeted-peer-mode
(config-router)#exit
Exit router mode
(config)#interface xe1
Enter interface mode.
(config-if)#ip address 40.40.40.2/24
Configure IPv4 address for xe1.
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#label-switching
Enable label switching on interface xe1.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe1.
(config-if)#mpls ldp-igp sync isis level-1
Configure LDP-IGP Synchronization for interface xe1 belonging to an IS-IS process with corresponding IS-IS level. The values level-1|level-2-only|level-1-2 identify the IS-IS level instance. The interface can be acting on any level, but the sync is applicable only when it matches with the level given in IGP sync command.
IS-IS: This command is part of ISIS Process.
Default: Mandatory configuration. No default option.
 
(config-if)#exit
Exit interface mode
(config)#interface xe2
Enter interface mode.
(config-if)#ip address 50.50.50.2/24
Configure IPv4 address for xe2
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#label-switching
Enable label switching on interface xe2.
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe2.
(config-if)#mpls ldp-igp sync isis level-1
Configure LDP-IGP Synchronization for interface xe2 belonging to an IS-IS process with corresponding IS-IS level. The values level-1|level-2-only|level-1-2 identify the IS-IS level instance. The interface can be acting on any level, but the sync is applicable only when it matches with the level given in IGP sync command.
IS-IS: This command is part of ISIS Process.
Default: Mandatory configuration. No default option.
(config-if)#exit
Exit interface mode
(config)#interface xe3
Enter interface mode.
(config-if)#ip address 60.60.60.2/24
Configure IPv4 address for xe3
(config-if)#ip router isis 1
Configure IS-IS IPv4 routing on the interface with IS-IS tag instance 1.
(config-if)#label-switching
Enable label switching on interface xe3
(config-if)#enable-ldp ipv4
Enable LDP for IPv4 on xe3
(config-if)#mpls ldp-igp sync isis level-1
Configure LDP-IGP Synchronization for interface xe3 belonging to an IS-IS process with corresponding IS-IS level. The values level-1|level-2-only|level-1-2 identify the IS-IS level instance. The interface can be acting on any level, but the sync is applicable only when it matches with the level given in IGP sync command.
IS-IS: This command is part of ISIS Process.
Default: Mandatory configuration. No default option.
(config-if)#exit
Exit interface mode
(config)#router isis 1
Create an IS-IS routing instance for area 49 with instance 1
(config-router)#net 49.0001.0000.0000.0005.00
Establish a Network Entity Title for this instance, specifying the area address and the system ID
(config-router)#dynamic-hostname
Configure the hostname to be advertised for an ISIS instance
(config-router)#is-type level-1
Configure instance as level-1-only routing.
(config-router)#metric-style wide
Configure the new style of metric type as wide
(config-router)#mpls traffic-eng level-1
Enable MPLS-TE in is-type Level-1.
(config-router)#bfd all-interfaces
Enable BFD for ISIS on all interfaces
(config-router)#capability cspf
Enable CSPF feature for ISIS instance.
(config-if)#exit
Exit interface mode.
(config)#bfd interval 3 minrx 3 multiplier 3
Configure BFD interval
(config)#commit
Commit all the configurations
Validation
 
PE1#show clns neighbors
 
Total number of L1 adjacencies: 3
Total number of L2 adjacencies: 0
Total number of adjacencies: 3
Tag 1: VRF : default
System Id Interface SNPA State Holdtime Type Protocol
P1 xe1 5254.0002.5b0a Up 28 L1 IS-IS
P2 xe2 5254.009b.f9a2 Up 6 L1 IS-IS
P3 xe3 5254.005d.e995 Up 8 L1 IS-IS
 
PE1#show clns neighbors detail
 
Total number of L1 adjacencies: 3
Total number of L2 adjacencies: 0
Total number of adjacencies: 3
Tag 1: VRF : default
System Id Interface SNPA State Holdtime Type Protocol
P1 xe1 5254.0002.5b0a Up 25 L1 IS-IS
L1 Adjacency ID: 1
L2 Adjacency ID: 2
Uptime: 00:14:43
Area Address(es): 49.0001
IP Address(es): 10.10.10.2
Level-1 Protocols Supported: IPv4
Bidirectional Forwarding Detection is enabled
Adjacency advertisement: Advertise
P2 xe2 5254.009b.f9a2 Up 7 L1 IS-IS
L1 Adjacency ID: 1
L2 Adjacency ID: 2
Uptime: 00:14:19
Area Address(es): 49.0001
IP Address(es): 20.20.20.2
Level-1 Protocols Supported: IPv4
Bidirectional Forwarding Detection is enabled
Adjacency advertisement: Advertise
P3 xe3 5254.005d.e995 Up 5 L1 IS-IS
L1 Adjacency ID: 1
L2 Adjacency ID: 2
Uptime: 00:13:54
Area Address(es): 49.0001
IP Address(es): 30.30.30.2
Level-1 Protocols Supported: IPv4
Bidirectional Forwarding Detection is enabled
Adjacency advertisement: Advertise
 
PE1#show isis database
Tag 1: VRF : default
IS-IS Level-1 Link State Database:
LSPID LSP Seq Num LSP Checksum LSP Holdtime ATT/P/OL
PE1.00-00 * 0x0000000A 0xDB9F 379 0/0/0
PE1.02-00 * 0x00000001 0x8843 319 0/0/0
P1.00-00 0x00000008 0xC257 446 0/0/0
P1.03-00 0x00000001 0xBE07 406 0/0/0
P2.00-00 0x00000007 0x0352 450 0/0/0
P2.02-00 0x00000001 0x7652 342 0/0/0
P2.03-00 0x00000001 0xBF04 436 0/0/0
P3.00-00 0x00000007 0xE1AE 471 0/0/0
P3.02-00 0x00000001 0x774F 357 0/0/0
PE2.00-00 0x0000000A 0xE3FE 467 0/0/0
PE2.04-00 0x00000001 0xA619 466 0/0/0
 
PE1#show isis database verbose
Tag 1: VRF : default
IS-IS Level-1 Link State Database:
LSPID LSP Seq Num LSP Checksum LSP Holdtime ATT/P/OL
PE1.00-00 * 0x0000000A 0xDB9F 369 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: PE1
IP Address: 1.1.1.1
Router ID: 10.12.49.172
Metric: 20 IS-Extended PE1.02
IPv4 Interface Address: 10.10.10.1
Neighbor IP Address: 10.10.10.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 20
Metric: 15 IS-Extended P2.02
IPv4 Interface Address: 20.20.20.1
Neighbor IP Address: 20.20.20.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 15
Metric: 60 IS-Extended P3.02
IPv4 Interface Address: 30.30.30.1
Neighbor IP Address: 30.30.30.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 60
Metric: 10 IP-Extended 1.1.1.1/32
Metric: 20 IP-Extended 10.10.10.0/24
Metric: 15 IP-Extended 20.20.20.0/24
Metric: 60 IP-Extended 30.30.30.0/24
PE1.02-00 * 0x00000001 0x8843 309 0/0/0
Metric: 0 IS-Extended PE1.00
Metric: 0 IS-Extended P1.00
P1.00-00 0x00000008 0xC257 436 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: P1
IP Address: 2.2.2.2
Router ID: 10.12.49.173
Metric: 10 IS-Extended PE1.02
IPv4 Interface Address: 10.10.10.2
Neighbor IP Address: 10.10.10.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended P1.03
IPv4 Interface Address: 40.40.40.1
Neighbor IP Address: 40.40.40.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 2.2.2.2/32
Metric: 10 IP-Extended 10.10.10.0/24
Metric: 10 IP-Extended 40.40.40.0/24
P1.03-00 0x00000001 0xBE07 396 0/0/0
Metric: 0 IS-Extended P1.00
Metric: 0 IS-Extended PE2.00
P2.00-00 0x00000007 0x0352 440 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: P2
IP Address: 3.3.3.3
Router ID: 10.12.49.176
Metric: 10 IS-Extended P2.02
IPv4 Interface Address: 20.20.20.2
Neighbor IP Address: 20.20.20.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended P2.03
IPv4 Interface Address: 50.50.50.1
Neighbor IP Address: 50.50.50.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 3.3.3.3/32
Metric: 10 IP-Extended 50.50.50.0/24
Metric: 10 IP-Extended 20.20.20.0/24
P2.02-00 0x00000001 0x7652 332 0/0/0
Metric: 0 IS-Extended P2.00
Metric: 0 IS-Extended PE1.00
P2.03-00 0x00000001 0xBF04 426 0/0/0
Metric: 0 IS-Extended P2.00
Metric: 0 IS-Extended PE2.00
P3.00-00 0x00000007 0xE1AE 461 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: P3
IP Address: 4.4.4.4
Router ID: 10.12.49.177
Metric: 10 IS-Extended P3.02
IPv4 Interface Address: 30.30.30.2
Neighbor IP Address: 30.30.30.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended PE2.04
IPv4 Interface Address: 60.60.60.1
Neighbor IP Address: 60.60.60.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 4.4.4.4/32
Metric: 10 IP-Extended 60.60.60.0/24
Metric: 10 IP-Extended 30.30.30.0/24
P3.02-00 0x00000001 0x774F 347 0/0/0
Metric: 0 IS-Extended P3.00
Metric: 0 IS-Extended PE1.00
PE2.00-00 0x0000000A 0xE3FE 457 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: PE2
IP Address: 5.5.5.5
Router ID: 10.12.49.174
Metric: 10 IS-Extended P1.03
IPv4 Interface Address: 40.40.40.2
Neighbor IP Address: 40.40.40.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended P2.03
IPv4 Interface Address: 50.50.50.2
Neighbor IP Address: 50.50.50.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended PE2.04
IPv4 Interface Address: 60.60.60.2
Neighbor IP Address: 60.60.60.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 5.5.5.5/32
Metric: 10 IP-Extended 60.60.60.0/24
Metric: 10 IP-Extended 50.50.50.0/24
Metric: 10 IP-Extended 40.40.40.0/24
PE2.04-00 0x00000001 0xA619 456 0/0/0
Metric: 0 IS-Extended PE2.00
Metric: 0 IS-Extended P3.00
 
 
PE1#show ldp session
Peer IP Address IF Name My Role State KeepAlive UpTime
5.5.5.5 xe3 Passive OPERATIONAL 30 00:12:46
2.2.2.2 xe1 Passive OPERATIONAL 30 00:14:48
3.3.3.3 xe2 Passive OPERATIONAL 30 00:14:00
4.4.4.4 xe3 Passive OPERATIONAL 30 00:14:07
 
PE1#show ip route
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
 
IP Route Table for VRF "default"
Gateway of last resort is 10.12.49.1 to network 0.0.0.0
 
K* 0.0.0.0/0 [0/0] via 10.12.49.1, xe0
C 1.1.1.1/32 is directly connected, lo, 00:23:10
i L1 2.2.2.2/32 [115/30] via 10.10.10.2, xe1, 00:15:11
i L1 3.3.3.3/32 [115/25] via 20.20.20.2, xe2, 00:13:41
i L1 4.4.4.4/32 [115/45] via 20.20.20.2, xe2, 00:12:01
i L1 5.5.5.5/32 [115/35] via 20.20.20.2, xe2, 00:12:51
C 10.10.10.0/24 is directly connected, xe1, 00:23:10
C 10.12.49.0/24 is directly connected, xe0, 00:27:49
C 20.20.20.0/24 is directly connected, xe2, 00:23:10
C 30.30.30.0/24 is directly connected, xe3, 00:23:10
i L1 40.40.40.0/24 [115/30] via 10.10.10.2, xe1, 00:12:51
i L1 50.50.50.0/24 [115/25] via 20.20.20.2, xe2, 00:12:51
i L1 60.60.60.0/24 [115/35] via 20.20.20.2, xe2, 00:12:51
C 127.0.0.0/8 is directly connected, lo, 02:59:00
 
PE1#show ip route summary
 
-----------------------------------------------
IP routing table name is Default-IP-Routing-Table(0)
-----------------------------------------------
IP routing table maximum-paths : 8
Total number of IPv4 routes : 14
Total number of IPv4 paths : 14
Pending routes (due to route max reached): 0
Route Source Networks
kernel 1
connected 6
isis 7
Total 14
FIB 14
 
ECMP statistics (active in ASIC):
Total number of IPv4 ECMP routes : 0
Total number of IPv4 ECMP paths : 0
 
PE1#show ip interface brief
 
'*' - address is assigned by dhcp client
 
Interface IP-Address Admin-Status Link-Status
xe0 *10.12.49.172 up up
xe1 unassigned up up
xe1 10.10.10.1 up up
xe3 unassigned up up
xe4 unassigned up up
xe5 unassigned up up
xe6 unassigned up up
xe7 unassigned up up
xe8 unassigned up up
xe9 unassigned up up
xe10 unassigned up up
xe11 unassigned up up
xe2 20.20.20.1 up up
xe3 30.30.30.1 up up
lo 127.0.0.1 up up
 
PE1#show ip isis route fast-reroute
 
Tag : 1 VRF : default
Codes : L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area,
D - discard, LP - Link Protecting, NP - Node Protecting,
BP - Broadcast Interface Disjoint, Pri - Primary Path,
Sec - Secondary Path, DP - Downstream Path
 
PE1#show ldp routes
Prefix Addr Nexthop Addr Intf Owner
0.0.0.0/0 10.12.49.1 xe0 kernel
1.1.1.1/32 0.0.0.0 lo connected
2.2.2.2/32 10.10.10.2 xe1 isis
3.3.3.3/32 20.20.20.2 xe2 isis
4.4.4.4/32 20.20.20.2 xe2 isis
5.5.5.5/32 20.20.20.2 xe2 isis
10.10.10.0/24 0.0.0.0 xe1 connected
10.12.49.0/24 0.0.0.0 xe0 connected
20.20.20.0/24 0.0.0.0 xe2 connected
30.30.30.0/24 0.0.0.0 xe3 connected
40.40.40.0/24 10.10.10.2 xe1 isis
50.50.50.0/24 20.20.20.2 xe2 isis
60.60.60.0/24 20.20.20.2 xe2 isis
 
PE1#show ldp fec
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
1.1.1.1/32 E > non-existent none No connected
2.2.2.2/32 NL 4.4.4.4 25608 No no nexthop
NL 3.3.3.3 25608 No no nexthop
NL> 2.2.2.2 impl-null No 10.10.10.2
3.3.3.3/32 NL 2.2.2.2 25608 No no nexthop
NL 4.4.4.4 25609 No no nexthop
NL> 3.3.3.3 impl-null No 20.20.20.2
4.4.4.4/32 NL 2.2.2.2 25609 No no nexthop
NL> 3.3.3.3 25609 No 20.20.20.2
NL 4.4.4.4 impl-null No no nexthop
5.5.5.5/32 NL 4.4.4.4 25610 No no nexthop
NL> 3.3.3.3 25610 No 20.20.20.2
NL 2.2.2.2 25600 No no nexthop
10.10.10.0/24 NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
10.12.49.0/24 NL 3.3.3.3 impl-null No connected
NL 4.4.4.4 impl-null No connected
NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
20.20.20.0/24 NL 3.3.3.3 impl-null No connected
E > non-existent none No connected
30.30.30.0/24 NL 2.2.2.2 25610 No connected
NL 3.3.3.3 25611 No connected
NL 4.4.4.4 impl-null No connected
E > non-existent none No connected
40.40.40.0/24 NL 4.4.4.4 25611 No no nexthop
NL 3.3.3.3 25612 No no nexthop
NL> 2.2.2.2 impl-null No 10.10.10.2
50.50.50.0/24 NL 2.2.2.2 25611 No no nexthop
NL 4.4.4.4 25612 No no nexthop
NL> 3.3.3.3 impl-null No 20.20.20.2
60.60.60.0/24 NL 2.2.2.2 25612 No no nexthop
NL> 3.3.3.3 25613 No 20.20.20.2
NL 4.4.4.4 impl-null No no nexthop
 
PE1#show ldp downstream
Session peer 5.5.5.5:
FEC Nexthop Addr State Label Req.ID Attr
Session peer 2.2.2.2:
FEC Nexthop Addr State Label Req.ID Attr
60.60.60.0/24 connected Established 25612 0
50.50.50.0/24 connected Established 25611 0
30.30.30.0/24 connected Established 25610 0
4.4.4.4/32 connected Established 25609 0
3.3.3.3/32 connected Established 25608 0
5.5.5.5/32 connected Established 25600 0
40.40.40.0/24 10.10.10.2 Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.10.10.0/24 connected Established impl-null 0
2.2.2.2/32 10.10.10.2 Established impl-null 0
Session peer 3.3.3.3:
FEC Nexthop Addr State Label Req.ID Attr
40.40.40.0/24 connected Established 25612 0
30.30.30.0/24 connected Established 25611 0
4.4.4.4/32 20.20.20.2 Established 25609 0
2.2.2.2/32 connected Established 25608 0
60.60.60.0/24 20.20.20.2 Established 25613 0
5.5.5.5/32 20.20.20.2 Established 25610 0
50.50.50.0/24 20.20.20.2 Established impl-null 0
20.20.20.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
3.3.3.3/32 20.20.20.2 Established impl-null 0
Session peer 4.4.4.4:
FEC Nexthop Addr State Label Req.ID Attr
50.50.50.0/24 connected Established 25612 0
40.40.40.0/24 connected Established 25611 0
5.5.5.5/32 connected Established 25610 0
3.3.3.3/32 connected Established 25609 0
2.2.2.2/32 connected Established 25608 0
60.60.60.0/24 connected Established impl-null 0
30.30.30.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
4.4.4.4/32 connected Established impl-null 0
 
 
PE1#show ldp lsp
DOWNSTREAM LSP :
FEC Nexthop Addr State Label Req.ID Attr
1.1.1.1/32 connected Established none 0 None
2.2.2.2/32 connected Established 25608 0
2.2.2.2/32 connected Established 25608 0
2.2.2.2/32 10.10.10.2 Established impl-null 0
3.3.3.3/32 connected Established 25608 0
3.3.3.3/32 connected Established 25609 0
3.3.3.3/32 20.20.20.2 Established impl-null 0
4.4.4.4/32 connected Established 25609 0
4.4.4.4/32 20.20.20.2 Established 25609 0
4.4.4.4/32 connected Established impl-null 0
5.5.5.5/32 connected Established 25610 0
5.5.5.5/32 20.20.20.2 Established 25610 0
5.5.5.5/32 connected Established 25600 0
10.10.10.0/24 connected Established impl-null 0
10.10.10.0/24 connected Established none 0 None
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established none 0 None
20.20.20.0/24 connected Established impl-null 0
20.20.20.0/24 connected Established none 0 None
30.30.30.0/24 connected Established 25610 0
30.30.30.0/24 connected Established 25611 0
30.30.30.0/24 connected Established impl-null 0
30.30.30.0/24 connected Established none 0 None
40.40.40.0/24 connected Established 25611 0
40.40.40.0/24 connected Established 25612 0
40.40.40.0/24 10.10.10.2 Established impl-null 0
50.50.50.0/24 connected Established 25611 0
50.50.50.0/24 connected Established 25612 0
50.50.50.0/24 20.20.20.2 Established impl-null 0
60.60.60.0/24 connected Established 25612 0
60.60.60.0/24 20.20.20.2 Established 25613 0
60.60.60.0/24 connected Established impl-null 0
 
UPSTREAM LSP :
FEC State Label Req.ID Attr
1.1.1.1/32 Established impl-null 0 None
1.1.1.1/32 Established impl-null 0 None
1.1.1.1/32 Established impl-null 0 None
2.2.2.2/32 Established 25604 0 None
2.2.2.2/32 Established 25608 0 None
3.3.3.3/32 Established 25605 0 None
3.3.3.3/32 Established 25600 0 None
4.4.4.4/32 Established 25603 0 None
4.4.4.4/32 Established 25602 0 None
4.4.4.4/32 Established 25603 0 None
4.4.4.4/32 Established 25602 0 None
5.5.5.5/32 Established 25614 0 None
5.5.5.5/32 Established 25615 0 None
5.5.5.5/32 Established 25615 0 None
10.10.10.0/24 Established impl-null 0 None
10.10.10.0/24 Established impl-null 0 None
10.10.10.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
40.40.40.0/24 Established 25606 0 None
40.40.40.0/24 Established 25610 0 None
50.50.50.0/24 Established 25607 0 None
50.50.50.0/24 Established 25601 0 None
60.60.60.0/24 Established 25616 0 None
60.60.60.0/24 Established 25617 0 None
60.60.60.0/24 Established 25617 0 None
 
PE1#show mpls forwarding-table
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 2.2.2.2/32 1 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
L> 3.3.3.3/32 5 3 - Yes LSP_DEFAULT 3 xe2 No 20.20.20.2
L> 4.4.4.4/32 3 7 - Yes LSP_DEFAULT 25609 xe2 No 20.20.20.2
L> 5.5.5.5/32 7 5 - Yes LSP_DEFAULT 25610 xe2 No 20.20.20.2
L> 40.40.40.0/24 2 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
L> 50.50.50.0/24 6 3 - Yes LSP_DEFAULT 3 xe2 No 20.20.20.2
L> 60.60.60.0/24 4 6 - Yes LSP_DEFAULT 25613 xe2 No 20.20.20.2
 
PE1#show mpls forwarding-table 5.5.5.5/32
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 5.5.5.5/32 7 5 - Yes LSP_DEFAULT 25610 xe2 No 20.20.20.2
 
PE1#show mpls ftn-table
Primary FTN entry with FEC: 2.2.2.2/32, id: 1, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 3.3.3.3/32, id: 5, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 4, op code: Push
 
 
Primary FTN entry with FEC: 4.4.4.4/32, id: 3, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:368, pkts:4, TX bytes:368, Pushed pkts:4
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 7
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 7, owner: LDP, Stale: NO, out intf: xe2, out label: 25609
Nexthop addr: 20.20.20.2 cross connect ix: 2, op code: Push
 
 
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:339, pkts:4, TX bytes:355, Pushed pkts:4
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe2, out label: 25610
Nexthop addr: 20.20.20.2 cross connect ix: 5, op code: Push
 
 
Primary FTN entry with FEC: 40.40.40.0/24, id: 2, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 50.50.50.0/24, id: 6, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 4, op code: Push
 
 
Primary FTN entry with FEC: 60.60.60.0/24, id: 4, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 6, in intf: - in label: 0 out-segment ix: 6
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 6, owner: LDP, Stale: NO, out intf: xe2, out label: 25613
Nexthop addr: 20.20.20.2 cross connect ix: 6, op code: Push
 
 
PE1#show mpls ftn-table 5.5.5.5/32
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:339, pkts:4, TX bytes:355, Pushed pkts:4
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe2, out label: 25610
Nexthop addr: 20.20.20.2 cross connect ix: 5, op code: Push
 
 
PE1#show ldp fec prefix 5.5.5.5/32
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
5.5.5.5/32 NL 4.4.4.4 25610 No no nexthop
NL> 3.3.3.3 25610 No 20.20.20.2
NL 2.2.2.2 25600 No no nexthop
 
PE2:
 
PE2#show clns neighbors
 
Total number of L1 adjacencies: 3
Total number of L2 adjacencies: 0
Total number of adjacencies: 3
Tag 1: VRF : default
System Id Interface SNPA State Holdtime Type Protocol
P3 xe3 5254.0015.057e Up 25 L1 IS-IS
P2 xe2 5254.007b.6b14 Up 6 L1 IS-IS
P1 xe1 5254.00ea.0b3a Up 6 L1 IS-IS
 
PE2#show clns neighbors detail
 
Total number of L1 adjacencies: 3
Total number of L2 adjacencies: 0
Total number of adjacencies: 3
Tag 1: VRF : default
System Id Interface SNPA State Holdtime Type Protocol
P3 xe3 5254.0015.057e Up 21 L1 IS-IS
L1 Adjacency ID: 1
L2 Adjacency ID: 2
Uptime: 00:18:38
Area Address(es): 49.0001
IP Address(es): 60.60.60.1
Level-1 Protocols Supported: IPv4
Bidirectional Forwarding Detection is enabled
Adjacency advertisement: Advertise
P2 xe2 5254.007b.6b14 Up 5 L1 IS-IS
L1 Adjacency ID: 1
L2 Adjacency ID: 2
Uptime: 00:19:18
Area Address(es): 49.0001
IP Address(es): 50.50.50.1
Level-1 Protocols Supported: IPv4
Bidirectional Forwarding Detection is enabled
Adjacency advertisement: Advertise
P1 xe1 5254.00ea.0b3a Up 5 L1 IS-IS
L1 Adjacency ID: 1
L2 Adjacency ID: 2
Uptime: 00:19:48
Area Address(es): 49.0001
IP Address(es): 40.40.40.1
Level-1 Protocols Supported: IPv4
Bidirectional Forwarding Detection is enabled
Adjacency advertisement: Advertise
 
PE2#show isis database
Tag 1: VRF : default
IS-IS Level-1 Link State Database:
LSPID LSP Seq Num LSP Checksum LSP Holdtime ATT/P/OL
PE1.00-00 0x0000000B 0xD9A0 881 0/0/0
PE1.02-00 0x00000002 0x8644 821 0/0/0
P1.00-00 0x00000009 0xC058 949 0/0/0
P1.03-00 0x00000002 0xBC08 909 0/0/0
P2.00-00 0x00000008 0x0153 953 0/0/0
P2.02-00 0x00000002 0x7453 845 0/0/0
P2.03-00 0x00000002 0xBD05 939 0/0/0
P3.00-00 0x00000008 0xDFAF 974 0/0/0
P3.02-00 0x00000002 0x7550 860 0/0/0
PE2.00-00 * 0x0000000B 0xE1FF 971 0/0/0
PE2.04-00 * 0x00000002 0xA41A 970 0/0/0
 
PE2#show isis database verbose
Tag 1: VRF : default
IS-IS Level-1 Link State Database:
LSPID LSP Seq Num LSP Checksum LSP Holdtime ATT/P/OL
PE1.00-00 0x0000000B 0xD9A0 871 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: PE1
IP Address: 1.1.1.1
Router ID: 10.12.49.172
Metric: 20 IS-Extended PE1.02
IPv4 Interface Address: 10.10.10.1
Neighbor IP Address: 10.10.10.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 20
Metric: 15 IS-Extended P2.02
IPv4 Interface Address: 20.20.20.1
Neighbor IP Address: 20.20.20.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 15
Metric: 60 IS-Extended P3.02
IPv4 Interface Address: 30.30.30.1
Neighbor IP Address: 30.30.30.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 60
Metric: 10 IP-Extended 1.1.1.1/32
Metric: 20 IP-Extended 10.10.10.0/24
Metric: 15 IP-Extended 20.20.20.0/24
Metric: 60 IP-Extended 30.30.30.0/24
PE1.02-00 0x00000002 0x8644 811 0/0/0
Metric: 0 IS-Extended PE1.00
Metric: 0 IS-Extended P1.00
P1.00-00 0x00000009 0xC058 940 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: P1
IP Address: 2.2.2.2
Router ID: 10.12.49.173
Metric: 10 IS-Extended PE1.02
IPv4 Interface Address: 10.10.10.2
Neighbor IP Address: 10.10.10.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended P1.03
IPv4 Interface Address: 40.40.40.1
Neighbor IP Address: 40.40.40.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 2.2.2.2/32
Metric: 10 IP-Extended 10.10.10.0/24
Metric: 10 IP-Extended 40.40.40.0/24
P1.03-00 0x00000002 0xBC08 899 0/0/0
Metric: 0 IS-Extended P1.00
Metric: 0 IS-Extended PE2.00
P2.00-00 0x00000008 0x0153 943 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: P2
IP Address: 3.3.3.3
Router ID: 10.12.49.176
Metric: 10 IS-Extended P2.02
IPv4 Interface Address: 20.20.20.2
Neighbor IP Address: 20.20.20.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended P2.03
IPv4 Interface Address: 50.50.50.1
Neighbor IP Address: 50.50.50.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 3.3.3.3/32
Metric: 10 IP-Extended 50.50.50.0/24
Metric: 10 IP-Extended 20.20.20.0/24
P2.02-00 0x00000002 0x7453 835 0/0/0
Metric: 0 IS-Extended P2.00
Metric: 0 IS-Extended PE1.00
P2.03-00 0x00000002 0xBD05 929 0/0/0
Metric: 0 IS-Extended P2.00
Metric: 0 IS-Extended PE2.00
P3.00-00 0x00000008 0xDFAF 964 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: P3
IP Address: 4.4.4.4
Router ID: 10.12.49.177
Metric: 10 IS-Extended P3.02
IPv4 Interface Address: 30.30.30.2
Neighbor IP Address: 30.30.30.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended PE2.04
IPv4 Interface Address: 60.60.60.1
Neighbor IP Address: 60.60.60.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 4.4.4.4/32
Metric: 10 IP-Extended 60.60.60.0/24
Metric: 10 IP-Extended 30.30.30.0/24
P3.02-00 0x00000002 0x7550 850 0/0/0
Metric: 0 IS-Extended P3.00
Metric: 0 IS-Extended PE1.00
PE2.00-00 * 0x0000000B 0xE1FF 961 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: PE2
IP Address: 5.5.5.5
Router ID: 10.12.49.174
Metric: 10 IS-Extended P1.03
IPv4 Interface Address: 40.40.40.2
Neighbor IP Address: 40.40.40.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended P2.03
IPv4 Interface Address: 50.50.50.2
Neighbor IP Address: 50.50.50.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended PE2.04
IPv4 Interface Address: 60.60.60.2
Neighbor IP Address: 60.60.60.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 5.5.5.5/32
Metric: 10 IP-Extended 60.60.60.0/24
Metric: 10 IP-Extended 50.50.50.0/24
Metric: 10 IP-Extended 40.40.40.0/24
PE2.04-00 * 0x00000002 0xA41A 960 0/0/0
Metric: 0 IS-Extended PE2.00
Metric: 0 IS-Extended P3.00
 
PE2#show ldp session
Peer IP Address IF Name My Role State KeepAlive UpTime
1.1.1.1 xe2 Active OPERATIONAL 30 00:19:22
2.2.2.2 xe1 Active OPERATIONAL 30 00:19:27
3.3.3.3 xe2 Active OPERATIONAL 30 00:19:24
4.4.4.4 xe3 Active OPERATIONAL 30 00:19:12
 
 
PE2#show ip route
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
 
IP Route Table for VRF "default"
Gateway of last resort is 10.12.49.1 to network 0.0.0.0
 
K* 0.0.0.0/0 [0/0] via 10.12.49.1, xe0
i L1 1.1.1.1/32 [115/30] via 60.60.60.1, xe1, 00:20:03
[115/30] via 50.50.50.1, xe2
[115/30] via 40.40.40.1, xe1
i L1 2.2.2.2/32 [115/20] via 40.40.40.1, xe1, 00:19:01
i L1 3.3.3.3/32 [115/20] via 50.50.50.1, xe2, 00:19:01
i L1 4.4.4.4/32 [115/20] via 60.60.60.1, xe1, 00:19:01
C 5.5.5.5/32 is directly connected, lo, 00:26:47
i L1 10.10.10.0/24 [115/20] via 40.40.40.1, xe1, 00:19:01
C 10.12.49.0/24 is directly connected, xe0, 00:38:00
i L1 20.20.20.0/24 [115/20] via 50.50.50.1, xe2, 00:19:01
i L1 30.30.30.0/24 [115/20] via 60.60.60.1, xe1, 00:19:01
C 40.40.40.0/24 is directly connected, xe1, 00:26:47
C 50.50.50.0/24 is directly connected, xe2, 00:26:47
C 60.60.60.0/24 is directly connected, xe1, 00:26:47
C 127.0.0.0/8 is directly connected, lo, 03:05:08
 
 
PE2#show ip route summary
 
-----------------------------------------------
IP routing table name is Default-IP-Routing-Table(0)
-----------------------------------------------
IP routing table maximum-paths : 8
Total number of IPv4 routes : 14
Total number of IPv4 paths : 16
Pending routes (due to route max reached): 0
Route Source Networks
kernel 1
connected 6
isis 7
Total 14
FIB 14
 
ECMP statistics (active in ASIC):
Total number of IPv4 ECMP routes : 1
Total number of IPv4 ECMP paths : 3
Number of routes with 3 ECMP paths: 1
 
PE2#show ip interface brief
 
'*' - address is assigned by dhcp client
 
Interface IP-Address Admin-Status Link-Status
xe0 *10.12.49.174 up up
xe3 60.60.60.2 up up
xe2 unassigned up up
xe2 50.50.50.2 up up
xe4 unassigned up up
xe5 unassigned up up
xe6 unassigned up up
xe7 unassigned up up
xe1 40.40.40.2 up up
xe9 unassigned up up
xe10 unassigned up up
xe11 unassigned up up
xe12 unassigned up up
xe13 unassigned up up
lo 127.0.0.1 up up
 
PE2#show ip isis route fast-reroute
 
Tag : 1 VRF : default
Codes : L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area,
D - discard, LP - Link Protecting, NP - Node Protecting,
BP - Broadcast Interface Disjoint, Pri - Primary Path,
Sec - Secondary Path, DP - Downstream Path
 
 
PE2#show ldp routes
Prefix Addr Nexthop Addr Intf Owner
0.0.0.0/0 10.12.49.1 xe0 kernel
1.1.1.1/32 40.40.40.1 xe1 isis
60.60.60.1 xe3 isis
50.50.50.1 xe2 isis
2.2.2.2/32 40.40.40.1 xe1 isis
3.3.3.3/32 50.50.50.1 xe2 isis
4.4.4.4/32 60.60.60.1 xe3 isis
5.5.5.5/32 0.0.0.0 lo connected
10.10.10.0/24 40.40.40.1 xe1 isis
10.12.49.0/24 0.0.0.0 xe0 connected
20.20.20.0/24 50.50.50.1 xe2 isis
30.30.30.0/24 60.60.60.1 xe3 isis
40.40.40.0/24 0.0.0.0 xe1 connected
50.50.50.0/24 0.0.0.0 xe2 connected
60.60.60.0/24 0.0.0.0 xe3 connected
 
PE2#show ldp fec
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
1.1.1.1/32 NL> 4.4.4.4 25600 No 60.60.60.1
NL> 3.3.3.3 25600 No 50.50.50.1
NL> 2.2.2.2 25601 No 40.40.40.1
2.2.2.2/32 NL> 2.2.2.2 impl-null No 40.40.40.1
3.3.3.3/32 NL> 3.3.3.3 impl-null No 50.50.50.1
4.4.4.4/32 NL> 4.4.4.4 impl-null No 60.60.60.1
5.5.5.5/32 E > non-existent none No connected
10.10.10.0/24 NL> 2.2.2.2 impl-null No 40.40.40.1
10.12.49.0/24 NL 4.4.4.4 impl-null No connected
NL 3.3.3.3 impl-null No connected
NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
20.20.20.0/24 NL 4.4.4.4 25605 No no nexthop
NL> 3.3.3.3 impl-null No 50.50.50.1
NL 2.2.2.2 25604 No no nexthop
30.30.30.0/24 NL> 4.4.4.4 impl-null No 60.60.60.1
40.40.40.0/24 NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
50.50.50.0/24 NL 3.3.3.3 impl-null No connected
E > non-existent none No connected
60.60.60.0/24 NL 4.4.4.4 impl-null No connected
E > non-existent none No connected
 
PE2#show ldp downstream
Session peer 1.1.1.1:
FEC Nexthop Addr State Label Req.ID Attr
Session peer 2.2.2.2:
FEC Nexthop Addr State Label Req.ID Attr
40.40.40.0/24 connected Established impl-null 0
20.20.20.0/24 connected Established 25604 0
10.12.49.0/24 connected Established impl-null 0
10.10.10.0/24 40.40.40.1 Established impl-null 0
2.2.2.2/32 40.40.40.1 Established impl-null 0
1.1.1.1/32 40.40.40.1 Established 25601 0
Session peer 3.3.3.3:
FEC Nexthop Addr State Label Req.ID Attr
50.50.50.0/24 connected Established impl-null 0
20.20.20.0/24 50.50.50.1 Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
3.3.3.3/32 50.50.50.1 Established impl-null 0
1.1.1.1/32 50.50.50.1 Established 25600 0
Session peer 4.4.4.4:
FEC Nexthop Addr State Label Req.ID Attr
60.60.60.0/24 connected Established impl-null 0
30.30.30.0/24 60.60.60.1 Established impl-null 0
20.20.20.0/24 connected Established 25605 0
10.12.49.0/24 connected Established impl-null 0
4.4.4.4/32 60.60.60.1 Established impl-null 0
1.1.1.1/32 60.60.60.1 Established 25600 0
 
PE2#show ldp lsp
DOWNSTREAM LSP :
FEC Nexthop Addr State Label Req.ID Attr
1.1.1.1/32 60.60.60.1 Established 25600 0
1.1.1.1/32 50.50.50.1 Established 25600 0
1.1.1.1/32 40.40.40.1 Established 25601 0
2.2.2.2/32 40.40.40.1 Established impl-null 0
3.3.3.3/32 50.50.50.1 Established impl-null 0
4.4.4.4/32 60.60.60.1 Established impl-null 0
5.5.5.5/32 connected Established none 0 None
10.10.10.0/24 40.40.40.1 Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established none 0 None
20.20.20.0/24 connected Established 25605 0
20.20.20.0/24 50.50.50.1 Established impl-null 0
20.20.20.0/24 connected Established 25604 0
30.30.30.0/24 60.60.60.1 Established impl-null 0
40.40.40.0/24 connected Established impl-null 0
40.40.40.0/24 connected Established none 0 None
50.50.50.0/24 connected Established impl-null 0
50.50.50.0/24 connected Established none 0 None
60.60.60.0/24 connected Established impl-null 0
60.60.60.0/24 connected Established none 0 None
 
UPSTREAM LSP :
FEC State Label Req.ID Attr
2.2.2.2/32 Established 25601 0 None
2.2.2.2/32 Established 25608 0 None
3.3.3.3/32 Established 25614 0 None
3.3.3.3/32 Established 25609 0 None
4.4.4.4/32 Established 25615 0 None
4.4.4.4/32 Established 25603 0 None
5.5.5.5/32 Established impl-null 0 None
5.5.5.5/32 Established impl-null 0 None
5.5.5.5/32 Established impl-null 0 None
10.10.10.0/24 Established 25604 0 None
10.10.10.0/24 Established 25611 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
20.20.20.0/24 Established 25616 0 None
20.20.20.0/24 Established 25616 0 None
20.20.20.0/24 Established 25612 0 None
20.20.20.0/24 Established 25612 0 None
30.30.30.0/24 Established 25617 0 None
30.30.30.0/24 Established 25606 0 None
40.40.40.0/24 Established impl-null 0 None
40.40.40.0/24 Established impl-null 0 None
40.40.40.0/24 Established impl-null 0 None
50.50.50.0/24 Established impl-null 0 None
50.50.50.0/24 Established impl-null 0 None
50.50.50.0/24 Established impl-null 0 None
60.60.60.0/24 Established impl-null 0 None
60.60.60.0/24 Established impl-null 0 None
60.60.60.0/24 Established impl-null 0 None
 
PE2#show mpls forwarding-table
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 1.1.1.1/32 1 1 - Yes LSP_DEFAULT 25601 xe1 No 40.40.40.1
7 - Yes LSP_DEFAULT 25600 xe3 No 60.60.60.1
8 - Yes LSP_DEFAULT 25600 xe2 No 50.50.50.1
L> 2.2.2.2/32 2 2 - Yes LSP_DEFAULT 3 xe1 No 40.40.40.1
L> 3.3.3.3/32 3 9 - Yes LSP_DEFAULT 3 xe2 No 50.50.50.1
L> 4.4.4.4/32 4 10 - Yes LSP_DEFAULT 3 xe3 No 60.60.60.1
L> 10.10.10.0/24 5 2 - Yes LSP_DEFAULT 3 xe1 No 40.40.40.1
L> 20.20.20.0/24 6 9 - Yes LSP_DEFAULT 3 xe2 No 50.50.50.1
L> 30.30.30.0/24 7 10 - Yes LSP_DEFAULT 3 xe3 No 60.60.60.1
 
PE2#show mpls forwarding-table 5.5.5.5/32
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
 
PE2#show mpls forwarding-table 1.1.1.1/32
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 1.1.1.1/32 1 1 - Yes LSP_DEFAULT 25601 xe1 No 40.40.40.1
7 - Yes LSP_DEFAULT 25600 xe3 No 60.60.60.1
8 - Yes LSP_DEFAULT 25600 xe2 No 50.50.50.1
 
PE2#show mpls ftn-table
Primary FTN entry with FEC: 1.1.1.1/32, id: 1, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: LDP, Stale: NO, out intf: xe1, out label: 25601
Nexthop addr: 40.40.40.1 cross connect ix: 1, op code: Push
 
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 7
Owner: LDP, Persistent: No, Admin Status: Down, Oper Status: Not present
Out-segment with ix: 7, owner: LDP, Stale: NO, out intf: xe1, out label: 25600
Nexthop addr: 60.60.60.1 cross connect ix: 1, op code: Push
 
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 8
Owner: LDP, Persistent: No, Admin Status: Down, Oper Status: Not present
Out-segment with ix: 8, owner: LDP, Stale: NO, out intf: xe2, out label: 25600
Nexthop addr: 50.50.50.1 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 2.2.2.2/32, id: 2, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 2
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 2, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 40.40.40.1 cross connect ix: 2, op code: Push
 
 
Primary FTN entry with FEC: 3.3.3.3/32, id: 3, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 9
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 9, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 50.50.50.1 cross connect ix: 7, op code: Push
 
 
Primary FTN entry with FEC: 4.4.4.4/32, id: 4, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 8, in intf: - in label: 0 out-segment ix: 10
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 10, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 60.60.60.1 cross connect ix: 8, op code: Push
 
 
Primary FTN entry with FEC: 10.10.10.0/24, id: 5, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 2
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 2, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 40.40.40.1 cross connect ix: 2, op code: Push
 
 
Primary FTN entry with FEC: 20.20.20.0/24, id: 6, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 9
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 9, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 50.50.50.1 cross connect ix: 7, op code: Push
 
 
Primary FTN entry with FEC: 30.30.30.0/24, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 8, in intf: - in label: 0 out-segment ix: 10
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 10, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 60.60.60.1 cross connect ix: 8, op code: Push
 
 
PE2#show mpls ftn-table 1.1.1.1/32
Primary FTN entry with FEC: 1.1.1.1/32, id: 1, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: LDP, Stale: NO, out intf: xe1, out label: 25601
Nexthop addr: 40.40.40.1 cross connect ix: 1, op code: Push
 
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 7
Owner: LDP, Persistent: No, Admin Status: Down, Oper Status: Not present
Out-segment with ix: 7, owner: LDP, Stale: NO, out intf: xe1, out label: 25600
Nexthop addr: 60.60.60.1 cross connect ix: 1, op code: Push
 
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 8
Owner: LDP, Persistent: No, Admin Status: Down, Oper Status: Not present
Out-segment with ix: 8, owner: LDP, Stale: NO, out intf: xe2, out label: 25600
Nexthop addr: 50.50.50.1 cross connect ix: 1, op code: Push
 
PE2#show ldp fec prefix 1.1.1.1/32
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
1.1.1.1/32 NL> 4.4.4.4 25600 No 60.60.60.1
NL> 3.3.3.3 25600 No 50.50.50.1
NL> 2.2.2.2 25601 No 40.40.40.1
RTR1 - FRR Configuration
Now that NSM, ISIS and LDP are all configured, FRR for IGP and LDP can be enabled using below configurations.
 
#configure terminal
Enter configuration mode.
(config)#router isis 1
Create an IS-IS routing instance for area 49 with instance 1
(config-router)#fast-reroute per-prefix level-1 proto ipv4 all
Configure LFA-FRR to calculate the available backup path for all L1 ipv4 prefixes learnt
(config-router)#exit
Exit router mode.
(config)#router ldp
Enter router mode for LDP.
(config-router)#fast-reroute
Configure LDP LFA-FRR to calculate the available backup path
(config-router)#exit
Exit router mode.
(config)#commit
Commit all the configurations
Validation
 
PE1#show clns neighbors
 
Total number of L1 adjacencies: 3
Total number of L2 adjacencies: 0
Total number of adjacencies: 3
Tag 1: VRF : default
System Id Interface SNPA State Holdtime Type Protocol
P1 xe1 5254.0002.5b0a Up 28 L1 IS-IS
P2 xe2 5254.009b.f9a2 Up 7 L1 IS-IS
P3 xe3 5254.005d.e995 Up 5 L1 IS-IS
 
PE1#show clns neighbors detail
 
Total number of L1 adjacencies: 3
Total number of L2 adjacencies: 0
Total number of adjacencies: 3
Tag 1: VRF : default
System Id Interface SNPA State Holdtime Type Protocol
P1 xe1 5254.0002.5b0a Up 22 L1 IS-IS
L1 Adjacency ID: 1
L2 Adjacency ID: 2
Uptime: 00:50:07
Area Address(es): 49.0001
IP Address(es): 10.10.10.2
Level-1 Protocols Supported: IPv4
Bidirectional Forwarding Detection is enabled
Adjacency advertisement: Advertise
P2 xe2 5254.009b.f9a2 Up 7 L1 IS-IS
L1 Adjacency ID: 1
L2 Adjacency ID: 2
Uptime: 00:49:43
Area Address(es): 49.0001
IP Address(es): 20.20.20.2
Level-1 Protocols Supported: IPv4
Bidirectional Forwarding Detection is enabled
Adjacency advertisement: Advertise
P3 xe3 5254.005d.e995 Up 5 L1 IS-IS
L1 Adjacency ID: 1
L2 Adjacency ID: 2
Uptime: 00:49:18
Area Address(es): 49.0001
IP Address(es): 30.30.30.2
Level-1 Protocols Supported: IPv4
Bidirectional Forwarding Detection is enabled
Adjacency advertisement: Advertise
 
PE1#show isis database
Tag 1: VRF : default
IS-IS Level-1 Link State Database:
LSPID LSP Seq Num LSP Checksum LSP Holdtime ATT/P/OL
PE1.00-00 * 0x0000000D 0xD5A2 956 0/0/0
PE1.02-00 * 0x00000004 0x8246 895 0/0/0
P1.00-00 0x0000000B 0xBC5A 1023 0/0/0
P1.03-00 0x00000004 0xB80A 982 0/0/0
P2.00-00 0x0000000A 0xFC55 1027 0/0/0
P2.02-00 0x00000004 0x7055 918 0/0/0
P2.03-00 0x00000004 0xB907 1012 0/0/0
P3.00-00 0x0000000A 0xDBB1 1047 0/0/0
P3.02-00 0x00000004 0x7152 933 0/0/0
PE2.00-00 0x0000000D 0xDD02 1043 0/0/0
PE2.04-00 0x00000004 0xA01C 1042 0/0/0
 
 
PE1#show isis database verbose
Tag 1: VRF : default
IS-IS Level-1 Link State Database:
LSPID LSP Seq Num LSP Checksum LSP Holdtime ATT/P/OL
PE1.00-00 * 0x0000000D 0xD5A2 947 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: PE1
IP Address: 1.1.1.1
Router ID: 10.12.49.172
Metric: 20 IS-Extended PE1.02
IPv4 Interface Address: 10.10.10.1
Neighbor IP Address: 10.10.10.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 20
Metric: 15 IS-Extended P2.02
IPv4 Interface Address: 20.20.20.1
Neighbor IP Address: 20.20.20.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 15
Metric: 60 IS-Extended P3.02
IPv4 Interface Address: 30.30.30.1
Neighbor IP Address: 30.30.30.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 60
Metric: 10 IP-Extended 1.1.1.1/32
Metric: 20 IP-Extended 10.10.10.0/24
Metric: 15 IP-Extended 20.20.20.0/24
Metric: 60 IP-Extended 30.30.30.0/24
PE1.02-00 * 0x00000004 0x8246 887 0/0/0
Metric: 0 IS-Extended PE1.00
Metric: 0 IS-Extended P1.00
P1.00-00 0x0000000B 0xBC5A 1015 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: P1
IP Address: 2.2.2.2
Router ID: 10.12.49.173
Metric: 10 IS-Extended PE1.02
IPv4 Interface Address: 10.10.10.2
Neighbor IP Address: 10.10.10.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended P1.03
IPv4 Interface Address: 40.40.40.1
Neighbor IP Address: 40.40.40.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 2.2.2.2/32
Metric: 10 IP-Extended 10.10.10.0/24
Metric: 10 IP-Extended 40.40.40.0/24
P1.03-00 0x00000004 0xB80A 974 0/0/0
Metric: 0 IS-Extended P1.00
Metric: 0 IS-Extended PE2.00
P2.00-00 0x0000000A 0xFC55 1018 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: P2
IP Address: 3.3.3.3
Router ID: 10.12.49.176
Metric: 10 IS-Extended P2.02
IPv4 Interface Address: 20.20.20.2
Neighbor IP Address: 20.20.20.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended P2.03
IPv4 Interface Address: 50.50.50.1
Neighbor IP Address: 50.50.50.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 3.3.3.3/32
Metric: 10 IP-Extended 50.50.50.0/24
Metric: 10 IP-Extended 20.20.20.0/24
P2.02-00 0x00000004 0x7055 910 0/0/0
Metric: 0 IS-Extended P2.00
Metric: 0 IS-Extended PE1.00
P2.03-00 0x00000004 0xB907 1004 0/0/0
Metric: 0 IS-Extended P2.00
Metric: 0 IS-Extended PE2.00
P3.00-00 0x0000000A 0xDBB1 1039 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: P3
IP Address: 4.4.4.4
Router ID: 10.12.49.177
Metric: 10 IS-Extended P3.02
IPv4 Interface Address: 30.30.30.2
Neighbor IP Address: 30.30.30.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended PE2.04
IPv4 Interface Address: 60.60.60.1
Neighbor IP Address: 60.60.60.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 4.4.4.4/32
Metric: 10 IP-Extended 60.60.60.0/24
Metric: 10 IP-Extended 30.30.30.0/24
P3.02-00 0x00000004 0x7152 925 0/0/0
Metric: 0 IS-Extended P3.00
Metric: 0 IS-Extended PE1.00
PE2.00-00 0x0000000D 0xDD02 1035 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: PE2
IP Address: 5.5.5.5
Router ID: 10.12.49.174
Metric: 10 IS-Extended P1.03
IPv4 Interface Address: 40.40.40.2
Neighbor IP Address: 40.40.40.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended P2.03
IPv4 Interface Address: 50.50.50.2
Neighbor IP Address: 50.50.50.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended PE2.04
IPv4 Interface Address: 60.60.60.2
Neighbor IP Address: 60.60.60.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 5.5.5.5/32
Metric: 10 IP-Extended 60.60.60.0/24
Metric: 10 IP-Extended 50.50.50.0/24
Metric: 10 IP-Extended 40.40.40.0/24
PE2.04-00 0x00000004 0xA01C 1034 0/0/0
Metric: 0 IS-Extended PE2.00
Metric: 0 IS-Extended P3.00
 
 
PE1#show ldp session
Peer IP Address IF Name My Role State KeepAlive UpTime
5.5.5.5 xe3 Passive OPERATIONAL 30 00:48:09
2.2.2.2 xe1 Passive OPERATIONAL 30 00:50:11
3.3.3.3 xe2 Passive OPERATIONAL 30 00:49:23
4.4.4.4 xe3 Passive OPERATIONAL 30 00:49:30
 
PE1#show ip route
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
 
IP Route Table for VRF "default"
Gateway of last resort is 10.12.49.1 to network 0.0.0.0
 
K* 0.0.0.0/0 [0/0] via 10.12.49.1, xe0
C 1.1.1.1/32 is directly connected, lo, 00:58:19
i L1 2.2.2.2/32 [115/30] via 10.10.10.2, xe1, 00:50:20
i L1 3.3.3.3/32 [115/25] via 20.20.20.2, xe2, 00:48:50
i L1 4.4.4.4/32 [115/45] via 20.20.20.2, xe2, 00:47:10
i L1 5.5.5.5/32 [115/35] via 20.20.20.2, xe2, 00:48:00
C 10.10.10.0/24 is directly connected, xe1, 00:58:19
C 10.12.49.0/24 is directly connected, xe0, 01:02:58
C 20.20.20.0/24 is directly connected, xe2, 00:58:19
C 30.30.30.0/24 is directly connected, xe3, 00:58:19
i L1 40.40.40.0/24 [115/30] via 10.10.10.2, xe1, 00:48:00
i L1 50.50.50.0/24 [115/25] via 20.20.20.2, xe2, 00:48:00
i L1 60.60.60.0/24 [115/35] via 20.20.20.2, xe2, 00:48:00
C 127.0.0.0/8 is directly connected, lo, 03:34:09
 
PE1#show ip route summary
 
-----------------------------------------------
IP routing table name is Default-IP-Routing-Table(0)
-----------------------------------------------
IP routing table maximum-paths : 8
Total number of IPv4 routes : 14
Total number of IPv4 paths : 14
Pending routes (due to route max reached): 0
Route Source Networks
kernel 1
connected 6
isis 7
Total 14
FIB 14
 
ECMP statistics (active in ASIC):
Total number of IPv4 ECMP routes : 0
Total number of IPv4 ECMP paths : 0
 
LFA Non ECMP statistics
--------------
Total number of Routes : 7
Total number of Primary Paths : 7
Total number of Backup Paths : 7
 
PE1#show ip interface brief
 
'*' - address is assigned by dhcp client
 
Interface IP-Address Admin-Status Link-Status
xe0 *10.12.49.172 up up
xe1 unassigned up up
xe1 10.10.10.1 up up
xe3 unassigned up up
xe4 unassigned up up
xe5 unassigned up up
xe6 unassigned up up
xe7 unassigned up up
xe8 unassigned up up
xe9 unassigned up up
xe10 unassigned up up
xe11 unassigned up up
xe2 20.20.20.1 up up
xe3 30.30.30.1 up up
lo 127.0.0.1 up up
 
PE1#show ip isis route fast-reroute
 
Tag : 1 VRF : default
Codes : L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area,
D - discard, LP - Link Protecting, NP - Node Protecting,
BP - Broadcast Interface Disjoint, Pri - Primary Path,
Sec - Secondary Path, DP - Downstream Path
 
L1 2.2.2.2/32
Primary Path via : 10.10.10.2, xe1
FRR Backup Path via : 20.20.20.2, xe2
FRR Metric : 45
Protection Provided : LP BP
 
L1 3.3.3.3/32
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 50
Protection Provided : LP BP
 
L1 4.4.4.4/32
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 50
Protection Provided : LP NP BP DP
 
L1 5.5.5.5/32
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 40
Protection Provided : LP NP BP DP
 
L1 40.40.40.0/24
Primary Path via : 10.10.10.2, xe1
FRR Backup Path via : 20.20.20.2, xe2
FRR Metric : 35
Protection Provided : LP NP BP DP
 
L1 50.50.50.0/24
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 40
Protection Provided : LP NP BP DP
 
L1 60.60.60.0/24
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 40
Protection Provided : LP NP BP DP
 
PE1#show ldp routes
Prefix Addr Nexthop Addr Intf Backup Addr Backup Intf Owner
0.0.0.0/0 10.12.49.1 xe0 - - kernel
1.1.1.1/32 0.0.0.0 lo - - connected
2.2.2.2/32 10.10.10.2 xe1 20.20.20.2 xe2 isis
3.3.3.3/32 20.20.20.2 xe2 10.10.10.2 xe1 isis
4.4.4.4/32 20.20.20.2 xe2 10.10.10.2 xe1 isis
5.5.5.5/32 20.20.20.2 xe2 10.10.10.2 xe1 isis
10.10.10.0/24 0.0.0.0 xe1 - - connected
10.12.49.0/24 0.0.0.0 xe0 - - connected
20.20.20.0/24 0.0.0.0 xe2 - - connected
30.30.30.0/24 0.0.0.0 xe3 - - connected
40.40.40.0/24 10.10.10.2 xe1 20.20.20.2 xe2 isis
50.50.50.0/24 20.20.20.2 xe2 10.10.10.2 xe1 isis
60.60.60.0/24 20.20.20.2 xe2 10.10.10.2 xe1 isis
 
 
PE1#show ldp fec
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
P - Primary route, B - LFA Backup route,
R - Remote LFA Backup route,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
1.1.1.1/32 E > non-existent none No connected
2.2.2.2/32 NL 4.4.4.4 25608 No no nexthop
NLB> 3.3.3.3 25608 No 20.20.20.2
NLP> 2.2.2.2 impl-null No 10.10.10.2
3.3.3.3/32 NLB> 2.2.2.2 25608 No 10.10.10.2
NL 4.4.4.4 25609 No no nexthop
NLP> 3.3.3.3 impl-null No 20.20.20.2
4.4.4.4/32 NLB> 2.2.2.2 25609 No 10.10.10.2
NLP> 3.3.3.3 25609 No 20.20.20.2
NL 4.4.4.4 impl-null No no nexthop
5.5.5.5/32 NL 4.4.4.4 25610 No no nexthop
NLP> 3.3.3.3 25610 No 20.20.20.2
NLB> 2.2.2.2 25600 No 10.10.10.2
10.10.10.0/24 NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
10.12.49.0/24 NL 3.3.3.3 impl-null No connected
NL 4.4.4.4 impl-null No connected
NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
20.20.20.0/24 NL 3.3.3.3 impl-null No connected
E > non-existent none No connected
30.30.30.0/24 NL 2.2.2.2 25610 No connected
NL 3.3.3.3 25611 No connected
NL 4.4.4.4 impl-null No connected
E > non-existent none No connected
40.40.40.0/24 NL 4.4.4.4 25611 No no nexthop
NLB> 3.3.3.3 25612 No 20.20.20.2
NLP> 2.2.2.2 impl-null No 10.10.10.2
50.50.50.0/24 NLB> 2.2.2.2 25611 No 10.10.10.2
NL 4.4.4.4 25612 No no nexthop
NLP> 3.3.3.3 impl-null No 20.20.20.2
60.60.60.0/24 NLB> 2.2.2.2 25612 No 10.10.10.2
NLP> 3.3.3.3 25613 No 20.20.20.2
NL 4.4.4.4 impl-null No no nexthop
PE1#show ldp downstream
Codes: P - Primary route, B - Backup route
Session peer 5.5.5.5:
FEC Nexthop Addr State Label Req.ID Attr Code
Codes: P - Primary route, B - Backup route
Session peer 2.2.2.2:
FEC Nexthop Addr State Label Req.ID Attr Code
60.60.60.0/24 connected Established 25612 0
60.60.60.0/24 10.10.10.2 Established 25612 0 B
50.50.50.0/24 connected Established 25611 0
50.50.50.0/24 10.10.10.2 Established 25611 0 B
30.30.30.0/24 connected Established 25610 0
4.4.4.4/32 connected Established 25609 0
4.4.4.4/32 10.10.10.2 Established 25609 0 B
3.3.3.3/32 connected Established 25608 0
3.3.3.3/32 10.10.10.2 Established 25608 0 B
5.5.5.5/32 connected Established 25600 0
5.5.5.5/32 10.10.10.2 Established 25600 0 B
40.40.40.0/24 10.10.10.2 Established impl-null 0 P
10.12.49.0/24 connected Established impl-null 0
10.10.10.0/24 connected Established impl-null 0
2.2.2.2/32 10.10.10.2 Established impl-null 0 P
Codes: P - Primary route, B - Backup route
Session peer 3.3.3.3:
FEC Nexthop Addr State Label Req.ID Attr Code
40.40.40.0/24 connected Established 25612 0
40.40.40.0/24 20.20.20.2 Established 25612 0 B
30.30.30.0/24 connected Established 25611 0
4.4.4.4/32 20.20.20.2 Established 25609 0 P
2.2.2.2/32 connected Established 25608 0
2.2.2.2/32 20.20.20.2 Established 25608 0 B
60.60.60.0/24 20.20.20.2 Established 25613 0 P
5.5.5.5/32 20.20.20.2 Established 25610 0 P
50.50.50.0/24 20.20.20.2 Established impl-null 0 P
20.20.20.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
3.3.3.3/32 20.20.20.2 Established impl-null 0 P
Codes: P - Primary route, B - Backup route
Session peer 4.4.4.4:
FEC Nexthop Addr State Label Req.ID Attr Code
50.50.50.0/24 connected Established 25612 0
40.40.40.0/24 connected Established 25611 0
5.5.5.5/32 connected Established 25610 0
3.3.3.3/32 connected Established 25609 0
2.2.2.2/32 connected Established 25608 0
60.60.60.0/24 connected Established impl-null 0
30.30.30.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
4.4.4.4/32 connected Established impl-null 0
 
 
PE1#show ldp lsp
DOWNSTREAM LSP :
FEC Nexthop Addr State Label Req.ID Attr Code
1.1.1.1/32 connected Established none 0 None
2.2.2.2/32 connected Established 25608 0
2.2.2.2/32 connected Established 25608 0
2.2.2.2/32 20.20.20.2 Established 25608 0 B
2.2.2.2/32 10.10.10.2 Established impl-null 0 P
3.3.3.3/32 connected Established 25608 0
3.3.3.3/32 10.10.10.2 Established 25608 0 B
3.3.3.3/32 connected Established 25609 0
3.3.3.3/32 20.20.20.2 Established impl-null 0 P
4.4.4.4/32 connected Established 25609 0
4.4.4.4/32 10.10.10.2 Established 25609 0 B
4.4.4.4/32 20.20.20.2 Established 25609 0 P
4.4.4.4/32 connected Established impl-null 0
5.5.5.5/32 connected Established 25610 0
5.5.5.5/32 20.20.20.2 Established 25610 0 P
5.5.5.5/32 connected Established 25600 0
5.5.5.5/32 10.10.10.2 Established 25600 0 B
10.10.10.0/24 connected Established impl-null 0
10.10.10.0/24 connected Established none 0 None
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established none 0 None
20.20.20.0/24 connected Established impl-null 0
20.20.20.0/24 connected Established none 0 None
30.30.30.0/24 connected Established 25610 0
30.30.30.0/24 connected Established 25611 0
30.30.30.0/24 connected Established impl-null 0
30.30.30.0/24 connected Established none 0 None
40.40.40.0/24 connected Established 25611 0
40.40.40.0/24 connected Established 25612 0
40.40.40.0/24 20.20.20.2 Established 25612 0 B
40.40.40.0/24 10.10.10.2 Established impl-null 0 P
50.50.50.0/24 connected Established 25611 0
50.50.50.0/24 10.10.10.2 Established 25611 0 B
50.50.50.0/24 connected Established 25612 0
50.50.50.0/24 20.20.20.2 Established impl-null 0 P
60.60.60.0/24 connected Established 25612 0
60.60.60.0/24 10.10.10.2 Established 25612 0 B
60.60.60.0/24 20.20.20.2 Established 25613 0 P
60.60.60.0/24 connected Established impl-null 0
 
UPSTREAM LSP :
FEC State Label Req.ID Attr
1.1.1.1/32 Established impl-null 0 None
1.1.1.1/32 Established impl-null 0 None
1.1.1.1/32 Established impl-null 0 None
2.2.2.2/32 Established 25604 0 None
2.2.2.2/32 Established 25604 0 None
2.2.2.2/32 Established 25608 0 None
3.3.3.3/32 Established 25605 0 None
3.3.3.3/32 Established 25605 0 None
3.3.3.3/32 Established 25600 0 None
4.4.4.4/32 Established 25603 0 None
4.4.4.4/32 Established 25602 0 None
4.4.4.4/32 Established 25603 0 None
4.4.4.4/32 Established 25602 0 None
5.5.5.5/32 Established 25614 0 None
5.5.5.5/32 Established 25615 0 None
5.5.5.5/32 Established 25615 0 None
10.10.10.0/24 Established impl-null 0 None
10.10.10.0/24 Established impl-null 0 None
10.10.10.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
40.40.40.0/24 Established 25606 0 None
40.40.40.0/24 Established 25606 0 None
40.40.40.0/24 Established 25610 0 None
50.50.50.0/24 Established 25607 0 None
50.50.50.0/24 Established 25607 0 None
50.50.50.0/24 Established 25601 0 None
60.60.60.0/24 Established 25616 0 None
60.60.60.0/24 Established 25616 0 None
60.60.60.0/24 Established 25617 0 None
60.60.60.0/24 Established 25617 0 None
 
PE1#show mpls forwarding-table
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 2.2.2.2/32 1 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
2 - No LSP_DEFAULT 25608 xe2 No 20.20.20.2
L> 3.3.3.3/32 5 3 - Yes LSP_DEFAULT 3 xe2 No 20.20.20.2
4 - No LSP_DEFAULT 25608 xe1 No 10.10.10.2
L> 4.4.4.4/32 3 7 - Yes LSP_DEFAULT 25609 xe2 No 20.20.20.2
8 - No LSP_DEFAULT 25609 xe1 No 10.10.10.2
L> 5.5.5.5/32 7 5 - Yes LSP_DEFAULT 25610 xe2 No 20.20.20.2
9 - No LSP_DEFAULT 25600 xe1 No 10.10.10.2
L> 40.40.40.0/24 2 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
10 - No LSP_DEFAULT 25612 xe2 No 20.20.20.2
L> 50.50.50.0/24 6 3 - Yes LSP_DEFAULT 3 xe2 No 20.20.20.2
11 - No LSP_DEFAULT 25611 xe1 No 10.10.10.2
L> 60.60.60.0/24 4 6 - Yes LSP_DEFAULT 25613 xe2 No 20.20.20.2
12 - No LSP_DEFAULT 25612 xe1 No 10.10.10.2
PE1#show mpls forwarding-table 5.5.5.5/32
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 5.5.5.5/32 7 5 - Yes LSP_DEFAULT 25610 xe2 No 20.20.20.2
9 - No LSP_DEFAULT 25600 xe1 No 10.10.10.2
 
PE1#show mpls ftn-table
Primary FTN entry with FEC: 2.2.2.2/32, id: 1, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
Backup Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 2
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 2, owner: LDP, Stale: NO, out intf: xe2, out label: 25608
Nexthop addr: 20.20.20.2 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 3.3.3.3/32, id: 5, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 4, op code: Push
 
Backup Cross connect ix: 3, in intf: - in label: 0 out-segment ix: 4
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 4, owner: LDP, Stale: NO, out intf: xe1, out label: 25608
Nexthop addr: 10.10.10.2 cross connect ix: 3, op code: Push
 
 
Primary FTN entry with FEC: 4.4.4.4/32, id: 3, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:368, pkts:4, TX bytes:368, Pushed pkts:4
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 7
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 7, owner: LDP, Stale: NO, out intf: xe2, out label: 25609
Nexthop addr: 20.20.20.2 cross connect ix: 2, op code: Push
 
Backup Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 8
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 8, owner: LDP, Stale: NO, out intf: xe1, out label: 25609
Nexthop addr: 10.10.10.2 cross connect ix: 5, op code: Push
 
 
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:339, pkts:4, TX bytes:355, Pushed pkts:4
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe2, out label: 25610
Nexthop addr: 20.20.20.2 cross connect ix: 5, op code: Push
 
Backup Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 9
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 9, owner: LDP, Stale: NO, out intf: xe1, out label: 25600
Nexthop addr: 10.10.10.2 cross connect ix: 7, op code: Push
 
 
Primary FTN entry with FEC: 40.40.40.0/24, id: 2, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
Backup Cross connect ix: 9, in intf: - in label: 0 out-segment ix: 10
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 10, owner: LDP, Stale: NO, out intf: xe2, out label: 25612
Nexthop addr: 20.20.20.2 cross connect ix: 9, op code: Push
 
 
Primary FTN entry with FEC: 50.50.50.0/24, id: 6, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 4, op code: Push
 
Backup Cross connect ix: 11, in intf: - in label: 0 out-segment ix: 11
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 11, owner: LDP, Stale: NO, out intf: xe1, out label: 25611
Nexthop addr: 10.10.10.2 cross connect ix: 11, op code: Push
 
 
Primary FTN entry with FEC: 60.60.60.0/24, id: 4, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 6, in intf: - in label: 0 out-segment ix: 6
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 6, owner: LDP, Stale: NO, out intf: xe2, out label: 25613
Nexthop addr: 20.20.20.2 cross connect ix: 6, op code: Push
 
Backup Cross connect ix: 13, in intf: - in label: 0 out-segment ix: 12
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 12, owner: LDP, Stale: NO, out intf: xe1, out label: 25612
Nexthop addr: 10.10.10.2 cross connect ix: 13, op code: Push
 
 
PE1#show mpls ftn-table 5.5.5.5/32
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:339, pkts:4, TX bytes:355, Pushed pkts:4
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe2, out label: 25610
Nexthop addr: 20.20.20.2 cross connect ix: 5, op code: Push
 
Backup Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 9
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 9, owner: LDP, Stale: NO, out intf: xe1, out label: 25600
Nexthop addr: 10.10.10.2 cross connect ix: 7, op code: Push
 
 
PE1#show ldp fec prefix 5.5.5.5/32
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
P - Primary route, B - LFA Backup route,
R - Remote LFA Backup route,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
5.5.5.5/32 NL 4.4.4.4 25610 No no nexthop
NLP> 3.3.3.3 25610 No 20.20.20.2
NLB> 2.2.2.2 25600 No 10.10.10.2
 
PE1#show ip route fast-reroute
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area ,p - stale info, E - EVPN
* - candidate default
 
IP Route Table for VRF "default"
i L1 2.2.2.2/32 [115/30] via 10.10.10.2, xe1, 00:52:13
[FRR-NH] via 20.20.20.2, xe2
 
i L1 3.3.3.3/32 [115/25] via 20.20.20.2, xe2, 00:50:43
[FRR-NH] via 10.10.10.2, xe1
 
i L1 4.4.4.4/32 [115/45] via 20.20.20.2, xe2, 00:49:03
[FRR-NH] via 10.10.10.2, xe1
 
i L1 5.5.5.5/32 [115/35] via 20.20.20.2, xe2, 00:49:53
[FRR-NH] via 10.10.10.2, xe1
 
i L1 40.40.40.0/24 [115/30] via 10.10.10.2, xe1, 00:49:53
[FRR-NH] via 20.20.20.2, xe2
 
i L1 50.50.50.0/24 [115/25] via 20.20.20.2, xe2, 00:49:53
[FRR-NH] via 10.10.10.2, xe1
 
i L1 60.60.60.0/24 [115/35] via 20.20.20.2, xe2, 00:49:53
[FRR-NH] via 10.10.10.2, xe1
 
PE1#show ip isis route fast-reroute
 
Tag : 1 VRF : default
Codes : L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area,
D - discard, LP - Link Protecting, NP - Node Protecting,
BP - Broadcast Interface Disjoint, Pri - Primary Path,
Sec - Secondary Path, DP - Downstream Path
 
L1 2.2.2.2/32
Primary Path via : 10.10.10.2, xe1
FRR Backup Path via : 20.20.20.2, xe2
FRR Metric : 45
Protection Provided : LP BP
 
L1 3.3.3.3/32
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 50
Protection Provided : LP BP
 
L1 4.4.4.4/32
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 50
Protection Provided : LP NP BP DP
 
L1 5.5.5.5/32
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 40
Protection Provided : LP NP BP DP
 
L1 40.40.40.0/24
Primary Path via : 10.10.10.2, xe1
FRR Backup Path via : 20.20.20.2, xe2
FRR Metric : 35
Protection Provided : LP NP BP DP
 
L1 50.50.50.0/24
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 40
Protection Provided : LP NP BP DP
 
L1 60.60.60.0/24
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 40
Protection Provided : LP NP BP DP
 
PE1#show ldp routes
Prefix Addr Nexthop Addr Intf Backup Addr Backup Intf Owner
0.0.0.0/0 10.12.49.1 xe0 - - kernel
1.1.1.1/32 0.0.0.0 lo - - connected
2.2.2.2/32 10.10.10.2 xe1 20.20.20.2 xe2 isis
3.3.3.3/32 20.20.20.2 xe2 10.10.10.2 xe1 isis
4.4.4.4/32 20.20.20.2 xe2 10.10.10.2 xe1 isis
5.5.5.5/32 20.20.20.2 xe2 10.10.10.2 xe1 isis
10.10.10.0/24 0.0.0.0 xe1 - - connected
10.12.49.0/24 0.0.0.0 xe0 - - connected
20.20.20.0/24 0.0.0.0 xe2 - - connected
30.30.30.0/24 0.0.0.0 xe3 - - connected
40.40.40.0/24 10.10.10.2 xe1 20.20.20.2 xe2 isis
50.50.50.0/24 20.20.20.2 xe2 10.10.10.2 xe1 isis
60.60.60.0/24 20.20.20.2 xe2 10.10.10.2 xe1 isis
 
PE1#show mpls forwarding-table
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 2.2.2.2/32 1 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
2 - No LSP_DEFAULT 25608 xe2 No 20.20.20.2
L> 3.3.3.3/32 5 3 - Yes LSP_DEFAULT 3 xe2 No 20.20.20.2
4 - No LSP_DEFAULT 25608 xe1 No 10.10.10.2
L> 4.4.4.4/32 3 7 - Yes LSP_DEFAULT 25609 xe2 No 20.20.20.2
8 - No LSP_DEFAULT 25609 xe1 No 10.10.10.2
L> 5.5.5.5/32 7 5 - Yes LSP_DEFAULT 25610 xe2 No 20.20.20.2
9 - No LSP_DEFAULT 25600 xe1 No 10.10.10.2
L> 40.40.40.0/24 2 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
10 - No LSP_DEFAULT 25612 xe2 No 20.20.20.2
L> 50.50.50.0/24 6 3 - Yes LSP_DEFAULT 3 xe2 No 20.20.20.2
11 - No LSP_DEFAULT 25611 xe1 No 10.10.10.2
L> 60.60.60.0/24 4 6 - Yes LSP_DEFAULT 25613 xe2 No 20.20.20.2
12 - No LSP_DEFAULT 25612 xe1 No 10.10.10.2
 
PE1#show mpls forwarding-table 5.5.5.5/32
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 5.5.5.5/32 7 5 - Yes LSP_DEFAULT 25610 xe2 No 20.20.20.2
9 - No LSP_DEFAULT 25600 xe1 No 10.10.10.2
 
PE1#show mpls ftn-table
Primary FTN entry with FEC: 2.2.2.2/32, id: 1, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
Backup Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 2
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 2, owner: LDP, Stale: NO, out intf: xe2, out label: 25608
Nexthop addr: 20.20.20.2 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 3.3.3.3/32, id: 5, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 4, op code: Push
 
Backup Cross connect ix: 3, in intf: - in label: 0 out-segment ix: 4
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 4, owner: LDP, Stale: NO, out intf: xe1, out label: 25608
Nexthop addr: 10.10.10.2 cross connect ix: 3, op code: Push
 
 
Primary FTN entry with FEC: 4.4.4.4/32, id: 3, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:368, pkts:4, TX bytes:368, Pushed pkts:4
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 7
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 7, owner: LDP, Stale: NO, out intf: xe2, out label: 25609
Nexthop addr: 20.20.20.2 cross connect ix: 2, op code: Push
 
Backup Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 8
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 8, owner: LDP, Stale: NO, out intf: xe1, out label: 25609
Nexthop addr: 10.10.10.2 cross connect ix: 5, op code: Push
 
 
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:339, pkts:4, TX bytes:355, Pushed pkts:4
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe2, out label: 25610
Nexthop addr: 20.20.20.2 cross connect ix: 5, op code: Push
 
Backup Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 9
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 9, owner: LDP, Stale: NO, out intf: xe1, out label: 25600
Nexthop addr: 10.10.10.2 cross connect ix: 7, op code: Push
 
 
Primary FTN entry with FEC: 40.40.40.0/24, id: 2, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
Backup Cross connect ix: 9, in intf: - in label: 0 out-segment ix: 10
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 10, owner: LDP, Stale: NO, out intf: xe2, out label: 25612
Nexthop addr: 20.20.20.2 cross connect ix: 9, op code: Push
 
 
Primary FTN entry with FEC: 50.50.50.0/24, id: 6, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 4, op code: Push
 
Backup Cross connect ix: 11, in intf: - in label: 0 out-segment ix: 11
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 11, owner: LDP, Stale: NO, out intf: xe1, out label: 25611
Nexthop addr: 10.10.10.2 cross connect ix: 11, op code: Push
 
 
Primary FTN entry with FEC: 60.60.60.0/24, id: 4, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 6, in intf: - in label: 0 out-segment ix: 6
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 6, owner: LDP, Stale: NO, out intf: xe2, out label: 25613
Nexthop addr: 20.20.20.2 cross connect ix: 6, op code: Push
 
Backup Cross connect ix: 13, in intf: - in label: 0 out-segment ix: 12
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 12, owner: LDP, Stale: NO, out intf: xe1, out label: 25612
Nexthop addr: 10.10.10.2 cross connect ix: 13, op code: Push
 
 
PE1#show mpls ftn-table 5.5.5.5/32
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:339, pkts:4, TX bytes:355, Pushed pkts:4
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe2, out label: 25610
Nexthop addr: 20.20.20.2 cross connect ix: 5, op code: Push
 
Backup Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 9
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 9, owner: LDP, Stale: NO, out intf: xe1, out label: 25600
Nexthop addr: 10.10.10.2 cross connect ix: 7, op code: Push
 
PE1#show ldp fec prefix 5.5.5.5/32
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
P - Primary route, B - LFA Backup route,
R - Remote LFA Backup route,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
5.5.5.5/32 NL 4.4.4.4 25610 No no nexthop
NLP> 3.3.3.3 25610 No 20.20.20.2
NLB> 2.2.2.2 25600 No 10.10.10.2
 
To prohibit an interface from being used as a repair path, disable fast reroute calculation on the interface:
 
#configure terminal
Enter configuration mode.
(config)#interface xe1
Enter interface mode.
(config-if)#isis fast-reroute per-prefix candidate disable level-1
Disable fast reroute calculation on the interface.
(config-if)#exit
Exit interface mode
(config)#commit
Commit all the configurations
Verify that the xe1 interface is not used for backup path calculation.
 
PE1#show clns neighbors
 
Total number of L1 adjacencies: 3
Total number of L2 adjacencies: 0
Total number of adjacencies: 3
Tag 1: VRF : default
System Id Interface SNPA State Holdtime Type Protocol
P1 xe1 5254.0002.5b0a Up 22 L1 IS-IS
P2 xe2 5254.009b.f9a2 Up 8 L1 IS-IS
P3 xe3 5254.005d.e995 Up 6 L1 IS-IS
 
PE1#show clns neighbors detail
 
Total number of L1 adjacencies: 3
Total number of L2 adjacencies: 0
Total number of adjacencies: 3
Tag 1: VRF : default
System Id Interface SNPA State Holdtime Type Protocol
P1 xe1 5254.0002.5b0a Up 20 L1 IS-IS
L1 Adjacency ID: 1
L2 Adjacency ID: 2
Uptime: 00:57:18
Area Address(es): 49.0001
IP Address(es): 10.10.10.2
Level-1 Protocols Supported: IPv4
Bidirectional Forwarding Detection is enabled
Adjacency advertisement: Advertise
P2 xe2 5254.009b.f9a2 Up 6 L1 IS-IS
L1 Adjacency ID: 1
L2 Adjacency ID: 2
Uptime: 00:56:54
Area Address(es): 49.0001
IP Address(es): 20.20.20.2
Level-1 Protocols Supported: IPv4
Bidirectional Forwarding Detection is enabled
Adjacency advertisement: Advertise
P3 xe3 5254.005d.e995 Up 8 L1 IS-IS
L1 Adjacency ID: 1
L2 Adjacency ID: 2
Uptime: 00:56:29
Area Address(es): 49.0001
IP Address(es): 30.30.30.2
Level-1 Protocols Supported: IPv4
Bidirectional Forwarding Detection is enabled
Adjacency advertisement: Advertise
 
PE1#show isis database
Tag 1: VRF : default
IS-IS Level-1 Link State Database:
LSPID LSP Seq Num LSP Checksum LSP Holdtime ATT/P/OL
PE1.00-00 * 0x0000000D 0xD5A2 523 0/0/0
PE1.02-00 * 0x00000004 0x8246 462 0/0/0
P1.00-00 0x0000000B 0xBC5A 590 0/0/0
P1.03-00 0x00000004 0xB80A 549 0/0/0
P2.00-00 0x0000000A 0xFC55 593 0/0/0
P2.02-00 0x00000004 0x7055 485 0/0/0
P2.03-00 0x00000004 0xB907 579 0/0/0
P3.00-00 0x0000000A 0xDBB1 614 0/0/0
P3.02-00 0x00000004 0x7152 500 0/0/0
PE2.00-00 0x0000000D 0xDD02 610 0/0/0
PE2.04-00 0x00000004 0xA01C 609 0/0/0
 
 
PE1#show isis database verbose
Tag 1: VRF : default
IS-IS Level-1 Link State Database:
LSPID LSP Seq Num LSP Checksum LSP Holdtime ATT/P/OL
PE1.00-00 * 0x0000000D 0xD5A2 513 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: PE1
IP Address: 1.1.1.1
Router ID: 10.12.49.172
Metric: 20 IS-Extended PE1.02
IPv4 Interface Address: 10.10.10.1
Neighbor IP Address: 10.10.10.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 20
Metric: 15 IS-Extended P2.02
IPv4 Interface Address: 20.20.20.1
Neighbor IP Address: 20.20.20.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 15
Metric: 60 IS-Extended P3.02
IPv4 Interface Address: 30.30.30.1
Neighbor IP Address: 30.30.30.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 60
Metric: 10 IP-Extended 1.1.1.1/32
Metric: 20 IP-Extended 10.10.10.0/24
Metric: 15 IP-Extended 20.20.20.0/24
Metric: 60 IP-Extended 30.30.30.0/24
PE1.02-00 * 0x00000004 0x8246 452 0/0/0
Metric: 0 IS-Extended PE1.00
Metric: 0 IS-Extended P1.00
P1.00-00 0x0000000B 0xBC5A 580 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: P1
IP Address: 2.2.2.2
Router ID: 10.12.49.173
Metric: 10 IS-Extended PE1.02
IPv4 Interface Address: 10.10.10.2
Neighbor IP Address: 10.10.10.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended P1.03
IPv4 Interface Address: 40.40.40.1
Neighbor IP Address: 40.40.40.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 2.2.2.2/32
Metric: 10 IP-Extended 10.10.10.0/24
Metric: 10 IP-Extended 40.40.40.0/24
P1.03-00 0x00000004 0xB80A 540 0/0/0
Metric: 0 IS-Extended P1.00
Metric: 0 IS-Extended PE2.00
P2.00-00 0x0000000A 0xFC55 584 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: P2
IP Address: 3.3.3.3
Router ID: 10.12.49.176
Metric: 10 IS-Extended P2.02
IPv4 Interface Address: 20.20.20.2
Neighbor IP Address: 20.20.20.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended P2.03
IPv4 Interface Address: 50.50.50.1
Neighbor IP Address: 50.50.50.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 3.3.3.3/32
Metric: 10 IP-Extended 50.50.50.0/24
Metric: 10 IP-Extended 20.20.20.0/24
P2.02-00 0x00000004 0x7055 476 0/0/0
Metric: 0 IS-Extended P2.00
Metric: 0 IS-Extended PE1.00
P2.03-00 0x00000004 0xB907 570 0/0/0
Metric: 0 IS-Extended P2.00
Metric: 0 IS-Extended PE2.00
P3.00-00 0x0000000A 0xDBB1 605 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: P3
IP Address: 4.4.4.4
Router ID: 10.12.49.177
Metric: 10 IS-Extended P3.02
IPv4 Interface Address: 30.30.30.2
Neighbor IP Address: 30.30.30.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended PE2.04
IPv4 Interface Address: 60.60.60.1
Neighbor IP Address: 60.60.60.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 4.4.4.4/32
Metric: 10 IP-Extended 60.60.60.0/24
Metric: 10 IP-Extended 30.30.30.0/24
P3.02-00 0x00000004 0x7152 491 0/0/0
Metric: 0 IS-Extended P3.00
Metric: 0 IS-Extended PE1.00
PE2.00-00 0x0000000D 0xDD02 601 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: PE2
IP Address: 5.5.5.5
Router ID: 10.12.49.174
Metric: 10 IS-Extended P1.03
IPv4 Interface Address: 40.40.40.2
Neighbor IP Address: 40.40.40.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended P2.03
IPv4 Interface Address: 50.50.50.2
Neighbor IP Address: 50.50.50.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended PE2.04
IPv4 Interface Address: 60.60.60.2
Neighbor IP Address: 60.60.60.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 5.5.5.5/32
Metric: 10 IP-Extended 60.60.60.0/24
Metric: 10 IP-Extended 50.50.50.0/24
Metric: 10 IP-Extended 40.40.40.0/24
PE2.04-00 0x00000004 0xA01C 600 0/0/0
Metric: 0 IS-Extended PE2.00
Metric: 0 IS-Extended P3.00
 
PE1#show ldp session
Peer IP Address IF Name My Role State KeepAlive UpTime
5.5.5.5 xe3 Passive OPERATIONAL 30 00:55:24
2.2.2.2 xe1 Passive OPERATIONAL 30 00:57:26
3.3.3.3 xe2 Passive OPERATIONAL 30 00:56:38
4.4.4.4 xe3 Passive OPERATIONAL 30 00:56:45
 
PE1#show ip route
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
 
IP Route Table for VRF "default"
Gateway of last resort is 10.12.49.1 to network 0.0.0.0
 
K* 0.0.0.0/0 [0/0] via 10.12.49.1, xe0
C 1.1.1.1/32 is directly connected, lo, 01:06:01
i L1 2.2.2.2/32 [115/30] via 10.10.10.2, xe1, 00:58:02
i L1 3.3.3.3/32 [115/25] via 20.20.20.2, xe2, 00:56:32
i L1 4.4.4.4/32 [115/45] via 20.20.20.2, xe2, 00:54:52
i L1 5.5.5.5/32 [115/35] via 20.20.20.2, xe2, 00:55:42
C 10.10.10.0/24 is directly connected, xe1, 01:06:01
C 10.12.49.0/24 is directly connected, xe0, 01:10:40
C 20.20.20.0/24 is directly connected, xe2, 01:06:01
C 30.30.30.0/24 is directly connected, xe3, 01:06:01
i L1 40.40.40.0/24 [115/30] via 10.10.10.2, xe1, 00:55:42
i L1 50.50.50.0/24 [115/25] via 20.20.20.2, xe2, 00:55:42
i L1 60.60.60.0/24 [115/35] via 20.20.20.2, xe2, 00:55:42
C 127.0.0.0/8 is directly connected, lo, 03:41:51
 
 
PE1#show ip route summary
 
-----------------------------------------------
IP routing table name is Default-IP-Routing-Table(0)
-----------------------------------------------
IP routing table maximum-paths : 8
Total number of IPv4 routes : 14
Total number of IPv4 paths : 14
Pending routes (due to route max reached): 0
Route Source Networks
kernel 1
connected 6
isis 7
Total 14
FIB 14
 
ECMP statistics (active in ASIC):
Total number of IPv4 ECMP routes : 0
Total number of IPv4 ECMP paths : 0
 
LFA Non ECMP statistics
--------------
Total number of Routes : 7
Total number of Primary Paths : 7
Total number of Backup Paths : 7
 
 
PE1#show ip interface brief
 
'*' - address is assigned by dhcp client
 
Interface IP-Address Admin-Status Link-Status
xe0 *10.12.49.172 up up
xe1 unassigned up up
xe1 10.10.10.1 up up
xe3 unassigned up up
xe4 unassigned up up
xe5 unassigned up up
xe6 unassigned up up
xe7 unassigned up up
xe8 unassigned up up
xe9 unassigned up up
xe10 unassigned up up
xe11 unassigned up up
xe2 20.20.20.1 up up
xe3 30.30.30.1 up up
lo 127.0.0.1 up up
 
PE1#show ip isis route fast-reroute
 
Tag : 1 VRF : default
Codes : L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area,
D - discard, LP - Link Protecting, NP - Node Protecting,
BP - Broadcast Interface Disjoint, Pri - Primary Path,
Sec - Secondary Path, DP - Downstream Path
 
L1 2.2.2.2/32
Primary Path via : 10.10.10.2, xe1
FRR Backup Path via : 30.30.30.2, xe3
FRR Metric : 90
Protection Provided : LP BP
 
L1 3.3.3.3/32
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 50
Protection Provided : LP BP
 
L1 4.4.4.4/32
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 50
Protection Provided : LP NP BP DP
 
L1 5.5.5.5/32
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 40
Protection Provided : LP NP BP DP
 
L1 40.40.40.0/24
Primary Path via : 10.10.10.2, xe1
FRR Backup Path via : 30.30.30.2, xe3
FRR Metric : 80
Protection Provided : LP NP BP DP
 
L1 50.50.50.0/24
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 40
Protection Provided : LP NP BP DP
 
L1 60.60.60.0/24
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 40
Protection Provided : LP NP BP DP
 
PE1#show ldp routes
Prefix Addr Nexthop Addr Intf Backup Addr Backup Intf Owner
0.0.0.0/0 10.12.49.1 xe0 - - kernel
1.1.1.1/32 0.0.0.0 lo - - connected
2.2.2.2/32 10.10.10.2 xe1 30.30.30.2 xe3 isis
3.3.3.3/32 20.20.20.2 xe2 10.10.10.2 xe1 isis
4.4.4.4/32 20.20.20.2 xe2 10.10.10.2 xe1 isis
5.5.5.5/32 20.20.20.2 xe2 10.10.10.2 xe1 isis
10.10.10.0/24 0.0.0.0 xe1 - - connected
10.12.49.0/24 0.0.0.0 xe0 - - connected
20.20.20.0/24 0.0.0.0 xe2 - - connected
30.30.30.0/24 0.0.0.0 xe3 - - connected
40.40.40.0/24 10.10.10.2 xe1 30.30.30.2 xe3 isis
50.50.50.0/24 20.20.20.2 xe2 10.10.10.2 xe1 isis
60.60.60.0/24 20.20.20.2 xe2 10.10.10.2 xe1 isis
 
PE1#show ldp fec
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
P - Primary route, B - LFA Backup route,
R - Remote LFA Backup route,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
1.1.1.1/32 E > non-existent none No connected
2.2.2.2/32 NLB> 4.4.4.4 25608 No 30.30.30.2
NL 3.3.3.3 25608 No no nexthop
NLP> 2.2.2.2 impl-null No 10.10.10.2
3.3.3.3/32 NLB> 2.2.2.2 25608 No 10.10.10.2
NL 4.4.4.4 25609 No no nexthop
NLP> 3.3.3.3 impl-null No 20.20.20.2
4.4.4.4/32 NLB> 2.2.2.2 25609 No 10.10.10.2
NLP> 3.3.3.3 25609 No 20.20.20.2
NL 4.4.4.4 impl-null No no nexthop
5.5.5.5/32 NL 4.4.4.4 25610 No no nexthop
NLP> 3.3.3.3 25610 No 20.20.20.2
NLB> 2.2.2.2 25600 No 10.10.10.2
10.10.10.0/24 NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
10.12.49.0/24 NL 3.3.3.3 impl-null No connected
NL 4.4.4.4 impl-null No connected
NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
20.20.20.0/24 NL 3.3.3.3 impl-null No connected
E > non-existent none No connected
30.30.30.0/24 NL 2.2.2.2 25610 No connected
NL 3.3.3.3 25611 No connected
NL 4.4.4.4 impl-null No connected
E > non-existent none No connected
40.40.40.0/24 NLB> 4.4.4.4 25611 No 30.30.30.2
NL 3.3.3.3 25612 No no nexthop
NLP> 2.2.2.2 impl-null No 10.10.10.2
50.50.50.0/24 NLB> 2.2.2.2 25611 No 10.10.10.2
NL 4.4.4.4 25612 No no nexthop
NLP> 3.3.3.3 impl-null No 20.20.20.2
60.60.60.0/24 NLB> 2.2.2.2 25612 No 10.10.10.2
NLP> 3.3.3.3 25613 No 20.20.20.2
NL 4.4.4.4 impl-null No no nexthop
PE1#show ldp downstream
Codes: P - Primary route, B - Backup route
Session peer 5.5.5.5:
FEC Nexthop Addr State Label Req.ID Attr Code
Codes: P - Primary route, B - Backup route
Session peer 2.2.2.2:
FEC Nexthop Addr State Label Req.ID Attr Code
60.60.60.0/24 connected Established 25612 0
60.60.60.0/24 10.10.10.2 Established 25612 0 B
50.50.50.0/24 connected Established 25611 0
50.50.50.0/24 10.10.10.2 Established 25611 0 B
30.30.30.0/24 connected Established 25610 0
4.4.4.4/32 connected Established 25609 0
4.4.4.4/32 10.10.10.2 Established 25609 0 B
3.3.3.3/32 connected Established 25608 0
3.3.3.3/32 10.10.10.2 Established 25608 0 B
5.5.5.5/32 connected Established 25600 0
5.5.5.5/32 10.10.10.2 Established 25600 0 B
40.40.40.0/24 10.10.10.2 Established impl-null 0 P
10.12.49.0/24 connected Established impl-null 0
10.10.10.0/24 connected Established impl-null 0
2.2.2.2/32 10.10.10.2 Established impl-null 0 P
Codes: P - Primary route, B - Backup route
Session peer 3.3.3.3:
FEC Nexthop Addr State Label Req.ID Attr Code
40.40.40.0/24 connected Established 25612 0
30.30.30.0/24 connected Established 25611 0
4.4.4.4/32 20.20.20.2 Established 25609 0 P
2.2.2.2/32 connected Established 25608 0
60.60.60.0/24 20.20.20.2 Established 25613 0 P
5.5.5.5/32 20.20.20.2 Established 25610 0 P
50.50.50.0/24 20.20.20.2 Established impl-null 0 P
20.20.20.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
3.3.3.3/32 20.20.20.2 Established impl-null 0 P
Codes: P - Primary route, B - Backup route
Session peer 4.4.4.4:
FEC Nexthop Addr State Label Req.ID Attr Code
50.50.50.0/24 connected Established 25612 0
40.40.40.0/24 connected Established 25611 0
40.40.40.0/24 30.30.30.2 Established 25611 0 B
5.5.5.5/32 connected Established 25610 0
3.3.3.3/32 connected Established 25609 0
2.2.2.2/32 connected Established 25608 0
2.2.2.2/32 30.30.30.2 Established 25608 0 B
60.60.60.0/24 connected Established impl-null 0
30.30.30.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
4.4.4.4/32 connected Established impl-null 0
 
PE1#show ldp lsp
DOWNSTREAM LSP :
FEC Nexthop Addr State Label Req.ID Attr Code
1.1.1.1/32 connected Established none 0 None
2.2.2.2/32 connected Established 25608 0
2.2.2.2/32 30.30.30.2 Established 25608 0 B
2.2.2.2/32 connected Established 25608 0
2.2.2.2/32 10.10.10.2 Established impl-null 0 P
3.3.3.3/32 connected Established 25608 0
3.3.3.3/32 10.10.10.2 Established 25608 0 B
3.3.3.3/32 connected Established 25609 0
3.3.3.3/32 20.20.20.2 Established impl-null 0 P
4.4.4.4/32 connected Established 25609 0
4.4.4.4/32 10.10.10.2 Established 25609 0 B
4.4.4.4/32 20.20.20.2 Established 25609 0 P
4.4.4.4/32 connected Established impl-null 0
5.5.5.5/32 connected Established 25610 0
5.5.5.5/32 20.20.20.2 Established 25610 0 P
5.5.5.5/32 connected Established 25600 0
5.5.5.5/32 10.10.10.2 Established 25600 0 B
10.10.10.0/24 connected Established impl-null 0
10.10.10.0/24 connected Established none 0 None
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established none 0 None
20.20.20.0/24 connected Established impl-null 0
20.20.20.0/24 connected Established none 0 None
30.30.30.0/24 connected Established 25610 0
30.30.30.0/24 connected Established 25611 0
30.30.30.0/24 connected Established impl-null 0
30.30.30.0/24 connected Established none 0 None
40.40.40.0/24 connected Established 25611 0
40.40.40.0/24 30.30.30.2 Established 25611 0 B
40.40.40.0/24 connected Established 25612 0
40.40.40.0/24 10.10.10.2 Established impl-null 0 P
50.50.50.0/24 connected Established 25611 0
50.50.50.0/24 10.10.10.2 Established 25611 0 B
50.50.50.0/24 connected Established 25612 0
50.50.50.0/24 20.20.20.2 Established impl-null 0 P
60.60.60.0/24 connected Established 25612 0
60.60.60.0/24 10.10.10.2 Established 25612 0 B
60.60.60.0/24 20.20.20.2 Established 25613 0 P
60.60.60.0/24 connected Established impl-null 0
 
UPSTREAM LSP :
FEC State Label Req.ID Attr
1.1.1.1/32 Established impl-null 0 None
1.1.1.1/32 Established impl-null 0 None
1.1.1.1/32 Established impl-null 0 None
2.2.2.2/32 Established 25608 0 None
2.2.2.2/32 Established 25604 0 None
2.2.2.2/32 Established 25604 0 None
2.2.2.2/32 Established 25608 0 None
3.3.3.3/32 Established 25605 0 None
3.3.3.3/32 Established 25605 0 None
3.3.3.3/32 Established 25600 0 None
4.4.4.4/32 Established 25603 0 None
4.4.4.4/32 Established 25602 0 None
4.4.4.4/32 Established 25603 0 None
4.4.4.4/32 Established 25602 0 None
5.5.5.5/32 Established 25614 0 None
5.5.5.5/32 Established 25615 0 None
5.5.5.5/32 Established 25615 0 None
10.10.10.0/24 Established impl-null 0 None
10.10.10.0/24 Established impl-null 0 None
10.10.10.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
40.40.40.0/24 Established 25610 0 None
40.40.40.0/24 Established 25606 0 None
40.40.40.0/24 Established 25606 0 None
40.40.40.0/24 Established 25610 0 None
50.50.50.0/24 Established 25607 0 None
50.50.50.0/24 Established 25607 0 None
50.50.50.0/24 Established 25601 0 None
60.60.60.0/24 Established 25616 0 None
60.60.60.0/24 Established 25616 0 None
60.60.60.0/24 Established 25617 0 None
60.60.60.0/24 Established 25617 0 None
 
PE1#show mpls forwarding-table
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 2.2.2.2/32 1 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
13 - No LSP_DEFAULT 25608 xe3 No 30.30.30.2
L> 3.3.3.3/32 5 3 - Yes LSP_DEFAULT 3 xe2 No 20.20.20.2
4 - No LSP_DEFAULT 25608 xe1 No 10.10.10.2
L> 4.4.4.4/32 3 7 - Yes LSP_DEFAULT 25609 xe2 No 20.20.20.2
8 - No LSP_DEFAULT 25609 xe1 No 10.10.10.2
L> 5.5.5.5/32 7 5 - Yes LSP_DEFAULT 25610 xe2 No 20.20.20.2
9 - No LSP_DEFAULT 25600 xe1 No 10.10.10.2
L> 40.40.40.0/24 2 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
14 - No LSP_DEFAULT 25611 xe3 No 30.30.30.2
L> 50.50.50.0/24 6 3 - Yes LSP_DEFAULT 3 xe2 No 20.20.20.2
11 - No LSP_DEFAULT 25611 xe1 No 10.10.10.2
L> 60.60.60.0/24 4 6 - Yes LSP_DEFAULT 25613 xe2 No 20.20.20.2
12 - No LSP_DEFAULT 25612 xe1 No 10.10.10.2
 
PE1#show mpls forwarding-table 5.5.5.5/32
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 5.5.5.5/32 7 5 - Yes LSP_DEFAULT 25610 xe2 No 20.20.20.2
9 - No LSP_DEFAULT 25600 xe1 No 10.10.10.2
 
PE1#show mpls ftn-table
Primary FTN entry with FEC: 2.2.2.2/32, id: 1, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
Backup Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 13
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 13, owner: LDP, Stale: NO, out intf: xe3, out label: 25608
Nexthop addr: 30.30.30.2 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 3.3.3.3/32, id: 5, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 4, op code: Push
 
Backup Cross connect ix: 3, in intf: - in label: 0 out-segment ix: 4
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 4, owner: LDP, Stale: NO, out intf: xe1, out label: 25608
Nexthop addr: 10.10.10.2 cross connect ix: 3, op code: Push
 
 
Primary FTN entry with FEC: 4.4.4.4/32, id: 3, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:368, pkts:4, TX bytes:368, Pushed pkts:4
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 7
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 7, owner: LDP, Stale: NO, out intf: xe2, out label: 25609
Nexthop addr: 20.20.20.2 cross connect ix: 2, op code: Push
 
Backup Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 8
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 8, owner: LDP, Stale: NO, out intf: xe1, out label: 25609
Nexthop addr: 10.10.10.2 cross connect ix: 5, op code: Push
 
 
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:339, pkts:4, TX bytes:355, Pushed pkts:4
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe2, out label: 25610
Nexthop addr: 20.20.20.2 cross connect ix: 5, op code: Push
 
Backup Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 9
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 9, owner: LDP, Stale: NO, out intf: xe1, out label: 25600
Nexthop addr: 10.10.10.2 cross connect ix: 7, op code: Push
 
 
Primary FTN entry with FEC: 40.40.40.0/24, id: 2, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
Backup Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 14
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 14, owner: LDP, Stale: NO, out intf: xe3, out label: 25611
Nexthop addr: 30.30.30.2 cross connect ix: 2, op code: Push
 
 
Primary FTN entry with FEC: 50.50.50.0/24, id: 6, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 4, op code: Push
 
Backup Cross connect ix: 11, in intf: - in label: 0 out-segment ix: 11
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 11, owner: LDP, Stale: NO, out intf: xe1, out label: 25611
Nexthop addr: 10.10.10.2 cross connect ix: 11, op code: Push
 
 
Primary FTN entry with FEC: 60.60.60.0/24, id: 4, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 6, in intf: - in label: 0 out-segment ix: 6
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 6, owner: LDP, Stale: NO, out intf: xe2, out label: 25613
Nexthop addr: 20.20.20.2 cross connect ix: 6, op code: Push
 
Backup Cross connect ix: 13, in intf: - in label: 0 out-segment ix: 12
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 12, owner: LDP, Stale: NO, out intf: xe1, out label: 25612
Nexthop addr: 10.10.10.2 cross connect ix: 13, op code: Push
 
 
PE1#show mpls ftn-table 5.5.5.5/32
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:339, pkts:4, TX bytes:355, Pushed pkts:4
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe2, out label: 25610
Nexthop addr: 20.20.20.2 cross connect ix: 5, op code: Push
 
Backup Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 9
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 9, owner: LDP, Stale: NO, out intf: xe1, out label: 25600
Nexthop addr: 10.10.10.2 cross connect ix: 7, op code: Push
 
 
PE1#show ldp fec prefix 5.5.5.5/32
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
P - Primary route, B - LFA Backup route,
R - Remote LFA Backup route,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
5.5.5.5/32 NL 4.4.4.4 25610 No no nexthop
NLP> 3.3.3.3 25610 No 20.20.20.2
NLB> 2.2.2.2 25600 No 10.10.10.2
 
PE1#show ip route fast-reroute
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area ,p - stale info, E - EVPN
* - candidate default
 
IP Route Table for VRF "default"
i L1 2.2.2.2/32 [115/30] via 10.10.10.2, xe1, 00:59:29
[FRR-NH] via 30.30.30.2, xe3
 
i L1 3.3.3.3/32 [115/25] via 20.20.20.2, xe2, 00:57:59
[FRR-NH] via 10.10.10.2, xe1
 
i L1 4.4.4.4/32 [115/45] via 20.20.20.2, xe2, 00:56:19
[FRR-NH] via 10.10.10.2, xe1
 
i L1 5.5.5.5/32 [115/35] via 20.20.20.2, xe2, 00:57:09
[FRR-NH] via 10.10.10.2, xe1
 
i L1 40.40.40.0/24 [115/30] via 10.10.10.2, xe1, 00:57:09
[FRR-NH] via 30.30.30.2, xe3
 
i L1 50.50.50.0/24 [115/25] via 20.20.20.2, xe2, 00:57:09
[FRR-NH] via 10.10.10.2, xe1
 
i L1 60.60.60.0/24 [115/35] via 20.20.20.2, xe2, 00:57:09
[FRR-NH] via 10.10.10.2, xe1
 
PE1#show ip isis route fast-reroute
 
Tag : 1 VRF : default
Codes : L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area,
D - discard, LP - Link Protecting, NP - Node Protecting,
BP - Broadcast Interface Disjoint, Pri - Primary Path,
Sec - Secondary Path, DP - Downstream Path
 
L1 2.2.2.2/32
Primary Path via : 10.10.10.2, xe1
FRR Backup Path via : 30.30.30.2, xe3
FRR Metric : 90
Protection Provided : LP BP
 
L1 3.3.3.3/32
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 50
Protection Provided : LP BP
 
L1 4.4.4.4/32
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 50
Protection Provided : LP NP BP DP
 
L1 5.5.5.5/32
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 40
Protection Provided : LP NP BP DP
 
L1 40.40.40.0/24
Primary Path via : 10.10.10.2, xe1
FRR Backup Path via : 30.30.30.2, xe3
FRR Metric : 80
Protection Provided : LP NP BP DP
 
L1 50.50.50.0/24
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 40
Protection Provided : LP NP BP DP
 
L1 60.60.60.0/24
Primary Path via : 20.20.20.2, xe2
FRR Backup Path via : 10.10.10.2, xe1
FRR Metric : 40
Protection Provided : LP NP BP DP
 
PE1#show ldp routes
Prefix Addr Nexthop Addr Intf Backup Addr Backup Intf Owner
0.0.0.0/0 10.12.49.1 xe0 - - kernel
1.1.1.1/32 0.0.0.0 lo - - connected
2.2.2.2/32 10.10.10.2 xe1 30.30.30.2 xe3 isis
3.3.3.3/32 20.20.20.2 xe2 10.10.10.2 xe1 isis
4.4.4.4/32 20.20.20.2 xe2 10.10.10.2 xe1 isis
5.5.5.5/32 20.20.20.2 xe2 10.10.10.2 xe1 isis
10.10.10.0/24 0.0.0.0 xe1 - - connected
10.12.49.0/24 0.0.0.0 xe0 - - connected
20.20.20.0/24 0.0.0.0 xe2 - - connected
30.30.30.0/24 0.0.0.0 xe3 - - connected
40.40.40.0/24 10.10.10.2 xe1 30.30.30.2 xe3 isis
50.50.50.0/24 20.20.20.2 xe2 10.10.10.2 xe1 isis
60.60.60.0/24 20.20.20.2 xe2 10.10.10.2 xe1 isis
 
 
PE1#show mpls forwarding-table
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 2.2.2.2/32 1 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
13 - No LSP_DEFAULT 25608 xe3 No 30.30.30.2
L> 3.3.3.3/32 5 3 - Yes LSP_DEFAULT 3 xe2 No 20.20.20.2
4 - No LSP_DEFAULT 25608 xe1 No 10.10.10.2
L> 4.4.4.4/32 3 7 - Yes LSP_DEFAULT 25609 xe2 No 20.20.20.2
8 - No LSP_DEFAULT 25609 xe1 No 10.10.10.2
L> 5.5.5.5/32 7 5 - Yes LSP_DEFAULT 25610 xe2 No 20.20.20.2
9 - No LSP_DEFAULT 25600 xe1 No 10.10.10.2
L> 40.40.40.0/24 2 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
14 - No LSP_DEFAULT 25611 xe3 No 30.30.30.2
L> 50.50.50.0/24 6 3 - Yes LSP_DEFAULT 3 xe2 No 20.20.20.2
11 - No LSP_DEFAULT 25611 xe1 No 10.10.10.2
L> 60.60.60.0/24 4 6 - Yes LSP_DEFAULT 25613 xe2 No 20.20.20.2
12 - No LSP_DEFAULT 25612 xe1 No 10.10.10.2
 
PE1#show mpls forwarding-table 5.5.5.5/32
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 5.5.5.5/32 7 5 - Yes LSP_DEFAULT 25610 xe2 No 20.20.20.2
9 - No LSP_DEFAULT 25600 xe1 No 10.10.10.2
 
PE1#show mpls ftn-table
Primary FTN entry with FEC: 2.2.2.2/32, id: 1, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
Backup Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 13
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 13, owner: LDP, Stale: NO, out intf: xe3, out label: 25608
Nexthop addr: 30.30.30.2 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 3.3.3.3/32, id: 5, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 4, op code: Push
 
Backup Cross connect ix: 3, in intf: - in label: 0 out-segment ix: 4
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 4, owner: LDP, Stale: NO, out intf: xe1, out label: 25608
Nexthop addr: 10.10.10.2 cross connect ix: 3, op code: Push
 
 
Primary FTN entry with FEC: 4.4.4.4/32, id: 3, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
 
...skipping 1 line
Matched bytes:368, pkts:4, TX bytes:368, Pushed pkts:4
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 7
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 7, owner: LDP, Stale: NO, out intf: xe2, out label: 25609
Nexthop addr: 20.20.20.2 cross connect ix: 2, op code: Push
 
Backup Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 8
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 8, owner: LDP, Stale: NO, out intf: xe1, out label: 25609
Nexthop addr: 10.10.10.2 cross connect ix: 5, op code: Push
 
 
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:339, pkts:4, TX bytes:355, Pushed pkts:4
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe2, out label: 25610
Nexthop addr: 20.20.20.2 cross connect ix: 5, op code: Push
 
Backup Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 9
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 9, owner: LDP, Stale: NO, out intf: xe1, out label: 25600
Nexthop addr: 10.10.10.2 cross connect ix: 7, op code: Push
 
 
Primary FTN entry with FEC: 40.40.40.0/24, id: 2, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
--More--
Most commands optionally preceded by integer argument k. Defaults in brackets.
Star (*) indicates argument becomes new default.
-------------------------------------------------------------------------------
<space> Display next k lines of text [current screen size]
z Display next k lines of text [current screen size]*
<return> Display next k lines of text [1]*
d or ctrl-D Scroll k lines [current scroll size, initially 11]*
q or Q or <interrupt> Exit from more
s Skip forward k lines of text [1]
f Skip forward k screenfuls of text [1]
b or ctrl-B Skip backwards k screenfuls of text [1]
' Go to place where previous search started
= Display current line number
/<regular expression> Search for kth occurrence of regular expression [1]
n Search for kth occurrence of last r.e [1]
!<cmd> or :!<cmd> Execute <cmd> in a subshell
v Start up /usr/bin/vi at current line
ctrl-L Redraw screen
:n Go to kth next file [1]
:p Go to kth previous file [1]
:f Display current file name and line number
. Repeat previous command
-------------------------------------------------------------------------------
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
Backup Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 14
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 14, owner: LDP, Stale: NO, out intf: xe3, out label: 25611
Nexthop addr: 30.30.30.2 cross connect ix: 2, op code: Push
 
 
Primary FTN entry with FEC: 50.50.50.0/24, id: 6, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 4, op code: Push
 
Backup Cross connect ix: 11, in intf: - in label: 0 out-segment ix: 11
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 11, owner: LDP, Stale: NO, out intf: xe1, out label: 25611
Nexthop addr: 10.10.10.2 cross connect ix: 11, op code: Push
 
 
Primary FTN entry with FEC: 60.60.60.0/24, id: 4, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 6, in intf: - in label: 0 out-segment ix: 6
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 6, owner: LDP, Stale: NO, out intf: xe2, out label: 25613
 
...skipping 1 line
 
Backup Cross connect ix: 13, in intf: - in label: 0 out-segment ix: 12
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 12, owner: LDP, Stale: NO, out intf: xe1, out label: 25612
Nexthop addr: 10.10.10.2 cross connect ix: 13, op code: Push
 
 
 
 
PE1#show ldp fec prefix 5.5.5.5/32
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
P - Primary route, B - LFA Backup route,
R - Remote LFA Backup route,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
5.5.5.5/32 NL 4.4.4.4 25610 No no nexthop
NLP> 3.3.3.3 25610 No 20.20.20.2
NLB> 2.2.2.2 25600 No 10.10.10.2
 
PE1#show mpls ftn-table 5.5.5.5/32
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:339, pkts:4, TX bytes:355, Pushed pkts:4
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe2, out label: 25610
Nexthop addr: 20.20.20.2 cross connect ix: 5, op code: Push
 
Backup Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 9
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 9, owner: LDP, Stale: NO, out intf: xe1, out label: 25600
Nexthop addr: 10.10.10.2 cross connect ix: 7, op code: Push
 
 
PE1#show mpls ftn-table
Primary FTN entry with FEC: 2.2.2.2/32, id: 1, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
Backup Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 13
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 13, owner: LDP, Stale: NO, out intf: xe3, out label: 25608
Nexthop addr: 30.30.30.2 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 3.3.3.3/32, id: 5, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 4, op code: Push
 
Backup Cross connect ix: 3, in intf: - in label: 0 out-segment ix: 4
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 4, owner: LDP, Stale: NO, out intf: xe1, out label: 25608
Nexthop addr: 10.10.10.2 cross connect ix: 3, op code: Push
 
 
Primary FTN entry with FEC: 4.4.4.4/32, id: 3, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:368, pkts:4, TX bytes:368, Pushed pkts:4
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 7
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 7, owner: LDP, Stale: NO, out intf: xe2, out label: 25609
Nexthop addr: 20.20.20.2 cross connect ix: 2, op code: Push
 
Backup Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 8
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 8, owner: LDP, Stale: NO, out intf: xe1, out label: 25609
Nexthop addr: 10.10.10.2 cross connect ix: 5, op code: Push
 
 
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:339, pkts:4, TX bytes:355, Pushed pkts:4
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe2, out label: 25610
Nexthop addr: 20.20.20.2 cross connect ix: 5, op code: Push
 
Backup Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 9
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 9, owner: LDP, Stale: NO, out intf: xe1, out label: 25600
Nexthop addr: 10.10.10.2 cross connect ix: 7, op code: Push
 
 
Primary FTN entry with FEC: 40.40.40.0/24, id: 2, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
Backup Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 14
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 14, owner: LDP, Stale: NO, out intf: xe3, out label: 25611
Nexthop addr: 30.30.30.2 cross connect ix: 2, op code: Push
 
 
Primary FTN entry with FEC: 50.50.50.0/24, id: 6, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 4, op code: Push
 
Backup Cross connect ix: 11, in intf: - in label: 0 out-segment ix: 11
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 11, owner: LDP, Stale: NO, out intf: xe1, out label: 25611
Nexthop addr: 10.10.10.2 cross connect ix: 11, op code: Push
 
 
Primary FTN entry with FEC: 60.60.60.0/24, id: 4, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 6, in intf: - in label: 0 out-segment ix: 6
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 6, owner: LDP, Stale: NO, out intf: xe2, out label: 25613
Nexthop addr: 20.20.20.2 cross connect ix: 6, op code: Push
 
Backup Cross connect ix: 13, in intf: - in label: 0 out-segment ix: 12
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 12, owner: LDP, Stale: NO, out intf: xe1, out label: 25612
Nexthop addr: 10.10.10.2 cross connect ix: 13, op code: Push
 
 
PE1#show ldp fec prefix 5.5.5.5/32
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
P - Primary route, B - LFA Backup route,
R - Remote LFA Backup route,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
5.5.5.5/32 NL 4.4.4.4 25610 No no nexthop
NLP> 3.3.3.3 25610 No 20.20.20.2
NLB> 2.2.2.2 25600 No 10.10.10.2
Backup Path based on Route-Map Prefixes
 
(config)#ip access-list A
Create an access-list
(config-ip-acl)#10 permit any host 40.40.40.0 any
Configuring rule to permit only one prefix
(config)#route-map R permit 10
Create a route-map
(config-route-map)#match ip address A
Apply above created access-list in route-map
(config-route-map)#exit
Exit route-map mode
(config)#commit
Commit all the configurations
Apply the above created route-map with fast-reroute:
 
(config)#router isis 1
Create an IS-IS routing instance for area 49 with instance 1
(config-router)#no fast-reroute per-prefix level-1 proto ipv4
Un-configure LFA-FRR to calculate available path for all prefixes
(config-router)#fast-reroute per-prefix level-1 proto ipv4 route-map R
Configure LFA-FRR to calculate the available backup path for routes allowed through route-map
(config-router)#exit
Exit router mode
(config)#commit
Commit all the configurations
Validation
 
PE1#show clns neighbors
 
Total number of L1 adjacencies: 3
Total number of L2 adjacencies: 0
Total number of adjacencies: 3
Tag 1: VRF : default
System Id Interface SNPA State Holdtime Type Protocol
P1 xe1 5254.0002.5b0a Up 28 L1 IS-IS
P2 xe2 5254.009b.f9a2 Up 7 L1 IS-IS
P3 xe3 5254.005d.e995 Up 5 L1 IS-IS
 
PE1#show clns neighbors detail
 
Total number of L1 adjacencies: 3
Total number of L2 adjacencies: 0
Total number of adjacencies: 3
Tag 1: VRF : default
System Id Interface SNPA State Holdtime Type Protocol
P1 xe1 5254.0002.5b0a Up 26 L1 IS-IS
L1 Adjacency ID: 1
L2 Adjacency ID: 2
Uptime: 01:04:52
Area Address(es): 49.0001
IP Address(es): 10.10.10.2
Level-1 Protocols Supported: IPv4
Bidirectional Forwarding Detection is enabled
Adjacency advertisement: Advertise
P2 xe2 5254.009b.f9a2 Up 8 L1 IS-IS
L1 Adjacency ID: 1
L2 Adjacency ID: 2
Uptime: 01:04:28
Area Address(es): 49.0001
IP Address(es): 20.20.20.2
Level-1 Protocols Supported: IPv4
Bidirectional Forwarding Detection is enabled
Adjacency advertisement: Advertise
P3 xe3 5254.005d.e995 Up 7 L1 IS-IS
L1 Adjacency ID: 1
L2 Adjacency ID: 2
Uptime: 01:04:03
Area Address(es): 49.0001
IP Address(es): 30.30.30.2
Level-1 Protocols Supported: IPv4
Bidirectional Forwarding Detection is enabled
Adjacency advertisement: Advertise
 
PE1#show isis database
Tag 1: VRF : default
IS-IS Level-1 Link State Database:
LSPID LSP Seq Num LSP Checksum LSP Holdtime ATT/P/OL
PE1.00-00 * 0x0000000E 0xD3A3 968 0/0/0
PE1.02-00 * 0x00000005 0x8047 908 0/0/0
P1.00-00 0x0000000C 0xBA5B 1035 0/0/0
P1.03-00 0x00000005 0xB60B 995 0/0/0
P2.00-00 0x0000000B 0xFA56 1039 0/0/0
P2.02-00 0x00000005 0x6E56 931 0/0/0
P2.03-00 0x00000005 0xB708 1025 0/0/0
P3.00-00 0x0000000B 0xD9B2 1060 0/0/0
P3.02-00 0x00000005 0x6F53 946 0/0/0
PE2.00-00 0x0000000E 0xDB03 1056 0/0/0
PE2.04-00 0x00000005 0x9E1D 1055 0/0/0
 
PE1#show isis database verbose
Tag 1: VRF : default
IS-IS Level-1 Link State Database:
LSPID LSP Seq Num LSP Checksum LSP Holdtime ATT/P/OL
PE1.00-00 * 0x0000000E 0xD3A3 963 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: PE1
IP Address: 1.1.1.1
Router ID: 10.12.49.172
Metric: 20 IS-Extended PE1.02
IPv4 Interface Address: 10.10.10.1
Neighbor IP Address: 10.10.10.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 20
Metric: 15 IS-Extended P2.02
IPv4 Interface Address: 20.20.20.1
Neighbor IP Address: 20.20.20.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 15
Metric: 60 IS-Extended P3.02
IPv4 Interface Address: 30.30.30.1
Neighbor IP Address: 30.30.30.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 60
Metric: 10 IP-Extended 1.1.1.1/32
Metric: 20 IP-Extended 10.10.10.0/24
Metric: 15 IP-Extended 20.20.20.0/24
Metric: 60 IP-Extended 30.30.30.0/24
PE1.02-00 * 0x00000005 0x8047 902 0/0/0
Metric: 0 IS-Extended PE1.00
Metric: 0 IS-Extended P1.00
P1.00-00 0x0000000C 0xBA5B 1030 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: P1
IP Address: 2.2.2.2
Router ID: 10.12.49.173
Metric: 10 IS-Extended PE1.02
IPv4 Interface Address: 10.10.10.2
Neighbor IP Address: 10.10.10.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended P1.03
IPv4 Interface Address: 40.40.40.1
Neighbor IP Address: 40.40.40.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 2.2.2.2/32
Metric: 10 IP-Extended 10.10.10.0/24
Metric: 10 IP-Extended 40.40.40.0/24
P1.03-00 0x00000005 0xB60B 990 0/0/0
Metric: 0 IS-Extended P1.00
Metric: 0 IS-Extended PE2.00
P2.00-00 0x0000000B 0xFA56 1034 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: P2
IP Address: 3.3.3.3
Router ID: 10.12.49.176
Metric: 10 IS-Extended P2.02
IPv4 Interface Address: 20.20.20.2
Neighbor IP Address: 20.20.20.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended P2.03
IPv4 Interface Address: 50.50.50.1
Neighbor IP Address: 50.50.50.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 3.3.3.3/32
Metric: 10 IP-Extended 50.50.50.0/24
Metric: 10 IP-Extended 20.20.20.0/24
P2.02-00 0x00000005 0x6E56 926 0/0/0
Metric: 0 IS-Extended P2.00
Metric: 0 IS-Extended PE1.00
P2.03-00 0x00000005 0xB708 1020 0/0/0
Metric: 0 IS-Extended P2.00
Metric: 0 IS-Extended PE2.00
P3.00-00 0x0000000B 0xD9B2 1055 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: P3
IP Address: 4.4.4.4
Router ID: 10.12.49.177
Metric: 10 IS-Extended P3.02
IPv4 Interface Address: 30.30.30.2
Neighbor IP Address: 30.30.30.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended PE2.04
IPv4 Interface Address: 60.60.60.1
Neighbor IP Address: 60.60.60.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 4.4.4.4/32
Metric: 10 IP-Extended 60.60.60.0/24
Metric: 10 IP-Extended 30.30.30.0/24
P3.02-00 0x00000005 0x6F53 941 0/0/0
Metric: 0 IS-Extended P3.00
Metric: 0 IS-Extended PE1.00
PE2.00-00 0x0000000E 0xDB03 1051 0/0/0
Area Address: 49.0001
NLPID: 0xCC
Hostname: PE2
IP Address: 5.5.5.5
Router ID: 10.12.49.174
Metric: 10 IS-Extended P1.03
IPv4 Interface Address: 40.40.40.2
Neighbor IP Address: 40.40.40.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended P2.03
IPv4 Interface Address: 50.50.50.2
Neighbor IP Address: 50.50.50.1
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IS-Extended PE2.04
IPv4 Interface Address: 60.60.60.2
Neighbor IP Address: 60.60.60.2
Maximum Link Bandwidth : 100000.00 kbits/sec
Reservable Bandwidth : 100000.00 kbits/sec
Unreserved Bandwidth:
Unreserved Bandwidth at priority 0: 100000.00 kbits/sec
Unreserved Bandwidth at priority 1: 100000.00 kbits/sec
Unreserved Bandwidth at priority 2: 100000.00 kbits/sec
Unreserved Bandwidth at priority 3: 100000.00 kbits/sec
Unreserved Bandwidth at priority 4: 100000.00 kbits/sec
Unreserved Bandwidth at priority 5: 100000.00 kbits/sec
Unreserved Bandwidth at priority 6: 100000.00 kbits/sec
Unreserved Bandwidth at priority 7: 100000.00 kbits/sec
TE-Default Metric: 10
Metric: 10 IP-Extended 5.5.5.5/32
Metric: 10 IP-Extended 60.60.60.0/24
Metric: 10 IP-Extended 50.50.50.0/24
Metric: 10 IP-Extended 40.40.40.0/24
PE2.04-00 0x00000005 0x9E1D 1050 0/0/0
Metric: 0 IS-Extended PE2.00
Metric: 0 IS-Extended P3.00
 
 
PE1#show ldp session
Peer IP Address IF Name My Role State KeepAlive UpTime
5.5.5.5 xe3 Passive OPERATIONAL 30 01:02:53
2.2.2.2 xe1 Passive OPERATIONAL 30 01:04:55
3.3.3.3 xe2 Passive OPERATIONAL 30 01:04:07
4.4.4.4 xe3 Passive OPERATIONAL 30 01:04:14
PE1#show ldp routes
Prefix Addr Nexthop Addr Intf Backup Addr Backup Intf Owner
0.0.0.0/0 10.12.49.1 xe0 - - kernel
1.1.1.1/32 0.0.0.0 lo - - connected
2.2.2.2/32 10.10.10.2 xe1 - - isis
3.3.3.3/32 20.20.20.2 xe2 - - isis
4.4.4.4/32 20.20.20.2 xe2 - - isis
5.5.5.5/32 20.20.20.2 xe2 - - isis
10.10.10.0/24 0.0.0.0 xe1 - - connected
10.12.49.0/24 0.0.0.0 xe0 - - connected
20.20.20.0/24 0.0.0.0 xe2 - - connected
30.30.30.0/24 0.0.0.0 xe3 - - connected
40.40.40.0/24 10.10.10.2 xe1 30.30.30.2 xe3 isis
50.50.50.0/24 20.20.20.2 xe2 - - isis
60.60.60.0/24 20.20.20.2 xe2 - - isis
 
PE1#show ip route
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
 
IP Route Table for VRF "default"
Gateway of last resort is 10.12.49.1 to network 0.0.0.0
 
K* 0.0.0.0/0 [0/0] via 10.12.49.1, xe0
C 1.1.1.1/32 is directly connected, lo, 01:13:04
i L1 2.2.2.2/32 [115/30] via 10.10.10.2, xe1, 01:05:05
i L1 3.3.3.3/32 [115/25] via 20.20.20.2, xe2, 01:03:35
i L1 4.4.4.4/32 [115/45] via 20.20.20.2, xe2, 01:01:55
i L1 5.5.5.5/32 [115/35] via 20.20.20.2, xe2, 01:02:45
C 10.10.10.0/24 is directly connected, xe1, 01:13:04
C 10.12.49.0/24 is directly connected, xe0, 01:17:43
C 20.20.20.0/24 is directly connected, xe2, 01:13:04
C 30.30.30.0/24 is directly connected, xe3, 01:13:04
i L1 40.40.40.0/24 [115/30] via 10.10.10.2, xe1, 01:02:45
i L1 50.50.50.0/24 [115/25] via 20.20.20.2, xe2, 01:02:45
i L1 60.60.60.0/24 [115/35] via 20.20.20.2, xe2, 01:02:45
C 127.0.0.0/8 is directly connected, lo, 03:48:54
 
PE1#show ip route summary
 
-----------------------------------------------
IP routing table name is Default-IP-Routing-Table(0)
-----------------------------------------------
IP routing table maximum-paths : 8
Total number of IPv4 routes : 14
Total number of IPv4 paths : 14
Pending routes (due to route max reached): 0
Route Source Networks
kernel 1
connected 6
isis 7
Total 14
FIB 14
 
ECMP statistics (active in ASIC):
Total number of IPv4 ECMP routes : 0
Total number of IPv4 ECMP paths : 0
 
LFA Non ECMP statistics
--------------
Total number of Routes : 1
Total number of Primary Paths : 1
Total number of Backup Paths : 1
 
PE1#show ip interface brief
 
'*' - address is assigned by dhcp client
 
Interface IP-Address Admin-Status Link-Status
xe0 *10.12.49.172 up up
xe1 unassigned up up
xe1 10.10.10.1 up up
xe3 unassigned up up
xe4 unassigned up up
xe5 unassigned up up
xe6 unassigned up up
xe7 unassigned up up
xe8 unassigned up up
xe9 unassigned up up
xe10 unassigned up up
xe11 unassigned up up
xe2 20.20.20.1 up up
xe3 30.30.30.1 up up
lo 127.0.0.1 up up
 
PE1#show ip isis route fast-reroute
 
Tag : 1 VRF : default
Codes : L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area,
D - discard, LP - Link Protecting, NP - Node Protecting,
BP - Broadcast Interface Disjoint, Pri - Primary Path,
Sec - Secondary Path, DP - Downstream Path
 
L1 40.40.40.0/24
Primary Path via : 10.10.10.2, xe1
FRR Backup Path via : 30.30.30.2, xe3
FRR Metric : 80
Protection Provided : LP NP BP DP
 
PE1#show ldp routes
Prefix Addr Nexthop Addr Intf Backup Addr Backup Intf Owner
0.0.0.0/0 10.12.49.1 xe0 - - kernel
1.1.1.1/32 0.0.0.0 lo - - connected
2.2.2.2/32 10.10.10.2 xe1 - - isis
3.3.3.3/32 20.20.20.2 xe2 - - isis
4.4.4.4/32 20.20.20.2 xe2 - - isis
5.5.5.5/32 20.20.20.2 xe2 - - isis
10.10.10.0/24 0.0.0.0 xe1 - - connected
10.12.49.0/24 0.0.0.0 xe0 - - connected
20.20.20.0/24 0.0.0.0 xe2 - - connected
30.30.30.0/24 0.0.0.0 xe3 - - connected
40.40.40.0/24 10.10.10.2 xe1 30.30.30.2 xe3 isis
50.50.50.0/24 20.20.20.2 xe2 - - isis
60.60.60.0/24 20.20.20.2 xe2 - - isis
 
PE1#show ldp fec
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
P - Primary route, B - LFA Backup route,
R - Remote LFA Backup route,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
1.1.1.1/32 E > non-existent none No connected
2.2.2.2/32 NL 4.4.4.4 25608 No no nexthop
NL 3.3.3.3 25608 No no nexthop
NLP> 2.2.2.2 impl-null No 10.10.10.2
3.3.3.3/32 NL 2.2.2.2 25608 No no nexthop
NL 4.4.4.4 25609 No no nexthop
NLP> 3.3.3.3 impl-null No 20.20.20.2
4.4.4.4/32 NL 2.2.2.2 25609 No no nexthop
NLP> 3.3.3.3 25609 No 20.20.20.2
NL 4.4.4.4 impl-null No no nexthop
5.5.5.5/32 NL 4.4.4.4 25610 No no nexthop
NLP> 3.3.3.3 25610 No 20.20.20.2
NL 2.2.2.2 25600 No no nexthop
10.10.10.0/24 NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
10.12.49.0/24 NL 3.3.3.3 impl-null No connected
NL 4.4.4.4 impl-null No connected
NL 2.2.2.2 impl-null No connected
E > non-existent none No connected
20.20.20.0/24 NL 3.3.3.3 impl-null No connected
E > non-existent none No connected
30.30.30.0/24 NL 2.2.2.2 25610 No connected
NL 3.3.3.3 25611 No connected
NL 4.4.4.4 impl-null No connected
E > non-existent none No connected
40.40.40.0/24 NLB> 4.4.4.4 25611 No 30.30.30.2
NL 3.3.3.3 25612 No no nexthop
NLP> 2.2.2.2 impl-null No 10.10.10.2
50.50.50.0/24 NL 2.2.2.2 25611 No no nexthop
NL 4.4.4.4 25612 No no nexthop
NLP> 3.3.3.3 impl-null No 20.20.20.2
60.60.60.0/24 NL 2.2.2.2 25612 No no nexthop
NLP> 3.3.3.3 25613 No 20.20.20.2
NL 4.4.4.4 impl-null No no nexthop
PE1#show ldp downstream
Codes: P - Primary route, B - Backup route
Session peer 5.5.5.5:
FEC Nexthop Addr State Label Req.ID Attr Code
Codes: P - Primary route, B - Backup route
Session peer 2.2.2.2:
FEC Nexthop Addr State Label Req.ID Attr Code
60.60.60.0/24 connected Established 25612 0
50.50.50.0/24 connected Established 25611 0
30.30.30.0/24 connected Established 25610 0
4.4.4.4/32 connected Established 25609 0
3.3.3.3/32 connected Established 25608 0
5.5.5.5/32 connected Established 25600 0
40.40.40.0/24 10.10.10.2 Established impl-null 0 P
10.12.49.0/24 connected Established impl-null 0
10.10.10.0/24 connected Established impl-null 0
2.2.2.2/32 10.10.10.2 Established impl-null 0 P
Codes: P - Primary route, B - Backup route
Session peer 3.3.3.3:
FEC Nexthop Addr State Label Req.ID Attr Code
40.40.40.0/24 connected Established 25612 0
30.30.30.0/24 connected Established 25611 0
4.4.4.4/32 20.20.20.2 Established 25609 0 P
2.2.2.2/32 connected Established 25608 0
60.60.60.0/24 20.20.20.2 Established 25613 0 P
5.5.5.5/32 20.20.20.2 Established 25610 0 P
50.50.50.0/24 20.20.20.2 Established impl-null 0 P
20.20.20.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
3.3.3.3/32 20.20.20.2 Established impl-null 0 P
Codes: P - Primary route, B - Backup route
Session peer 4.4.4.4:
FEC Nexthop Addr State Label Req.ID Attr Code
50.50.50.0/24 connected Established 25612 0
40.40.40.0/24 connected Established 25611 0
40.40.40.0/24 30.30.30.2 Established 25611 0 B
5.5.5.5/32 connected Established 25610 0
3.3.3.3/32 connected Established 25609 0
2.2.2.2/32 connected Established 25608 0
60.60.60.0/24 connected Established impl-null 0
30.30.30.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
4.4.4.4/32 connected Established impl-null 0
PE1#show ldp lsp
DOWNSTREAM LSP :
FEC Nexthop Addr State Label Req.ID Attr Code
1.1.1.1/32 connected Established none 0 None
2.2.2.2/32 connected Established 25608 0
2.2.2.2/32 connected Established 25608 0
2.2.2.2/32 10.10.10.2 Established impl-null 0 P
3.3.3.3/32 connected Established 25608 0
3.3.3.3/32 connected Established 25609 0
3.3.3.3/32 20.20.20.2 Established impl-null 0 P
4.4.4.4/32 connected Established 25609 0
4.4.4.4/32 20.20.20.2 Established 25609 0 P
4.4.4.4/32 connected Established impl-null 0
5.5.5.5/32 connected Established 25610 0
5.5.5.5/32 20.20.20.2 Established 25610 0 P
5.5.5.5/32 connected Established 25600 0
10.10.10.0/24 connected Established impl-null 0
10.10.10.0/24 connected Established none 0 None
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established impl-null 0
10.12.49.0/24 connected Established none 0 None
20.20.20.0/24 connected Established impl-null 0
20.20.20.0/24 connected Established none 0 None
30.30.30.0/24 connected Established 25610 0
30.30.30.0/24 connected Established 25611 0
30.30.30.0/24 connected Established impl-null 0
30.30.30.0/24 connected Established none 0 None
40.40.40.0/24 connected Established 25611 0
40.40.40.0/24 30.30.30.2 Established 25611 0 B
40.40.40.0/24 connected Established 25612 0
40.40.40.0/24 10.10.10.2 Established impl-null 0 P
50.50.50.0/24 connected Established 25611 0
50.50.50.0/24 connected Established 25612 0
50.50.50.0/24 20.20.20.2 Established impl-null 0 P
60.60.60.0/24 connected Established 25612 0
60.60.60.0/24 20.20.20.2 Established 25613 0 P
60.60.60.0/24 connected Established impl-null 0
 
UPSTREAM LSP :
FEC State Label Req.ID Attr
1.1.1.1/32 Established impl-null 0 None
1.1.1.1/32 Established impl-null 0 None
1.1.1.1/32 Established impl-null 0 None
2.2.2.2/32 Established 25608 0 None
2.2.2.2/32 Established 25604 0 None
2.2.2.2/32 Established 25604 0 None
2.2.2.2/32 Established 25608 0 None
3.3.3.3/32 Established 25605 0 None
3.3.3.3/32 Established 25600 0 None
3.3.3.3/32 Established 25605 0 None
3.3.3.3/32 Established 25600 0 None
4.4.4.4/32 Established 25603 0 None
4.4.4.4/32 Established 25602 0 None
4.4.4.4/32 Established 25603 0 None
4.4.4.4/32 Established 25602 0 None
5.5.5.5/32 Established 25614 0 None
5.5.5.5/32 Established 25614 0 None
5.5.5.5/32 Established 25615 0 None
5.5.5.5/32 Established 25615 0 None
10.10.10.0/24 Established impl-null 0 None
10.10.10.0/24 Established impl-null 0 None
10.10.10.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
10.12.49.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
20.20.20.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
30.30.30.0/24 Established impl-null 0 None
40.40.40.0/24 Established 25610 0 None
40.40.40.0/24 Established 25606 0 None
40.40.40.0/24 Established 25606 0 None
40.40.40.0/24 Established 25610 0 None
50.50.50.0/24 Established 25607 0 None
50.50.50.0/24 Established 25601 0 None
50.50.50.0/24 Established 25607 0 None
50.50.50.0/24 Established 25601 0 None
60.60.60.0/24 Established 25616 0 None
60.60.60.0/24 Established 25616 0 None
60.60.60.0/24 Established 25617 0 None
60.60.60.0/24 Established 25617 0 None
 
PE1#show mpls forwarding-table
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 2.2.2.2/32 1 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
L> 3.3.3.3/32 5 3 - Yes LSP_DEFAULT 3 xe2 No 20.20.20.2
L> 4.4.4.4/32 3 7 - Yes LSP_DEFAULT 25609 xe2 No 20.20.20.2
L> 5.5.5.5/32 7 5 - Yes LSP_DEFAULT 25610 xe2 No 20.20.20.2
L> 40.40.40.0/24 2 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
15 - No LSP_DEFAULT 25611 xe3 No 30.30.30.2
L> 50.50.50.0/24 6 3 - Yes LSP_DEFAULT 3 xe2 No 20.20.20.2
L> 60.60.60.0/24 4 6 - Yes LSP_DEFAULT 25613 xe2 No 20.20.20.2
 
PE1#show mpls forwarding-table 5.5.5.5/32
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 5.5.5.5/32 7 5 - Yes LSP_DEFAULT 25610 xe2 No 20.20.20.2
PE1#show mpls ftn-table
Primary FTN entry with FEC: 2.2.2.2/32, id: 1, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 3.3.3.3/32, id: 5, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 4, op code: Push
 
 
Primary FTN entry with FEC: 4.4.4.4/32, id: 3, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:368, pkts:4, TX bytes:368, Pushed pkts:4
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 7
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 7, owner: LDP, Stale: NO, out intf: xe2, out label: 25609
Nexthop addr: 20.20.20.2 cross connect ix: 2, op code: Push
 
 
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:339, pkts:4, TX bytes:355, Pushed pkts:4
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe2, out label: 25610
Nexthop addr: 20.20.20.2 cross connect ix: 5, op code: Push
 
 
Primary FTN entry with FEC: 40.40.40.0/24, id: 2, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
Backup Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 15
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 15, owner: LDP, Stale: NO, out intf: xe3, out label: 25611
Nexthop addr: 30.30.30.2 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 50.50.50.0/24, id: 6, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 4, op code: Push
 
 
Primary FTN entry with FEC: 60.60.60.0/24, id: 4, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 6, in intf: - in label: 0 out-segment ix: 6
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 6, owner: LDP, Stale: NO, out intf: xe2, out label: 25613
Nexthop addr: 20.20.20.2 cross connect ix: 6, op code: Push
 
 
PE1#show mpls ftn-table 5.5.5.5/32
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:339, pkts:4, TX bytes:355, Pushed pkts:4
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe2, out label: 25610
Nexthop addr: 20.20.20.2 cross connect ix: 5, op code: Push
 
 
PE1#show ldp fec prefix 5.5.5.5/32
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
P - Primary route, B - LFA Backup route,
R - Remote LFA Backup route,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
5.5.5.5/32 NL 4.4.4.4 25610 No no nexthop
NLP> 3.3.3.3 25610 No 20.20.20.2
NL 2.2.2.2 25600 No no nexthop
PE1#show ip route fast-reroute
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area ,p - stale info, E - EVPN
* - candidate default
 
IP Route Table for VRF "default"
i L1 40.40.40.0/24 [115/30] via 10.10.10.2, xe1, 01:04:31
[FRR-NH] via 30.30.30.2, xe3
 
PE1#show ip isis route fast-reroute
 
Tag : 1 VRF : default
Codes : L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area,
D - discard, LP - Link Protecting, NP - Node Protecting,
BP - Broadcast Interface Disjoint, Pri - Primary Path,
Sec - Secondary Path, DP - Downstream Path
 
L1 40.40.40.0/24
Primary Path via : 10.10.10.2, xe1
FRR Backup Path via : 30.30.30.2, xe3
FRR Metric : 80
Protection Provided : LP NP BP DP
 
PE1#show ldp routes
Prefix Addr Nexthop Addr Intf Backup Addr Backup Intf Owner
0.0.0.0/0 10.12.49.1 xe0 - - kernel
1.1.1.1/32 0.0.0.0 lo - - connected
2.2.2.2/32 10.10.10.2 xe1 - - isis
3.3.3.3/32 20.20.20.2 xe2 - - isis
4.4.4.4/32 20.20.20.2 xe2 - - isis
5.5.5.5/32 20.20.20.2 xe2 - - isis
10.10.10.0/24 0.0.0.0 xe1 - - connected
10.12.49.0/24 0.0.0.0 xe0 - - connected
20.20.20.0/24 0.0.0.0 xe2 - - connected
30.30.30.0/24 0.0.0.0 xe3 - - connected
40.40.40.0/24 10.10.10.2 xe1 30.30.30.2 xe3 isis
50.50.50.0/24 20.20.20.2 xe2 - - isis
60.60.60.0/24 20.20.20.2 xe2 - - isis
 
PE1#show mpls forwarding-table
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 2.2.2.2/32 1 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
L> 3.3.3.3/32 5 3 - Yes LSP_DEFAULT 3 xe2 No 20.20.20.2
L> 4.4.4.4/32 3 7 - Yes LSP_DEFAULT 25609 xe2 No 20.20.20.2
L> 5.5.5.5/32 7 5 - Yes LSP_DEFAULT 25610 xe2 No 20.20.20.2
L> 40.40.40.0/24 2 1 - Yes LSP_DEFAULT 3 xe1 No 10.10.10.2
15 - No LSP_DEFAULT 25611 xe3 No 30.30.30.2
L> 50.50.50.0/24 6 3 - Yes LSP_DEFAULT 3 xe2 No 20.20.20.2
L> 60.60.60.0/24 4 6 - Yes LSP_DEFAULT 25613 xe2 No 20.20.20.2
 
PE1#show mpls forwarding-table 5.5.5.5/32
Codes: > - installed FTN, * - selected FTN, p - stale FTN, ! - using backup
B - BGP FTN, K - CLI FTN, t - tunnel, P - SR Policy FTN,
L - LDP FTN, R - RSVP-TE FTN, S - SNMP FTN, I - IGP-Shortcut,
U - unknown FTN, O - SR-OSPF FTN, i - SR-ISIS FTN, k - SR-CLI FTN
 
Code FEC FTN-ID Nhlfe-ID Tunnel-id Pri LSP-Type Out-Label Out-Intf ELC Nexthop
L> 5.5.5.5/32 7 5 - Yes LSP_DEFAULT 25610 xe2 No 20.20.20.2
PE1#show mpls ftn-table
Primary FTN entry with FEC: 2.2.2.2/32, id: 1, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 3.3.3.3/32, id: 5, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 4, op code: Push
 
 
Primary FTN entry with FEC: 4.4.4.4/32, id: 3, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:368, pkts:4, TX bytes:368, Pushed pkts:4
Cross connect ix: 2, in intf: - in label: 0 out-segment ix: 7
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 7, owner: LDP, Stale: NO, out intf: xe2, out label: 25609
Nexthop addr: 20.20.20.2 cross connect ix: 2, op code: Push
 
 
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:339, pkts:4, TX bytes:355, Pushed pkts:4
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe2, out label: 25610
Nexthop addr: 20.20.20.2 cross connect ix: 5, op code: Push
 
 
Primary FTN entry with FEC: 40.40.40.0/24, id: 2, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 1
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 1, owner: N/A, Stale: NO, out intf: xe1, out label: 3
Nexthop addr: 10.10.10.2 cross connect ix: 1, op code: Push
 
Backup Cross connect ix: 1, in intf: - in label: 0 out-segment ix: 15
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 15, owner: LDP, Stale: NO, out intf: xe3, out label: 25611
Nexthop addr: 30.30.30.2 cross connect ix: 1, op code: Push
 
 
Primary FTN entry with FEC: 50.50.50.0/24, id: 6, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: N/A, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: N/A, Stale: NO, out intf: xe2, out label: 3
Nexthop addr: 20.20.20.2 cross connect ix: 4, op code: Push
 
 
Primary FTN entry with FEC: 60.60.60.0/24, id: 4, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Cross connect ix: 6, in intf: - in label: 0 out-segment ix: 6
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 6, owner: LDP, Stale: NO, out intf: xe2, out label: 25613
Nexthop addr: 20.20.20.2 cross connect ix: 6, op code: Push
 
PE1#show mpls ftn-table 5.5.5.5/32
Primary FTN entry with FEC: 5.5.5.5/32, id: 7, row status: Active, Tunnel-Policy: N/A
Owner: LDP, distance: 0, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A, , Color: 0
Matched bytes:339, pkts:4, TX bytes:355, Pushed pkts:4
Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 5, owner: LDP, Stale: NO, out intf: xe2, out label: 25610
Nexthop addr: 20.20.20.2 cross connect ix: 5, op code: Push
 
 
PE1#show ldp fec prefix 5.5.5.5/32
LSR codes : E/N - LSR is egress/non-egress for this FEC,
L - LSR received a label for this FEC,
P - Primary route, B - LFA Backup route,
R - Remote LFA Backup route,
> - LSR will use this route for the FEC
FEC Code Session Out Label ELC Nexthop Addr
5.5.5.5/32 NL 4.4.4.4 25610 No no nexthop
NLP> 3.3.3.3 25610 No 20.20.20.2
NL 2.2.2.2 25600 No