Anytime I set up a Linux DHCP server on a network the Macintosh clients can't pick up the DNS server address! Windows and linux clients don't seem to have a problem. In the past I just set their DNS manually, but now I need this to work for an open wireless network, manual config is not an option.
here is my dhcpd.conf
# dhcpd.conf
#
# Configuration file for ISC dhcpd (see 'man dhcpd.conf')
#
ddns-update-style ad-hoc;
subnet 192.168.1.0 netmask 255.255.255.240 {
range 192.168.1.2 192.168.1.14;
}
option routers 192.168.1.1;
option domain-name-servers 64.8.192.9;
I would appreciate any help, as you know Mac people just expect thing to work!
