Writing a basic configuration for DNSMasq
by Igloo on May 18th in Linux, Linux How To's:
First, install dnsmasq. aptitude install dnsmasq Then once that has completed installing, Edit the config file: nano /etc/dnsmasq.conf Below are the variables that NEED changing, This will allow dnsmasq to function and provide *some* level of control over the default hosts. cat dnsmasq.conf | sed ‘/ *#/d; /^ *$/d’ domain=yourdomain.com dhcp-range=192.168.1.10,192.168.1.199,8h dhcp-authoritative log-queries log-dhcp log-facility=/var/log/dnsmasq [...]
