I&#39;ve got a new DNSMASQ installation.<br>- DHCP assigns addresses fine<br>- DNS resolution for external and fixed addresses is fine<br>- BUT - DNS resolution for DHCP addresses is not working<br><br>Here&#39;s my dnsmasq.conf file...<br>
domain-needed<br>domain=x<br>expand-hosts<br>resolv-file=/etc/resolv.conf.dnsmasq<br>dhcp-range=192.168.4.100,192.168.4.200,24h<br>local=/x/<br>log-queries<br>no-negcache<br>dhcp-authoritative<br><br>when I do &quot;nslookup xxx&quot; (where xxx is the name of a dhcp machine) i get<br>
<br>** server can&#39;t find xxx.x: NXDOMAIN<br><br>when i look at the dnsmasq log, and the dnsmasq.leases file, everything seems to be ok...<br><br>Hmm - how can i get DNSMASQ to resolve my DHCP machines ??<br>