On the PE routers, configure an internal BGP (IBGP) session with the following parameters:
On Router A, configure IBGP:
- [edit]
- protocols {
-
- bgp {
- import match-all;
- export match-all;
-
- group pe-pe {
- type internal;
-
- neighbor 192.168.37.5 {
- local-address 192.168.37.1;
-
- family l2vpn {
- signaling;
- }
- }
-
- neighbor 192.168.37.10 {
- local-address 192.168.37.1;
-
- family l2vpn {
- signaling;
- }
- }
- }
- }
- }
On Router B, configure IBGP:
- [edit]
- protocols {
-
- bgp {
- local-address 192.168.37.5;
- import match-all;
- export match-all;
-
- group pe-pe {
- type internal;
-
- neighbor 192.168.37.1 {
- local-address 192.168.37.5;
-
- family l2vpn {
- signaling;
- }
- }
-
- neighbor 192.168.37.10 {
- local-address 192.168.37.5;
-
- family l2vpn {
- signaling;
- }
- }
- }
- }
- }
On Router C, configure IBGP:
- [edit]
- protocols {
-
- bgp {
- local-address 192.168.37.10;
- import match-all;
- export match-all;
-
- group pe-pe {
- type internal;
-
- neighbor 192.168.37.1 {
- local-address 192.168.37.10;
-
- family l2vpn {
- signaling;
- }
- }
-
- neighbor 192.168.37.5 {
- local-address 192.168.37.10;
-
- family l2vpn {
- signaling;
- }
- }
- }
- }
- }