39 lines
696 B
Plaintext
39 lines
696 B
Plaintext
template bgp dn42peer {
|
|
local as OWNAS;
|
|
table T_BGP;
|
|
path metric 1;
|
|
import keep filtered;
|
|
import where dn42peer_import_policy();
|
|
export filter {
|
|
if is_valid_network() then {
|
|
accept;
|
|
}
|
|
reject;
|
|
};
|
|
};
|
|
|
|
template bgp ibgppeer {
|
|
local as OWNAS;
|
|
hold time 15;
|
|
igp table T_OSPF;
|
|
path metric on;
|
|
import keep filtered;
|
|
import all;
|
|
export all;
|
|
source address OWNIP_IBGP;
|
|
next hop self;
|
|
}
|
|
|
|
template pipe iBGP_Pipe {
|
|
peer table master;
|
|
import all;
|
|
export all;
|
|
}
|
|
|
|
protocol pipe {
|
|
table master;
|
|
peer table T_BGP;
|
|
import all;
|
|
export all;
|
|
}
|