ix-bird-config/bird6.conf

40 lines
1009 B
Plaintext

log "/var/log/bird6.log" { debug, trace, info, remote, warning, error, auth, fatal, bug };
timeformat base iso long;
timeformat log iso long;
timeformat protocol iso long;
timeformat route iso long;
table T_BGP;
table T_OSPF;
include "/etc/bird/local6.conf";
include "/etc/bird/filter6.conf";
protocol device {
scan time 10;
}
protocol static {
route fd62:77fb:94bf::/48 reject;
import all;
export none;
}
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/community_filters.conf";
include "/etc/bird/ospf6.conf";
include "/etc/bird/bgp6.conf";
include "/etc/bird/peers6/*";