Hello
What is the proper (ideally UCI) way of completely disabling DHCP and DNS servers that will survive accross updates?
Currently I have to manually remove /etc/resolv.conf and create a symlink pointing to /tmp/resolv.conf.auto instead of /tmp/resolv.conf otherwise dns resolution fails.
I also I have to perform
/etc/init.d/dnsmasq disable
/etc/init.d/odhcpd disable
even though I think I disabled everything through /etc/config/dhcp
config dnsmasq
option domain ''
option port 0
config dhcp 'lan'
option interface 'lan'
option ignore '1'
config dhcp 'wan'
option interface 'wan'
option ignore '1'
config odhcpd 'odhcpd'
option maindhcp '0'
option leasefile '/tmp/hosts/odhcpd'
option leasetrigger '/usr/sbin/odhcpd-update'
thanks.