Если я хочу предоставить DNS-сервис для общественности с помощью dnsmasq, как установить адрес listen-address? Я изменил свой с 192.168.1.1 на 0.0.0.0 и он перестает работать:

$ cat /etc/dnsmasq.d/public.conf
# listen to public
listen-address=0.0.0.0
# provide only DNS service and disable DHCP and TFTP on it
no-dhcp-interface=eth0

$ dig +short docs.google.com
;; connection timed out; no servers could be reached

$ netstat -ulnp | grep :53
(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
udp        0      0 0.0.0.0:53              0.0.0.0:*                           -               
udp6       0      0 :::53                   :::*                                -               

Пожалуйста помоги. Благодарю.

0