BGP Labeled Unicast with Seamless MPLS
Topology
Figure 10-104: BGP_LU with MPLS
Configuration
PE1
#configure terminal | Enter the Configure mode. |
(config)#interface lo | Enter interface mode |
(config-if)#ip address 1.1.1.54/32 secondary | Configure the IP address of the interface loopback |
(config-if)#exit | Exit interface mode |
(config)#interface eth1 | Enter interface mode |
(config-if)#ip address 10.1.1.54/24 | Configure the IP address of the interface eth1 |
(config-if)#label-switching | Enable label-switching on interface eth1 |
(config-if)# enable-ldp ipv4 | Enable LDP process on eth1 interface |
(config-if)#exit | Exit interface mode. |
(config)#router ospf 10 | Configure the routing process OSPF with process id 10 |
(config-router)#network 1.1.1.54/32 area 0 | Define the interface (1.1.1.54/32) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#network 10.1.1.0/24 area 0 | Define the interface (10.1.1.0/24) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#exit | Exit from router ospf mode |
(config)#router bgp 100 | Enter Router BGP mode |
(config-router)#neighbor 7.7.7.55 remote- as 100 | Add loopback ip of PE2 as neighbor with neighbor AS |
(config-router)#neighbor 7.7.7.55 update- source lo | Update the source for that particular neighbor as loopback interface |
(config-router)#neighbor 3.3.3.52 remote- as 100 | Add loopback ip of ABR1 as neighbor with neighbor AS |
(config-router)#neighbor 3.3.3.52 update- source lo | Update the source for that particular neighbor as loopback interface |
(config-router)#allocate-label all | Allocate labels |
(config-router)#address-family ipv4 labeled- unicast | Enter into labeled-unicast address family |
(config-router-af)#neighbor 3.3.3.52 activate | Activate the neighbor inside labeled-unicast address family |
(config-router-af)#exit-address-family | Exit from address family IPv4 labeled unicast |
(config-router)#address-family vpnv4 unicast | Enter into vpnv4 unicast address family |
(config-router-af)#neighbor 7.7.7.55 activate | Activate the neighbor inside vpnv4 address family |
(config-router)#address-family ipv4 labeled- unicast | Enter into labeled-unicast address family |
(config-router)#address-family ipv4 unicast | Enter into ipv4 unicast address family |
(config-router-af)#network 1.1.1.54/32 | Advertise the loopback of RTR1 in BGP |
(config-router-af)#exit-address-family | Exit from address family |
(config-router)#exit | Exit from router BGP mode |
(config)# router ldp | Configure Router LDP instance |
(config-router)# transport-address ipv4 1.1.1.54 0 | Configure Transport address for LDP with label space value 0 |
(config-router)#exit | Exit from router mode |
(config)# ip vrf vrf1 | Specify the name of the VRF (vrf1) to be created. |
(config-vrf)#rd 10:100 | Assign a route distinguisher (RD) for the VRF, which is a unique value on the router. The RD value can be in ASN:NN or A.B.C.D:NN format. |
(config-vrf)#route-target both 100:300 | Specify the 2-Octet AS specific or IPv4 specific Transitive Route-Target extended community attribute. |
(config-vrf)#exit | Exit VRF mode, and return to Configure mode. |
(config)#interface eth2 | Enter interface mode |
(config-if)# ip vrf forwarding vrf1 | Bind the interface (eth2) to the VRF vrf1 |
(config-if)# ip address 61.1.1.54/24 | Configure the IP address of the interface eth2 |
(config-if)#exit | Exit interface mode. |
(config)#router bgp 100 | Enter Router BGP mode |
(config-router)# address-family ipv4 vrf vrf1 | Enter address family ipv4 vrf mode |
(config-router-af)# redistribute connected | Redistribute connected routes |
(config-router-af)#end | Exit from router mode into privilege mode |
P1
#configure terminal | Enter the Configure mode. |
(config)#interface lo | Enter interface mode |
(config-if)#ip address 2.2.2.23/32 | Configure the IP address of the interface loopback |
(config-if)#exit | Exit interface mode |
(config)#interface eth1 | Enter interface mode |
(config-if)#ip address 10.1.1.23/24 | Configure the IP address of the interface eth1 |
(config-if)#label-switching | Enable label-switching on interface eth1 |
(config-if)# enable-ldp ipv4 | Enable LDP process on eth1 interface |
(config-if)#exit | Exit interface mode. |
(config)#interface eth2 | Enter interface mode |
(config-if)#ip address 20.1.1.23/24 | Configure the IP address of the interface eth2 |
(config-if)#label-switching | Enable label-switching on interface eth2 |
(config-if)# enable-ldp ipv4 | Enable LDP process on eth2 interface |
(config-if)#exit | Exit interface mode. |
(config)#router ospf 10 | Configure the routing process OSPF with process id 10 |
(config-router)#network 20.1.1.0/24 area 0 | Define the interface (20.1.1.0/24)) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#network 10.1.1.0/24 area 0 | Define the interface (10.1.1.0/24) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#network 2.2.2.23/32 area 0 | Define the interface (2.2.2.23/32) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#exit | Exit from router ospf mode |
(config)# router ldp | Configure Router LDP instance |
(config-router)# transport-address ipv4 2.2.2.23 0 | Configure Transport address for LDP with label space value 0 |
(config-router)#exit | Exit from router mode |
(config)# ip route 7.7.7.55/32 20.1.1.52 | Specify the destination prefix and mask for the network and a gateway. |
(config)# end | Exit from config mode |
ABR1
#configure terminal | Enter the Configure mode. |
(config)#interface lo | Enter interface mode |
(config-if)#ip address 3.3.3.52/32 | Configure the IP address of the interface loopback |
(config-if)#exit | Exit interface mode |
(config)#interface eth1 | Enter interface mode |
(config-if)#ip address 30.1.1.52/24 | Configure the IP address of the interface eth1 |
(config-if)#label-switching | Enable label-switching on interface eth1 |
(config-if)# enable-ldp ipv4 | Enable LDP process on eth1 interface |
(config-if)#exit | Exit interface mode. |
(config)#interface eth2 | Enter interface mode |
(config-if)#ip address 20.1.1.52/24 | Configure the IP address of the interface eth2 |
(config-if)#label-switching | Enable label-switching on interface eth2 |
(config-if)# enable-ldp ipv4 | Enable LDP process on eth2 interface |
(config-if)#exit | Exit interface mode. |
(config)#router ospf 20 | Configure the routing process OSPF with process id 20 |
(config-router)#network 3.3.3.52/32 area 0 | Define the interface (3.3.3.52/32) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#network 20.1.1.0/24 area 0 | Define the interface (20.1.1.0/24) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#exit | Exit from router ospf mode |
(config)# router ldp | Configure Router LDP instance |
(config-router)# transport-address ipv4 3.3.3.52 0 | Configure Transport address for LDP with label space value 0 |
(config-router)#exit | Exit from router mode |
(config)#router bgp 100 | Enter Router BGP mode |
(config-router)#neighbor 1.1.1.54 remote- as 100 | Add loopback ip of PE2 as neighbor with neighbor AS |
(config-router)#neighbor 1.1.1.54 update- source lo | Update the source for that particular neighbor as loopback interface |
(config-router)#neighbor 5.5.5.56 remote- as 100 | Add loopback ip of ABR1 as neighbor with neighbor AS |
(config-router)#neighbor 5.5.5.56 update- source lo | Update the source for that particular neighbor as loopback interface |
(config-router)#allocate-label all | Allocate labels |
(config-router)#address-family ipv4 labeled- unicast | Enter into labeled-unicast address family |
(config-router-af)#neighbor 1.1.1.54 activate | Activate the neighbor inside labeled-unicast address family |
(config-router-af)#neighbor 5.5.5.56 activate | Activate the neighbor inside labeled-unicast address family |
(config-router-af)# neighbor 1.1.1.54 route-reflector-client | Enable Route reflector client for the neighbor inside address family IPv4 labeled unicast |
(config-router-af)# neighbor 5.5.5.56 route-reflector-client | Enable Route reflector client for the neighbor inside address family IPv4 labeled unicast |
(config-router-af)# neighbor 1.1.1.54 next-hop-self | Enable next hop self for the particular neighbor inside address family IPv4 labeled unicast |
(config-router-af)# neighbor 5.5.5.56 next-hop-self | Enable next hop self for the particular neighbor inside address family IPv4 labeled unicast |
(config-router-af)#exit-address-family | Exit from address family labeled-unicast |
(config-router)#exit | Exit from router BGP mode |
P2
#configure terminal | Enter the Configure mode. |
(config)#interface lo | Enter interface mode |
(config-if)#ip address 4.4.4.53/32 | Configure the IP address of the interface loopback |
(config-if)#exit | Exit interface mode |
(config)#interface eth1 | Enter interface mode |
(config-if)#ip address 30.1.1.53/24 | Configure the IP address of the interface eth1 |
(config-if)#label-switching | Enable label-switching on interface eth1 |
(config-if)# enable-ldp ipv4 | Enable LDP process on eth1 interface |
(config-if)#exit | Exit interface mode. |
(config)#interface eth2 | Enter interface mode |
(config-if)#ip address 40.1.1.53/24 | Configure the IP address of the interface eth2 |
(config-if)#label-switching | Enable label-switching on interface eth2 |
(config-if)# enable-ldp ipv4 | Enable LDP process on eth2 interface |
(config-if)#exit | Exit interface mode |
(config)#router ospf 20 | Configure the routing process OSPF with process id 20 |
(config-router)#network 30.1.1.0/24 area 0 | Define the interface (30.1.1.0/24) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#network 40.1.1.0/24 area 0 | Define the interface (40.1.1.0/24) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#network 4.4.4.53/32 area 0 | Define the interface (4.4.4.53/32) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#exit | Exit from router ospf mode |
(config)# router ldp | Configure Router LDP instance |
(config-router)# transport-address ipv4 4.4.4.53 0 | Configure Transport address for LDP with label space value 0 |
(config-router)#exit | Exit from router mode |
ABR2
#configure terminal | Enter the Configure mode. |
(config)#interface lo | Enter interface mode |
(config-if)#ip address 5.5.5.56/32 | Configure the IP address of the interface loopback |
(config-if)#exit | Exit interface mode |
(config)#interface eth1 | Enter interface mode |
(config-if)#ip address 50.1.1.56/24 | Configure the IP address of the interface eth1 |
(config-if)#label-switching | Enable label-switching on interface eth1 |
(config-if)# enable-ldp ipv4 | Enable LDP process on eth1 interface |
(config-if)#exit | Exit interface mode. |
(config)#interface eth2 | Enter interface mode |
(config-if)#ip address 40.1.1.56/24 | Configure the IP address of the interface eth2 |
(config-if)#label-switching | Enable label-switching on interface eth2 |
(config-if)# enable-ldp ipv4 | Enable LDP process on eth2 interface |
(config-if)#exit | Exit interface mode. |
(config)#router ospf 30 | Configure the routing process OSPF with process id 20 |
(config-router)#network 5.5.5.56/32 area 0 | Define the interface 5.5.5.56/32) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#network 50.1.1.0/24 area 0 | Define the interface (50.1.1.0/24) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#exit | Exit from router ospf mode |
(config)#router ospf 20 | Configure the routing process OSPF with process id 20 |
(config-router)#network 5.5.5.56/32 area 0 | Define the interface 5.5.5.56/32) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#network 40.1.1.0/24 area 0 | Define the interface (40.1.1.0/24) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#exit | Exit from router ospf mode |
(config)# router ldp | Configure Router LDP instance |
(config-router)# transport-address ipv4 3.3.3.52 0 | Configure Transport address for LDP with label space value 0 |
(config-router)#exit | Exit from router mode |
(config)#router bgp 100 | Enter Router BGP mode |
(config-router)#neighbor 3.3.3.52 remote- as 100 | Add loopback ip of PE2 as neighbor with neighbor AS |
(config-router)#neighbor 3.3.3.52 update- source lo | Update the source for that particular neighbor as loopback interface |
(config-router)#neighbor 7.7.7.55 remote- as 100 | Add loopback ip of ABR1 as neighbor with neighbor AS |
(config-router)#neighbor 7.7.7.55 update- source lo | Update the source for that particular neighbor as loopback interface |
(config-router)#address-family ipv4 labeled- unicast | Enter into labeled-unicast address family |
(config-router-af)#neighbor 3.3.3.52 activate | Activate the neighbor inside labeled-unicast address family |
(config-router-af)#neighbor 7.7.7.55 activate | Activate the neighbor inside labeled-unicast address family |
(config-router-af)# neighbor 3.3.3.52 route-reflector-client | Enable Route reflector client for the neighbor inside address family IPv4 labeled unicast |
(config-router-af)# neighbor 7.7.7.55 route-reflector-client | Enable Route reflector client for the neighbor inside address family IPv4 labeled unicast |
(config-router-af)# neighbor 3.3.3.52 next-hop-self | Enable next hop self for the particular neighbor inside address family IPv4 labeled unicast |
(config-router-af)# neighbor 7.7.7.55 next-hop-self | Enable next hop self for the particular neighbor inside address family IPv4 labeled unicast |
(config-router-af)#exit-address-family | Exit from address family labeled-unicast |
(config-router)#exit | Exit from router BGP mode |
P3
#configure terminal | Enter the Configure mode. |
(config)#interface lo | Enter interface mode |
(config-if)#ip address 6.6.6.22/32 | Configure the IP address of the interface loopback |
(config-if)#exit | Exit interface mode |
(config)#interface eth1 | Enter interface mode |
(config-if)#ip address 50.1.1.22/24 | Configure the IP address of the interface eth1 |
(config-if)#label-switching | Enable label-switching on interface eth1 |
(config-if)# enable-ldp ipv4 | Enable LDP process on eth1 interface |
(config-if)#exit | Exit interface mode. |
(config)#interface eth2 | Enter interface mode |
(config-if)#ip address 60.1.1.22/24 | Configure the IP address of the interface eth2 |
(config-if)#label-switching | Enable label-switching on interface eth2 |
(config-if)# enable-ldp ipv4 | Enable LDP process on eth2 interface |
(config-if)#exit | Exit interface mode |
(config)#router ospf 30 | Configure the routing process OSPF with process id 20 |
(config-router)#network 50.1.1.0/24 area 0 | Define the interface (30.1.1.0/24) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#network 60.1.1.0/24 area 0 | Define the interface (40.1.1.0/24) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#network 6.6.6.22/32 area 0 | Define the interface (4.4.4.53/32) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#exit | Exit from router ospf mode |
(config)# router ldp | Configure Router LDP instance |
(config-router)# transport-address ipv4 6.6.6.22 0 | Configure Transport address for LDP with label space value 0 |
(config-router)#exit | Exit from router mode |
(config)# ip route 1.1.1.54/32 50.1.1.56 | Specify the destination prefix and mask for the network and a gateway. |
(config)#exit | Exit from config mode |
PE2
#configure terminal | Enter the Configure mode. |
(config)#interface lo | Enter interface mode |
(config-if)#ip address 7.7.7.55/32 secondary | Configure the IP address of the interface loopback |
(config-if)#exit | Exit interface mode |
(config)#interface eth2 | Enter interface mode |
(config-if)#ip address 60.1.1.55/24 | Configure the IP address of the interface eth1 |
(config-if)#label-switching | Enable label-switching on interface eth1 |
(config-if)# enable-ldp ipv4 | Enable LDP process on eth1 interface |
(config-if)#exit | Exit interface mode. |
(config)#router ospf 30 | Configure the routing process OSPF with process id 10 |
(config-router)#network 7.7.7.55/32 area 0 | Define the interface (7.7.7.55/32) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#network 60.1.1.0/24 area 0 | Define the interface (60.1.1.0/24) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area). |
(config-router)#exit | Exit from router ospf mode |
(config)#router bgp 100 | Enter Router BGP mode |
(config-router)#neighbor 1.1.1.54 remote- as 100 | Add loopback ip of PE2 as neighbor with neighbor AS |
(config-router)#neighbor 1.1.1.54 update- source lo | Update the source for that particular neighbor as loopback interface |
(config-router)#neighbor 5.5.5.56 remote- as 100 | Add loopback ip of ABR1 as neighbor with neighbor AS |
(config-router)#neighbor 5.5.5.56 update- source lo | Update the source for that particular neighbor as loopback interface |
(config-router)#allocate-label all | Allocate labels |
(config-router)#address-family ipv4 labeled- unicast | Enter into labeled-unicast address family |
(config-router-af)#neighbor 5.5.5.56 activate | Activate the neighbor inside labeled-unicast address family |
(config-router-af)#exit-address-family | Exit from address family IPv4 labeled unicast |
(config-router)#address-family vpnv4 unicast | Enter into vpnv4 unicast address family |
(config-router-af)#neighbor 1.1.1.54 activate | Activate the neighbor inside vpnv4 address family |
(config-router-af)#exit-address-family | Exit from address family vpnv4 |
(config-router)#address-family ipv4 unicast | Enter into ipv4 unicast address family |
(config-router-af)#network 7.7.7.55/32 | Advertise the loopback of RTR1 in BGP |
(config-router-af)#exit-address-family | Exit from address family |
(config-router)#exit | Exit from router BGP mode |
(config)# router ldp | Configure Router LDP instance |
(config-router)# transport-address ipv4 7.7.7.55 0 | Configure Transport address for LDP with label space value 0 |
(config-router)#exit | Exit from router mode |
(config)# ip vrf vrf1 | Specify the name of the VRF (vrf1) to be created. |
(config-vrf)#rd 10:100 | Assign a route distinguisher (RD) for the VRF, which is a unique value on the router. The RD value can be in ASN:NN or A.B.C.D:NN format. |
(config-vrf)#route-target both 100:300 | Specify the 2-Octet AS specific or IPv4 specific Transitive Route-Target extended community attribute. |
(config-vrf)#exit | Exit VRF mode, and return to Configure mode. |
(config)#interface eth2 | Enter interface mode |
(config-if)# ip vrf forwarding vrf1 | Bind the interface (eth2) to the VRF vrf1 |
(config-if)# ip address 62.1.1.55/24 | Configure the IP address of the interface eth2 |
(config-if)#exit | Exit interface mode. |
(config)#router bgp 100 | Enter Router BGP mode |
(config-router)# address-family ipv4 vrf vrf1 | Enter address family ipv4 vrf mode |
(config-router-af)# redistribute connected | Redistribute connected routes |
(config-router-af)#end | Exit from router mode into privilege mode |
Validation
PE1
#show ip bgp neighbors 3.3.3.52
BGP neighbor is 3.3.3.52, remote AS 100, local AS 100, internal link
BGP version 4, local router ID 1.1.1.54, remote router ID 3.3.3.52
BGP state = Established, up for 00:00:06
Last read 00:00:07, hold time is 90, keepalive interval is 30 seconds Neighbor capabilities:
Route refresh: advertised and received (old and new)
Received 4 messages, 1 notifications, 0 in queue
Sent 6 messages, 0 notifications, 0 in queue Route refresh request: received 0, sent 0
Minimum time between advertisement runs is 5 seconds Update source is lo
For address family: IPv4 Unicast
BGP table version 1, neighbor version 1 Index 0, Offset 0, Mask 0x1
Community attribute sent to this neighbor (both)
0 accepted prefixes
1 announced prefixes
For address family: IPv4 Labeled-Unicast
BGP table version 1, neighbor version 1
Index 1, Offset 0, Mask 0x2
Community attribute sent to this neighbor (both)
0 accepted prefixes
1 announced prefixes
Connections established 2; dropped 1
Local host: 1.1.1.54, Local port: 179
Foreign host: 3.3.3.52, Foreign port: 46745
Nexthop: 1.1.1.54
Nexthop global: 54::54 Nexthop local: ::
BGP connection: non shared network
Last Reset: 00:00:11, due to BGP Notification received Notification Error Message: (Cease/Other Configuration Change.)
#show ip bgp neighbors 7.7.7.55
BGP neighbor is 7.7.7.55, remote AS 100, local AS 100, internal link
BGP version 4, local router ID 1.1.1.54, remote router ID 7.7.7.55
BGP state = Established, up for 00:01:10
Last read 00:00:11, hold time is 90, keepalive interval is 30 seconds Neighbor capabilities:
Route refresh: advertised and received (old and new)
Received 8 messages, 1 notifications, 0 in queue
Sent 9 messages, 2 notifications, 0 in queue Route refresh request: received 0, sent 0
Minimum time between advertisement runs is 5 seconds Update source is lo
For address family: VPNv4 Unicast
BGP table version 3, neighbor version 3 Index 0, Offset 0, Mask 0x1
Community attribute sent to this neighbor (both)
1 accepted prefixes
1 announced prefixes
Connections established 3; dropped 2
Local host: 1.1.1.54, Local port: 179
Foreign host: 7.7.7.55, Foreign port: 58871
Nexthop: 1.1.1.54
Nexthop global: 54::54 Nexthop local: ::
BGP connection: non shared network
Last Reset: 00:01:10, due to BGP Notification sent Notification Error Message: (Cease/Administratively Reset.)
#show mpls vrf-table
Output for IPv4 VRF table with id: 2
Primary FTN entry with FEC: 62.1.1.0/24, id: 1, row status: Active
Owner: BGP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 12, in intf: - in label: 0 out-segment ix: 11 Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 11, owner: BGP, out intf: eth1, out label: 24961 Nexthop addr: 7.7.7.55 cross connect ix: 12, op code: Push and
Lookup
#show ip bgp labeled-unicast
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*> 1.1.1.54/32 0.0.0.0 24961 -
*>i 7.7.7.55/32 3.3.3.52 - 24961
#show mpls forwarding-table | include 7.7.7.55
B> 7.7.7.55/32 4 0 Yes LSP_DEFAULT 24961
eth1 3.3.3.52
#show mpls ilm-table
Codes: > - installed ILM, * - selected ILM, p - stale ILM K - CLI ILM, T - MPLS-TP, S - Stitched ILM
Code FEC ILM-ID In-Label Out-Label In-Intf Out- Intf Nexthop LSP-Type
> 1.1.1.54/32 11 24961 N/A N/A N/A
127.0.0.1 LSP_DEFAULT
> 61.1.1.0/24 13 24963 N/A N/A eth2
0.0.0.0 LSP_DEFAULT
#show mpls ftn-table
Primary FTN entry with FEC: 2.2.2.23/32, id: 1, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none Tunnel id: 0, Protected LSP id: 0, Description: N/A
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, out intf: eth1, out label: 3 Nexthop addr: 10.1.1.23 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 3.3.3.52/32, id: 2, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 2, 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, out intf: eth1, out label: 24320
Nexthop addr: 10.1.1.23 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 7.7.7.55/32, id: 4, row status: Active
Owner: BGP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3 Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: BGP, out intf: eth1, out label: 24961 Nexthop addr: 3.3.3.52 cross connect ix: 4, op code: Push and
Lookup
Primary FTN entry with FEC: 20.1.1.0/24, id: 3, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none Tunnel id: 0, Protected LSP id: 0, Description: N/A
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, out intf: eth1, out label: 3 Nexthop addr: 10.1.1.23 cross connect ix: 1, op code: Push
P1
#show ip ospf neighbor
Total number of full neighbors: 2
OSPF process 10 VRF(default):
Neighbor ID Pri State Dead Time Address Interface Instance ID
1.1.1.54 1 Full/Backup 00:00:38 10.1.1.54 eth1 0
3.3.3.52 1 Full/DR 00:00:39 20.1.1.52 eth2 0
#show ldp session
Peer IP Address IF Name My Role State KeepAlive UpTime
1.1.1.54 eth1 Active OPERATIONAL 30 00:00:21
3.3.3.52 eth2 Passive OPERATIONAL 30 00:00:15
ABR1
#show ip bgp neighbors 1.1.1.54
BGP neighbor is 1.1.1.54, remote AS 100, local AS 100, internal link BGP version 4, local router ID 3.3.3.52, remote router ID 1.1.1.54 BGP state = Established, up for 00:00:09
Last read 00:00:05, hold time is 90, keepalive interval is 30 seconds Neighbor capabilities:
Route refresh: advertised and received (old and new) Address family IPv4 Unicast: advertised and received Address family IPv4 Labeled-Unicast: advertised and received
Received 5 messages, 0 notifications, 0 in queue
Sent 4 messages, 1 notifications, 0 in queue Route refresh request: received 0, sent 0
Minimum time between advertisement runs is 5 seconds Update source is lo
For address family: IPv4 Unicast
BGP table version 1, neighbor version 1 Index 0, Offset 0, Mask 0x1
Community attribute sent to this neighbor (both)
1 accepted prefixes
0 announced prefixes
For address family: IPv4 Labeled-UnicastBGP table version 2, neighbor version 2 Index 0, Offset 0, Mask 0x1
Route-Reflector Client NEXT_HOP is always this router
Community attribute sent to this neighbor (both)
1 accepted prefixes
0 announced prefixes
Connections established 2; dropped 1
Local host: 3.3.3.52, Local port: 46745
Foreign host: 1.1.1.54, Foreign port: 179
Nexthop: 3.3.3.52
Nexthop global: 52::52 Nexthop local: ::
BGP connection: non shared network
Last Reset: 00:00:14, due to BGP Notification sent Notification Error Message: (Cease/Other Configuration Change.)
#show ip bgp neighbors 5.5.5.56
BGP neighbor is 5.5.5.56, remote AS 100, local AS 100, internal link BGP version 4, local router ID 3.3.3.52, remote router ID 5.5.5.56 BGP state = Established, up for 00:00:11
Last read 00:00:02, hold time is 90, keepalive interval is 30 seconds Neighbor capabilities:
Route refresh: advertised and received (old and new) Address family IPv4 Unicast: advertised and received Address family IPv4 Labeled-Unicast: advertised and received
Received 4 messages, 0 notifications, 0 in queue
Sent 6 messages, 2 notifications, 0 in queue Route refresh request: received 0, sent 0
Minimum time between advertisement runs is 5 seconds Update source is lo
For address family: IPv4 Unicast
BGP table version 1, neighbor version 1 Index 1, Offset 0, Mask 0x2
Community attribute sent to this neighbor (both)
1 accepted prefixes
1 announced prefixes
For address family: IPv4 Labeled-UnicastBGP table version 3, neighbor version 2 Index 1, Offset 0, Mask 0x2
Route-Reflector Client NEXT_HOP is always this router
Community attribute sent to this neighbor (both)
1 accepted prefixes
1 announced prefixes
Connections established 2; dropped 1
Local host: 3.3.3.52, Local port: 179
Foreign host: 5.5.5.56, Foreign port: 40440
Nexthop: 3.3.3.52
Nexthop global: 52::52 Nexthop local: ::
BGP connection: non shared network
Last Reset: 00:00:11, due to BGP Notification sent Notification Error Message: (Cease/Administratively Reset.)
#show ip bgp labeled-unicast
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*>i 1.1.1.54/32 1.1.1.54 24960 24961
*>i 7.7.7.55/32 5.5.5.56 24961 24961
#show mpls forwarding-table | include 1.1.1.54
L> 1.1.1.54/32 1 0 Yes LSP_DEFAULT 24321 eth2 20.1.1.23
B 1.1.1.54/32 7 0 Yes LSP_DEFAULT 24961 eth2 1.1.1.54
#show mpls forwarding-table | include 7.7.7.55
B> 7.7.7.55/32 8 0 Yes LSP_DEFAULT 24961 eth1 5.5.5.56
#show mpls ftn-table
Primary FTN entry with FEC: 1.1.1.54/32, id: 1, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 2, 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, out intf: eth2, out label: 24321
Nexthop addr: 20.1.1.23 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 1.1.1.54/32, id: 7, row status: Active
Owner: BGP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 11, in intf: - in label: 0 out-segment ix: 10
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 10, owner: BGP, out intf: eth2, out label: 24961
Nexthop addr: 1.1.1.54 cross connect ix: 11, op code: Push and Lookup
Primary FTN entry with FEC: 2.2.2.23/32, id: 2, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
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, out intf: eth2, out label: 3
Nexthop addr: 20.1.1.23 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 4.4.4.53/32, id: 4, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 7, 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, out intf: eth1, out label: 3
Nexthop addr: 30.1.1.53 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 5.5.5.56/32, id: 5, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 10, 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, out intf: eth1, out label: 24320
Nexthop addr: 30.1.1.53 cross connect ix: 10, op code: Push
Primary FTN entry with FEC: 7.7.7.55/32, id: 8, row status: Active
Owner: BGP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 12, in intf: - in label: 0 out-segment ix: 11
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 11, owner: BGP, out intf: eth1, out label: 24961
Nexthop addr: 5.5.5.56 cross connect ix: 12, op code: Push and Lookup
Primary FTN entry with FEC: 10.1.1.0/24, id: 3, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
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, out intf: eth2, out label: 3
Nexthop addr: 20.1.1.23 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 40.1.1.0/24, id: 6, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 7, 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, out intf: eth1, out label: 3
Nexthop addr: 30.1.1.53 cross connect ix: 7, op code: Push
P2
#show ip ospf neighbor
Total number of full neighbors: 2 OSPF process 20 VRF(default):
Neighbor ID Pri State Dead Time Address Interface Instance ID
3.3.3.52 1 Full/Backup 00:00:39 30.1.1.52 eth1
0
5.5.5.56 1 Full/DR 00:00:40 40.1.1.56 eth2
0
#show ldp session
Peer IP Address IF Name My Role State KeepAlive UpTime
3.3.3.52 eth1 Active OPERATIONAL 30 00:00:21
5.5.5.56 eth2 Passive OPERATIONAL 30 00:00:19
ABR2
#show ip bgp neighbors 3.3.3.52
BGP neighbor is 3.3.3.52, remote AS 100, local AS 100, internal link BGP version 4, local router ID 5.5.5.56, remote router ID 3.3.3.52 BGP state = Established, up for 00:00:12
Last read 00:00:07, hold time is 90, keepalive interval is 30 seconds Neighbor capabilities:
Route refresh: advertised and received (old and new) Address family IPv4 Unicast: advertised and received Address family IPv4 Labeled-Unicast: advertised and received
Received 5 messages, 1 notifications, 0 in queue
Sent 5 messages, 0 notifications, 0 in queue Route refresh request: received 0, sent 0
Minimum time between advertisement runs is 5 seconds Update source is lo
For address family: IPv4 Unicast
BGP table version 1, neighbor version 1 Index 0, Offset 0, Mask 0x1
Community attribute sent to this neighbor (both)
1 accepted prefixes
1 announced prefixes
For address family: IPv4 Labeled-UnicastBGP table version 2, neighbor version 2 Index 0, Offset 0, Mask 0x1
Route-Reflector Client NEXT_HOP is always this router
Community attribute sent to this neighbor (both)
1 accepted prefixes
1 announced prefixes
Connections established 2; dropped 1
Local host: 5.5.5.56, Local port: 40440
Foreign host: 3.3.3.52, Foreign port: 179
Nexthop: 5.5.5.56
Nexthop global: 56::56 Nexthop local: ::
BGP connection: non shared network
Last Reset: 00:00:17, due to BGP Notification received Notification Error Message: (Cease/Other Configuration Change.)
#show ip bgp neighbors 7.7.7.55
BGP neighbor is 7.7.7.55, remote AS 100, local AS 100, internal link BGP version 4, local router ID 5.5.5.56, remote router ID 7.7.7.55 BGP state = Established, up for 00:00:13
Last read 00:00:08, hold time is 90, keepalive interval is 30 seconds Neighbor capabilities:
Route refresh: advertised and received (old and new) Address family IPv4 Unicast: advertised and received Address family IPv4 Labeled-Unicast: advertised and received
Received 3 messages, 0 notifications, 0 in queue
Sent 4 messages, 0 notifications, 0 in queue Route refresh request: received 0, sent 0
Minimum time between advertisement runs is 5 seconds Update source is lo
For address family: IPv4 Unicast
BGP table version 1, neighbor version 1 Index 1, Offset 0, Mask 0x2
Community attribute sent to this neighbor (both)
1 accepted prefixes
1 announced prefixes
For address family: IPv4 Labeled-UnicastBGP table version 2, neighbor version 2 Index 1, Offset 0, Mask 0x2
Route-Reflector Client NEXT_HOP is always this router
Community attribute sent to this neighbor (both)
1 accepted prefixes
1 announced prefixes
Connections established 1; dropped 0
Local host: 5.5.5.56, Local port: 35004
Foreign host: 7.7.7.55, Foreign port: 179
Nexthop: 5.5.5.56
Nexthop global: 56::56 Nexthop local: ::
BGP connection: non shared network
#show ip bgp labeled-unicast
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*>i 1.1.1.54/32 3.3.3.52 24960 24960
*>i 7.7.7.55/32 7.7.7.55 24961 24960
#show mpls forwarding-table | include 1.1.1.54
B> 1.1.1.54/32 7 0 Yes LSP_DEFAULT 24960 eth2 3.3.3.52
#show mpls forwarding-table | include 7.7.7.55
L> 7.7.7.55/32 5 0 Yes LSP_DEFAULT 24320 eth1 50.1.1.22
B 7.7.7.55/32 8 0 Yes LSP_DEFAULT 24960 eth1 7.7.7.55
#show mpls ftn-table
Primary FTN entry with FEC: 1.1.1.54/32, id: 7, row status: Active
Owner: BGP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 11, in intf: - in label: 0 out-segment ix: 10
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 10, owner: BGP, out intf: eth2, out label: 24960
Nexthop addr: 3.3.3.52 cross connect ix: 11, op code: Push and Lookup
Primary FTN entry with FEC: 3.3.3.52/32, id: 1, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3
Owner: LDP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: LDP, out intf: eth2, out label: 24321
Nexthop addr: 40.1.1.53 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 4.4.4.53/32, id: 2, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
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, out intf: eth2, out label: 3
Nexthop addr: 40.1.1.53 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 6.6.6.22/32, id: 4, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 7, 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, out intf: eth1, out label: 3
Nexthop addr: 50.1.1.22 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 7.7.7.55/32, id: 5, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 10, 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, out intf: eth1, out label: 24320
Nexthop addr: 50.1.1.22 cross connect ix: 10, op code: Push
Primary FTN entry with FEC: 7.7.7.55/32, id: 8, row status: Active
Owner: BGP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 12, in intf: - in label: 0 out-segment ix: 11
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 11, owner: BGP, out intf: eth1, out label: 24960
Nexthop addr: 7.7.7.55 cross connect ix: 12, op code: Push and Lookup
Primary FTN entry with FEC: 30.1.1.0/24, id: 3, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
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, out intf: eth2, out label: 3
Nexthop addr: 40.1.1.53 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 60.1.1.0/24, id: 6, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 7, 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, out intf: eth1, out label: 3
Nexthop addr: 50.1.1.22 cross connect ix: 7, op code: Push
P3
#show ip ospf neighbor
Total number of full neighbors: 2
OSPF process 30 VRF(default):
Neighbor ID Pri State Dead Time Address Interface Instance ID
5.5.5.56 1 Full/Backup 00:00:39 50.1.1.56 eth1 0
7.7.7.55 1 Full/DR 00:00:39 60.1.1.55 eth2 0
#show ldp session
Peer IP Address IF Name My Role State KeepAlive UpTime
5.5.5.56 eth1 Active OPERATIONAL 30 00:00:30
7.7.7.55 eth2 Passive OPERATIONAL 30 00:00:28
PE2
#show ip bgp neighbors 5.5.5.56
BGP neighbor is 5.5.5.56, remote AS 100, local AS 100, internal link BGP version 4, local router ID 7.7.7.55, remote router ID 5.5.5.56 BGP state = Established, up for 00:00:16
Last read 00:00:11, hold time is 90, keepalive interval is 30 seconds Neighbor capabilities:
Route refresh: advertised and received (old and new) Address family IPv4 Unicast: advertised and received Address family IPv4 Labeled-Unicast: advertised and received
Received 3 messages, 0 notifications, 0 in queue
Sent 4 messages, 0 notifications, 0 in queue Route refresh request: received 0, sent 0
Minimum time between advertisement runs is 5 seconds Update source is lo
For address family: IPv4 Unicast
BGP table version 1, neighbor version 1 Index 1, Offset 0, Mask 0x2
Community attribute sent to this neighbor (both)
1 accepted prefixes
1 announced prefixes
For address family: IPv4 Labeled-UnicastBGP table version 2, neighbor version 2 Index 1, Offset 0, Mask 0x2
Community attribute sent to this neighbor (both)
1 accepted prefixes
1 announced prefixes
Connections established 1; dropped 0
Local host: 7.7.7.55, Local port: 179
Foreign host: 5.5.5.56, Foreign port: 35004
Nexthop: 7.7.7.55
Nexthop global: 55::55 Nexthop local: ::
BGP connection: non shared network
#show mpls vrf-table
Output for IPv4 VRF table with id: 2
Primary FTN entry with FEC: 61.1.1.0/24, id: 1, row status: Active
Owner: BGP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 11, in intf: - in label: 0 out-segment ix: 10
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 10, owner: BGP, out intf: eth2, out label: 24963 Nexthop addr: 1.1.1.54 cross connect ix: 11, op code: Push and
Lookup
#show ip bgp labeled-unicast
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*>i 1.1.1.54/32 5.5.5.56 - 24960
*> 7.7.7.55/32 0.0.0.0 24960 -
#show mpls forwarding-table | include 1.1.1.54
B> 1.1.1.54/32 4 0 Yes LSP_DEFAULT 24960
eth2 5.5.5.56
#show mpls ilm-table
Codes: > - installed ILM, * - selected ILM, p - stale ILM K - CLI ILM, T - MPLS-TP, S - Stitched ILM
Code FEC ILM-ID In-Label Out-Label In-Intf Out- Intf Nexthop LSP-Type
> 7.7.7.55/32 9 24960 N/A N/A N/A
127.0.0.1 LSP_DEFAULT
> 62.1.1.0/24 10 24961 N/A N/A eth1
0.0.0.0 LSP_DEFAULT
#show mpls ftn-table
Primary FTN entry with FEC: 1.1.1.54/32, id: 4, row status: Active
Owner: BGP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 4, in intf: - in label: 0 out-segment ix: 3 Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 3, owner: BGP, out intf: eth2, out label: 24960 Nexthop addr: 5.5.5.56 cross connect ix: 4, op code: Push and
Lookup
Primary FTN entry with FEC: 5.5.5.56/32, id: 1, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none Tunnel id: 0, Protected LSP id: 0, Description: N/A
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, out intf: eth2, out label: 24321 Nexthop addr: 60.1.1.22 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 6.6.6.22/32, id: 2, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 2, 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, out intf: eth2, out label: 3 Nexthop addr: 60.1.1.22 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 50.1.1.0/24, id: 3, row status: Active
Owner: LDP, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none Tunnel id: 0, Protected LSP id: 0, Description: N/A
Cross connect ix: 2, 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, out intf: eth2, out label: 3 Nexthop addr: 60.1.1.22 cross connect ix: 2, op code: Push