BGP Labeled Unicast IPv4 with Add Path
This section contains basic BGP labeled unicast with Add-Path configuration examples with OSPF as the IGP.
Overview
As MPLS deployments expand beyond the service provider core and edge to the access and metropolitan networks, the number of edge-to-edge label-switched paths (LSPs) in many networks is increasing substantially. This continued growth can present scaling challenges-with some networks already reaching their limit-and can also slow end-to end restoration. Dividing the network into multiple regions can alleviate these issues by limiting the total number of end-to-end LSPs, and enabling failures to be contained and restored in a single region. These regions operate separate instances of interior gateway protocol (IGP), and uses BGP Labeled Unicast (BGP-LU) to advertise route information between inter region routers. By providing connectivity and communication between regions, BPG-LU enables service providers to massively scale the number of MPLS-enabled devices on their networks.
By default, all BGP routers and Route-Reflectors propagate only their best paths over their sessions. In case they advertise any route with the same NLRI as a previously advertised route, the latest one implicitly replaces the previous advertisement, which is known as an Implicit Withdraw. The Implicit Withdraw can achieve better scaling, but at the cost of path diversity.
The use of route-reflectors thus has significant effect on redundancy by hiding alternate paths. Using full-mesh is not an option, so a mechanism is needed to allow the propagation of multiple alternate paths in an RR environment.
Topology
Figure 6-62: BGP Labeled unicast IPv4 with additional paths
Interface Connections
AGN1(eth1) — P1(eth1)
AGN3(eth5) — P1(eth5)
P1(eth4) — BR3
P1(eth2) — BR1
P1(eth3) — BR4
BR3(eth3) — P2
BR1(eth1) — P2
BR4(eth4) — P2
P2(eth5) — BR5(eth3) — P3(eth6) — AGN4
P2(eth6) — BR6(eth4) — P3(eth2) — AGN2
P2(eth2) — BR2(eth1) — P3(eth7) — AGN5
P2(eth7) — BR7(eth5) — P3
Configurations
AGN3
AGN3(config)#interface lo | Enter interface lo mode |
AGN3(config-if)#ip address 14.14.14.14/32 | Configure ip address for loopback interface |
AGN3(config-if)#exit | Exit interface loopback mode |
AGN3(config)#router ldp | Configure router ldp |
AGN3(config-router)#transport-address ipv4 14.14.14.14 | Configure transport address as loopback |
AGN3(config-router)#exit | Exit the router ldp mode |
AGN3(config-if)#interface eth5 | Enter interface mode |
AGN3(config-if)#ip address 41.1.1.171/24 | Configure ip address on the interface |
AGN3(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
AGN3(config-if)#label-switching | Enable label-switching on the interface |
AGN3(config-if)#exit | Exit the interface mode |
AGN3(config)#router ospf 1 | Configure router ospf instance 1 |
AGN3(config-router)#network 14.14.14.14/32 area 0 | Add the loopback network into ospf instance 1 |
AGN3(config-router)#network 41.1.1.171/24 area 0 | Add the ip address into ospf instance 1 |
AGN3(config-router)#exit | Exit router ospf mode |
AGN3(config)#router bgp 100 | Enter router bgp mode |
AGN3(config-router)#network 14.14.14.14/32 | Advertise loopback through network command inside bgp |
AGN3(config-router)#neighbor 3.3.3.3 remote-as 100 | Configure iBGP neighbor |
AGN3(config-router)#neighbor 8.8.8.8 remote-as 100 | Configure iBGP neighbor |
AGN3(config-router)#neighbor 9.9.9.9 remote-as 100 | Configure iBGP neighbor |
AGN3(config-router)#neighbor 3.3.3.3 update-source 14.14.14.14 | Update the source for the neighbor as loopback ip |
AGN3(config-router)#neighbor 8.8.8.8 update-source 14.14.14.14 | Update the source for the neighbor as loopback ip |
AGN3(config-router)#neighbor 9.9.9.9 update-source 14.14.14.14 | Update the source for the neighbor as loopback ip |
AGN3(config-router)#neighbor 3.3.3.3 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN3(config-router)#neighbor 8.8.8.8 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN3(config-router)#neighbor 9.9.9.9 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN3(config-router)#allocate-label all | Enable allocate label all command |
AGN3(config-router)#address-family ipv4 labeled-unicast | Enter ipv4 labeled-unicast address family |
AGN3(config-router-af)#neighbor 3.3.3.3 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN3(config-router-af)#neighbor 8.8.8.8 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN3(config-router-af)#neighbor 9.9.9.9 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN3(config-router-af)#neighbor 3.3.3.3 next-hop-self | Activate the neighbor under ipv4 labeled-unicast address family |
AGN3(config-router-af)#neighbor 8.8.8.8 next-hop-self | Activate next hop self for the neighbor |
AGN3(config-router-af)#neighbor 9.9.9.9 next-hop-self | Activate next hop self for the neighbor |
AGN3(config-router-af)#bgp additional-paths receive | Enable bgp additional paths receive at global level under ipv4 labeled-unicast address-family |
AGN3(config-router-af)#neighbor 9.9.9.9 additional-paths disable | Disable additional paths for neighbor 9.9.9.9 |
AGN3(config-router-af)#exit-address-family | Exit bgp address-family mode. |
AGN3(config-router)#exit | Exit Router BGP mode. |
AGN3(config)#commit | Apply commit |
AGN3(config)#exit | Exit Configure mode. |
AGN1
AGN1(config)#interface lo | Enter interface lo mode |
AGN1(config-if)#ip address 1.1.1.1/32 | Configure ip address for loopback interface |
AGN1(config-if)#exit | Exit interface loopback mode |
AGN1(config)#router ldp | Configure router ldp |
AGN1(config-router)#transport-address ipv4 1.1.1.1 | Configure transport address as loopback |
AGN1(config-router)#exit | Exit the router ldp mode |
AGN1(config-if)#interface eth1 | Enter interface mode |
AGN1(config-if)#ip address 10.1.1.156/24 | Configure ip address on the interface |
AGN1(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
AGN1(config-if)#label-switching | Enable label-switching on the interface |
AGN1(config-if)#exit | Exit the interface mode |
AGN1(config)#router ospf 1 | Configure router ospf instance 1 |
AGN1(config-router)#network 1.1.1.1/32 area 0 | Add the loopback network into ospf instance 1 |
AGN1(config-router)#network 10.1.1.0/24 area 0 | Add the ip address into ospf instance 1 |
AGN1(config-router)#exit | Exit router ospf mode |
AGN1(config)#router bgp 100 | Enter router bgp mode |
AGN1(config-router)#network 1.1.1.1/32 | Advertise loopback through network command inside bgp |
AGN1(config-router)#neighbor 3.3.3.3 remote-as 100 | Configure iBGP neighbor |
AGN1(config-router)#neighbor 8.8.8.8 remote-as 100 | Configure iBGP neighbor |
AGN1(config-router)#neighbor 9.9.9.9 remote-as 100 | Configure iBGP neighbor |
AGN1(config-router)#neighbor 3.3.3.3 update-source 1.1.1.1 | Update the source for the neighbor as loopback ip |
AGN1(config-router)#neighbor 8.8.8.8 update-source 1.1.1.1 | Update the source for the neighbor as loopback ip |
AGN1(config-router)#neighbor 9.9.9.9 update-source 1.1.1.1 | Update the source for the neighbor as loopback ip |
AGN1(config-router)#neighbor 3.3.3.3 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN1(config-router)#neighbor 8.8.8.8 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN1(config-router)#neighbor 9.9.9.9 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN1(config-router)#allocate-label all | Enable allocate label all command |
AGN1(config-router)#address-family ipv4 labeled-unicast | Enter ipv4 labeled-unicast address family |
AGN1(config-router-af)#neighbor 3.3.3.3 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN1(config-router-af)#neighbor 8.8.8.8 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN1(config-router-af)#neighbor 9.9.9.9 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN1(config-router-af)#neighbor 3.3.3.3 next-hop-self | Activate next hop self for the neighbor |
AGN1(config-router-af)#neighbor 8.8.8.8 next-hop-self | Activate next hop self for the neighbor |
AGN1(config-router-af)#neighbor 9.9.9.9 next-hop-self | Activate next hop self for the neighbor |
AGN1(config-router-af)#neighbor 3.3.3.3 additional-paths receive | Enable bgp additional paths receive at neighbor level under ipv4 labeled-unicast address-family |
AGN1(config-router-af)#neighbor 8.8.8.8 additional-paths receive | Enable bgp additional paths receive at neighbor level under ipv4 labeled-unicast address-family |
AGN1(config-router-af)#neighbor 9.9.9.9 additional-paths receive | Enable bgp additional paths receive at neighbor level under ipv4 labeled-unicast address-family |
AGN1(config-router-af)#exit-address-family | Exit bgp address-family mode. |
AGN1(config-router)#exit | Exit Router BGP mode. |
AGN1(config)#commit | Apply commit |
AGN1(config)#exit | Exit Configure mode. |
P1
P1(config)#interface lo | Enter interface lo mode |
P1(config-if)#ip address 2.2.2.2/32 | Configure ip address for loopback interface |
P1(config-if)#exit | Exit interface loopback mode |
P1(config)#router ldp | Configure ldp on the router |
P1(config-router)#transport-address ipv4 2.2.2.2 | Enable loopback ip as transport address |
P1(config-router)#exit | Exit the router ldp mode |
P1(config)#interface eth1 | Enter interface mode |
P1(config-if)#ip address 10.1.1.157/24 | Configure ip address on the interface |
P1(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P1(config-if)#label-switching | Enable label switching on the interface |
P1(config-if)#exit | Exit the interface mode |
P1(config)#interface eth2 | Enter interface mode |
P1(config-if)#ip address 20.1.1.157/24 | Configure ip address on the interface |
P1(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P1(config-if)#label-switching | Enable label switching on the interface |
P1(config-if)#exit | Exit the interface mode |
P1(config)#interface eth3 | Enter interface mode |
P1(config-if)#ip address 23.1.1.157/24 | Configure ip address on the interface |
P1(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P1(config-if)#label-switching | Enable label switching on the interface |
P1(config-if)#exit | Exit the interface mode |
P1(config)#interface eth4 | Enter interface mode |
P1(config-if)#ip address 21.1.1.157/24 | Configure ip address on the interface |
P1(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P1(config-if)#label-switching | Enable label switching on the interface |
P1(config-if)#exit | Exit the interface mode |
P1(config)#interface eth5 | Enter interface mode |
P1(config-if)#ip address 41.1.1.157/24 | Configure ip address on the interface |
P1(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P1(config-if)#label-switching | Enable label switching on the interface |
P1(config-if)#exit | Exit the interface mode |
P1(config)#router ospf 1 | Enter router ospf mode with instance as 1 |
P1(config-router)#network 10.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 1 with area 0 using network command |
P1(config-router)#network 20.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 1 with area 0 using network command |
P1(config-router)#network 21.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 1 with area 0 using network command |
P1(config-router)#network 41.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 1 with area 0 using network command |
P1(config-router)#network 23.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 1 with area 0 using network command |
P1(config-router)#network 2.2.2.2/32 area 0.0.0.0 | Add interface loopback into ospf instance 1 with area 0 using network command |
P1(config-router)#exit | Exit Router ospf mode. |
P1(config)#commit | Apply commit |
P1(config)#exit | Exit Configure mode. |
BR3
BR3(config)#enable ext-ospf-multi-inst | Enable ospf multi instance |
BR3(config)#interface lo | Enter interface lo mode |
BR3(config-if)#ip address 8.8.8.8/32 | Configure ip address for loopback interface |
BR3(config-if)#exit | Exit the interface mode |
BR3(config)#router ldp | Configure ldp on the router |
BR3(config-router)#transport-address ipv4 8.8.8.8 0 | Enable loopback ip as transport address |
BR3(config-router)#exit | Exit the router ldp mode |
BR3(config)#interface eth3 | Enter interface mode |
BR3(config-if)#ip address 22.1.1.165/24 | Configure ip address on the interface |
BR3(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
BR3(config-if)#label-switching | Enable label switching on the interface |
BR3(config-if)#exit | Exit the interface mode |
BR3(config)#interface eth4 | Enter interface mode |
BR3(config-if)#ip address 21.1.1.165/24 | Configure ip address on the interface |
BR3(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
BR3(config-if)#label-switching | Enable label switching on the interface |
BR3(config-if)#exit | Exit the interface mode |
BR3(config)#router ospf 1 | Configure router ospf on BR3 with instance id 1 |
BR3(config-router)#network 8.8.8.8/32 area 0 | Add the loopback network into instance 1 |
BR3(config-router)#network 21.1.1.165/24 area 0 | Add the network as part of ospf instance id 1 |
BR3(config-router)#exit | Exit the router ospf mode |
BR3(config)#router ospf 2 | Configure router ospf which will be part of core area with instance id as 2 |
BR3(config-router)#network 8.8.8.8/32 area 0.0.0.0 instance-id 2 | Add interface loopback into ospf instance 2 with area 0 using network command |
BR3(config-router)#network 22.1.1.165/24 area 0 | Add the network as part of ospf instance id 2 |
BR3(config-router)#exit | Exit the router ospf mode |
BR3(config)#router bgp 100 | Configure router bgp |
BR3(config-router)#neighbor 1.1.1.1 remote-as 100 | Configure ibgp neighbor |
BR3(config-router)#neighbor 14.14.14.14 remote-as 100 | Configure ibgp neighbor |
BR3(config-router)#neighbor 5.5.5.5 remote-as 100 | Configure ibgp neighbor |
BR3(config-router)#neighbor 10.10.10.10 remote-as 100 | Configure ibgp neighbor |
BR3(config-router)#neighbor 11.11.11.11 remote-as 100 | Configure ibgp neighbor |
BR3(config-router)#neighbor 12.12.12.12 remote-as 100 | Configure ibgp neighbor |
BR3(config-router)#neighbor 1.1.1.1 update-source 8.8.8.8 | Configure update source for the neighbor with loopback address |
BR3(config-router)#neighbor 14.14.14.14 update-source 8.8.8.8 | Configure update source for the neighbor with loopback address |
BR3(config-router)#neighbor 5.5.5.5 update-source 8.8.8.8 | Configure update source for the neighbor with loopback address |
BR3(config-router)#neighbor 10.10.10.10 update-source 8.8.8.8 | Configure update source for the neighbor with loopback address |
BR3(config-router)#neighbor 11.11.11.11 update-source 8.8.8.8 | Configure update source for the neighbor with loopback address |
BR3(config-router)#neighbor 12.12.12.12 update-source 8.8.8.8 | Configure update source for the neighbor with loopback address |
BR3(config-router)#neighbor 1.1.1.1 fall-over bfd multihop | Configure bfd for the neighbor |
BR3(config-router)#neighbor 14.14.14.14 fall-over bfd multihop | Configure bfd for the neighbor |
BR3(config-router)#neighbor 5.5.5.5 fall-over bfd multihop | Configure bfd for the neighbor |
BR3(config-router)#neighbor 10.10.10.10 fall-over bfd multihop | Configure bfd for the neighbor |
BR3(config-router)#neighbor 11.11.11.11 fall-over bfd multihop | Configure bfd for the neighbor |
BR3(config-router)#neighbor 12.12.12.12 fall-over bfd multihop | Configure bfd for the neighbor |
BR3(config-router)#allocate-label all | Configure allocate label all command |
R3(config-router)#address-family ipv4 labeled-unicast | Configure address-family ipv4 labeled unicast |
BR3(config-router-af)#neighbor 1.1.1.1 activate | Activate the neighbor under address family labeled unicast |
BR3(config-router-af)#neighbor 5.5.5.5 activate | Activate the neighbor under address family labeled unicast |
BR3(config-router-af)#neighbor 10.10.10.10 activate | Activate the neighbor under address family labeled unicast |
BR3(config-router-af)#neighbor 11.11.11.11 activate | Activate the neighbor under address family labeled unicast |
BR3(config-router-af)#neighbor 12.12.12.12 activate | Activate the neighbor under address family labeled unicast |
BR3(config-router-af)#neighbor 14.14.14.14 activate | Activate the neighbor under address family labeled unicast |
BR3(config-router-af)#neighbor 1.1.1.1 route-reflector-client | Configure neighbor as route reflector client |
BR3(config-router-af)#neighbor 14.14.14.14 route-reflector-client | Configure neighbor as route reflector client |
BR3(config-router-af)#neighbor 5.5.5.5 next-hop-self | Configure next-hop self for the neighbor |
BR3(config-router-af)#neighbor 10.10.10.10 next-hop-self | Configure next-hop self for the neighbor |
BR3(config-router-af)#neighbor 11.11.11.11 next-hop-self | Configure next-hop self for the neighbor |
BR3(config-router-af)#neighbor 12.12.12.12 next-hop-self | Configure next-hop self for the neighbor |
BR3(config-router-af)#neighbor 1.1.1.1 additional-paths send | Enable neighbor level additional paths send for per neighbor |
BR3(config-router-af)#neighbor 1.1.1.1 advertise additional-paths best 2 | Enable selection of best 2 paths to be advertised to neighbor using neighbor level commands |
BR3(config-router-af)#exit-address-family | Exit BGP address-family ipv4-labeled unicast mode |
BR3(config-router)#end | Return to configure terminal mode |
BR1
BR1(config)#enable ext-ospf-multi-inst | Enable ospf multi instance |
BR1(config)#interface lo | Enter interface lo mode |
BR1(config-if)#ip address 3.3.3.3/32 | Configure ip address for loopback interface |
BR1(config-if)#exit | Exit the interface mode |
BR1(config)#router ldp | Configure ldp on the router |
BR1(config-router)#transport-address ipv4 3.3.3.3 0 | Enable loopback ip as transport address |
BR1(config-router)#exit | Exit the router ldp mode |
BR1(config)#interface eth1 | Enter interface mode |
BR1(config-if)#ip address 30.1.1.158/24 | Configure ip address on the interface |
BR1(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
BR1(config-if)#label-switching | Enable label switching on the interface |
BR1(config-if)#exit | Exit the interface mode |
BR1(config)#interface eth2 | Enter interface mode |
BR1(config-if)#ip address 20.1.1.158/24 | Configure ip address on the interface |
BR1(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
BR1(config-if)#label-switching | Enable label switching on the interface |
BR1(config-if)#exit | Exit the interface mode |
BR1(config)#router ospf 1 | Configure router ospf with instance id 1 |
BR1(config-router)#network 3.3.3.3/32 area 0 | Add the loopback network into instance 1 |
BR1(config-router)#network 20.1.1.0/24 area 0 | Add the network as part of ospf instance id 1 |
BR1(config-router)#exit | Exit the router ospf mode |
BR1(config)#router ospf 2 | Configure router ospf which will be part of core area with instance id as 2 |
BR1(config-router)#network 3.3.3.3/32 area 0.0.0.0 instance-id 2 | Add interface loopback into ospf instance 2 with area 0 using network command |
BR1(config-router)#network 30.1.1.0/24 area 0 | Add the network as part of ospf instance id 2 |
BR1(config-router)#exit | Exit the router ospf mode |
BR1(config)#route-map BEST2 | Create a route-map to select best 2 paths |
BR1(config-route-map)#match additional-paths advertise-set select best 2 | Select best 2 paths to advertise to the neighbor |
BR1(config-route-map)#exit | Exit the route-map mode |
BR1(config)#router bgp 100 | Configure router bgp |
BR1(config-router)#neighbor 1.1.1.1 remote-as 100 | Configure ibgp neighbor |
BR1(config-router)#neighbor 14.14.14.14 remote-as 100 | Configure ibgp neighbor |
BR1(config-router)#neighbor 5.5.5.5 remote-as 100 | Configure ibgp neighbor |
BR1(config-router)#neighbor 10.10.10.10 remote-as 100 | Configure ibgp neighbor |
BR1(config-router)#neighbor 11.11.11.11 remote-as 100 | Configure ibgp neighbor |
BR1(config-router)#neighbor 12.12.12.12 remote-as 100 | Configure ibgp neighbor |
BR1(config-router)#neighbor 1.1.1.1 update-source 3.3.3.3 | Configure update source for the neighbor with loopback address |
BR1(config-router)#neighbor 14.14.14.14 update-source 3.3.3.3 | Configure update source for the neighbor with loopback address |
BR1(config-router)#neighbor 5.5.5.5 update-source 3.3.3.3 | Configure update source for the neighbor with loopback address |
BR1(config-router)#neighbor 10.10.10.10 update-source 3.3.3.3 | Configure update source for the neighbor with loopback address |
BR1(config-router)#neighbor 11.11.11.11 update-source 3.3.3.3 | Configure update source for the neighbor with loopback address |
BR1(config-router)#neighbor 12.12.12.12 update-source 3.3.3.3 | Configure update source for the neighbor with loopback address |
BR1(config-router)#neighbor 1.1.1.1 fall-over bfd multihop | Configure bfd for the neighbor |
BR1(config-router)#neighbor 14.14.14.14 fall-over bfd multihop | Configure bfd for the neighbor |
BR1(config-router)#neighbor 5.5.5.5 fall-over bfd multihop | Configure bfd for the neighbor |
BR1(config-router)#neighbor 10.10.10.10 fall-over bfd multihop | Configure bfd for the neighbor |
BR1(config-router)#neighbor 11.11.11.11 fall-over bfd multihop | Configure bfd for the neighbor |
BR1(config-router)#neighbor 12.12.12.12 fall-over bfd multihop | Configure bfd for the neighbor |
BR1(config-router)#allocate-label all | Configure allocate label all command |
BR1(config-router)#address-family ipv4 labeled-unicast | Configure address-family ipv4 labeled unicast |
BR1(config-router-af)#neighbor 1.1.1.1 activate | Activate the neighbor under address family labeled unicast |
BR1(config-router-af)#neighbor 5.5.5.5 activate | Activate the neighbor under address family labeled unicast |
BR1(config-router-af)#neighbor 10.10.10.10 activate | Activate the neighbor under address family labeled unicast |
BR1(config-router-af)#neighbor 11.11.11.11 activate | Activate the neighbor under address family labeled unicast |
BR1(config-router-af)#neighbor 12.12.12.12 activate | Activate the neighbor under address family labeled unicast |
BR1(config-router-af)#neighbor 14.14.14.14 activate | Activate the neighbor under address family labeled unicast |
BR1(config-router-af)#neighbor 1.1.1.1 route-reflector-client | Configure neighbor as route reflector client |
BR1(config-router-af)#neighbor 14.14.14.14 route-reflector-client | Configure neighbor as route reflector client |
BR1(config-router-af)#neighbor 5.5.5.5 next-hop-self | Configure next-hop self for the neighbor |
BR1(config-router-af)#neighbor 10.10.10.10 next-hop-self | Configure next-hop self for the neighbor |
BR1(config-router-af)#neighbor 11.11.11.11 next-hop-self | Configure next-hop self for the neighbor |
BR1(config-router-af)#neighbor 12.12.12.12 next-hop-self | Configure next-hop self for the neighbor |
BR1(config-router-af)#neighbor 1.1.1.1 additional-paths send | Enable additional paths send capability on neighbor level under ipv4 labeled unicast address family |
BR1(config-router-af)#neighbor 14.14.14.14 additional-paths send | Enable additional paths send capability on neighbor level under ipv4 labeled unicast address family |
BR1(config-router-af)#neighbor 1.1.1.1 advertise additional-paths all | Enable selection of all paths to be advertised to neighbor using neighbor level commands |
BR1(config-router-af)#neighbor 14.14.14.14 route-map BEST2 out | Enable selection of all paths to be advertised to neighbor using neighbor level commands |
BR1(config-router-af)#exit-address-family | Exit BGP address-family ipv4-labeled unicast mode |
BR1(config-router)#end | Return to configure terminal mode |
BR4
BR4(config)#enable ext-ospf-multi-inst | Enable ospf multi instance |
BR4(config)#interface lo | Enter interface lo mode |
BR4(config-if)#ip address 9.9.9.9/32 | Configure ip address for loopback interface |
BR4(config-if)#exit | Exit the interface mode |
BR4(config)#access-list 1 permit 10.10.10.10 0.0.0.0 | Configure the access list to allow the BR5 loopback ip |
BR4(config)#access-list 2 permit 11.11.11.11 0.0.0.0 | Configure the access list to allow the BR6 loopback ip |
BR4(config)#access-list 3 permit 5.5.5.5 0.0.0.0 | Configure the access list to allow the BR2 loopback ip |
BR4(config)#access-list 4 permit 12.12.12.12 0.0.0.0 | Configure the access list to allow the BR7 loopback ip |
BR4(config)#route-map A permit 10 | Configure route-map A and permit |
BR4(config-route-map)#match ip address 1 | Match ip address 1 |
BR4(config-route-map)#exit | Exit the route-map |
BR4(config)#route-map A permit 20 | Configure route-map A and permit |
BR4(config-route-map)#match ip address 2 | Match ip address 2 |
BR4(config-route-map)#exit | Exit the route-map |
BR4(config)#route-map A permit 30 | Configure route-map A and permit |
BR4(config-route-map)#match ip address 3 | Match ip address 3 |
BR4(config-route-map)#exit | Exit the route-map |
BR4(config)#route-map A permit 40 | Configure route-map A and permit |
BR4(config-route-map)#match ip address 4 | Match ip address 4 |
BR4(config-route-map)#exit | Exit the route-map |
BR4(config)#router ldp | Configure ldp on the router |
BR4(config-router)#transport-address ipv4 9.9.9.9 0 | Enable loopback ip as transport address |
BR4(config-router)#exit | Exit the router ldp mode |
BR4(config)#interface eth3 | Enter interface mode |
BR4(config-if)#ip address 23.1.1.166/24 | Configure ip address on the interface |
BR4(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
BR4(config-if)#label-switching | Enable label switching on the interface |
BR4(config-if)#exit | Exit the interface mode |
BR4(config)#interface eth4 | Enter interface mode |
BR4(config-if)#ip address 24.1.1.166/24 | Configure ip address on the interface |
BR4(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
BR4(config-if)#label-switching | Enable label switching on the interface |
BR4(config-if)#exit | Exit the interface mode |
BR4(config)#router ospf 1 | Configure router ospf with instance id 1 |
BR4(config-router)#network 9.9.9.9/32 area 0 | Add the loopback network into instance 1 |
BR4(config-router)#network 23.1.1.0/24 area 0 | Add the network as part of ospf instance id 1 |
BR4(config-router)#redistribute ospf 2 route-map A | Redistribute the selected routes from ospf instance 2 into instance 1 |
BR4(config-router)#exit | Exit the router ospf mode |
BR4(config)#router ospf 2 | Configure router ospf which will be part of core area with instance id as 2 |
BR4(config-router)#network 9.9.9.9/32 area 0.0.0.0 instance-id 2 | Add interface loopback into ospf instance 2 with area 0 using network command |
BR4(config-router)#network 24.1.1.0/24 area 0 | Add the network as part of ospf instance id 2 |
BR4(config-router)#exit | Exit the router ospf mode |
BR4(config)#router bgp 100 | Configure router bgp |
BR4(config-router)#neighbor 1.1.1.1 remote-as 100 | Configure ibgp neighbor |
BR4(config-router)#neighbor 14.14.14.14 remote-as 100 | Configure ibgp neighbor |
BR4(config-router)#neighbor 5.5.5.5 remote-as 100 | Configure ibgp neighbor |
BR4(config-router)#neighbor 10.10.10.10 remote-as 100 | Configure ibgp neighbor |
BR4(config-router)#neighbor 11.11.11.11 remote-as 100 | Configure ibgp neighbor |
BR4(config-router)#neighbor 12.12.12.12 remote-as 100 | Configure ibgp neighbor |
BR4(config-router)#neighbor 1.1.1.1 update-source 9.9.9.9 | Configure update source for the neighbor with loopback address |
BR4(config-router)#neighbor 14.14.14.14 update-source 9.9.9.9 | Configure update source for the neighbor with loopback address |
BR4(config-router)#neighbor 5.5.5.5 update-source 9.9.9.9 | Configure update source for the neighbor with loopback address |
BR4(config-router)#neighbor 10.10.10.10 update-source 3.3.3.3 | Configure update source for the neighbor with loopback address |
BR4(config-router)#neighbor 11.11.11.11 update-source 9.9.9.9 | Configure update source for the neighbor with loopback address |
BR4(config-router)#neighbor 12.12.12.12 update-source 9.9.9.9 | Configure update source for the neighbor with loopback address |
BR4(config-router)#neighbor 1.1.1.1 fall-over bfd multihop | Configure bfd for the neighbor |
BR4(config-router)#neighbor 14.14.14.14 fall-over bfd multihop | Configure bfd for the neighbor |
BR4(config-router)#neighbor 5.5.5.5 fall-over bfd multihop | Configure bfd for the neighbor |
BR4(config-router)#neighbor 10.10.10.10 fall-over bfd multihop | Configure bfd for the neighbor |
BR4(config-router)#neighbor 11.11.11.11 fall-over bfd multihop | Configure bfd for the neighbor |
BR4(config-router)#neighbor 12.12.12.12 fall-over bfd multihop | Configure bfd for the neighbor |
BR4(config-router)#allocate-label all | Configure allocate label all command |
BR4(config-router)#address-family ipv4 labeled-unicast | Configure address-family ipv4 labeled unicast |
BR4(config-router-af)#neighbor 1.1.1.1 activate | Activate the neighbor under address family labeled unicast |
BR4(config-router-af)#neighbor 5.5.5.5 activate | Activate the neighbor under address family labeled unicast |
BR4(config-router-af)#neighbor 10.10.10.10 activate | Activate the neighbor under address family labeled unicast |
BR4(config-router-af)#neighbor 11.11.11.11 activate | Activate the neighbor under address family labeled unicast |
BR4(config-router-af)#neighbor 12.12.12.12 activate | Activate the neighbor under address family labeled unicast |
BR4(config-router-af)#neighbor 14.14.14.14 activate | Activate the neighbor under address family labeled unicast |
BR4(config-router-af)#neighbor 1.1.1.1 route-reflector-client | Configure neighbor as route reflector client |
BR4(config-router-af)#neighbor 14.14.14.14 route-reflector-client | Configure neighbor as route reflector client |
BR4(config-router-af)#neighbor 5.5.5.5 next-hop-self | Configure next-hop self for the neighbor |
BR4(config-router-af)#neighbor 10.10.10.10 next-hop-self | Configure next-hop self for the neighbor |
BR4(config-router-af)#neighbor 11.11.11.11 next-hop-self | Configure next-hop self for the neighbor |
BR4(config-router-af)#neighbor 12.12.12.12 next-hop-self | Configure next-hop self for the neighbor |
BR4(config-router-af)#bgp additional-paths send | Enable additional paths send capability at global level under address-family labeled-unicast |
BR4(config-router-af)#neighbor 1.1.1.1 advertise additional-paths best 3 | Enable selection of best 3 paths per neighbor using neighbor level commands |
BR4(config-router-af)#neighbor 14.14.14.14 advertise additional-paths all | Enable selection of all paths to be advertised to neighbor using neighbor level commands |
BR4(config-router-af)#exit-address-family | Exit BGP address-family ipv4-labeled unicast mode |
BR4(config-router)#end | Return to configure terminal mode |
P2
P2(config)#interface lo | Enter interface lo mode |
P2(config-if)#ip address 4.4.4.4/32 | Configure ip address for loopback interface |
P2(config-if)#exit | Exit interface loopback mode |
P2(config)#router ldp | Configure ldp on the router |
P2(config-router)#transport-address ipv4 4.4.4.4 0 | Enable loopback ip as transport address |
P2(config-router)#exit | Exit the router ldp mode |
P2(config)#interface eth1 | Enter interface mode |
P2(config-if)#ip address 30.1.1.159/24 | Configure ip address on the interface |
P2(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P2(config-if)#label-switching | Enable label switching on the interface |
P2(config-if)#exit | Exit the interface mode |
P2(config)#interface eth2 | Enter interface mode |
P2(config-if)#ip address 40.1.1.159/24 | Configure ip address on the interface |
P2(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P2(config-if)#label-switching | Enable label switching on the interface |
P2(config-if)#exit | Exit the interface mode |
P2(config)#interface eth3 | Enter interface mode |
P2(config-if)#ip address 22.1.1.159/24 | Configure ip address on the interface |
P2(config-if)#enable-ldp ipv4 | Enable rsvp on the interface |
P2(config-if)#label-switching | Enable label switching on the interface |
P2(config-if)#exit | Exit the interface mode |
P2(config)#interface eth4 | Enter interface mode |
P2(config-if)#ip address 24.1.1.159/24 | Configure ip address on the interface |
P2(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P2(config-if)#label-switching | Enable label switching on the interface |
P2(config-if)#exit | Exit the interface mode |
P2(config)#interface eth5 | Enter interface mode |
P2(config-if)#ip address 25.1.1.159/24 | Configure ip address on the interface |
P2(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P2(config-if)#label-switching | Enable label switching on the interface |
P2(config-if)#exit | Exit the interface mode |
P2(config)#interface eth6 | Enter interface mode |
P2(config-if)#ip address 27.1.1.159/24 | Configure ip address on the interface |
P2(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P2(config-if)#label-switching | Enable label switching on the interface |
P2(config-if)#exit | Exit the interface mode |
P2(config)#interface eth7 | Enter interface mode |
P2(config-if)#ip address 29.1.1.159/24 | Configure ip address on the interface |
P2(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P2(config-if)#label-switching | Enable label switching on the interface |
P2(config-if)#exit | Exit the interface mode |
P2(config)#router ospf 2 | Configure Router ospf with instance id 2 |
P2(config-router)#network 30.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 2 with area 0 using network command |
P2(config-router)#network 40.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 2 with area 0 using network command |
P2(config-router)#network 22.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 2 with area 0 using network command |
P2(config-router)#network 24.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 2 with area 0 using network command |
P2(config-router)#network 25.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 2 with area 0 using network command |
P2(config-router)#network 27.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 2 with area 0 using network command |
P2(config-router)#network 29.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 2 with area 0 using network command |
P2(config-router)#network 4.4.4.4/32 area 0.0.0.0 | Add interface loopback into ospf instance 2 with area 0 using network command |
P2(config-router)#exit | Exit router ospf mode |
BR5
BR5(config)#enable ext-ospf-multi-inst | Enable ospf multi instance |
BR5(config)#interface lo | Enter interface lo mode |
BR5(config-if)#ip address 10.10.10.10/32 | Configure ip address for loopback interface |
BR5(config-if)#exit | Exit the interface mode |
BR5(config)#router ldp | Configure ldp on the router |
BR5(config-router)#transport-address ipv4 10.10.10.10 0 | Enable loopback ip as transport address |
BR5(config-router)#exit | Exit router ldp mode |
BR5(config)#interface eth3 | Enter interface mode |
BR5(config-if)#ip address 26.1.1.167/24 | Configure ip address on the interface |
BR5(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
BR5(config-if)#label-switching | Enable label switching on the interface |
BR5(config-if)#exit | Exit the interface mode |
BR5(config)#interface eth5 | Enter interface mode |
BR5(config-if)#ip address 25.1.1.167/24 | Configure ip address on the interface |
BR5(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
BR5(config-if)#label-switching | Enable label switching on the interface |
BR5(config-if)#exit | Exit the interface mode |
BR5(config)#router ospf 2 | Configure router ospf with instance id 2 |
BR5(config-router)#network 10.10.10.10/32 area 0 | Add the loopback network into instance 2 |
BR5(config-router)#network 25.1.1.0/24 area 0 | Add the network as part of ospf instance id 2 |
BR5(config-router)#exit | Exit the router ospf mode |
BR5(config)#router ospf 3 | Configure router ospf which will be part of aggregation area 2 with instance id as 3 |
BR5(config-router)#network 10.10.10.10/32 area 0.0.0.0 instance-id 3 | Add interface loopback into ospf instance 3 with area 0 using network command |
BR5(config-router)#network 26.1.1.0/24 area 0 | Add the network as part of ospf instance id 3 |
BR5(config-router)#exit | Exit the router ospf mode |
BR5(config)#router bgp 100 | Configure router bgp |
BR5(config-router)#neighbor 3.3.3.3 remote-as 100 | Configure ibgp neighbor |
BR5(config-router)#neighbor 7.7.7.7 remote-as 100 | Configure ibgp neighbor |
BR5(config-router)#neighbor 8.8.8.8 remote-as 100 | Configure ibgp neighbor |
BR5(config-router)#neighbor 9.9.9.9 remote-as 100 | Configure ibgp neighbor |
BR5(config-router)#neighbor 13.13.13.13 remote-as 100 | Configure ibgp neighbor |
BR5(config-router)#neighbor 15.15.15.15 remote-as 100 | Configure ibgp neighbor |
BR5(config-router)#neighbor 3.3.3.3 update-source 10.10.10.10 | Configure update source for the neighbor with loopback address |
BR5(config-router)#neighbor 7.7.7.7 update-source 10.10.10.10 | Configure update source for the neighbor with loopback address |
BR5(config-router)#neighbor 8.8.8.8 update-source 10.10.10.10 | Configure update source for the neighbor with loopback address |
BR5(config-router)#neighbor 9.9.9.9 update-source 10.10.10.10 | Configure update source for the neighbor with loopback address |
BR5(config-router)#neighbor 13.13.13.13 update-source 10.10.10.10 | Configure update source for the neighbor with loopback address |
BR5(config-router)#neighbor 15.15.15.15 update-source 10.10.10.10 | Configure update source for the neighbor with loopback address |
BR5(config-router)#neighbor 3.3.3.3 fall-over bfd multihop | Configure bfd for the neighbor |
BR5(config-router)#neighbor 7.7.7.7 fall-over bfd multihop | Configure bfd for the neighbor |
BR5(config-router)#neighbor 8.8.8.8 fall-over bfd multihop | Configure bfd for the neighbor |
BR5(config-router)#neighbor 9.9.9.9 fall-over bfd multihop | Configure bfd for the neighbor |
BR5(config-router)#neighbor 13.13.13.13 fall-over bfd multihop | Configure bfd for the neighbor |
BR5(config-router)#neighbor 15.15.15.15 fall-over bfd multihop | Configure bfd for the neighbor |
BR5(config-router)#allocate-label all | Configure allocate label all command |
BR5(config-router)#address-family ipv4 labeled-unicast | Configure address-family ipv4 labeled unicast |
BR5(config-router-af)#neighbor 3.3.3.3 activate | Activate the neighbor under address family labeled unicast |
BR5(config-router-af)#neighbor 7.7.7.7 activate | Activate the neighbor under address family labeled unicast |
BR5(config-router-af)#neighbor 8.8.8.8 activate | Activate the neighbor under address family labeled unicast |
BR5(config-router-af)#neighbor 9.9.9.9 activate | Activate the neighbor under address family labeled unicast |
BR5(config-router-af)#neighbor 13.13.13.13 activate | Activate the neighbor under address family labeled unicast |
BR5(config-router-af)#neighbor 15.15.15.15 activate | Activate the neighbor under address family labeled unicast |
BR5(config-router-af)#neighbor 13.13.13.13 route-reflector-client | Configure neighbor as route reflector client |
BR5(config-router-af)#neighbor 7.7.7.7 route-reflector-client | Configure neighbor as route reflector client |
BR5(config-router-af)#neighbor 15.15.15.15 next-hop-self | Configure next-hop self for the neighbor |
BR5(config-router-af)#neighbor 3.3.3.3 next-hop-self | Configure next-hop self for the neighbor |
BR5(config-router-af)#neighbor 8.8.8.8 next-hop-self | Configure next-hop self for the neighbor |
BR5(config-router-af)#neighbor 9.9.9.9 next-hop-self | Configure next-hop self for the neighbor |
BR5(config-router-af)#bgp additional-paths send | Enable additional paths send capability on neighbor level under ipv4 labeled unicast address family |
BR5(config-router-af)#bgp additional-paths select all | Select all the available paths to advertise to the next router |
BR5(config-router)#exit | Exit BGP router mode |
BR6
BR6(config)#enable ext-ospf-multi-inst | Enable ospf multi instance |
BR6(config)#interface lo | Enter interface lo mode |
BR6(config-if)#ip address 11.11.11.11/32 | Configure ip address for loopback interface |
BR6(config-if)#exit | Exit the interface mode |
BR6(config)#router ldp | Configure ldp on the router |
BR6(config-router)#transport-address ipv4 11.11.11.11 | Enable loopback ip as transport address |
BR5(config-router)#exit | Exit router ldp mode |
BR6(config)#interface eth4 | Enter interface mode |
BR6(config-if)#ip address 28.1.1.168/24 | Configure ip address on the interface |
BR6(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
BR6(config-if)#label-switching | Enable label switching on the interface |
BR6(config-if)#exit | Exit the interface mode |
BR6(config)#interface eth6 | Enter interface mode |
BR6(config-if)#ip address 27.1.1.168/24 | Configure ip address on the interface |
BR6(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
BR6(config-if)#label-switching | Enable label switching on the interface |
BR6(config-if)#exit | Exit the interface mode |
BR6(config)#router ospf 2 | Configure router ospf with instance id 2 |
BR6(config-router)#network 11.11.11.11/32 area 0 | Add the loopback network into instance 2 |
BR6(config-router)#network 27.1.1.0/24 area 0 | Add the network as part of ospf instance id 2 |
BR6(config-router)#exit | Exit the router ospf mode |
BR6(config)#router ospf 3 | Configure router ospf which will be part of aggregation 2 with instance id as 3 |
BR6(config-router)#network 11.11.11.11/32 area 0.0.0.0 instance-id 3 | Add interface loopback into ospf instance 3 with area 0 using network command |
BR6(config-router)#network 28.1.1.0/24 area 0 | Add the network as part of ospf instance id 3 |
BR6(config-router)#exit | Exit the router ospf mode |
BR6(config)#router bgp 100 | Configure router bgp |
BR6(config-router)#neighbor 3.3.3.3 remote-as 100 | Configure ibgp neighbor |
BR6(config-router)#neighbor 7.7.7.7 remote-as 100 | Configure ibgp neighbor |
BR6(config-router)#neighbor 8.8.8.8 remote-as 100 | Configure ibgp neighbor |
BR6(config-router)#neighbor 9.9.9.9 remote-as 100 | Configure ibgp neighbor |
BR6(config-router)#neighbor 13.13.13.13 remote-as 100 | Configure ibgp neighbor |
BR6(config-router)#neighbor 15.15.15.15 remote-as 100 | Configure ibgp neighbor |
BR6(config-router)#neighbor 3.3.3.3 update-source 11.11.11.11 | Configure update source for the neighbor with loopback address |
BR6(config-router)#neighbor 7.7.7.7 update-source 11.11.11.11 | Configure update source for the neighbor with loopback address |
BR6(config-router)#neighbor 8.8.8.8 update-source 11.11.11.11 | Configure update source for the neighbor with loopback address |
BR6(config-router)#neighbor 9.9.9.9 update-source 11.11.11.11 | Configure update source for the neighbor with loopback address |
BR6(config-router)#neighbor 13.13.13.13 update-source 11.11.11.11 | Configure update source for the neighbor with loopback address |
BR6(config-router)#neighbor 15.15.15.15 update-source 11.11.11.11 | Configure update source for the neighbor with loopback address |
BR6(config-router)#neighbor 3.3.3.3 fall-over bfd multihop | Configure bfd for the neighbor |
BR6(config-router)#neighbor 7.7.7.7 fall-over bfd multihop | Configure bfd for the neighbor |
BR6(config-router)#neighbor 8.8.8.8 fall-over bfd multihop | Configure bfd for the neighbor |
BR6(config-router)#neighbor 9.9.9.9 fall-over bfd multihop | Configure bfd for the neighbor |
BR6(config-router)#neighbor 13.13.13.13 fall-over bfd multihop | Configure bfd for the neighbor |
BR6(config-router)#neighbor 15.15.15.15 fall-over bfd multihop | Configure bfd for the neighbor |
BR6(config-router)#allocate-label all | Configure allocate label all command |
BR6(config-router)#address-family ipv4 labeled-unicast | Configure address-family ipv4 labeled unicast |
BR6(config-router-af)#neighbor 3.3.3.3 activate | Activate the neighbor under address family labeled unicast |
BR6(config-router-af)#neighbor 7.7.7.7 activate | Activate the neighbor under address family labeled unicast |
BR6(config-router-af)#neighbor 8.8.8.8 activate | Activate the neighbor under address family labeled unicast |
BR6(config-router-af)#neighbor 9.9.9.9 activate | Activate the neighbor under address family labeled unicast |
BR6(config-router-af)#neighbor 13.13.13.13 activate | Activate the neighbor under address family labeled unicast |
BR6(config-router-af)#neighbor 15.15.15.15 activate | Activate the neighbor under address family labeled unicast |
BR6(config-router-af)#neighbor 13.13.13.13 route-reflector-client | Configure neighbor as route reflector client |
BR6(config-router-af)#neighbor 7.7.7.7 route-reflector-client | Configure neighbor as route reflector client |
BR6(config-router-af)#neighbor 15.15.15.15 route-reflector-client | Configure neighbor as route reflector client |
BR6(config-router-af)#neighbor 15.15.15.15 next-hop-self | Configure next-hop self for the neighbor |
BR6(config-router-af)#neighbor 3.3.3.3 next-hop-self | Configure next-hop self for the neighbor |
BR6(config-router-af)#neighbor 8.8.8.8 next-hop-self | Configure next-hop self for the neighbor |
BR6(config-router-af)#neighbor 9.9.9.9 next-hop-self | Configure next-hop self for the neighbor |
BR6(config-router-af)#bgp additional-paths send | Enable additional paths send capability on neighbor level under ipv4 labeled unicast address family |
BR6(config-router-af)#bgp additional-paths select best 2 | Select best 2 paths from the available additional paths to advertise to the next router |
BR6(config-router)#exit | Exit BGP router mode |
BR2
BR2(config)#enable ext-ospf-multi-inst | Enable ospf multi instance |
BR2(config)#interface lo | Enter interface lo mode |
BR2(config-if)#ip address 5.5.5.5/32 | Configure ip address for loopback interface |
BR2(config-if)#exit | Exit the interface mode |
BR2(config)#router ldp | Configure ldp on the router |
BR2(config-router)#transport-address ipv4 5.5.5.5 | Enable loopback ip as transport address |
BR2(config-router)#exit | Exit router ldp mode |
BR2(config)#interface eth1 | Enter interface mode |
BR2(config-if)#ip address 50.1.1.160/24 | Configure ip address on the interface |
BR2(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
BR2(config-if)#label-switching | Enable label switching on the interface |
BR2(config-if)#exit | Exit the interface mode |
BR2(config)#interface eth2 | Enter interface mode |
BR2(config-if)#ip address 40.1.1.160/24 | Configure ip address on the interface |
BR2(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
BR2(config-if)#label-switching | Enable label switching on the interface |
BR2(config-if)#exit | Exit the interface mode |
BR2(config)#router ospf 2 | Configure router ospf with instance id 2 |
BR2(config-router)#network 5.5.5.5/32 area 0 | Add the loopback network into instance 2 |
BR2(config-router)#network 40.1.1.0/24 area 0 | Add the network as part of ospf instance id 2 |
BR2(config-router)#exit | Exit the router ospf mode |
BR2(config)#router ospf 3 | Configure router ospf which will be part of aggregation 2 with instance id as 3 |
BR2(config-router)#network 5.5.5.5/32 area 0.0.0.0 instance-id 3 | Add interface loopback into ospf instance 3 with area 0 using network command |
BR2(config-router)#network 50.1.1.0/24 area 0 | Add the network as part of ospf instance id 3 |
BR2(config-router)#exit | Exit the router ospf mode |
BR2(config)#router bgp 100 | Configure router bgp |
BR2(config-router)#neighbor 3.3.3.3 remote-as 100 | Configure ibgp neighbor |
BR2(config-router)#neighbor 7.7.7.7 remote-as 100 | Configure ibgp neighbor |
BR2(config-router)#neighbor 8.8.8.8 remote-as 100 | Configure ibgp neighbor |
BR2(config-router)#neighbor 9.9.9.9 remote-as 100 | Configure ibgp neighbor |
BR2(config-router)#neighbor 13.13.13.13 remote-as 100 | Configure ibgp neighbor |
BR2(config-router)#neighbor 15.15.15.15 remote-as 100 | Configure ibgp neighbor |
BR2(config-router)#neighbor 3.3.3.3 update-source 5.5.5.5 | Configure update source for the neighbor with loopback address |
BR2(config-router)#neighbor 7.7.7.7 update-source 5.5.5.5 | Configure update source for the neighbor with loopback address |
BR2(config-router)#neighbor 8.8.8.8 update-source 5.5.5.5 | Configure update source for the neighbor with loopback address |
BR2(config-router)#neighbor 9.9.9.9 update-source 5.5.5.5 | Configure update source for the neighbor with loopback address |
BR2(config-router)#neighbor 13.13.13.13 update-source 5.5.5.5 | Configure update source for the neighbor with loopback address |
BR2(config-router)#neighbor 15.15.15.15 update-source 5.5.5.5 | Configure update source for the neighbor with loopback address |
BR2(config-router)#neighbor 3.3.3.3 fall-over bfd multihop | Configure bfd for the neighbor |
BR2(config-router)#neighbor 7.7.7.7 fall-over bfd multihop | Configure bfd for the neighbor |
BR2(config-router)#neighbor 8.8.8.8 fall-over bfd multihop | Configure bfd for the neighbor |
BR2(config-router)#neighbor 9.9.9.9 fall-over bfd multihop | Configure bfd for the neighbor |
BR2(config-router)#neighbor 13.13.13.13 fall-over bfd multihop | Configure bfd for the neighbor |
BR2(config-router)#neighbor 15.15.15.15 fall-over bfd multihop | Configure bfd for the neighbor |
BR2(config-router)#allocate-label all | Configure allocate label all command |
BR2(config-router)#address-family ipv4 labeled-unicast | Configure address-family ipv4 labeled unicast |
BR2(config-router-af)#neighbor 3.3.3.3 activate | Activate the neighbor under address family labeled unicast |
BR2(config-router-af)#neighbor 7.7.7.7 activate | Activate the neighbor under address family labeled unicast |
BR2(config-router-af)#neighbor 8.8.8.8 activate | Activate the neighbor under address family labeled unicast |
BR2(config-router-af)#neighbor 9.9.9.9 activate | Activate the neighbor under address family labeled unicast |
BR2(config-router-af)#neighbor 13.13.13.13 activate | Activate the neighbor under address family labeled unicast |
BR2(config-router-af)#neighbor 15.15.15.15 activate | Activate the neighbor under address family labeled unicast |
BR2(config-router-af)#neighbor 13.13.13.13 route-reflector-client | Configure neighbor as route reflector client |
BR2(config-router-af)#neighbor 7.7.7.7 route-reflector-client | Configure neighbor as route reflector client |
BR2(config-router-af)#neighbor 15.15.15.15 route-reflector-client | Configure neighbor as route reflector client |
BR2(config-router-af)#neighbor 15.15.15.15 next-hop-self | Configure next-hop self for the neighbor |
BR2(config-router-af)#neighbor 3.3.3.3 next-hop-self | Configure next-hop self for the neighbor |
BR2(config-router-af)#neighbor 8.8.8.8 next-hop-self | Configure next-hop self for the neighbor |
BR2(config-router-af)#neighbor 9.9.9.9 next-hop-self | Configure next-hop self for the neighbor |
BR2(config-router-af)#bgp additional-paths send | Enable additional paths send capability on neighbor level under ipv4 labeled unicast address family |
BR2(config-router-af )#bgp additional-paths select best 3 | Select best 3 paths from the available additional paths to advertise to the next router |
BR2(config-router)#exit | Exit BGP router mode |
BR7
BR7(config)#enable ext-ospf-multi-inst | Enable ospf multi instance |
BR7(config)#interface lo | Enter interface lo mode |
BR7(config-if)#ip address 12.12.12.12/32 | Configure ip address for loopback interface |
BR7(config-if)#exit | Exit the interface mode |
BR7(config)#access-list 1 permit 3.3.3.3 0.0.0.0 | Configure the access list to allow the BR5 loopback ip |
BR7(config)#access-list 2 permit 8.8.8.8 0.0.0.0 | Configure the access list to allow the BR6 loopback ip |
BR7(config)#access-list 3 permit 9.9.9.9 0.0.0.0 | Configure the access list to allow the BR7 loopback ip |
BR7(config)#route-map A permit 10 | Configure route-map A and permit |
BR7(config-route-map)#match ip address 1 | Match ip address 1 |
BR7(config-route-map)#exit | Exit the route-map |
BR7(config)#route-map A permit 20 | Configure route-map A and permit |
BR7(config-route-map)#match ip address 2 | Match ip address 2 |
BR7(config-route-map)#exit | Exit the route-map |
BR7(config)#route-map A permit 30 | Configure route-map A and permit |
BR7(config-route-map)#match ip address 3 | Match ip address 3 |
BR7(config-route-map)#exit | Exit the route-map |
BR7(config)#router ldp | Configure ldp on the router |
BR7(config-router)#transport-address ipv4 12.12.12.12 0 | Enable loopback ip as transport address |
BR7(config-router)#exit | Exit router ldp mode |
BR7(config)#interface eth5 | Enter interface mode |
BR7(config-if)#ip address 33.1.1.169/24 | Configure ip address on the interface |
BR7(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
BR7(config-if)#label-switching | Enable label switching on the interface |
BR7(config-if)#exit | Exit the interface mode |
BR7(config)#interface eth7 | Enter interface mode |
BR7(config-if)#ip address 29.1.1.169/24 | Configure ip address on the interface |
BR7(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
BR7(config-if)#label-switching | Enable label switching on the interface |
BR7(config-if)#exit | Exit the interface mode |
BR7(config)#router ospf 2 | Configure router ospf with instance id 2 |
BR7(config-router)#network 12.12.12.12/32 area 0 | Add the loopback network into instance 2 |
BR7(config-router)#network 29.1.1.0/24 area 0 | Add the network as part of ospf instance id 2 |
BR7(config-router)#exit | Exit the router ospf mode |
BR7(config)#router ospf 3 | Configure router ospf which will be part of aggregation 2 with instance id as 3 |
BR7(config-router)#redistribute ospf 2 route-map A | Redistribute selected loopbacks into ospf instance 3 |
BR7(config-router)#network 12.12.12.12/32 area 0.0.0.0 instance-id 3 | Add interface loopback into ospf instance 3 with area 0 using network command |
BR7(config-router)#network 33.1.1.0/24 area 0 | Add the network as part of ospf instance id 3 |
BR7(config-router)#exit | Exit the router ospf mode |
BR7(config)#router bgp 100 | Configure router bgp |
BR7(config-router)#neighbor 3.3.3.3 remote-as 100 | Configure ibgp neighbor |
BR7(config-router)#neighbor 7.7.7.7 remote-as 100 | Configure ibgp neighbor |
BR7(config-router)#neighbor 8.8.8.8 remote-as 100 | Configure ibgp neighbor |
BR7(config-router)#neighbor 9.9.9.9 remote-as 100 | Configure ibgp neighbor |
BR7(config-router)#neighbor 13.13.13.13 remote-as 100 | Configure ibgp neighbor |
BR7(config-router)#neighbor 15.15.15.15 remote-as 100 | Configure ibgp neighbor |
BR7(config-router)#neighbor 3.3.3.3 update-source 12.12.12.12 | Configure update source for the neighbor with loopback address |
BR7(config-router)#neighbor 7.7.7.7 update-source 12.12.12.12 | Configure update source for the neighbor with loopback address |
BR7(config-router)#neighbor 8.8.8.8 update-source 12.12.12.12 | Configure update source for the neighbor with loopback address |
BR7(config-router)#neighbor 9.9.9.9 update-source 12.12.12.12 | Configure update source for the neighbor with loopback address |
BR7(config-router)#neighbor 13.13.13.13 update-source 12.12.12.12 | Configure update source for the neighbor with loopback address |
BR7(config-router)#neighbor 15.15.15.15 update-source 12.12.12.12 | Configure update source for the neighbor with loopback address |
BR7(config-router)#neighbor 3.3.3.3 fall-over bfd multihop | Configure bfd for the neighbor |
BR7(config-router)#neighbor 7.7.7.7 fall-over bfd multihop | Configure bfd for the neighbor |
BR7(config-router)#neighbor 8.8.8.8 fall-over bfd multihop | Configure bfd for the neighbor |
BR7(config-router)#neighbor 9.9.9.9 fall-over bfd multihop | Configure bfd for the neighbor |
BR7(config-router)#neighbor 13.13.13.13 fall-over bfd multihop | Configure bfd for the neighbor |
BR7(config-router)#neighbor 15.15.15.15 fall-over bfd multihop | Configure bfd for the neighbor |
BR7(config-router)#allocate-label all | Configure allocate label all command |
BR7(config-router)#address-family ipv4 labeled-unicast | Configure address-family ipv4 labeled unicast |
BR7(config-router-af)#neighbor 3.3.3.3 activate | Activate the neighbor under address family labeled unicast |
BR7(config-router-af)#neighbor 7.7.7.7 activate | Activate the neighbor under address family labeled unicast |
BR7(config-router-af)#neighbor 8.8.8.8 activate | Activate the neighbor under address family labeled unicast |
BR7(config-router-af)#neighbor 9.9.9.9 activate | Activate the neighbor under address family labeled unicast |
BR7(config-router-af)#neighbor 13.13.13.13 activate | Activate the neighbor under address family labeled unicast |
BR7(config-router-af)#neighbor 15.15.15.15 activate | Activate the neighbor under address family labeled unicast |
BR7(config-router-af)#neighbor 13.13.13.13 route-reflector-client | Configure neighbor as route reflector client |
BR7(config-router-af)#neighbor 7.7.7.7 route-reflector-client | Configure neighbor as route reflector client |
BR7(config-router-af)#neighbor 15.15.15.15 route-reflector-client | Configure neighbor as route reflector client |
BR7(config-router-af)#neighbor 15.15.15.15 next-hop-self | Configure next-hop self for the neighbor |
BR7(config-router-af)#neighbor 3.3.3.3 next-hop-self | Configure next-hop self for the neighbor |
BR7(config-router-af)#neighbor 8.8.8.8 next-hop-self | Configure next-hop self for the neighbor |
BR7(config-router-af)#neighbor 9.9.9.9 next-hop-self | Configure next-hop self for the neighbor |
BR7(config-router-af)#bgp additional-paths send-receive | Enable additional paths send-receive capability on neighbor level under ipv4 labeled unicast address family |
BR7(config-router-af)#bgp additional-paths select all | Select all additional paths to advertise to the next router |
BR7(config-router-af)#exit-address-family | Exit bgp address-family ipv6 labeled-unicast mode |
BR7(config-router)#exit | Exit BGP router mode |
P3
P3(config)#interface lo | Enter interface lo mode |
P3(config-if)#ip address 6.6.6.6/32 | Configure ip address for loopback interface |
P3(config-if)#exit | Exit interface loopback mode |
P3(config)#router ldp | Configure ldp on the router |
P3(config-router)#transport-address ipv4 6.6.6.6 0 | Enable loopback ip as transport address |
P3(config-router)#exit | Exit the router ldp mode |
P3(config)#interface eth1 | Enter interface mode |
P3(config-if)#ip address 50.1.1.161/24 | Configure ip address on the interface |
P3(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P3(config-if)#label-switching | Enable label switching on the interface |
P3(config-if)#exit | Exit the interface mode |
P3(config)#interface eth2 | Enter interface mode |
P3(config-if)#ip address 60.1.1.161/24 | Configure ip address on the interface |
P3(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P3(config-if)#label-switching | Enable label switching on the interface |
P3(config-if)#exit | Exit the interface mode |
P3(config)#interface eth3 | Enter interface mode |
P3(config-if)#ip address 26.1.1.161/24 | Configure ip address on the interface |
P3(config-if)#enable-ldp ipv4 | Enable rsvp on the interface |
P3(config-if)#label-switching | Enable label switching on the interface |
P3(config-if)#exit | Exit the interface mode |
P3(config)#interface eth4 | Enter interface mode |
P3(config-if)#ip address 28.1.1.161/24 | Configure ip address on the interface |
P3(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P3(config-if)#label-switching | Enable label switching on the interface |
P3(config-if)#exit | Exit the interface mode |
P3(config)#interface eth5 | Enter interface mode |
P3(config-if)#ip address 33.1.1.161/24 | Configure ip address on the interface |
P3(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P3(config-if)#label-switching | Enable label switching on the interface |
P3(config-if)#exit | Exit the interface mode |
P3(config)#interface eth6 | Enter interface mode |
P3(config-if)#ip address 32.1.1.161/24 | Configure ip address on the interface |
P3(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P3(config-if)#label-switching | Enable label switching on the interface |
P3(config-if)#exit | Exit the interface mode |
P3(config)#interface eth7 | Enter interface mode |
P3(config-if)#ip address 42.1.1.161/24 | Configure ip address on the interface |
P3(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
P3(config-if)#label-switching | Enable label switching on the interface |
P3(config-if)#exit | Exit the interface mode |
P3(config)#router ospf 3 | Configure Router ospf with instance id 3 |
P3(config-router)#network 26.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 3 with area 0 using network command |
P3(config-router)#network 28.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 3 with area 0 using network command |
P3(config-router)#network 32.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 3 with area 0 using network command |
P3(config-router)#network 33.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 3 with area 0 using network command |
P3(config-router)#network 42.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 3 with area 0 using network command |
P3(config-router)#network 50.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 3 with area 0 using network command |
P3(config-router)#network 60.1.1.0/24 area 0.0.0.0 | Add interface into ospf instance 3 with area 0 using network command |
P3(config-router)#network 6.6.6.6/32 area 0.0.0.0 | Add interface loopback into ospf instance 2 with area 0 using network command |
P3(config-router)#exit | Exit router ospf mode |
AGN4
AGN4(config)#interface lo | Enter interface lo mode |
AGN4(config-if)#ip address 13.13.13.13/32 | Configure ip address for loopback interface |
AGN4(config-if)#exit | Exit interface loopback mode |
AGN4(config)#router ldp | Configure router ldp |
AGN4(config-router)#transport-address ipv4 13.13.13.13 | Configure transport address as loopback |
AGN4(config)#exit | Exit the router ldp mode |
AGN4(config)#interface eth6 | Enter interface mode |
AGN4(config-if)#ip address 32.1.1.170/24 | Configure ip address on the interface |
AGN4(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
AGN4(config-if)#label-switching | Enable label-switching on the interface |
AGN4(config-if)#exit | Exit the interface mode |
AGN4(config)#router ospf 3 | Configure router ospf instance 3 |
AGN4(config-router)#network 13.13.13.13/32 area 0 | Add the loopback network into ospf instance 3 |
AGN4(config-router)#network 32.1.1.0/24 area 0 | Add the ip address into ospf instance 3 |
AGN4(config-router)#exit | Exit router ospf mode |
AGN4(config)#router bgp 100 | Enter router bgp mode |
AGN4(config-router)#network 13.13.13.13/32 | Advertise loopback through network command inside bgp |
AGN4(config-router)#neighbor 5.5.5.5 remote-as 100 | Configure iBGP neighbor |
AGN4(config-router)#neighbor 10.10.10.10 remote-as 100 | Configure iBGP neighbor |
AGN4(config-router)#neighbor 11.11.11.11 remote-as 100 | Configure iBGP neighbor |
AGN4(config-router)#neighbor 12.12.12.12 remote-as 100 | Configure iBGP neighbor |
AGN4(config-router)#neighbor 5.5.5.5 update-source 13.13.13.13 | Update the source for the neighbor as loopback ip |
AGN4(config-router)#neighbor 10.10.10.10 update-source 13.13.13.13 | Update the source for the neighbor as loopback ip |
AGN4(config-router)#neighbor 11.11.11.11 update-source 13.13.13.13 | Update the source for the neighbor as loopback ip |
AGN4(config-router)#neighbor 12.12.12.12 update-source 13.13.13.13 | Update the source for the neighbor as loopback ip |
AGN4(config-router)#neighbor 5.5.5.5 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN4(config-router)#neighbor 10.10.10.10 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN4(config-router)#neighbor 11.11.11.11 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN4(config-router)#neighbor 12.12.12.12 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN4(config-router)#allocate-label all | Enable allocate label all command |
AGN4(config-router)#address-family ipv4 labeled-unicast | Enter ipv4 labeled-unicast address family |
AGN4(config-router-af)#neighbor 5.5.5.5 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN4(config-router-af)#neighbor 10.10.10.10 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN4(config-router-af)#neighbor 11.11.11.11 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN4(config-router-af)#neighbor 12.12.12.12 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN4(config-router-af)#bgp additional-paths receive | Enable bgp additional paths receive at global level under ipv4 labeled unicast address family |
AGN4(config-router-af)#exit | End from router bgp mode |
AGN2
AGN2(config)#interface lo | Enter interface lo mode |
AGN2(config-if)#ip address 7.7.7.7/32 | Configure ip address for loopback interface |
AGN2(config-if)#exit | Exit interface loopback mode |
AGN2(config)#router ldp | Configure router ldp |
AGN2(config-router)#transport-address ipv4 7.7.7.7 | Configure transport address as loopback |
AGN2(config-router)#exit | Exit router ldp mode |
AGN2(config)#interface eth2 | Enter interface mode |
AGN2(config-if)#ip address 60.1.1.162/24 | Configure ip address on the interface |
AGN2(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
AGN2(config-if)#label-switching | Enable label-switching on the interface |
AGN2(config-if)#exit | Exit the interface mode |
AGN2(config)#router ospf 3 | Configure router ospf instance 3 |
AGN2(config-router)#network 7.7.7.7/32 area 0 | Add the loopback network into ospf instance 3 |
AGN2(config-router)#network 60.1.1.0/24 area 0 | Add the ip address into ospf instance 3 |
AGN2(config-router)#exit | Exit router ospf mode |
AGN2(config)#router bgp 100 | Enter router bgp mode |
AGN2(config-router)#network 7.7.7.7/32 | Advertise loopback through network command inside bgp |
AGN2(config-router)#neighbor 5.5.5.5 remote-as 100 | Configure iBGP neighbor |
AGN2(config-router)#neighbor 10.10.10.10 remote-as 100 | Configure iBGP neighbor |
AGN2(config-router)#neighbor 11.11.11.11 remote-as 100 | Configure iBGP neighbor |
AGN2(config-router)#neighbor 12.12.12.12 remote-as 100 | Configure iBGP neighbor |
AGN2(config-router)#neighbor 5.5.5.5 update-source 7.7.7.7 | Update the source for the neighbor as loopback ip |
AGN2(config-router)#neighbor 10.10.10.10 update-source 7.7.7.7 | Update the source for the neighbor as loopback ip |
AGN2(config-router)#neighbor 11.11.11.11 update-source 7.7.7.7 | Update the source for the neighbor as loopback ip |
AGN2(config-router)#neighbor 12.12.12.12 update-source 7.7.7.7 | Update the source for the neighbor as loopback ip |
AGN2(config-router)#neighbor 5.5.5.5 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN2(config-router)#neighbor 10.10.10.10 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN2(config-router)#neighbor 11.11.11.11 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN2(config-router)#neighbor 12.12.12.12 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN2(config-router)#allocate-label all | Enable allocate label all command |
AGN2(config-router)#address-family ipv4 labeled-unicast | Enter ipv4 labeled-unicast address family |
AGN2(config-router-af)#neighbor 5.5.5.5 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN2(config-router-af)#neighbor 10.10.10.10 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN2(config-router-af)#neighbor 11.11.11.11 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN2(config-router-af)#neighbor 12.12.12.12 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN2(config-router-af)#neighbor 5.5.5.5 additional-paths receive | Enable bgp additional paths receive at neighbor level under ipv4 labeled unicast address family |
AGN2(config-router-af)#neighbor 10.10.10.10 additional-paths receive | Enable bgp additional paths receive at neighbor level under ipv4 labeled unicast address family |
AGN2(config-router-af)#neighbor 11.11.11.11 additional-paths receive | Enable bgp additional paths receive at neighbor level under ipv4 labeled unicast address family |
AGN2(config-router-af)#exit-address-family | Exit BGP address-family ipv4-labeled unicast mode |
AGN2(config-router)#end | Return to configure terminal mode |
AGN5
AGN5(config)#interface lo | Enter interface lo mode |
AGN5(config-if)#ip address 15.15.15.15/32 | Configure ip address for loopback interface |
AGN5(config-if)#exit | Exit interface loopback mode |
AGN5(config)#router ldp | Configure router ldp |
AGN5(config-router)#transport-address ipv4 15.15.15.15 | Configure transport address as loopback |
AGN5(config-router)#exit | Exit router ldp mode |
AGN5(config)#interface eth7 | Enter interface mode |
AGN5(config-if)#ip address 42.1.1.172/24 | Configure ip address on the interface |
AGN5(config-if)#enable-ldp ipv4 | Enable ldp on the interface |
AGN5(config-if)#label-switching | Enable label-switching on the interface |
AGN5(config-if)#exit | Exit the interface mode |
AGN5(config)#router ospf 3 | Configure router ospf instance 3 |
AGN5(config-router)#network 15.15.15.15/32 area 0 | Add the loopback network into ospf instance 3 |
AGN5(config-router)#network 42.1.1.0/24 area 0 | Add the ip address into ospf instance 3 |
AGN5(config-router)#exit | Exit router ospf mode |
AGN5(config)#router bgp 100 | Enter router bgp mode |
AGN5(config-router)#network 15.15.15.15/32 | Advertise loopback through network command inside bgp |
AGN5(config-router)#neighbor 5.5.5.5 remote-as 100 | Configure iBGP neighbor |
AGN5(config-router)#neighbor 10.10.10.10 remote-as 100 | Configure iBGP neighbor |
AGN5(config-router)#neighbor 11.11.11.11 remote-as 100 | Configure iBGP neighbor |
AGN5(config-router)#neighbor 12.12.12.12 remote-as 100 | Configure iBGP neighbor |
AGN5(config-router)#neighbor 5.5.5.5 update-source 15.15.15.15 | Update the source for the neighbor as loopback ip |
AGN5(config-router)#neighbor 10.10.10.10 update-source 15.15.15.15 | Update the source for the neighbor as loopback ip |
AGN5(config-router)#neighbor 11.11.11.11 update-source 15.15.15.15 | Update the source for the neighbor as loopback ip |
AGN5(config-router)#neighbor 12.12.12.12 update-source 15.15.15.15 | Update the source for the neighbor as loopback ip |
AGN5(config-router)#neighbor 5.5.5.5 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN5(config-router)#neighbor 10.10.10.10 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN5(config-router)#neighbor 11.11.11.11 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN5(config-router)#neighbor 12.12.12.12 fall-over bfd multihop | Configure bfd for all the neighbors |
AGN5(config-router)#allocate-label all | Enable allocate label all command |
AGN5(config-router)#address-family ipv4 labeled-unicast | Enter ipv4 labeled-unicast address family |
AGN5(config-router-af)#neighbor 5.5.5.5 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN5(config-router-af)#neighbor 10.10.10.10 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN5(config-router-af)#neighbor 11.11.11.11 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN5(config-router-af)#neighbor 12.12.12.12 activate | Activate the neighbor under ipv4 labeled-unicast address family |
AGN5(config-router-af)#exit-address-family | Exit BGP address-family ipv4-labeled unicast mode |
AGN5(config-router)#end | Return to configure terminal mode |
AGN5(config-router-af)#exit | End from router bgp mode |
Validation for BGP Labeled Unicast with Additional Paths
Verify OSPF neighborship is up with show ip ospf neighbor.
Verify LDP sessions are up with show ldp session.
Check BGPLU with Additional Paths
AGN3#show ip bgp labeled-unicast all
Status codes: s suppressed, d damped, h history, a add-path, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*>i 1.1.1.1/32 1.1.1.1 - 24960
* i 1.1.1.1 - 24960
* i 1.1.1.1 - 24960
*>i 7.7.7.7/32 5.5.5.5 - 24960
* i 5.5.5.5 - 24960
* i 5.5.5.5 - 24960
*>i 13.13.13.13/32 5.5.5.5 - 24962
* i 10.10.10.10 - 24961
* i 10.10.10.10 - 24961
*> 14.14.14.14/32 0.0.0.0 24960(eth5) -
*>i 15.15.15.15/32 5.5.5.5 - 24961
* i 5.5.5.5 - 24961
* i 5.5.5.5 - 24961
AGN3#
AGN3#sh ip bgp labeled-unicast all summary
BGP router identifier 10.12.28.171, local AS number 100
BGP table version is 11
1 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd
3.3.3.3 4 100 578 564 11 0 0 04:40:43 4
8.8.8.8 4 100 567 564 11 0 0 04:40:43 4
9.9.9.9 4 100 569 564 11 0 0 04:40:58 4
Total number of neighbors 3
Total number of Established sessions 3
AGN3#
AGN3#sh ip bgp labeled-unicast 13.13.13.13/32
BGP routing table entry for 13.13.13.13/32
Paths: (3 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
Local
5.5.5.5 (metric 20) from 3.3.3.3 (10.12.28.158)
Origin IGP, metric 0, localpref 100, label 24962, Out-label 24962, In-label NA , valid, internal, best
Originator: 10.12.28.160, Cluster list: 10.12.28.158 10.12.28.160
rx path_id: 2 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:18:09 2018
Local
10.10.10.10 (metric 20) from 8.8.8.8 (10.12.28.165)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal
Originator: 10.12.28.167, Cluster list: 10.12.28.165 10.12.28.167
Not advertised to any peer
Last update: Mon Aug 6 00:10:39 2018
Local
10.10.10.10 (metric 20) from 9.9.9.9 (10.12.28.166)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal
Originator: 10.12.28.167, Cluster list: 10.12.28.166 10.12.28.167
Not advertised to any peer
Last update: Mon Aug 6 00:10:52 2018
AGN3#
AGN3#sh mpls ftn-table
Primary FTN entry with FEC: 1.1.1.1/32, id: 1, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 9, 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: eth5, out label: 24343
Nexthop addr: 41.1.1.157 cross connect ix: 9, op code: Push
Primary FTN entry with FEC: 1.1.1.1/32, id: 15, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth5, out label: 24960
Nexthop addr: 1.1.1.1 cross connect ix: 12, op code: Push
Primary FTN entry with FEC: 2.2.2.2/32, id: 2, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 41.1.1.157 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 3.3.3.3/32, id: 8, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth5, out label: 24320
Nexthop addr: 41.1.1.157 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 5.5.5.5/32, id: 9, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 24330
Nexthop addr: 41.1.1.157 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 16, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 13, in intf: - in label: 0 out-segment ix: 12
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 12, owner: BGP, Stale: NO, out intf: eth5, out label: 24960
Nexthop addr: 5.5.5.5 cross connect ix: 13, op code: Push and Lookup
Primary FTN entry with FEC: 9.9.9.9/32, id: 3, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 3, 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: eth5, out label: 24321
Nexthop addr: 41.1.1.157 cross connect ix: 3, op code: Push
Primary FTN entry with FEC: 10.1.1.0/24, id: 4, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 41.1.1.157 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 10.10.10.10/32, id: 10, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 6, 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: eth5, out label: 24333
Nexthop addr: 41.1.1.157 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 11.11.11.11/32, id: 11, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth5, out label: 24336
Nexthop addr: 41.1.1.157 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 12.12.12.12/32, id: 12, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 8, 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: eth5, out label: 24339
Nexthop addr: 41.1.1.157 cross connect ix: 8, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 13, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 10, in intf: - in label: 0 out-segment ix: 9
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 9, owner: BGP, Stale: NO, out intf: eth5, out label: 24962
Nexthop addr: 5.5.5.5 cross connect ix: 10, op code: Push and Lookup
Primary FTN entry with FEC: 15.15.15.15/32, id: 17, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 14, in intf: - in label: 0 out-segment ix: 13
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 13, owner: BGP, Stale: NO, out intf: eth5, out label: 24961
Nexthop addr: 5.5.5.5 cross connect ix: 14, op code: Push and Lookup
Primary FTN entry with FEC: 20.1.1.0/24, id: 5, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 41.1.1.157 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 21.1.1.0/24, id: 6, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 41.1.1.157 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 23.1.1.0/24, id: 7, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 41.1.1.157 cross connect ix: 2, op code: Push
AGN1#sh ip bgp labeled-unicast all
Status codes: s suppressed, d damped, h history, a add-path, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*> 1.1.1.1/32 0.0.0.0 24960(eth1) -
*>i 7.7.7.7/32 5.5.5.5 - 24960
* i 5.5.5.5 - 24960
* i 5.5.5.5 - 24960
* i 10.10.10.10 - 24962
* i 10.10.10.10 - 24962
* i 10.10.10.10 - 24962
* i 11.11.11.11 - 24961
* i 11.11.11.11 - 24961
* i 12.12.12.12 - 24962
*>i 13.13.13.13/32 5.5.5.5 - 24962
* i 5.5.5.5 - 24962
* i 5.5.5.5 - 24962
* i 10.10.10.10 - 24961
* i 10.10.10.10 - 24961
* i 10.10.10.10 - 24961
* i 11.11.11.11 - 24962
* i 11.11.11.11 - 24962
* i 12.12.12.12 - 24960
*>i 14.14.14.14/32 14.14.14.14 - 24960
* i 14.14.14.14 - 24960
* i 14.14.14.14 - 24960
*>i 15.15.15.15/32 5.5.5.5 - 24961
* i 5.5.5.5 - 24961
* i 5.5.5.5 - 24961
* i 10.10.10.10 - 24960
* i 10.10.10.10 - 24960
* i 10.10.10.10 - 24960
* i 11.11.11.11 - 24960
* i 11.11.11.11 - 24960
* i 12.12.12.12 - 24961
AGN1#
AGN1#sh ip bgp labeled-unicast all summary
BGP router identifier 10.12.28.156, local AS number 100
BGP table version is 6
1 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd
3.3.3.3 4 100 577 568 6 0 0 04:42:43 13
8.8.8.8 4 100 573 568 6 0 0 04:42:47 7
9.9.9.9 4 100 575 568 6 0 0 04:42:36 10
Total number of neighbors 3
Total number of Established sessions 3
AGN1#
AGN1#sh ip bgp labeled-unicast 13.13.13.13/32
BGP routing table entry for 13.13.13.13/32
Paths: (9 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
Local
5.5.5.5 (metric 20) from 3.3.3.3 (10.12.28.158)
Origin IGP, metric 0, localpref 100, label 24962, Out-label 24962, In-label NA , valid, internal, best
Originator: 10.12.28.160, Cluster list: 10.12.28.158 10.12.28.160
rx path_id: 2 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:44 2018
Local
5.5.5.5 (metric 20) from 8.8.8.8 (10.12.28.165)
Origin IGP, metric 0, localpref 100, label 24962, Out-label 24962, In-label NA , valid, internal
Originator: 10.12.28.160, Cluster list: 10.12.28.165 10.12.28.160
rx path_id: 2 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:45 2018
Local
5.5.5.5 (metric 20) from 9.9.9.9 (10.12.28.166)
Origin IGP, metric 0, localpref 100, label 24962, Out-label 24962, In-label NA , valid, internal
Originator: 10.12.28.160, Cluster list: 10.12.28.166 10.12.28.160
rx path_id: 1 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:44 2018
Local
10.10.10.10 (metric 20) from 3.3.3.3 (10.12.28.158)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal
Originator: 10.12.28.167, Cluster list: 10.12.28.158 10.12.28.167
rx path_id: 1 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:37 2018
Local
10.10.10.10 (metric 20) from 8.8.8.8 (10.12.28.165)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal
Originator: 10.12.28.167, Cluster list: 10.12.28.165 10.12.28.167
rx path_id: 1 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:37 2018
Local
10.10.10.10 (metric 20) from 9.9.9.9 (10.12.28.166)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal
Originator: 10.12.28.167, Cluster list: 10.12.28.166 10.12.28.167
rx path_id: 2 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:51 2018
Local
11.11.11.11 (metric 20) from 3.3.3.3 (10.12.28.158)
Origin IGP, metric 0, localpref 100, label 24962, Out-label 24962, In-label NA , valid, internal
Originator: 10.12.28.168, Cluster list: 10.12.28.158 10.12.28.168
rx path_id: 3 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:11:03 2018
Local
11.11.11.11 (metric 20) from 9.9.9.9 (10.12.28.166)
Origin IGP, metric 0, localpref 100, label 24962, Out-label 24962, In-label NA , valid, internal
Originator: 10.12.28.168, Cluster list: 10.12.28.166 10.12.28.168
rx path_id: 3 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:11:03 2018
Local
12.12.12.12 (metric 20) from 3.3.3.3 (10.12.28.158)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.169, Cluster list: 10.12.28.158 10.12.28.169
rx path_id: 0 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:33 2018
AGN1#sh mpls ftn-table
Primary FTN entry with FEC: 2.2.2.2/32, id: 1, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 10.1.1.157 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 3.3.3.3/32, id: 2, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 3, 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: eth1, out label: 24320
Nexthop addr: 10.1.1.157 cross connect ix: 3, op code: Push
Primary FTN entry with FEC: 5.5.5.5/32, id: 3, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth1, out label: 24328
Nexthop addr: 10.1.1.157 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 17, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth1, out label: 24960
Nexthop addr: 5.5.5.5 cross connect ix: 12, op code: Push and Lookup
Primary FTN entry with FEC: 8.8.8.8/32, id: 4, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 24325
Nexthop addr: 10.1.1.157 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 9.9.9.9/32, id: 5, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 6, 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: eth1, out label: 24321
Nexthop addr: 10.1.1.157 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 10.10.10.10/32, id: 6, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth1, out label: 24331
Nexthop addr: 10.1.1.157 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 11.11.11.11/32, id: 7, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 8, 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: eth1, out label: 24334
Nexthop addr: 10.1.1.157 cross connect ix: 8, op code: Push
Primary FTN entry with FEC: 12.12.12.12/32, id: 8, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 9, 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: eth1, out label: 24337
Nexthop addr: 10.1.1.157 cross connect ix: 9, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 21, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 15, in intf: - in label: 0 out-segment ix: 14
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 14, owner: BGP, Stale: NO, out intf: eth1, out label: 24962
Nexthop addr: 5.5.5.5 cross connect ix: 15, op code: Push and Lookup
Primary FTN entry with FEC: 14.14.14.14/32, id: 9, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth1, out label: 24322
Nexthop addr: 10.1.1.157 cross connect ix: 10, op code: Push
Primary FTN entry with FEC: 14.14.14.14/32, id: 20, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 14, in intf: - in label: 0 out-segment ix: 13
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 13, owner: BGP, Stale: NO, out intf: eth1, out label: 24960
Nexthop addr: 14.14.14.14 cross connect ix: 14, op code: Push
Primary FTN entry with FEC: 15.15.15.15/32, id: 18, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 13, in intf: - in label: 0 out-segment ix: 12
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 12, owner: BGP, Stale: NO, out intf: eth1, out label: 24961
Nexthop addr: 5.5.5.5 cross connect ix: 13, op code: Push and Lookup
Primary FTN entry with FEC: 20.1.1.0/24, id: 10, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 10.1.1.157 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 21.1.1.0/24, id: 11, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 10.1.1.157 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 23.1.1.0/24, id: 12, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 10.1.1.157 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 41.1.1.0/24, id: 13, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 10.1.1.157 cross connect ix: 2, op code: Push
AGN1#
BR3#show ip bgp labeled-unicast all
Status codes: s suppressed, d damped, h history, a add-path, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*>i 1.1.1.1/32 1.1.1.1 24960(eth3) 24960
*>i 7.7.7.7/32 5.5.5.5 - 24960
*ai 10.10.10.10 - 24962
* i 11.11.11.11 - 24961
* i 12.12.12.12 - 24962
*>i 13.13.13.13/32 10.10.10.10 - 24961
*ai 5.5.5.5 - 24962
* i 11.11.11.11 - 24962
* i 12.12.12.12 - 24960
*>i 14.14.14.14/32 14.14.14.14 24961(eth3) 24960
*>i 15.15.15.15/32 5.5.5.5 - 24961
*ai 10.10.10.10 - 24960
* i 11.11.11.11 - 24960
* i 12.12.12.12 - 24961
BR3#
BR3#show ip bgp labeled-unicast 13.13.13.13/32
BGP routing table entry for 13.13.13.13/32
Paths: (4 available, best #1, table Default-IP-Routing-Table)
Advertised to non peer-group peers:
14.14.14.14
Local
10.10.10.10 (metric 12) from 10.10.10.10 (10.12.28.167)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal, best
Originator: 10.12.28.162, Cluster list: 10.12.28.167
rx path_id: -1 tx path_id: 1
Advertised to non peer-group peers:
1.1.1.1
Last update: Mon Aug 6 00:10:36 2018
Local
5.5.5.5 (metric 12) from 5.5.5.5 (10.12.28.160)
Origin IGP, metric 0, localpref 100, label 24962, Out-label 24962, In-label NA , valid, internal, backup, add-path
Originator: 10.12.28.170, Cluster list: 10.12.28.160
rx path_id: -1 tx path_id: 2
Advertised to non peer-group peers:
1.1.1.1
Last update: Mon Aug 6 00:10:42 2018
Local
11.11.11.11 (metric 12) from 11.11.11.11 (10.12.28.168)
Origin IGP, metric 0, localpref 100, label 24962, Out-label 24962, In-label NA , valid, internal
Originator: 10.12.28.170, Cluster list: 10.12.28.168
Not advertised to any peer
Last update: Mon Aug 6 00:11:00 2018
Local
12.12.12.12 (metric 12) from 12.12.12.12 (10.12.28.169)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.170, Cluster list: 10.12.28.169
Not advertised to any peer
Last update: Mon Aug 6 00:10:29 2018
BGP PIC Enabled
BR3#show mpls ftn-table
Primary FTN entry with FEC: 1.1.1.1/32, id: 2, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 14, 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: eth4, out label: 24342
Nexthop addr: 21.1.1.157 cross connect ix: 14, op code: Push
Primary FTN entry with FEC: 1.1.1.1/32, id: 10, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 5, owner: BGP, Stale: NO, out intf: eth4, out label: 24960
Nexthop addr: 1.1.1.1 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 2.2.2.2/32, id: 3, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth4, out label: 3
Nexthop addr: 21.1.1.157 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 3.3.3.3/32, id: 4, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 3, 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, Stale: NO, out intf: eth4, out label: 24320
Nexthop addr: 21.1.1.157 cross connect ix: 3, op code: Push
Primary FTN entry with FEC: 4.4.4.4/32, id: 12, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 7, 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: eth3, out label: 3
Nexthop addr: 22.1.1.159 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 5.5.5.5/32, id: 13, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth3, out label: 24324
Nexthop addr: 22.1.1.159 cross connect ix: 8, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 24, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 16, in intf: - in label: 0 out-segment ix: 14
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 14, owner: BGP, Stale: NO, out intf: eth3, out label: 24960
Nexthop addr: 5.5.5.5 cross connect ix: 16, op code: Push and Lookup
Non-primary FTN entry with FEC: 7.7.7.7/32, id: 26, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 18, in intf: - in label: 0 out-segment ix: 16
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 16, owner: BGP, Stale: NO, out intf: eth3, out label: 24962
Nexthop addr: 10.10.10.10 cross connect ix: 18, op code: Push and Lookup
Primary FTN entry with FEC: 9.9.9.9/32, id: 5, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 4, 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: eth4, out label: 24321
Nexthop addr: 21.1.1.157 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 10.1.1.0/24, id: 6, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth4, out label: 3
Nexthop addr: 21.1.1.157 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 10.10.10.10/32, id: 11, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth3, out label: 24329
Nexthop addr: 22.1.1.159 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 11.11.11.11/32, id: 14, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 11, 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: eth3, out label: 24339
Nexthop addr: 22.1.1.159 cross connect ix: 11, op code: Push
Primary FTN entry with FEC: 12.12.12.12/32, id: 15, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 9, 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: eth3, out label: 24321
Nexthop addr: 22.1.1.159 cross connect ix: 9, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 22, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth3, out label: 24961
Nexthop addr: 10.10.10.10 cross connect ix: 12, op code: Push and Lookup
Non-primary FTN entry with FEC: 13.13.13.13/32, id: 28, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 20, in intf: - in label: 0 out-segment ix: 18
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 18, owner: BGP, Stale: NO, out intf: eth3, out label: 24962
Nexthop addr: 5.5.5.5 cross connect ix: 20, op code: Push and Lookup
Primary FTN entry with FEC: 14.14.14.14/32, id: 1, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth4, out label: 24324
Nexthop addr: 21.1.1.157 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 14.14.14.14/32, id: 27, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 19, in intf: - in label: 0 out-segment ix: 17
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 17, owner: BGP, Stale: NO, out intf: eth4, out label: 24960
Nexthop addr: 14.14.14.14 cross connect ix: 19, op code: Push
Primary FTN entry with FEC: 15.15.15.15/32, id: 23, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 15, in intf: - in label: 0 out-segment ix: 13
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 13, owner: BGP, Stale: NO, out intf: eth3, out label: 24961
Nexthop addr: 5.5.5.5 cross connect ix: 15, op code: Push and Lookup
Non-primary FTN entry with FEC: 15.15.15.15/32, id: 25, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 17, in intf: - in label: 0 out-segment ix: 15
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 15, owner: BGP, Stale: NO, out intf: eth3, out label: 24960
Nexthop addr: 10.10.10.10 cross connect ix: 17, op code: Push and Lookup
Primary FTN entry with FEC: 20.1.1.0/24, id: 7, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth4, out label: 3
Nexthop addr: 21.1.1.157 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 23.1.1.0/24, id: 8, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth4, out label: 3
Nexthop addr: 21.1.1.157 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 24.1.1.0/24, id: 16, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 7, 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: eth3, out label: 3
Nexthop addr: 22.1.1.159 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 25.1.1.0/24, id: 17, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 7, 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: eth3, out label: 3
Nexthop addr: 22.1.1.159 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 27.1.1.0/24, id: 18, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 7, 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: eth3, out label: 3
Nexthop addr: 22.1.1.159 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 29.1.1.0/24, id: 19, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 7, 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: eth3, out label: 3
Nexthop addr: 22.1.1.159 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 30.1.1.0/24, id: 20, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 7, 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: eth3, out label: 3
Nexthop addr: 22.1.1.159 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 40.1.1.0/24, id: 21, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 7, 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: eth3, out label: 3
Nexthop addr: 22.1.1.159 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 41.1.1.0/24, id: 9, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth4, out label: 3
Nexthop addr: 21.1.1.157 cross connect ix: 2, op code: Push
BR3#
BR4#show ip bgp labeled-unicast all
Status codes: s suppressed, d damped, h history, a add-path, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*>i 1.1.1.1/32 1.1.1.1 24961(eth4) 24960
*>i 7.7.7.7/32 5.5.5.5 - 24960
*ai 10.10.10.10 - 24962
*ai 11.11.11.11 - 24961
*ai 12.12.12.12 - 24962
*>i 13.13.13.13/32 10.10.10.10 - 24961
*ai 5.5.5.5 - 24962
*ai 11.11.11.11 - 24962
*ai 12.12.12.12 - 24960
*>i 14.14.14.14/32 14.14.14.14 24960(eth4) 24960
*>i 15.15.15.15/32 5.5.5.5 - 24961
*ai 10.10.10.10 - 24960
*ai 11.11.11.11 - 24960
*ai 12.12.12.12 - 24961
BR4#
BR4#show ip bgp labeled-unicast all summary
BGP router identifier 10.12.28.166, local AS number 100
BGP table version is 8
1 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd
1.1.1.1 4 100 576 583 8 0 0 04:46:35 1
5.5.5.5 4 100 577 576 8 0 0 04:46:34 3
10.10.10.10 4 100 575 575 8 0 0 04:46:21 3
11.11.11.11 4 100 577 576 8 0 0 04:46:31 3
12.12.12.12 4 100 578 577 8 0 0 04:46:50 3
14.14.14.14 4 100 576 581 8 0 0 04:46:52 1
Total number of neighbors 6
Total number of Established sessions 6
BR4#
BR4#show ip bgp labeled-unicast 13.13.13.13/32
BGP routing table entry for 13.13.13.13/32
Paths: (4 available, best #1, table Default-IP-Routing-Table)
Advertised to non peer-group peers:
14.14.14.14
Local
10.10.10.10 (metric 12) from 10.10.10.10 (10.12.28.167)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal, best
Originator: 10.12.28.162, Cluster list: 10.12.28.167
rx path_id: -1 tx path_id: 2
Advertised to non peer-group peers:
1.1.1.1
Last update: Mon Aug 6 00:10:50 2018
Local
5.5.5.5 (metric 12) from 5.5.5.5 (10.12.28.160)
Origin IGP, metric 0, localpref 100, label 24962, Out-label 24962, In-label NA , valid, internal, backup, add-path
Originator: 10.12.28.170, Cluster list: 10.12.28.160
rx path_id: -1 tx path_id: 1
Advertised to non peer-group peers:
1.1.1.1
Last update: Mon Aug 6 00:10:40 2018
Local
11.11.11.11 (metric 12) from 11.11.11.11 (10.12.28.168)
Origin IGP, metric 0, localpref 100, label 24962, Out-label 24962, In-label NA , valid, internal, add-path
Originator: 10.12.28.170, Cluster list: 10.12.28.168
rx path_id: -1 tx path_id: 3
Advertised to non peer-group peers:
1.1.1.1
Last update: Mon Aug 6 00:11:02 2018
Local
12.12.12.12 (metric 12) from 12.12.12.12 (10.12.28.169)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal, add-path
Originator: 10.12.28.170, Cluster list: 10.12.28.169
rx path_id: -1 tx path_id: 0
Not advertised to any peer
Last update: Mon Aug 6 00:10:28 2018
BGP PIC Enabled
BR4#
BR1#show ip bgp labeled-unicast all
Status codes: s suppressed, d damped, h history, a add-path, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*>i 1.1.1.1/32 1.1.1.1 24960(eth1) 24960
*>i 7.7.7.7/32 5.5.5.5 - 24960
*ai 11.11.11.11 - 24961
*ai 12.12.12.12 - 24962
*ai 10.10.10.10 - 24962
*>i 13.13.13.13/32 5.5.5.5 - 24962
*ai 10.10.10.10 - 24961
*ai 11.11.11.11 - 24962
*ai 12.12.12.12 - 24960
*>i 14.14.14.14/32 14.14.14.14 24961(eth1) 24960
*>i 15.15.15.15/32 5.5.5.5 - 24961
*ai 12.12.12.12 - 24961
*ai 10.10.10.10 - 24960
*ai 11.11.11.11 - 24960
BR1#
BR1#show ip bgp labeled-unicast all summary
BGP router identifier 10.12.28.158, local AS number 100
BGP table version is 7
1 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd
1.1.1.1 4 100 578 587 7 0 0 04:47:48 1
5.5.5.5 4 100 579 579 7 0 0 04:47:46 3
10.10.10.10 4 100 579 579 7 0 0 04:47:50 3
11.11.11.11 4 100 580 579 7 0 0 04:47:56 3
12.12.12.12 4 100 579 579 7 0 0 04:47:55 3
14.14.14.14 4 100 578 592 7 0 0 04:47:43 1
Total number of neighbors 6
Total number of Established sessions 6
BR1#
BR1#show ip bgp labeled-unicast 13.13.13.13/32
BGP routing table entry for 13.13.13.13/32
Paths: (4 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
Local
5.5.5.5 (metric 12) from 5.5.5.5 (10.12.28.160)
Origin IGP, metric 0, localpref 100, label 24962, Out-label 24962, In-label NA , valid, internal, best
Originator: 10.12.28.170, Cluster list: 10.12.28.160
rx path_id: -1 tx path_id: 2
Advertised to non peer-group peers:
1.1.1.1 14.14.14.14
Last update: Mon Aug 6 00:10:43 2018
Local
10.10.10.10 (metric 12) from 10.10.10.10 (10.12.28.167)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal, backup, add-path
Originator: 10.12.28.170, Cluster list: 10.12.28.167
rx path_id: -1 tx path_id: 1
Advertised to non peer-group peers:
1.1.1.1
Last update: Mon Aug 6 00:10:34 2018
Local
11.11.11.11 (metric 12) from 11.11.11.11 (10.12.28.168)
Origin IGP, metric 0, localpref 100, label 24962, Out-label 24962, In-label NA , valid, internal, add-path
Originator: 10.12.28.170, Cluster list: 10.12.28.168
rx path_id: -1 tx path_id: 3
Advertised to non peer-group peers:
1.1.1.1
Last update: Mon Aug 6 00:11:00 2018
Local
12.12.12.12 (metric 12) from 12.12.12.12 (10.12.28.169)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal, add-path
Originator: 10.12.28.170, Cluster list: 10.12.28.169
rx path_id: -1 tx path_id: 0
Advertised to non peer-group peers:
1.1.1.1
Last update: Mon Aug 6 00:10:30 2018
BGP PIC Enabled
BR1#
BR1#show mpls ftn-table
Primary FTN entry with FEC: 1.1.1.1/32, id: 1, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 18, 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: eth2, out label: 24340
Nexthop addr: 20.1.1.157 cross connect ix: 18, op code: Push
Primary FTN entry with FEC: 1.1.1.1/32, id: 22, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 15, 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, Stale: NO, out intf: eth2, out label: 24960
Nexthop addr: 1.1.1.1 cross connect ix: 15, op code: Push
Primary FTN entry with FEC: 2.2.2.2/32, id: 2, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth2, out label: 3
Nexthop addr: 20.1.1.157 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 4.4.4.4/32, id: 10, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 30.1.1.159 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 5.5.5.5/32, id: 11, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 9, 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: eth1, out label: 24324
Nexthop addr: 30.1.1.159 cross connect ix: 9, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 25, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 20, in intf: - in label: 0 out-segment ix: 15
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 15, owner: BGP, Stale: NO, out intf: eth1, out label: 24960
Nexthop addr: 5.5.5.5 cross connect ix: 20, op code: Push and Lookup
Non-primary FTN entry with FEC: 7.7.7.7/32, id: 26, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 21, in intf: - in label: 0 out-segment ix: 16
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 16, owner: BGP, Stale: NO, out intf: eth1, out label: 24961
Nexthop addr: 11.11.11.11 cross connect ix: 21, op code: Push and Lookup
Primary FTN entry with FEC: 8.8.8.8/32, id: 3, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 4, 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: eth2, out label: 24325
Nexthop addr: 20.1.1.157 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 9.9.9.9/32, id: 4, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 24321
Nexthop addr: 20.1.1.157 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 10.1.1.0/24, id: 5, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth2, out label: 3
Nexthop addr: 20.1.1.157 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 10.10.10.10/32, id: 12, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 11, 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: eth1, out label: 24327
Nexthop addr: 30.1.1.159 cross connect ix: 11, op code: Push
Primary FTN entry with FEC: 11.11.11.11/32, id: 13, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 13, 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: eth1, out label: 24337
Nexthop addr: 30.1.1.159 cross connect ix: 13, op code: Push
Primary FTN entry with FEC: 12.12.12.12/32, id: 14, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth1, out label: 24321
Nexthop addr: 30.1.1.159 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 24, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 19, in intf: - in label: 0 out-segment ix: 14
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 14, owner: BGP, Stale: NO, out intf: eth1, out label: 24962
Nexthop addr: 5.5.5.5 cross connect ix: 19, op code: Push and Lookup
Non-primary FTN entry with FEC: 13.13.13.13/32, id: 27, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 22, in intf: - in label: 0 out-segment ix: 17
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 17, owner: BGP, Stale: NO, out intf: eth1, out label: 24961
Nexthop addr: 10.10.10.10 cross connect ix: 22, op code: Push and Lookup
Primary FTN entry with FEC: 14.14.14.14/32, id: 6, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 3, 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, Stale: NO, out intf: eth2, out label: 24322
Nexthop addr: 20.1.1.157 cross connect ix: 3, op code: Push
Primary FTN entry with FEC: 14.14.14.14/32, id: 28, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 23, in intf: - in label: 0 out-segment ix: 18
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 18, owner: BGP, Stale: NO, out intf: eth2, out label: 24960
Nexthop addr: 14.14.14.14 cross connect ix: 23, op code: Push
Primary FTN entry with FEC: 15.15.15.15/32, id: 21, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 14, 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, Stale: NO, out intf: eth1, out label: 24961
Nexthop addr: 5.5.5.5 cross connect ix: 14, op code: Push and Lookup
Non-primary FTN entry with FEC: 15.15.15.15/32, id: 23, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 16, in intf: - in label: 0 out-segment ix: 12
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 12, owner: BGP, Stale: NO, out intf: eth1, out label: 24961
Nexthop addr: 12.12.12.12 cross connect ix: 16, op code: Push and Lookup
Primary FTN entry with FEC: 21.1.1.0/24, id: 7, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth2, out label: 3
Nexthop addr: 20.1.1.157 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 22.1.1.0/24, id: 15, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 30.1.1.159 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 23.1.1.0/24, id: 8, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth2, out label: 3
Nexthop addr: 20.1.1.157 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 24.1.1.0/24, id: 16, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 30.1.1.159 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 25.1.1.0/24, id: 17, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 30.1.1.159 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 27.1.1.0/24, id: 18, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 30.1.1.159 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 29.1.1.0/24, id: 19, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 30.1.1.159 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 40.1.1.0/24, id: 20, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 30.1.1.159 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 41.1.1.0/24, id: 9, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth2, out label: 3
Nexthop addr: 20.1.1.157 cross connect ix: 1, op code: Push
BR1#
BR4#show ip bgp labeled-unicast all
Status codes: s suppressed, d damped, h history, a add-path, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*>i 1.1.1.1/32 1.1.1.1 24961(eth4) 24960
*>i 7.7.7.7/32 5.5.5.5 - 24960
*ai 10.10.10.10 - 24962
*ai 11.11.11.11 - 24961
*ai 12.12.12.12 - 24962
*>i 13.13.13.13/32 10.10.10.10 - 24961
*ai 5.5.5.5 - 24962
*ai 11.11.11.11 - 24962
*ai 12.12.12.12 - 24960
*>i 14.14.14.14/32 14.14.14.14 24960(eth4) 24960
*>i 15.15.15.15/32 5.5.5.5 - 24961
*ai 10.10.10.10 - 24960
*ai 11.11.11.11 - 24960
*ai 12.12.12.12 - 24961
BR4#
BR4#show ip bgp labeled-unicast all summary
BGP router identifier 10.12.28.166, local AS number 100
BGP table version is 8
1 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd
1.1.1.1 4 100 576 583 8 0 0 04:46:35 1
5.5.5.5 4 100 577 576 8 0 0 04:46:34 3
10.10.10.10 4 100 575 575 8 0 0 04:46:21 3
11.11.11.11 4 100 577 576 8 0 0 04:46:31 3
12.12.12.12 4 100 578 577 8 0 0 04:46:50 3
14.14.14.14 4 100 576 581 8 0 0 04:46:52 1
Total number of neighbors 6
Total number of Established sessions 6
BR4#
BR4#show ip bgp labeled-unicast 13.13.13.13/32
BGP routing table entry for 13.13.13.13/32
Paths: (4 available, best #1, table Default-IP-Routing-Table)
Advertised to non peer-group peers:
14.14.14.14
Local
10.10.10.10 (metric 12) from 10.10.10.10 (10.12.28.167)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal, best
Originator: 10.12.28.162, Cluster list: 10.12.28.167
rx path_id: -1 tx path_id: 2
Advertised to non peer-group peers:
1.1.1.1
Last update: Mon Aug 6 00:10:50 2018
Local
5.5.5.5 (metric 12) from 5.5.5.5 (10.12.28.160)
Origin IGP, metric 0, localpref 100, label 24962, Out-label 24962, In-label NA , valid, internal, backup, add-path
Originator: 10.12.28.170, Cluster list: 10.12.28.160
rx path_id: -1 tx path_id: 1
Advertised to non peer-group peers:
1.1.1.1
Last update: Mon Aug 6 00:10:40 2018
Local
11.11.11.11 (metric 12) from 11.11.11.11 (10.12.28.168)
Origin IGP, metric 0, localpref 100, label 24962, Out-label 24962, In-label NA , valid, internal, add-path
Originator: 10.12.28.170, Cluster list: 10.12.28.168
rx path_id: -1 tx path_id: 3
Advertised to non peer-group peers:
1.1.1.1
Last update: Mon Aug 6 00:11:02 2018
Local
12.12.12.12 (metric 12) from 12.12.12.12 (10.12.28.169)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal, add-path
Originator: 10.12.28.170, Cluster list: 10.12.28.169
rx path_id: -1 tx path_id: 0
Not advertised to any peer
Last update: Mon Aug 6 00:10:28 2018
BGP PIC Enabled
BR4#show mpls ftn-table
Primary FTN entry with FEC: 1.1.1.1/32, id: 6, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 16, 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: eth3, out label: 24341
Nexthop addr: 23.1.1.157 cross connect ix: 16, op code: Push
Primary FTN entry with FEC: 1.1.1.1/32, id: 24, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 18, in intf: - in label: 0 out-segment ix: 14
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 14, owner: BGP, Stale: NO, out intf: eth3, out label: 24960
Nexthop addr: 1.1.1.1 cross connect ix: 18, op code: Push
Primary FTN entry with FEC: 2.2.2.2/32, id: 1, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth3, out label: 3
Nexthop addr: 23.1.1.157 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 3.3.3.3/32, id: 7, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth3, out label: 24320
Nexthop addr: 23.1.1.157 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 4.4.4.4/32, id: 11, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth4, out label: 3
Nexthop addr: 24.1.1.159 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 5.5.5.5/32, id: 12, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 9, 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: eth4, out label: 24325
Nexthop addr: 24.1.1.159 cross connect ix: 9, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 25, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 19, in intf: - in label: 0 out-segment ix: 15
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 15, owner: BGP, Stale: NO, out intf: eth4, out label: 24960
Nexthop addr: 5.5.5.5 cross connect ix: 19, op code: Push and Lookup
Non-primary FTN entry with FEC: 7.7.7.7/32, id: 27, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 21, in intf: - in label: 0 out-segment ix: 17
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 17, owner: BGP, Stale: NO, out intf: eth4, out label: 24962
Nexthop addr: 10.10.10.10 cross connect ix: 21, op code: Push and Lookup
Primary FTN entry with FEC: 8.8.8.8/32, id: 8, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 4, 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: eth3, out label: 24326
Nexthop addr: 23.1.1.157 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 10.1.1.0/24, id: 2, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth3, out label: 3
Nexthop addr: 23.1.1.157 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 10.10.10.10/32, id: 13, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 11, 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: eth4, out label: 24330
Nexthop addr: 24.1.1.159 cross connect ix: 11, op code: Push
Primary FTN entry with FEC: 11.11.11.11/32, id: 14, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 13, 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: eth4, out label: 24340
Nexthop addr: 24.1.1.159 cross connect ix: 13, op code: Push
Primary FTN entry with FEC: 12.12.12.12/32, id: 15, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 7, 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: eth4, out label: 24321
Nexthop addr: 24.1.1.159 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 22, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 14, 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, Stale: NO, out intf: eth4, out label: 24961
Nexthop addr: 10.10.10.10 cross connect ix: 14, op code: Push and Lookup
Non-primary FTN entry with FEC: 13.13.13.13/32, id: 28, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 22, in intf: - in label: 0 out-segment ix: 18
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 18, owner: BGP, Stale: NO, out intf: eth4, out label: 24962
Nexthop addr: 5.5.5.5 cross connect ix: 22, op code: Push and Lookup
Primary FTN entry with FEC: 14.14.14.14/32, id: 9, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 3, 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, Stale: NO, out intf: eth3, out label: 24323
Nexthop addr: 23.1.1.157 cross connect ix: 3, op code: Push
Primary FTN entry with FEC: 14.14.14.14/32, id: 10, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 5, owner: BGP, Stale: NO, out intf: eth3, out label: 24960
Nexthop addr: 14.14.14.14 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 15.15.15.15/32, id: 23, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 17, in intf: - in label: 0 out-segment ix: 13
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 13, owner: BGP, Stale: NO, out intf: eth4, out label: 24961
Nexthop addr: 5.5.5.5 cross connect ix: 17, op code: Push and Lookup
Non-primary FTN entry with FEC: 15.15.15.15/32, id: 26, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 20, in intf: - in label: 0 out-segment ix: 16
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 16, owner: BGP, Stale: NO, out intf: eth4, out label: 24960
Nexthop addr: 10.10.10.10 cross connect ix: 20, op code: Push and Lookup
Primary FTN entry with FEC: 20.1.1.0/24, id: 3, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth3, out label: 3
Nexthop addr: 23.1.1.157 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 21.1.1.0/24, id: 4, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth3, out label: 3
Nexthop addr: 23.1.1.157 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 22.1.1.0/24, id: 16, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth4, out label: 3
Nexthop addr: 24.1.1.159 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 25.1.1.0/24, id: 17, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth4, out label: 3
Nexthop addr: 24.1.1.159 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 27.1.1.0/24, id: 18, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth4, out label: 3
Nexthop addr: 24.1.1.159 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 29.1.1.0/24, id: 19, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth4, out label: 3
Nexthop addr: 24.1.1.159 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 30.1.1.0/24, id: 20, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth4, out label: 3
Nexthop addr: 24.1.1.159 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 40.1.1.0/24, id: 21, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth4, out label: 3
Nexthop addr: 24.1.1.159 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 41.1.1.0/24, id: 5, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth3, out label: 3
Nexthop addr: 23.1.1.157 cross connect ix: 1, op code: Push
BR4#
BR5#show ip bgp labeled-unicast all
Status codes: s suppressed, d damped, h history, a add-path, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*>i 1.1.1.1/32 3.3.3.3 - 24960
*ai 8.8.8.8 - 24960
*ai 9.9.9.9 - 24961
*>i 7.7.7.7/32 7.7.7.7 24962(eth5) 24960
*>i 13.13.13.13/32 13.13.13.13 24961(eth5) 24960
*>i 14.14.14.14/32 8.8.8.8 - 24961
*ai 9.9.9.9 - 24960
*ai 3.3.3.3 - 24961
*>i 15.15.15.15/32 15.15.15.15 24960(eth5) 24960
BR5#
BR5#show ip bgp labeled-unicast all summary
BGP router identifier 10.12.28.167, local AS number 100
BGP table version is 5
1 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd
3.3.3.3 4 100 587 587 5 0 0 04:51:40 2
7.7.7.7 4 100 586 591 5 0 0 04:51:41 1
8.8.8.8 4 100 585 585 5 0 0 04:51:30 2
9.9.9.9 4 100 585 585 5 0 0 04:51:16 2
13.13.13.13 4 100 586 591 5 0 0 04:51:34 1
15.15.15.15 4 100 586 589 5 0 0 04:51:53 1
Total number of neighbors 6
Total number of Established sessions 6
BR5#
BR5#show ip bgp labeled-unicast 1.1.1.1/32
BGP routing table entry for 1.1.1.1/32
Paths: (3 available, best #1, table Default-IP-Routing-Table)
Advertised to non peer-group peers:
15.15.15.15
Local
3.3.3.3 (metric 12) from 3.3.3.3 (10.12.28.158)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal, best
Originator: 10.12.28.156, Cluster list: 10.12.28.158
rx path_id: -1 tx path_id: 0
Advertised to non peer-group peers:
7.7.7.7 13.13.13.13
Last update: Mon Aug 6 00:10:30 2018
Local
8.8.8.8 (metric 12) from 8.8.8.8 (10.12.28.165)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal, add-path
Originator: 10.12.28.156, Cluster list: 10.12.28.165
rx path_id: -1 tx path_id: 1
Advertised to non peer-group peers:
7.7.7.7 13.13.13.13
Last update: Mon Aug 6 00:10:37 2018
Local
9.9.9.9 (metric 12) from 9.9.9.9 (10.12.28.166)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal, add-path
Originator: 10.12.28.156, Cluster list: 10.12.28.166
rx path_id: -1 tx path_id: 2
Advertised to non peer-group peers:
7.7.7.7 13.13.13.13
Last update: Mon Aug 6 00:10:51 2018
BR5#sh mpls ftn-table
Primary FTN entry with FEC: 1.1.1.1/32, id: 25, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 18, in intf: - in label: 0 out-segment ix: 13
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 13, owner: BGP, Stale: NO, out intf: eth5, out label: 24960
Nexthop addr: 3.3.3.3 cross connect ix: 18, op code: Push and Lookup
Primary FTN entry with FEC: 3.3.3.3/32, id: 13, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 4, 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: eth5, out label: 24320
Nexthop addr: 25.1.1.159 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 4.4.4.4/32, id: 15, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 25.1.1.159 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 5.5.5.5/32, id: 10, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 13, 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: eth3, out label: 24331
Nexthop addr: 26.1.1.161 cross connect ix: 13, op code: Push
Primary FTN entry with FEC: 6.6.6.6/32, id: 1, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth3, out label: 3
Nexthop addr: 26.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 11, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 15, 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: eth3, out label: 24335
Nexthop addr: 26.1.1.161 cross connect ix: 15, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 27, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 20, in intf: - in label: 0 out-segment ix: 15
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 15, owner: BGP, Stale: NO, out intf: eth3, out label: 24960
Nexthop addr: 7.7.7.7 cross connect ix: 20, op code: Push
Primary FTN entry with FEC: 8.8.8.8/32, id: 16, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 9, 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: eth5, out label: 24335
Nexthop addr: 25.1.1.159 cross connect ix: 9, op code: Push
Primary FTN entry with FEC: 9.9.9.9/32, id: 17, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 24322
Nexthop addr: 25.1.1.159 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 11.11.11.11/32, id: 18, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 11, 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: eth5, out label: 24341
Nexthop addr: 25.1.1.159 cross connect ix: 11, op code: Push
Primary FTN entry with FEC: 12.12.12.12/32, id: 2, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth3, out label: 24320
Nexthop addr: 26.1.1.161 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 12, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 17, 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: eth3, out label: 24340
Nexthop addr: 26.1.1.161 cross connect ix: 17, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 26, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 19, in intf: - in label: 0 out-segment ix: 14
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 14, owner: BGP, Stale: NO, out intf: eth3, out label: 24960
Nexthop addr: 13.13.13.13 cross connect ix: 19, op code: Push
Primary FTN entry with FEC: 14.14.14.14/32, id: 28, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 21, in intf: - in label: 0 out-segment ix: 16
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 16, owner: BGP, Stale: NO, out intf: eth5, out label: 24961
Nexthop addr: 8.8.8.8 cross connect ix: 21, op code: Push and Lookup
Primary FTN entry with FEC: 15.15.15.15/32, id: 3, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 3, 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, Stale: NO, out intf: eth3, out label: 24321
Nexthop addr: 26.1.1.161 cross connect ix: 3, op code: Push
Primary FTN entry with FEC: 15.15.15.15/32, id: 14, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 7, in intf: - in label: 0 out-segment ix: 7
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 7, owner: BGP, Stale: NO, out intf: eth3, out label: 24960
Nexthop addr: 15.15.15.15 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 22.1.1.0/24, id: 19, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 25.1.1.159 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 24.1.1.0/24, id: 20, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 25.1.1.159 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 27.1.1.0/24, id: 21, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 25.1.1.159 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 28.1.1.0/24, id: 4, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth3, out label: 3
Nexthop addr: 26.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 29.1.1.0/24, id: 22, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 25.1.1.159 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 30.1.1.0/24, id: 23, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 25.1.1.159 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 32.1.1.0/24, id: 5, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth3, out label: 3
Nexthop addr: 26.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 33.1.1.0/24, id: 6, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth3, out label: 3
Nexthop addr: 26.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 40.1.1.0/24, id: 24, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 25.1.1.159 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 42.1.1.0/24, id: 7, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth3, out label: 3
Nexthop addr: 26.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 50.1.1.0/24, id: 8, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth3, out label: 3
Nexthop addr: 26.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 60.1.1.0/24, id: 9, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth3, out label: 3
Nexthop addr: 26.1.1.161 cross connect ix: 1, op code: Push
BR5#
BR6#show ip bgp labeled-unicast all
Status codes: s suppressed, d damped, h history, a add-path, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*>i 1.1.1.1/32 3.3.3.3 - 24960
*ai 8.8.8.8 - 24960
* i 9.9.9.9 - 24961
*>i 7.7.7.7/32 7.7.7.7 24961(eth6) 24960
*>i 13.13.13.13/32 13.13.13.13 24962(eth6) 24960
*>i 14.14.14.14/32 9.9.9.9 - 24960
*ai 3.3.3.3 - 24961
* i 8.8.8.8 - 24961
*>i 15.15.15.15/32 15.15.15.15 24960(eth6) 24960
BR6#
BR6#
BR6#show ip bgp labeled-unicast all summary
BGP router identifier 10.12.28.168, local AS number 100
BGP table version is 6
1 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd
3.3.3.3 4 100 600 601 6 0 0 04:58:04 2
7.7.7.7 4 100 598 603 6 0 0 04:57:57 1
8.8.8.8 4 100 599 600 6 0 0 04:57:59 2
9.9.9.9 4 100 598 599 6 0 0 04:57:45 2
13.13.13.13 4 100 597 602 6 0 0 04:57:29 1
15.15.15.15 4 100 598 601 6 0 0 04:57:57 1
Total number of neighbors 6
Total number of Established sessions 6
BR6#show ip bgp labeled-unicast 1.1.1.1/32
BGP routing table entry for 1.1.1.1/32
Paths: (3 available, best #1, table Default-IP-Routing-Table)
Advertised to non peer-group peers:
15.15.15.15
Local
3.3.3.3 (metric 12) from 3.3.3.3 (10.12.28.158)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal, best
Originator: 10.12.28.156, Cluster list: 10.12.28.158
rx path_id: -1 tx path_id: 0
Advertised to non peer-group peers:
7.7.7.7 13.13.13.13
Last update: Mon Aug 6 00:10:29 2018
Local
8.8.8.8 (metric 12) from 8.8.8.8 (10.12.28.165)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal, add-path
Originator: 10.12.28.156, Cluster list: 10.12.28.165
rx path_id: -1 tx path_id: 2
Advertised to non peer-group peers:
7.7.7.7 13.13.13.13
Last update: Mon Aug 6 00:10:26 2018
Local
9.9.9.9 (metric 12) from 9.9.9.9 (10.12.28.166)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal
Originator: 10.12.28.156, Cluster list: 10.12.28.166
Not advertised to any peer
Last update: Mon Aug 6 00:10:40 2018
BR6#sh mpls ftn-table
Primary FTN entry with FEC: 1.1.1.1/32, id: 25, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 14, in intf: - in label: 0 out-segment ix: 13
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 13, owner: BGP, Stale: NO, out intf: eth6, out label: 24960
Nexthop addr: 3.3.3.3 cross connect ix: 14, op code: Push and Lookup
Primary FTN entry with FEC: 3.3.3.3/32, id: 1, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth6, out label: 24320
Nexthop addr: 27.1.1.159 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 4.4.4.4/32, id: 2, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth6, out label: 3
Nexthop addr: 27.1.1.159 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 5.5.5.5/32, id: 12, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth4, out label: 24331
Nexthop addr: 28.1.1.161 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 6.6.6.6/32, id: 13, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 8, 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: eth4, out label: 3
Nexthop addr: 28.1.1.161 cross connect ix: 8, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 14, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 9, 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: eth4, out label: 24334
Nexthop addr: 28.1.1.161 cross connect ix: 9, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 26, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 15, in intf: - in label: 0 out-segment ix: 14
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 14, owner: BGP, Stale: NO, out intf: eth4, out label: 24960
Nexthop addr: 7.7.7.7 cross connect ix: 15, op code: Push
Primary FTN entry with FEC: 8.8.8.8/32, id: 3, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 3, 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, Stale: NO, out intf: eth6, out label: 24332
Nexthop addr: 27.1.1.159 cross connect ix: 3, op code: Push
Primary FTN entry with FEC: 9.9.9.9/32, id: 4, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 4, 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: eth6, out label: 24322
Nexthop addr: 27.1.1.159 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 10.10.10.10/32, id: 15, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth4, out label: 24323
Nexthop addr: 28.1.1.161 cross connect ix: 10, op code: Push
Primary FTN entry with FEC: 12.12.12.12/32, id: 16, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 11, 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: eth4, out label: 24320
Nexthop addr: 28.1.1.161 cross connect ix: 11, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 11, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 6, 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: eth4, out label: 24341
Nexthop addr: 28.1.1.161 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 28, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 17, in intf: - in label: 0 out-segment ix: 16
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 16, owner: BGP, Stale: NO, out intf: eth4, out label: 24960
Nexthop addr: 13.13.13.13 cross connect ix: 17, op code: Push
Primary FTN entry with FEC: 14.14.14.14/32, id: 27, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 16, in intf: - in label: 0 out-segment ix: 15
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 15, owner: BGP, Stale: NO, out intf: eth6, out label: 24960
Nexthop addr: 9.9.9.9 cross connect ix: 16, op code: Push and Lookup
Primary FTN entry with FEC: 15.15.15.15/32, id: 17, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 12, 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: eth4, out label: 24321
Nexthop addr: 28.1.1.161 cross connect ix: 12, op code: Push
Primary FTN entry with FEC: 15.15.15.15/32, id: 24, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 13, in intf: - in label: 0 out-segment ix: 12
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 12, owner: BGP, Stale: NO, out intf: eth4, out label: 24960
Nexthop addr: 15.15.15.15 cross connect ix: 13, op code: Push
Primary FTN entry with FEC: 22.1.1.0/24, id: 5, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth6, out label: 3
Nexthop addr: 27.1.1.159 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 24.1.1.0/24, id: 6, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth6, out label: 3
Nexthop addr: 27.1.1.159 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 25.1.1.0/24, id: 7, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth6, out label: 3
Nexthop addr: 27.1.1.159 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 26.1.1.0/24, id: 18, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 8, 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: eth4, out label: 3
Nexthop addr: 28.1.1.161 cross connect ix: 8, op code: Push
Primary FTN entry with FEC: 29.1.1.0/24, id: 8, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth6, out label: 3
Nexthop addr: 27.1.1.159 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 30.1.1.0/24, id: 9, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth6, out label: 3
Nexthop addr: 27.1.1.159 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 32.1.1.0/24, id: 19, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 8, 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: eth4, out label: 3
Nexthop addr: 28.1.1.161 cross connect ix: 8, op code: Push
Primary FTN entry with FEC: 33.1.1.0/24, id: 20, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 8, 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: eth4, out label: 3
Nexthop addr: 28.1.1.161 cross connect ix: 8, op code: Push
Primary FTN entry with FEC: 40.1.1.0/24, id: 10, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth6, out label: 3
Nexthop addr: 27.1.1.159 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 42.1.1.0/24, id: 21, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 8, 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: eth4, out label: 3
Nexthop addr: 28.1.1.161 cross connect ix: 8, op code: Push
Primary FTN entry with FEC: 50.1.1.0/24, id: 22, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 8, 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: eth4, out label: 3
Nexthop addr: 28.1.1.161 cross connect ix: 8, op code: Push
Primary FTN entry with FEC: 60.1.1.0/24, id: 23, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 8, 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: eth4, out label: 3
Nexthop addr: 28.1.1.161 cross connect ix: 8, op code: Push
BR6#
BR2#show ip bgp labeled-unicast all
Status codes: s suppressed, d damped, h history, a add-path, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*>i 1.1.1.1/32 3.3.3.3 - 24960
*ai 8.8.8.8 - 24960
*ai 9.9.9.9 - 24961
*>i 7.7.7.7/32 7.7.7.7 24960(eth2) 24960
*>i 13.13.13.13/32 13.13.13.13 24962(eth2) 24960
*>i 14.14.14.14/32 9.9.9.9 - 24960
*ai 3.3.3.3 - 24961
*ai 8.8.8.8 - 24961
*>i 15.15.15.15/32 15.15.15.15 24961(eth2) 24960
BR2#
BR2#show ip bgp labeled-unicast all summary
BGP router identifier 10.12.28.160, local AS number 100
BGP table version is 6
1 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd
3.3.3.3 4 100 601 601 6 0 0 04:58:39 2
7.7.7.7 4 100 600 606 6 0 0 04:58:44 1
8.8.8.8 4 100 601 601 6 0 0 04:58:43 2
9.9.9.9 4 100 600 601 6 0 0 04:58:33 2
13.13.13.13 4 100 600 606 6 0 0 04:58:34 1
15.15.15.15 4 100 600 604 6 0 0 04:58:43 1
Total number of neighbors 6
Total number of Established sessions 6
BR2#
BR2#show ip bgp labeled-unicast 1.1.1.1/32
BGP routing table entry for 1.1.1.1/32
Paths: (3 available, best #1, table Default-IP-Routing-Table)
Advertised to non peer-group peers:
15.15.15.15
Local
3.3.3.3 (metric 12) from 3.3.3.3 (10.12.28.158)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal, best
Originator: 10.12.28.156, Cluster list: 10.12.28.158
rx path_id: -1 tx path_id: 1
Advertised to non peer-group peers:
7.7.7.7 13.13.13.13
Last update: Mon Aug 6 00:10:31 2018
Local
8.8.8.8 (metric 12) from 8.8.8.8 (10.12.28.165)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal, add-path
Originator: 10.12.28.156, Cluster list: 10.12.28.165
rx path_id: -1 tx path_id: 0
Advertised to non peer-group peers:
7.7.7.7 13.13.13.13
Last update: Mon Aug 6 00:10:27 2018
Local
9.9.9.9 (metric 12) from 9.9.9.9 (10.12.28.166)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal, add-path
Originator: 10.12.28.156, Cluster list: 10.12.28.166
rx path_id: -1 tx path_id: 2
Advertised to non peer-group peers:
7.7.7.7 13.13.13.13
Last update: Mon Aug 6 00:10:37 2018
BR2#show mpls ftn-table
Primary FTN entry with FEC: 1.1.1.1/32, id: 24, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 14, in intf: - in label: 0 out-segment ix: 12
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 12, owner: BGP, Stale: NO, out intf: eth2, out label: 24960
Nexthop addr: 3.3.3.3 cross connect ix: 14, op code: Push and Lookup
Primary FTN entry with FEC: 3.3.3.3/32, id: 1, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth2, out label: 24320
Nexthop addr: 40.1.1.159 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 4.4.4.4/32, id: 2, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 3
Nexthop addr: 40.1.1.159 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 6.6.6.6/32, id: 12, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 50.1.1.161 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 13, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 11, 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: eth1, out label: 24334
Nexthop addr: 50.1.1.161 cross connect ix: 11, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 25, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 15, in intf: - in label: 0 out-segment ix: 13
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 13, owner: BGP, Stale: NO, out intf: eth1, out label: 24960
Nexthop addr: 7.7.7.7 cross connect ix: 15, op code: Push
Primary FTN entry with FEC: 8.8.8.8/32, id: 3, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 4, 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: eth2, out label: 24333
Nexthop addr: 40.1.1.159 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 9.9.9.9/32, id: 4, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 3, 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, Stale: NO, out intf: eth2, out label: 24322
Nexthop addr: 40.1.1.159 cross connect ix: 3, op code: Push
Primary FTN entry with FEC: 10.10.10.10/32, id: 14, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 7, 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: eth1, out label: 24323
Nexthop addr: 50.1.1.161 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 11.11.11.11/32, id: 5, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth2, out label: 24338
Nexthop addr: 40.1.1.159 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 12.12.12.12/32, id: 15, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 24320
Nexthop addr: 50.1.1.161 cross connect ix: 8, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 16, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 13, 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: eth1, out label: 24338
Nexthop addr: 50.1.1.161 cross connect ix: 13, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 28, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 18, in intf: - in label: 0 out-segment ix: 16
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 16, owner: BGP, Stale: NO, out intf: eth1, out label: 24960
Nexthop addr: 13.13.13.13 cross connect ix: 18, op code: Push
Primary FTN entry with FEC: 14.14.14.14/32, id: 27, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 17, in intf: - in label: 0 out-segment ix: 15
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 15, owner: BGP, Stale: NO, out intf: eth2, out label: 24960
Nexthop addr: 9.9.9.9 cross connect ix: 17, op code: Push and Lookup
Primary FTN entry with FEC: 15.15.15.15/32, id: 17, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 9, 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: eth1, out label: 24321
Nexthop addr: 50.1.1.161 cross connect ix: 9, op code: Push
Primary FTN entry with FEC: 15.15.15.15/32, id: 26, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 16, in intf: - in label: 0 out-segment ix: 14
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 14, owner: BGP, Stale: NO, out intf: eth1, out label: 24960
Nexthop addr: 15.15.15.15 cross connect ix: 16, op code: Push
Primary FTN entry with FEC: 22.1.1.0/24, id: 6, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 3
Nexthop addr: 40.1.1.159 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 24.1.1.0/24, id: 7, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 3
Nexthop addr: 40.1.1.159 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 25.1.1.0/24, id: 8, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 3
Nexthop addr: 40.1.1.159 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 26.1.1.0/24, id: 18, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 50.1.1.161 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 27.1.1.0/24, id: 9, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 3
Nexthop addr: 40.1.1.159 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 28.1.1.0/24, id: 19, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 50.1.1.161 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 29.1.1.0/24, id: 10, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 3
Nexthop addr: 40.1.1.159 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 30.1.1.0/24, id: 11, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 3
Nexthop addr: 40.1.1.159 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 32.1.1.0/24, id: 20, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 50.1.1.161 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 33.1.1.0/24, id: 21, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 50.1.1.161 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 42.1.1.0/24, id: 22, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 50.1.1.161 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 60.1.1.0/24, id: 23, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth1, out label: 3
Nexthop addr: 50.1.1.161 cross connect ix: 6, op code: Push
BR2#
BR7#show ip bgp labeled-unicast all
Status codes: s suppressed, d damped, h history, a add-path, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*>i 1.1.1.1/32 3.3.3.3 - 24960
*ai 8.8.8.8 - 24960
*ai 9.9.9.9 - 24961
*>i 7.7.7.7/32 7.7.7.7 24962(eth7) 24960
*>i 13.13.13.13/32 13.13.13.13 24960(eth7) 24960
*>i 14.14.14.14/32 3.3.3.3 - 24961
*ai 8.8.8.8 - 24961
*ai 9.9.9.9 - 24960
*>i 15.15.15.15/32 15.15.15.15 24961(eth7) 24960
BR7#
BR7#show ip bgp labeled-unicast all summary
BGP router identifier 10.12.28.169, local AS number 100
BGP table version is 7
1 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd
3.3.3.3 4 100 603 603 7 0 0 04:59:46 2
7.7.7.7 4 100 602 607 7 0 0 04:59:43 1
8.8.8.8 4 100 603 604 7 0 0 04:59:40 2
9.9.9.9 4 100 603 604 7 0 0 04:59:47 2
13.13.13.13 4 100 602 608 7 0 0 04:59:42 1
15.15.15.15 4 100 602 606 7 0 0 04:59:40 1
Total number of neighbors 6
Total number of Established sessions 6
BR7#
BR7#show mpls ftn-table
Primary FTN entry with FEC: 1.1.1.1/32, id: 25, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 20, in intf: - in label: 0 out-segment ix: 13
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 13, owner: BGP, Stale: NO, out intf: eth7, out label: 24960
Nexthop addr: 3.3.3.3 cross connect ix: 20, op code: Push and Lookup
Primary FTN entry with FEC: 3.3.3.3/32, id: 12, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 3, 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, Stale: NO, out intf: eth7, out label: 24320
Nexthop addr: 29.1.1.159 cross connect ix: 3, op code: Push
Primary FTN entry with FEC: 4.4.4.4/32, id: 13, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 4, 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: eth7, out label: 3
Nexthop addr: 29.1.1.159 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 5.5.5.5/32, id: 9, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 15, 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: eth5, out label: 24332
Nexthop addr: 33.1.1.161 cross connect ix: 15, op code: Push
Primary FTN entry with FEC: 6.6.6.6/32, id: 1, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 33.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 10, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 17, 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: eth5, out label: 24336
Nexthop addr: 33.1.1.161 cross connect ix: 17, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 28, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 23, in intf: - in label: 0 out-segment ix: 16
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 16, owner: BGP, Stale: NO, out intf: eth5, out label: 24960
Nexthop addr: 7.7.7.7 cross connect ix: 23, op code: Push
Primary FTN entry with FEC: 8.8.8.8/32, id: 14, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 11, 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: eth7, out label: 24336
Nexthop addr: 29.1.1.159 cross connect ix: 11, op code: Push
Primary FTN entry with FEC: 9.9.9.9/32, id: 24, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth7, out label: 24323
Nexthop addr: 29.1.1.159 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 10.10.10.10/32, id: 16, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 9, 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: eth7, out label: 24331
Nexthop addr: 29.1.1.159 cross connect ix: 9, op code: Push
Primary FTN entry with FEC: 11.11.11.11/32, id: 17, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 13, 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: eth7, out label: 24342
Nexthop addr: 29.1.1.159 cross connect ix: 13, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 11, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 19, 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: eth5, out label: 24342
Nexthop addr: 33.1.1.161 cross connect ix: 19, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 15, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 5, in intf: - in label: 0 out-segment ix: 5
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 5, owner: BGP, Stale: NO, out intf: eth5, out label: 24960
Nexthop addr: 13.13.13.13 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 14.14.14.14/32, id: 27, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 22, in intf: - in label: 0 out-segment ix: 15
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 15, owner: BGP, Stale: NO, out intf: eth7, out label: 24961
Nexthop addr: 3.3.3.3 cross connect ix: 22, op code: Push and Lookup
Primary FTN entry with FEC: 15.15.15.15/32, id: 8, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth5, out label: 24322
Nexthop addr: 33.1.1.161 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 15.15.15.15/32, id: 26, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 21, in intf: - in label: 0 out-segment ix: 14
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 14, owner: BGP, Stale: NO, out intf: eth5, out label: 24960
Nexthop addr: 15.15.15.15 cross connect ix: 21, op code: Push
Primary FTN entry with FEC: 22.1.1.0/24, id: 18, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 4, 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: eth7, out label: 3
Nexthop addr: 29.1.1.159 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 24.1.1.0/24, id: 19, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 4, 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: eth7, out label: 3
Nexthop addr: 29.1.1.159 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 25.1.1.0/24, id: 20, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 4, 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: eth7, out label: 3
Nexthop addr: 29.1.1.159 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 26.1.1.0/24, id: 2, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 33.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 27.1.1.0/24, id: 21, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 4, 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: eth7, out label: 3
Nexthop addr: 29.1.1.159 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 28.1.1.0/24, id: 3, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 33.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 30.1.1.0/24, id: 22, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 4, 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: eth7, out label: 3
Nexthop addr: 29.1.1.159 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 32.1.1.0/24, id: 4, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 33.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 40.1.1.0/24, id: 23, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 4, 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: eth7, out label: 3
Nexthop addr: 29.1.1.159 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 42.1.1.0/24, id: 5, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 33.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 50.1.1.0/24, id: 6, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 33.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 60.1.1.0/24, id: 7, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth5, out label: 3
Nexthop addr: 33.1.1.161 cross connect ix: 1, op code: Push
BR7#show ip bgp labeled-unicast 1.1.1.1/32
BGP routing table entry for 1.1.1.1/32
Paths: (3 available, best #1, table Default-IP-Routing-Table)
Advertised to non peer-group peers:
7.7.7.7 15.15.15.15
Local
3.3.3.3 (metric 12) from 3.3.3.3 (10.12.28.158)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal, best
Originator: 10.12.28.156, Cluster list: 10.12.28.158
rx path_id: -1 tx path_id: 1
Advertised to non peer-group peers:
13.13.13.13
Last update: Mon Aug 6 00:10:31 2018
Local
8.8.8.8 (metric 12) from 8.8.8.8 (10.12.28.165)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal, add-path
Originator: 10.12.28.156, Cluster list: 10.12.28.165
rx path_id: -1 tx path_id: 0
Advertised to non peer-group peers:
13.13.13.13
Last update: Mon Aug 6 00:10:29 2018
Local
9.9.9.9 (metric 12) from 9.9.9.9 (10.12.28.166)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal, add-path
Originator: 10.12.28.156, Cluster list: 10.12.28.166
rx path_id: 0 tx path_id: 2
Advertised to non peer-group peers:
13.13.13.13
Last update: Mon Aug 6 00:10:37 2018
BR7#
AGN4#show ip bgp labeled-unicast all
Status codes: s suppressed, d damped, h history, a add-path, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*>i 1.1.1.1/32 3.3.3.3 - 24960
* i 3.3.3.3 - 24960
* i 3.3.3.3 - 24960
* i 3.3.3.3 - 24960
* i 8.8.8.8 - 24960
* i 8.8.8.8 - 24960
* i 8.8.8.8 - 24960
* i 8.8.8.8 - 24960
* i 9.9.9.9 - 24961
* i 9.9.9.9 - 24961
* i 9.9.9.9 - 24961
*>i 7.7.7.7/32 7.7.7.7 - 24960
* i 7.7.7.7 - 24960
* i 7.7.7.7 - 24960
* i 7.7.7.7 - 24960
*> 13.13.13.13/32 0.0.0.0 24960(eth6) -
*>i 14.14.14.14/32 3.3.3.3 - 24961
* i 3.3.3.3 - 24961
* i 3.3.3.3 - 24961
* i 3.3.3.3 - 24961
* i 8.8.8.8 - 24961
* i 8.8.8.8 - 24961
* i 8.8.8.8 - 24961
* i 9.9.9.9 - 24960
* i 9.9.9.9 - 24960
* i 9.9.9.9 - 24960
* i 9.9.9.9 - 24960
*>i 15.15.15.15/32 15.15.15.15 - 24960
* i 15.15.15.15 - 24960
* i 15.15.15.15 - 24960
* i 15.15.15.15 - 24960
AGN4#
AGN4#show ip bgp labeled-unicast all summary
BGP router identifier 10.12.28.170, local AS number 100
BGP table version is 7
1 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd
5.5.5.5 4 100 609 603 7 0 0 05:00:20 8
10.10.10.10 4 100 608 603 7 0 0 05:00:22 8
11.11.11.11 4 100 607 602 7 0 0 05:00:00 6
12.12.12.12 4 100 609 603 7 0 0 05:00:29 8
Total number of neighbors 4
Total number of Established sessions 4
AGN4#
AGN4#show ip bgp labeled-unicast 1.1.1.1/32
BGP routing table entry for 1.1.1.1/32
Paths: (11 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
Local
3.3.3.3 (metric 20) from 5.5.5.5 (10.12.28.160)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal, best
Originator: 10.12.28.158, Cluster list: 10.12.28.160 10.12.28.158
rx path_id: 1 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:36 2018
Local
3.3.3.3 (metric 20) from 10.10.10.10 (10.12.28.167)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.158, Cluster list: 10.12.28.167 10.12.28.158
rx path_id: 0 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:34 2018
Local
3.3.3.3 (metric 20) from 11.11.11.11 (10.12.28.168)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.158, Cluster list: 10.12.28.168 10.12.28.158
rx path_id: 0 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:56 2018
Local
3.3.3.3 (metric 20) from 12.12.12.12 (10.12.28.169)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.158, Cluster list: 10.12.28.169 10.12.28.158
rx path_id: 1 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:31 2018
Local
8.8.8.8 (metric 20) from 5.5.5.5 (10.12.28.160)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.165, Cluster list: 10.12.28.160 10.12.28.165
rx path_id: 0 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:40 2018
Local
8.8.8.8 (metric 20) from 10.10.10.10 (10.12.28.167)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.165, Cluster list: 10.12.28.167 10.12.28.165
rx path_id: 1 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:38 2018
Local
8.8.8.8 (metric 20) from 11.11.11.11 (10.12.28.168)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.165, Cluster list: 10.12.28.168 10.12.28.165
rx path_id: 2 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:11:08 2018
Local
8.8.8.8 (metric 20) from 12.12.12.12 (10.12.28.169)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.165, Cluster list: 10.12.28.169 10.12.28.165
rx path_id: 0 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:31 2018
Local
9.9.9.9 (metric 20) from 5.5.5.5 (10.12.28.160)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal
Originator: 10.12.28.166, Cluster list: 10.12.28.160 10.12.28.166
rx path_id: 2 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:40 2018
Local
9.9.9.9 (metric 20) from 10.10.10.10 (10.12.28.167)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal
Originator: 10.12.28.166, Cluster list: 10.12.28.167 10.12.28.166
rx path_id: 2 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:54 2018
Local
9.9.9.9 (metric 20) from 12.12.12.12 (10.12.28.169)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal
Originator: 10.12.28.166, Cluster list: 10.12.28.169 10.12.28.166
rx path_id: 2 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:43 2018
AGN4#show mpls ftn-table
Primary FTN entry with FEC: 1.1.1.1/32, id: 19, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 14, in intf: - in label: 0 out-segment ix: 13
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 13, owner: BGP, Stale: NO, out intf: eth6, out label: 24960
Nexthop addr: 3.3.3.3 cross connect ix: 14, op code: Push and Lookup
Primary FTN entry with FEC: 3.3.3.3/32, id: 1, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth6, out label: 24325
Nexthop addr: 32.1.1.161 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 5.5.5.5/32, id: 2, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 3, 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: eth6, out label: 24331
Nexthop addr: 32.1.1.161 cross connect ix: 3, op code: Push
Primary FTN entry with FEC: 6.6.6.6/32, id: 3, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth6, out label: 3
Nexthop addr: 32.1.1.161 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 4, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth6, out label: 24334
Nexthop addr: 32.1.1.161 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 20, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 15, in intf: - in label: 0 out-segment ix: 14
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 14, owner: BGP, Stale: NO, out intf: eth6, out label: 24960
Nexthop addr: 7.7.7.7 cross connect ix: 15, op code: Push
Primary FTN entry with FEC: 8.8.8.8/32, id: 5, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 6, 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: eth6, out label: 24327
Nexthop addr: 32.1.1.161 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 9.9.9.9/32, id: 6, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth6, out label: 24329
Nexthop addr: 32.1.1.161 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 10.10.10.10/32, id: 7, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 8, 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: eth6, out label: 24323
Nexthop addr: 32.1.1.161 cross connect ix: 8, op code: Push
Primary FTN entry with FEC: 11.11.11.11/32, id: 8, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 11, 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: eth6, out label: 24348
Nexthop addr: 32.1.1.161 cross connect ix: 11, op code: Push
Primary FTN entry with FEC: 12.12.12.12/32, id: 9, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 9, 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: eth6, out label: 24320
Nexthop addr: 32.1.1.161 cross connect ix: 9, op code: Push
Primary FTN entry with FEC: 14.14.14.14/32, id: 21, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 16, in intf: - in label: 0 out-segment ix: 15
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 15, owner: BGP, Stale: NO, out intf: eth6, out label: 24961
Nexthop addr: 3.3.3.3 cross connect ix: 16, op code: Push and Lookup
Primary FTN entry with FEC: 15.15.15.15/32, id: 10, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth6, out label: 24321
Nexthop addr: 32.1.1.161 cross connect ix: 10, op code: Push
Primary FTN entry with FEC: 15.15.15.15/32, id: 18, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 13, in intf: - in label: 0 out-segment ix: 12
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 12, owner: BGP, Stale: NO, out intf: eth6, out label: 24960
Nexthop addr: 15.15.15.15 cross connect ix: 13, op code: Push
Primary FTN entry with FEC: 26.1.1.0/24, id: 11, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth6, out label: 3
Nexthop addr: 32.1.1.161 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 28.1.1.0/24, id: 12, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth6, out label: 3
Nexthop addr: 32.1.1.161 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 33.1.1.0/24, id: 13, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth6, out label: 3
Nexthop addr: 32.1.1.161 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 42.1.1.0/24, id: 14, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth6, out label: 3
Nexthop addr: 32.1.1.161 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 50.1.1.0/24, id: 15, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth6, out label: 3
Nexthop addr: 32.1.1.161 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 60.1.1.0/24, id: 16, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth6, out label: 3
Nexthop addr: 32.1.1.161 cross connect ix: 4, op code: Push
AGN4#
AGN2#show ip bgp labeled-unicast all
Status codes: s suppressed, d damped, h history, a add-path, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*>i 1.1.1.1/32 3.3.3.3 - 24960
* i 3.3.3.3 - 24960
* i 3.3.3.3 - 24960
* i 3.3.3.3 - 24960
* i 8.8.8.8 - 24960
* i 8.8.8.8 - 24960
* i 8.8.8.8 - 24960
* i 9.9.9.9 - 24961
* i 9.9.9.9 - 24961
*> 7.7.7.7/32 0.0.0.0 24960(eth2) -
*>i 13.13.13.13/32 13.13.13.13 - 24960
* i 13.13.13.13 - 24960
* i 13.13.13.13 - 24960
* i 13.13.13.13 - 24960
*>i 14.14.14.14/32 3.3.3.3 - 24961
* i 3.3.3.3 - 24961
* i 3.3.3.3 - 24961
* i 3.3.3.3 - 24961
* i 8.8.8.8 - 24961
* i 8.8.8.8 - 24961
* i 9.9.9.9 - 24960
* i 9.9.9.9 - 24960
* i 9.9.9.9 - 24960
*>i 15.15.15.15/32 15.15.15.15 - 24960
* i 15.15.15.15 - 24960
* i 15.15.15.15 - 24960
* i 15.15.15.15 - 24960
AGN2#show ip bgp labeled-unicast all summary
BGP router identifier 10.12.28.162, local AS number 100
BGP table version is 8
1 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd
5.5.5.5 4 100 579 573 8 0 0 04:45:08 8
10.10.10.10 4 100 578 573 8 0 0 04:45:07 8
11.11.11.11 4 100 578 573 8 0 0 04:45:05 6
12.12.12.12 4 100 578 573 8 0 0 04:45:07 4
Total number of neighbors 4
Total number of Established sessions 4
AGN2#
AGN2#show ip bgp labeled-unicast 1.1.1.1/32
BGP routing table entry for 1.1.1.1/32
Paths: (9 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
Local
3.3.3.3 (metric 20) from 5.5.5.5 (10.12.28.160)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal, best
Originator: 10.12.28.158, Cluster list: 10.12.28.160 10.12.28.158
rx path_id: 1 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:32 2018
Local
3.3.3.3 (metric 20) from 10.10.10.10 (10.12.28.167)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.158, Cluster list: 10.12.28.167 10.12.28.158
rx path_id: 0 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:34 2018
Local
3.3.3.3 (metric 20) from 11.11.11.11 (10.12.28.168)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.158, Cluster list: 10.12.28.168 10.12.28.158
rx path_id: 0 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:32 2018
Local
3.3.3.3 (metric 20) from 12.12.12.12 (10.12.28.169)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.158, Cluster list: 10.12.28.169 10.12.28.158
Not advertised to any peer
Last update: Mon Aug 6 00:10:34 2018
Local
8.8.8.8 (metric 20) from 5.5.5.5 (10.12.28.160)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal, backup
Originator: 10.12.28.165, Cluster list: 10.12.28.160 10.12.28.165
rx path_id: 0 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:28 2018
Local
8.8.8.8 (metric 20) from 10.10.10.10 (10.12.28.167)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.165, Cluster list: 10.12.28.167 10.12.28.165
rx path_id: 1 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:37 2018
Local
8.8.8.8 (metric 20) from 11.11.11.11 (10.12.28.168)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.165, Cluster list: 10.12.28.168 10.12.28.165
rx path_id: 2 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:11:07 2018
Local
9.9.9.9 (metric 20) from 5.5.5.5 (10.12.28.160)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal
Originator: 10.12.28.166, Cluster list: 10.12.28.160 10.12.28.166
rx path_id: 2 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:39 2018
Local
9.9.9.9 (metric 20) from 10.10.10.10 (10.12.28.167)
Origin IGP, metric 0, localpref 100, label 24961, Out-label 24961, In-label NA , valid, internal
Originator: 10.12.28.166, Cluster list: 10.12.28.167 10.12.28.166
rx path_id: 2 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:52 2018
BGP PIC Enabled
AGN2#
AGN2#sh mpls ftn-table
Primary FTN entry with FEC: 1.1.1.1/32, id: 19, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 13, in intf: - in label: 0 out-segment ix: 12
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 12, owner: BGP, Stale: NO, out intf: eth2, out label: 24960
Nexthop addr: 3.3.3.3 cross connect ix: 13, op code: Push and Lookup
Non-primary FTN entry with FEC: 1.1.1.1/32, id: 24, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 17, in intf: - in label: 0 out-segment ix: 16
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 16, owner: BGP, Stale: NO, out intf: eth2, out label: 24960
Nexthop addr: 8.8.8.8 cross connect ix: 17, op code: Push and Lookup
Primary FTN entry with FEC: 3.3.3.3/32, id: 1, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth2, out label: 24325
Nexthop addr: 60.1.1.161 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 5.5.5.5/32, id: 2, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 3, 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: eth2, out label: 24331
Nexthop addr: 60.1.1.161 cross connect ix: 3, op code: Push
Primary FTN entry with FEC: 6.6.6.6/32, id: 3, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 3
Nexthop addr: 60.1.1.161 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 8.8.8.8/32, id: 4, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth2, out label: 24327
Nexthop addr: 60.1.1.161 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 9.9.9.9/32, id: 5, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 6, 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: eth2, out label: 24329
Nexthop addr: 60.1.1.161 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 10.10.10.10/32, id: 6, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 24323
Nexthop addr: 60.1.1.161 cross connect ix: 7, op code: Push
Primary FTN entry with FEC: 11.11.11.11/32, id: 7, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 11, 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: eth2, out label: 24345
Nexthop addr: 60.1.1.161 cross connect ix: 11, op code: Push
Primary FTN entry with FEC: 12.12.12.12/32, id: 8, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 8, 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: eth2, out label: 24320
Nexthop addr: 60.1.1.161 cross connect ix: 8, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 9, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 24339
Nexthop addr: 60.1.1.161 cross connect ix: 10, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 17, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 24960
Nexthop addr: 13.13.13.13 cross connect ix: 12, op code: Push
Primary FTN entry with FEC: 14.14.14.14/32, id: 22, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 16, in intf: - in label: 0 out-segment ix: 15
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 15, owner: BGP, Stale: NO, out intf: eth2, out label: 24961
Nexthop addr: 3.3.3.3 cross connect ix: 16, op code: Push and Lookup
Non-primary FTN entry with FEC: 14.14.14.14/32, id: 25, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 18, in intf: - in label: 0 out-segment ix: 17
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 17, owner: BGP, Stale: NO, out intf: eth2, out label: 24961
Nexthop addr: 8.8.8.8 cross connect ix: 18, op code: Push and Lookup
Primary FTN entry with FEC: 15.15.15.15/32, id: 10, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 9, 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: eth2, out label: 24321
Nexthop addr: 60.1.1.161 cross connect ix: 9, op code: Push
Primary FTN entry with FEC: 15.15.15.15/32, id: 26, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 19, in intf: - in label: 0 out-segment ix: 18
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 18, owner: BGP, Stale: NO, out intf: eth2, out label: 24960
Nexthop addr: 15.15.15.15 cross connect ix: 19, op code: Push
Primary FTN entry with FEC: 26.1.1.0/24, id: 11, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 3
Nexthop addr: 60.1.1.161 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 28.1.1.0/24, id: 12, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 3
Nexthop addr: 60.1.1.161 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 32.1.1.0/24, id: 13, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 3
Nexthop addr: 60.1.1.161 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 33.1.1.0/24, id: 14, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 3
Nexthop addr: 60.1.1.161 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 42.1.1.0/24, id: 15, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 3
Nexthop addr: 60.1.1.161 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 50.1.1.0/24, id: 16, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth2, out label: 3
Nexthop addr: 60.1.1.161 cross connect ix: 4, op code: Push
AGN2#
AGN5#show ip bgp labeled-unicast all
Status codes: s suppressed, d damped, h history, a add-path, * valid, > best, i - internal, S - stale
Network Next Hop In Label Out Label
*>i 1.1.1.1/32 3.3.3.3 - 24960
* i 3.3.3.3 - 24960
* i 3.3.3.3 - 24960
* i 3.3.3.3 - 24960
*>i 7.7.7.7/32 7.7.7.7 - 24960
* i 7.7.7.7 - 24960
* i 7.7.7.7 - 24960
* i 7.7.7.7 - 24960
*>i 13.13.13.13/32 13.13.13.13 - 24960
* i 13.13.13.13 - 24960
* i 13.13.13.13 - 24960
* i 13.13.13.13 - 24960
*>i 14.14.14.14/32 3.3.3.3 - 24961
* i 8.8.8.8 - 24961
* i 9.9.9.9 - 24960
* i 9.9.9.9 - 24960
*> 15.15.15.15/32 0.0.0.0 24960(eth7) -
AGN5#
AGN5#show ip bgp labeled-unicast all summary
BGP router identifier 10.12.28.172, local AS number 100
BGP table version is 8
1 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd
5.5.5.5 4 100 610 606 8 0 0 05:01:41 4
10.10.10.10 4 100 609 606 8 0 0 05:01:54 4
11.11.11.11 4 100 609 606 8 0 0 05:01:39 4
12.12.12.12 4 100 610 606 8 0 0 05:01:39 4
Total number of neighbors 4
Total number of Established sessions 4
AGN5#
AGN5#show ip bgp labeled-unicast 1.1.1.1/32
BGP routing table entry for 1.1.1.1/32
Paths: (4 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
Local
3.3.3.3 (metric 20) from 5.5.5.5 (10.12.28.160)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal, best
Originator: 10.12.28.158, Cluster list: 10.12.28.160 10.12.28.158
rx path_id: -1 tx path_id: -1
Not advertised to any peer
Last update: Mon Aug 6 00:10:34 2018
Local
3.3.3.3 (metric 20) from 10.10.10.10 (10.12.28.167)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.158, Cluster list: 10.12.28.167 10.12.28.158
Not advertised to any peer
Last update: Mon Aug 6 00:10:32 2018
Local
3.3.3.3 (metric 20) from 11.11.11.11 (10.12.28.168)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.158, Cluster list: 10.12.28.168 10.12.28.158
Not advertised to any peer
Last update: Mon Aug 6 00:10:33 2018
Local
3.3.3.3 (metric 20) from 12.12.12.12 (10.12.28.169)
Origin IGP, metric 0, localpref 100, label 24960, Out-label 24960, In-label NA , valid, internal
Originator: 10.12.28.158, Cluster list: 10.12.28.169 10.12.28.158
Not advertised to any peer
Last update: Mon Aug 6 00:10:33 2018
BGP PIC Enabled
AGN5#show mpls ftn-table
Primary FTN entry with FEC: 1.1.1.1/32, id: 19, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 14, in intf: - in label: 0 out-segment ix: 13
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 13, owner: BGP, Stale: NO, out intf: eth7, out label: 24960
Nexthop addr: 3.3.3.3 cross connect ix: 14, op code: Push and Lookup
Primary FTN entry with FEC: 3.3.3.3/32, id: 11, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 4, 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: eth7, out label: 24326
Nexthop addr: 42.1.1.161 cross connect ix: 4, op code: Push
Primary FTN entry with FEC: 5.5.5.5/32, id: 9, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 8, 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: eth7, out label: 24333
Nexthop addr: 42.1.1.161 cross connect ix: 8, op code: Push
Primary FTN entry with FEC: 6.6.6.6/32, id: 1, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth7, out label: 3
Nexthop addr: 42.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 14, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 9, 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: eth7, out label: 24337
Nexthop addr: 42.1.1.161 cross connect ix: 9, op code: Push
Primary FTN entry with FEC: 7.7.7.7/32, id: 21, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 15, in intf: - in label: 0 out-segment ix: 14
Owner: BGP, Persistent: No, Admin Status: Down, Oper Status: Down
Out-segment with ix: 14, owner: BGP, Stale: NO, out intf: eth7, out label: 24960
Nexthop addr: 7.7.7.7 cross connect ix: 15, op code: Push
Primary FTN entry with FEC: 8.8.8.8/32, id: 12, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth7, out label: 24328
Nexthop addr: 42.1.1.161 cross connect ix: 5, op code: Push
Primary FTN entry with FEC: 9.9.9.9/32, id: 13, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth7, out label: 24330
Nexthop addr: 42.1.1.161 cross connect ix: 6, op code: Push
Primary FTN entry with FEC: 10.10.10.10/32, id: 10, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 3, 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, Stale: NO, out intf: eth7, out label: 24324
Nexthop addr: 42.1.1.161 cross connect ix: 3, op code: Push
Primary FTN entry with FEC: 11.11.11.11/32, id: 15, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 11, 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: eth7, out label: 24349
Nexthop addr: 42.1.1.161 cross connect ix: 11, op code: Push
Primary FTN entry with FEC: 12.12.12.12/32, id: 2, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth7, out label: 24320
Nexthop addr: 42.1.1.161 cross connect ix: 2, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 16, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth7, out label: 24343
Nexthop addr: 42.1.1.161 cross connect ix: 10, op code: Push
Primary FTN entry with FEC: 13.13.13.13/32, id: 17, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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, Stale: NO, out intf: eth7, out label: 24960
Nexthop addr: 13.13.13.13 cross connect ix: 12, op code: Push
Primary FTN entry with FEC: 14.14.14.14/32, id: 20, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 16, in intf: - in label: 0 out-segment ix: 15
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 15, owner: BGP, Stale: NO, out intf: eth7, out label: 24961
Nexthop addr: 3.3.3.3 cross connect ix: 16, op code: Push and Lookup
Non-primary FTN entry with FEC: 14.14.14.14/32, id: 22, row status: Active
Owner: BGP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: Cross connect ix: 17, in intf: - in label: 0 out-segment ix: 16
Owner: BGP, Persistent: No, Admin Status: Up, Oper Status: Up
Out-segment with ix: 16, owner: BGP, Stale: NO, out intf: eth7, out label: 24961
Nexthop addr: 8.8.8.8 cross connect ix: 17, op code: Push and Lookup
Primary FTN entry with FEC: 26.1.1.0/24, id: 3, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth7, out label: 3
Nexthop addr: 42.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 28.1.1.0/24, id: 4, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth7, out label: 3
Nexthop addr: 42.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 32.1.1.0/24, id: 5, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth7, out label: 3
Nexthop addr: 42.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 33.1.1.0/24, id: 6, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth7, out label: 3
Nexthop addr: 42.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 50.1.1.0/24, id: 7, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth7, out label: 3
Nexthop addr: 42.1.1.161 cross connect ix: 1, op code: Push
Primary FTN entry with FEC: 60.1.1.0/24, id: 8, row status: Active
Owner: LDP, Stale: NO, Action-type: Redirect to LSP, Exp-bits: 0x0, Incoming DSCP: none
Tunnel id: 0, Protected LSP id: 0, Description: N/A
Matched bytes:0, pkts:0, TX bytes:0, Pushed pkts:0
Primary: 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: eth7, out label: 3
Nexthop addr: 42.1.1.161 cross connect ix: 1, op code: Push
AGN5#