The following is my bird.conf:
log syslog all;
#debug protocols all;
#router id 192.168.10.197;
ipv4 table master4;
protocol device {
}
protocol direct direct4 {
ipv4; # Connect to default IPv4 table
}
protocol kernel kernel4 {
ipv4 {
import all;
export all;
};
}
protocol static static4 {
ipv4;
}
protocol ospf v2 ospf4 {
instance id 5; # set to the same as other routers'
ipv4 {
import all;
export all;
};
area 0 {
interface "eth0" {
type broadcast;
hello 10; # same as other routers'
retransmit 5;
transmit delay 1;
dead 40;
#simple authentication doesn't work with Mikrotik either. The state stays at Init and doesn't change at all.
#authentication simple;
#password "12345678";
# cryptographic password doesn't seem to work with mikrotik too; got errors about wrong SA/SP id
#authentication cryptographic;
#password "12345678" { algorithm hmac sha512; };
};
};
}