Hi,
I'm currently testing some stuff with ospfd (and his friend ospfctl) and
I wonder if I found a bug or if I have done something wrong.
Let's make a schema :
|---| xl1
172.16.1.2 (Test box 1) xl0 10.0.1.1 |--
|
| ste1 192.168.39.X/dhcp (Main box) ste0 172.16.1.1 |-|
| ste2 172.16.2.1 |-|
|
|---| xl1
172.16.2.2 (Test box 2) xl0 10.0.2.1 |--
Every masks are /24
I have the following configs (most comments dropped):
------- Main box :
# ospfd.conf
password="secret"
# areas
area 0.0.0.0 {
interface ste0 {
auth-type simple
auth-key $password
}
interface ste2 {
auth-type simple
auth-key $password
}
}
------- Test box 1 :
# ospfd.conf
password="secret"
redistribute 10.0.1.0/24
# areas
area 0.0.0.0 {
# interface xl0
interface xl1 {
auth-type simple
auth-key $password
}
}
------- Test box 2 :
# ospfd.conf
password="secret"
redistribute 10.0.2.0/24
# areas
area 0.0.0.0 {
# interface xl0
interface xl1 {
auth-type simple
auth-key $password
}
}
If you add a "redistribute" entry into ospfd.conf on box 1 and reload,
it does not announce it. Stop ospfd, restart it and it will announce.
So, did I hit a bug, or am I just getting wrong somewhere ?
Thanks,
Nicolas.