Colin Johnson said:
I'm seeing a similar problem.
When I hard code in the IP addr and such the network functions
just fine. When I tell the computer to get its network
information via DHCP it fails to contact the DHCP server.
I've checked the logs on the DHCP server (ISC DHCP server
version 3) and I can see the discover getting to it:
I'm getting the IP just fine for Vista from ISC dhcpd - Do you have
authoritative; set in your dhcpd.conf?
My setup has an caching DNS in my LAN and I'm using it for all the DNS
queries and forwards. And my dhcp addresses are reserved strictly for
"guest" machines - Dhcpd setup is as follows:
# Start of dhcpd.conf
# Set the IP ranges, lease times and domain names according
# your actual setup
option domain-name "sub.mydomain.org";
option domain-name-servers 192.168.25.1;
default-lease-time 600;
max-lease-time 7200;
authoritative;
ddns-update-style ad-hoc;
log-facility local7;
subnet 192.168.25.0 netmask 255.255.255.0 {
range 192.168.25.200 192.168.25.225;
option routers 192.168.25.1;
option broadcast-address 192.168.25.255;
default-lease-time 600;
max-lease-time 7200;
}
# End of dhcpd.conf
-Reko