35 lines
884 B
Plaintext
35 lines
884 B
Plaintext
log "/var/log/bird6.log" { debug, trace, info, remote, warning, error, auth, fatal, bug };
|
|
table T_BGP;
|
|
table T_OSPF;
|
|
|
|
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/*";
|