Hello,
I'm starting to use Bird, and I try to redistribute loopback in ospf. (So it seems easy...)
rt01 : interface ens18 >
10.0.4.5/24
Below the configuration of rt01 and rt02 :
rt01 :
filter loopbacks {
else reject;
}
protocol ospf {
import all;
export filter loopbacks;
area 0 {
interface "ens18" {
cost 5;
type broadcast;
hello 5; retransmit 2; wait 10; dead 20;
authentication cryptographic; password "toto";
};
};
}
rt02 :
filter loopbacks {
else reject;
}
protocol ospf {
import all;
export filter loopbacks;
area 0 {
interface "ens18" {
cost 5;
type broadcast;
hello 5; retransmit 2; wait 10; dead 20;
authentication cryptographic; password "toto";
};
};
}
But it doesn't work. Each router don't receive the route 10.99.99.X
bird> sh route
0.0.0.0/0 via 10.0.4.1 on ens18 [kernel1 22:01:40] * (10)
dev ens18 [ospf1 22:01:48] I (150/5) [10.0.4.5]
Could you help me please ?
Regards,
Quentin