I attempted to replicate the settings on my old WRT54Gv8.0 where I entered 3 dns servers; one from my ISP, two from an free DNS service. When I enter these setting in LEDE
config interface 'loopback'
option ifname 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option ula_prefix 'fd1d:cbc2:5ea4::/48'
config interface 'lan'
option type 'bridge'
option ifname 'eth0'
option proto 'static'
option netmask '255.255.255.0'
option ipaddr '192.168.2.1'
option gateway '192.168.2.1'
option mtu '1492'
option dns '96.90.175.167 205.171.3.65 104.238.153.170'
option delegate '0'
option broadcast '192.168.2.255'
config interface 'wan'
option ifname 'eth1'
option proto 'static'
option netmask '255.255.255.0'
option ipaddr '192.168.1.2'
option gateway '192.168.1.1'
option mtu '1492'
option dns '45.32.230.225 23.94.60.240 96.90.175.167'
option delegate '0'
option broadcast '192.168.1.255'
config switch
option name 'switch0'
option reset '1'
option enable_vlan '1'
config switch_vlan
option device 'switch0'
option vlan '1'
option ports '1 2 3 4 0'
In the above, only 96.90.175.167 remains as a manual entry. I have no idea where entries 45.32.230.225 23.94.60.240 came from. They did no come from my ISP
https://www.whatsmydns.net/dns/usa/centurylink.html
My modem connects to my ISP via pppOa. In my previous routers, the settings would persist.
I also confused about using a FQDN for my lan. When I now install Debian or OpenBSD /etc/myname is initially has the computer name followed by an appended 'lan'. Although a quick answer would be appreciated, I would actually like to be able to decipher the LEDE/OpenWRT documentation for /etc/config/dhcp and /etc/dnsmask.conf.