No subject


Fri Feb 17 00:23:59 UTC 2012


May 23 16:16:17 nadrdir02 dhcpd: peer dhcp-failover: disconnected
May 23 16:16:17 nadrdir02 dhcpd: failover peer dhcp-failover: I move
from normal to communications-interrupted
May 23 16:16:37 nadrdir02 dhcpd: failover: link startup timeout

That they go into communications interrupted when they lose contact is
fine, but the problem is that they never reestablishes contact. I have
to restart both servers manually to get them into the "Normal" state
again. Since the problem is solved by restarting the servers manually,
it's evident that the network problem isn't there anymore. So my
question is why they don't try to reestablish contact?

Both servers uses a timeserver to synchronize their clocks and I have
verfied that they don't differ. They are running Debian Sarge with the
latest DHCP version (isc-dhcpd-V3.0.5) compiled from the sources at
www.isc.org. The servers are running as Guests on two different VmWare
ESX 3.0 hosts.

#Extracts from dhcpd.conf on server1 (primary)
authoritative;
omapi-port 7911;
log-facility local7;
default-lease-time 47200;
max-lease-time 47200;
ddns-update-style ad-hoc;


failover peer "dhcp-failover" {
        primary;
        address x.x.x.x;
        port 519;
        peer address x.x.x.x;
        peer port 520;
        max-response-delay 60;
        max-unacked-updates 10;
        mclt 600;
        split 128;
        load balance max seconds 3;
}

#Sample subnet:
subnet x.x.x.x netmask 255.255.255.0 {
                option routers x.x.x.x;
                pool {
                        allow members of "group1";
                        failover peer "dhcp-failover";
                        range x.x.x.x x.x.x.x;
                        default-lease-time 86400;
                        max-lease-time 86400;
                        deny dynamic bootp clients;
                }
}

#Extracts from dhcpd.conf on server2 (secondary):
authoritative;
omapi-port 7911;
log-facility local7;
default-lease-time 47200;
max-lease-time 47200;
ddns-update-style ad-hoc;

failover peer "dhcp-failover" {
        secondary;
        address x.x.x.x;
        port 520;
        peer address x.x.x.x;
        peer port 519;
        max-response-delay 60;
        max-unacked-updates 10;
}

#Sample subnet
subnet x.x.x.x netmask 255.255.255.0 {
                option routers x.x.x.x;
                pool {
                        allow members of "group1";
                        failover peer "dhcp-failover";
                        range x.x.x.x x.x.x.x;
                        default-lease-time 86400;
                        max-lease-time 86400;
                        deny dynamic bootp clients;
                }
}

Any help would be very appreciated!

/Martin Ericsson


More information about the dhcp-users mailing list