Currently running dhcpd and dnsmasq (or atleast trying to)...
EDIT: They're getting IPs now... and they see the static-IP'd machines. DNS just doesn't work, and I thought dnsmasq was supposed to work stock with /etc/hosts?
Here's the dhcpd.conf
Code: Select all
authoritative;
ddns-update-style ad-hoc;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.6 192.168.1.250;
default-lease-time 259200;
max-lease-time 518400;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
option domain-name-servers 192.168.1.1;
}
