Configure MPLS, BGP, IS-IS, and LDP on Router PE1. For the MPLS configuration, include the NAT device’s VPN interface in the VRF table. As part of the BGP configuration, include a policy to advertise the public IP address pool:
- [edit]
- protocols {
-
- mpls {
- interface t3-0/2/0.0;
- interface at-1/3/1.0;
- }
-
- bgp {
-
- group pe-pe {
- type internal;
- local-address 10.255.14.171;
-
- family inet {
- any;
- }
-
- family inet-vpn {
- any;
- }
- export [ fix-nh redist-static ];
- neighbor 10.255.14.177;
- neighbor 10.255.14.173;
- }
- }
-
- isis {
- level 1 disable;
- interface so-0/0/0.0;
- interface lo0.0;
- }
-
- ldp {
- interface so-0/0/0.0;
- }
- }