Debug dnsmasq by logging its queries
#!/bin/bash | |
echo 'log-queries' > /etc/dnsmasq.conf | |
service network-manager restart | |
tail -f /var/log/syslog |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
echo 'log-queries' >
will overwrite your dnsmasq.conf contents. Are you sure you don't want to simply append with>>
?