bird: don't export static routes to kernel

This commit is contained in:
jeltz 2022-12-22 10:48:52 +01:00
parent 412a63dc6c
commit f43775fc02
Signed by: jeltz
GPG key ID: 800882B66C0C3326

View file

@ -16,14 +16,14 @@ protocol direct {
protocol kernel kernel4 {
ipv4 {
import all;
export where source != RTS_DEVICE;
export where source !~ [ RTS_DEVICE, RTS_STATIC ];
};
}
protocol kernel kernel6 {
ipv6 {
import all;
export where source != RTS_DEVICE;
export where source !~ [ RTS_DEVICE, RTS_STATIC ];
};
}