45 lines
713 B
Text
45 lines
713 B
Text
# ROA tables
|
|
protocol static static_roa_dn42_v4 {
|
|
roa4 {
|
|
table roa_dn42_v4;
|
|
};
|
|
|
|
include "/var/lib/bird/bird_roa_dn42_v4.conf";
|
|
}
|
|
|
|
protocol static static_roa_dn42_v6 {
|
|
roa6 {
|
|
table roa_dn42_v6;
|
|
};
|
|
|
|
include "/var/lib/bird/bird_roa_dn42_v6.conf";
|
|
}
|
|
|
|
# Template
|
|
template bgp dn42_peer {
|
|
local as my_dn42_asn;
|
|
|
|
graceful restart on;
|
|
}
|
|
|
|
template bgp dn42_peer_v4 from dn42_peer {
|
|
ipv4 {
|
|
table dn42_v4;
|
|
|
|
import keep filtered;
|
|
import filter dn42_import_v4;
|
|
export filter dn42_export_v4;
|
|
};
|
|
}
|
|
|
|
template bgp dn42_peer_v6 from dn42_peer {
|
|
ipv6 {
|
|
table dn42_v6;
|
|
|
|
import keep filtered;
|
|
import filter dn42_import_v6;
|
|
export filter dn42_export_v6;
|
|
};
|
|
}
|
|
|
|
include "/etc/bird/protocols/dn42/*.conf";
|