Я хотел бы использовать только dnsmasq для пересылки всех dns-запросов на dns-сервер Google и отключения dhcp ...
Как добиться такого результата?
По умолчанию в dnsmasq DHCP-сервер отключен. Чтобы включить его, вам нужно раскомментировать строки, связанные с dhcp, в /etc/dnsmasq.conf
для пересылки всех запросов на 208.67.222.222 достаточно добавить (не касаясь конфигурации dnsmasq) в /etc/resolv.conf
:
nameserver 127.0.0.1
# In order to configure dnsmasq to act as cache for the host on which it
# is running, put [as the first line] "nameserver 127.0.0.1" in /etc/resolv.conf to force
# local processes to send queries to dnsmasq. [...]
# dnsmasq is smart enough to ignore this line and forward all queries appropriately,
# while all other applications will send all their queries to dnsmasq.
nameserver 208.67.222.222
Это оно :)
Просто закомментируйте строки, связанные с dhcp, в файле dnsmasq.conf, а затем перезапустите dnsmasq.