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

Configuring BGP

Configure BGP on the AS border routers. To configure a group for IBGP to the PE router, include the bgp statement:

bgp {
group group-name {
type internal;
local-address address;
family inet {
labeled-unicast {
resolve-vpn;
}
}
neighbor address;
}
}

To configure a group for EBGP to the AS border router in the adjacent AS router, include the bgp statement:

bgp {
group group-name {
type external;
family inet {
labeled-unicast;
}
export internal;
neighbor address {
peer-as as-number;
}
}
}

You can include the bgp statement at the following hierarchy levels:


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