I'm looking of your OSPF config and I got some questions for you...
1- is there any 0.0.0.0 area define somewhere ? if not, change your area
0.0.0.1 to 0.0.0.0 for test... if you're having a 0.0.0.0 area, make
sure this one is define in your config...
2- can you try to place your CARP interface in passive mode : aka to not
send ospf packet on these interfaces...
example:
interface carp1 {
passive
}
3- in your global config... try to define:
no redistribute connected
no redistribute static
redistribute x.x.x.x/xx
here is some old comment that I left on my config to remind me some old
good time...
##
## Do not redistribute all connected routes
## automatically, only redistribute routes from
## participating interfaces in OSPF or that we
## explicitly want to redistribute. First rule is
## evaluated first.
##
##
## Hit my head on the wall on this one, interfaces
## participating in OSPF will be redistributed in the RIB
## even if you add a "no redistribute" statement. Only add
## the interfaces that you want participating into an area
## to the area definitions. the "passive" flag makes an interface
## part of that area but disables the broadcast of OSPF packets
## on that interface. Interfaces that are not defined anywhere
## do not participate in OSPF at all.
-
Marcus
Joe Warren-Meeks wrote: