[Contents] [Prev] [Next] [Index] [Report an Error]


Configure IBGP on the PE Routers

On the PE routers, configure an internal Border Gateway Protocol (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 {
                    unicast;
                }
            }
            neighbor 192.168.37.10 {
                local-address 192.168.37.1;
                family l2vpn {
                    unicast;
                }
            }
        }
    }

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 {
                    unicast;
                }
            }
            neighbor 192.168.37.10 {
                local-address 192.168.37.5;
                family l2vpn {
                    unicast;
                }
            }
        }
    }
}

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 {
                    unicast;
                }
            }
            neighbor 192.168.37.5 {
                local-address 192.168.37.10;
                family l2vpn {
                    unicast;
                }
            }
        }
    }
}

[Contents] [Prev] [Next] [Index] [Report an Error]