Something was not done correctly when editing /tmp/dnsmasq.conf . Bad option at line 2 of /tmp/test.conf implies the resolve-file= line was not entered correctly, as dnsmasq would not be looking for options in the resolv file ( at least I don't think it would be calling them options ). Ignoring nameserver 127.0.0.1 further confirms this, as this is due to dnsmasq using /etc/resolv.conf which contains the localhost address. Basically, something about how you entered:
Code:
resolv-file=/tmp/test.conf
Did not end up correct. Or, if it does call the servers " options ", then something got messed up with you created the /tmp/test.conf file.. it should look like this:
Code:
nameserver 8.8.8.8
nameserver 2001:4860:4860::8888
If you'd like, post the conf files you made, or copy paste into a code box ( make sure to use a code box, else all the spacing will be messed up ) and I'll take a look + fix it if there's issues.