On 2007/03/02 15:18, Chris Black wrote:
> I have ospfd running on the machines and all the routers are talking to
> eachother and seeing eachother as evidenced by output of various ospfctl
> commands. My main problem is that ospf does not seem to be changing my
> default route for the internal routers.
> 
> ***
> How do I get ospf to correctly change routes (including default route)?

ospfd won't change an existing static route (including the default route).

You would need to remove the default route on your internal routers (i.e.
route delete default;rm /etc/mygate) and just have them learn a default
from OSPF.

> router-id 0.0.0.10 (.20 for other internal machine)

It's normal (though not a requirement) to use an IP address here.

> area 10.254.0.0 {
> area 10.6.0.0 {

You're missing the backbone (area 0.0.0.0); for this setup I don't see
the point in having >1 area, you should be able to merge it all down into
0.0.0.0.

In order to track carp state, you should be using the carp interfaces
and not the physical ("carpdev") interfaces.

As with bgpd (and dhcpd and others), the ospfd manual page describes
the implementation without going into detail about the protocol; if you
haven't found them yet, routergod.com's articles about OSPF aren't bad
as an introduction; http://www.routergod.com/sevenofnine/ and
http://routergod.com/sevenofnine/ospf_part_2.html

Reply via email to