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

Configuring BGP, IS-IS, and LDP Protocols on Router PE1

Configure BGP on Router PE1 to allow non-VPN and VPN peering and to advertise the VPN’s public IP address pool:

[edit]
protocols {
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.179;
}
}
}

Configure Intermediate System-to-Intermediate System (IS-IS) on Router PE1 to allow access to internal routes:

[edit protocols]
isis {
level 1 disable;
interface so-0/0/0.0;
interface lo0.0;
}

Configure Label Distribution Protocol (LDP) on Router PE1 to tunnel VPN routes:

[edit protocols]
ldp {
interface so-0/0/0.0;
}

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