Hi there. The update to jammy jellyfish was a bit problematic for me. 3 out of 15 ubuntu servers got networkproblems afterwards.
They got the network adapter reset to disabled and the configuration deleted.
I got them all manually configured, back online and installed netplan to manage the network configuration. The problem ive got now is that i cant get the DNS settings to persist over a reboot.
Netplan config:
Code:
network:
version: 2
renderer: networkd
ethernets:
ens160:
dhcp4: true
nameservers:
addresses: [192.168.2.128, 192.168.2.129]
I dont know if netplan needs the resolv.conf file to set the DNS?
Anyways, it does not. The resolv.conf is blank until i run
Code:
dhclient -r; dhclient
After which the resolv.conf is created with the correct configuration, and i can verify that the correct DNS server is being queueried.