Hallo misc,
I have two OSPF-Areas (1 and 2) that are connected through OSPF-Area 0:
<router-1> -- [OSPF-Area 1] -- <router-abr1> -- [OSPF-Area 0] --
<router-abr2> -- [OSPF-Area 2] <router-2>
All adjacencies are established and all routes are redistributed within
an area and to all Area-0-Routers. But the routes to the connected
networks ('redistribute connected') and networks reachable over static
routes ('redistribute static') are not redistributed from Area 1 to 2
and vice versa.
My question is: How can I redistribute the connected and static-routed
networks on router-1 to router-2 and vice versa?
The /etc/ospfd.conf of the routers are:
# router-abr1:
area 0.0.0.0 {
interface vio1 # to router-abr2
}
area 0.0.0.1 {
interface vio0 # to router-1
}
# router-1:
redistribute connected
redistribute static
area 0.0.0.1 {
interface vio0 # to router-abr1
}
# router-abr2:
area 0.0.0.0 {
interface vio1 # to router-abr1
}
area 0.0.0.2 {
interface vio0 # to router-2
}
# router-2:
redistribute connected
redistribute static
area 0.0.0.2 {
interface vio0 # to router-abr2
}
Thanks for your help!