DHCP Failover and clients attempting to renew every 6 seconds.

Cory Meyer cory.meyer at gmail.com
Fri Feb 16 05:01:33 UTC 2007


I'm running into an issue with my newly implemented DHCP Failover
configuration on DHCP-3.0.5.  I've got a good number of clients
attempting to renew their lease every 6 seconds.   Odd thing is that
the default-lease-time is set to 7200 and the max-lease-time is set to
14400.   I've verified with Tcpdump/dhcpdump that the DHCPACK does
contain the correct lease time.

Any ideas?
Thanks,

Cory


### DHCP.Conf
ddns-update-style none;
one-lease-per-client true;
option domain-name "myfakedomain.com";
default-lease-time 300; max-lease-time 300;
authoritative;
ping-check true;

include "/etc/dhcp/failover.conf"
include "/etc/dhcp/pools.conf"


## /etc/dhcp/failover.conf -- Example
failover peer "dhcp" {
  primary;
  address 10.1.1.20;
  port 555;
  peer address 10.1.1.21;
  peer port 555;
  max-response-delay 60;
  max-unacked-updates 10;
  load balance max seconds 5;
  mclt 3600;
  # Split of 0 will not load balance.
  split 0;
}


## /etc/dhcp/pools.conf -- example
 subnet 10.1.112.0 netmask 255.255.252.0 {
        pool {
        failover peer "dhcp";
        deny dynamic bootp clients;
        range 10.1.112.1 10.1.115.253;
        option broadcast-address 10.1.115.255;
        option subnet-mask 255.255.252.0;
        option routers 10.1.115.254;
        option domain-name-servers 10.1.1.2,10.1.1.3;
        option dhcp-server-identifier 10.1.115.254;
        default-lease-time 7200;
        max-lease-time 14400;
        deny unknown-clients;
        }
 }
## END


More information about the dhcp-users mailing list