---------- Forwarded message ----------
From: nibbler <[email protected]>
Date: 12 February 2011 23:27
Subject: Fwd: isc-dhcp-server is really slow and windows 7 cannot get a lease
To: [email protected]
---------- Forwarded message ----------
From: nibbler <[email protected]>
Date: Sat, Feb 12, 2011 at 10:56 PM
Subject: RE: isc-dhcp-server is really slow and windows 7 cannot get a lease
To: [email protected], [email protected]
This bug was reported on my behalf. For some reason, the bug tracker
didn't get my last email.
I've attached my config files for you to review.
Recently Windows 7 has intermittently been able to get a lease, which
is very strange.
System:
Intel Atom D510 (1.6GHz) with 4GB RAM
Debian squeeze (x64)
DHCP 4.2.0-P2 (manually updated)
## dhcpd.conf
server-identifier asylum;
ddns-updates on;
ddns-update-style interim;
update-static-leases on;
ddns-domainname "internal.";
ddns-rev-domainname "in-addr.arpa.";
ignore client-updates;
include "/etc/bind/rndc.key";
zone internal {
primary 127.0.0.1;
key rndc-key;
}
zone 1.168.192.in-addr.arpa {
primary 127.0.0.1;
key rndc-key;
}
option domain-name "internal";
option domain-name-servers 127.0.0.1;
default-lease-time 129600;
max-lease-time 12960000;
authoritative;
log-facility local7;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.10 192.168.1.99;
option domain-name-servers 192.168.1.100;
option domain-name "internal";
option routers 192.168.1.254;
option broadcast-address 192.168.1.255;
}
## named.conf.options
options {
directory "/var/cache/bind";
auth-nxdomain no; # conform to RFC1035
listen-on-v6 { any; };
};
controls {
inet 127.0.0.1 allow {localhost; };
};
## named.conf.local
zone "internal" {
type master;
file "/var/lib/bind/internal.hosts";
update-policy {
grant rndc-key wildcard * ANY;
};
notify yes;
};
zone "1.168.192.in-addr.arpa" {
type master;
file "/var/lib/bind/192.168.1.hosts";
update-policy {
grant rndc-key wildcard * ANY;
};
notify yes;
};
include "/etc/bind/rndc.key";