जवाबों:
dnsmasq में डिफ़ॉल्ट रूप से dhcp सर्वर अक्षम है। इसे सक्षम करने के लिए आपको dhcp से संबंधित लाइनों को अनइंस्टॉल करना होगा/etc/dnsmasq.conf
सभी अनुरोधों को 208.67.222.222 पर अग्रेषित करने के लिए यह जोड़ने के लिए पर्याप्त है (बिना dnsmasq config को छूए) /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
बस :)