Hi,
I have an issue with onlink static routes bird constantly remove and add them
to kernel.
Is this expected behavior that for ipv6 onlink route bird after each scan time
remove and add route? for other static routes bird update kernel once
My setup:
protocol kernel {
scan time 2;
ipv4 {
export all;
};
merge paths on;
}
protocol kernel {
scan time 2;
ipv6 {
export all;
};
merge paths on;
}
protocol device {
scan time 2;
}
protocol static {
ipv4 {
preference 50;
};
}
protocol static {
ipv6 {
preference 50;
};
route 2600:1408:c400::1234/128 via "eth-1_1_39_1" onlink; #update after each
scan time by remove and add
route 2600:1408:c400::4444/128 via "eth-1_1_39_1"; #update once
}
protocol direct {
ipv4;
ipv6;
interface "eth*";
}
I would expect single update similar to other static routes this cause changes
in kernel in each kernel scan time.
Best regards,
Marcin