Comment 16 for bug 1189571

Revision history for this message
In , John (john-redhat-bugs) wrote :

dhcpd fails after a while with:

Feb 11 17:19:18 pent dhcpd: Timeout requested too large reducing to 2^^32-1
Feb 11 17:19:18 pent dhcpd: Unable to set up timer: out of range
Feb 11 17:19:18 pent dhcpd[29451]: Timeout requested too large reducing to 2^^32-1
Feb 11 17:19:18 pent dhcpd:
Feb 11 17:19:18 pent dhcpd[29451]: Unable to set up timer: out of range

dhcp-4.2.3-6.P2.fc16.x86_64

Removing or modifying lease options below seems to make no difference. I don't know of a work-around.

dhcpd.conf is:

ddns-update-style interim;
authoritative;
ignore client-updates;

subnet 192.168.0.0 netmask 255.255.255.0 {
}

subnet 192.168.1.0 netmask 255.255.255.0 {

# --- default gateway
 option routers 192.168.1.1;
 option subnet-mask 255.255.255.0;

 option nis-domain "localdomain";
 option domain-name "localdomain";
 option domain-name-servers 8.8.8.8;

# option time-offset -18000; # Eastern Standard Time

# option ip-forwarding off;

 default-lease-time infinite;
 max-lease-time infinite;

 host rent {
# hardware ethernet 0:c0:9f:66:fa:fd;
# hardware ethernet 0:0b:6b:4c:40:52;
  hardware ethernet 0:1a:6b:6a:21:5b;
# hardware ethernet 00:1b:77:5a:50:7b;
  fixed-address 192.168.1.3;
  option host-name "rent";
 }

 host argument {
  hardware ethernet 00:12:3f:eb:7f:8f;
  fixed-address 192.168.1.4;
  option host-name "argument";
 }

 host sent {
  hardware ethernet 00:1c:bf:42:fb:8a;
  fixed-address 192.168.1.8;
  option host-name "sent";
 }

 host went {
  hardware ethernet 00:0f:b5:9f:c3:78;
  fixed-address 192.168.1.100;
  option host-name "went";
 }

 host parent {
  hardware ethernet b8:ff:61:11:cc:34;
  fixed-address 192.168.1.5;
  option host-name "parent";
 }

 range 192.168.1.9 192.168.1.90;
}