ix-bird-config/bird6.conf

35 lines
872 B
Plaintext

log syslog { debug, trace, info, remote, warning, error, auth, fatal, bug };
table T_BGP6;
table T_OSPF6;
protocol device {
scan time 10;
}
protocol static {
route fd62:77fb:94bf::/48 reject;
import all;
export none;
}
include "/etc/bird/local6.conf";
include "/etc/bird/filter6.conf";
include "/etc/bird/community_filters.conf";
protocol kernel {
metric 64; # Use explicit kernel route metric to avoid collisions
# with non-BIRD routes in the kernel routing table
scan time 20;
import none;
# export all; # Actually insert routes into the kernel routing table
export filter {
if source = RTS_STATIC then reject;
krt_prefsrc = OWNIP;
accept;
};
}
include "/etc/bird/ospf6.conf";
include "/etc/bird/bgp6.conf";
include "/etc/bird/peers6/*";