On the hub-and-spoke PE routers, configure an IBGP session with the following properties:
For the hub router, you configure an IBGP session with each spoke, and for each spoke router, you configure an IBGP session with the hub. There are no IBGP sessions between the two spoke routers.
On hub Router D, configure IBGP. The first neighbor statement configures an IBGP session to spoke Router E, and the second configures a session to spoke Router F.
- [edit protocols]
- bgp {
-
- group Hub-to-Spokes {
- type internal;
- local-address 10.255.14.174;
-
- family inet-vpn {
- unicast;
- }
- neighbor 10.255.14.180;
- neighbor 10.255.14.182;
- }
- }
On spoke Router E, configure an IBGP session to the hub router:
- [edit protocols]
- bgp {
-
- group Spoke-E-to-Hub {
- type internal;
- local-address 10.255.14.180;
-
- neighbor 10.255.14.174 {
-
- family inet-vpn {
- unicast;
- }
- }
- }
- }
On spoke Router F, configure an IBGP session to the hub router:
- [edit protocols]
- bgp {
-
- group Spoke-F-to-Hub {
- type internal;
- local-address 10.255.14.182;
-
- neighbor 10.255.14.174 {
-
- family inet-vpn {
- unicast;
- }
- }
- }
- }