I've got a bunch of ubuntu 18,20 servers (web/app) and their /etc/netplan/conf.yaml has the nameservers pointing to our 2 ubuntu bind/dns servers.
Randomly, and often, I need to run netplay apply
on the app servers because they stop talking to the DNS server.
I tail /var/log/syslog and don't see any issue reported in the log. Where should I be looking?
Thanks!
Example conf file, 192.168.10.6/7 are my DNS servers, 10.1 is our router
/etc/netplan$ cat 0-conf.yaml
# This is the network config written by 'subiquity'
network:
ethernets:
eth0:
addresses:
- 192.168.10.129/24
gateway4: 192.168.10.1
nameservers:
addresses:
- 192.168.10.6
- 192.168.10.7
- 192.168.10.1
- 1.1.1.1
version: 2