Hello!
We have been running with an ospfd.conf looking like this:
router-id 10.10.10.6
area 0.0.0.0 {
auth-type crypt
auth-md 1 secret
auth-md-keyid 1
interface em0 # Uplink / egress
interface carp125 { passive } # Inside on top of if vlan125
interface carp916 { passive }
interface carp943 { passive }
}
This has successfully announced the route only from the carp
MASTER avoiding assymetric routing and problems with stateful
filtering.
I am now trying to replicate this setup for IPv6 using
ospf6d but it seems that it will only announce addresses on
active interfaces.
So what obvious difference between ospf in IPv4 and IPv6 have I
missed?
Jan J