the nameserver in /etc/resolv.conf defines the dns server used by the sytem and it points to 127.0.0.1
on 127.0.0.1 runs dnsmasq and that is used to resolve the request.
by default dnsmasq uses the file /tmp/resolv.conf.auto this file also gets updated by the dhcp client and would contain the dns servers gotten via dhcp from the provider.
The file used by dnsmasq for the lookup can be changed under /etc/config/dhcp
The option dns would get written to /tmp/resolv.conf.auto that is defined under /etc/config/network under an inteface.
However it gets appended to the dns settings it gets trough dhcp
So you are better of creating a new resolv file, /etc/resolv.conf.manual for example and change the setting in /etc/config/dhcp . via the uci command: uci set dhcp.@dnsmasq[0].resolvfile='/etc/resolv.conf.manual'; uci commit dhcp
Or you could of course edit the file as well
(Last edited by FriedZombie on 31 Dec 2013, 20:14)