Just been playing with nmcli today…
Got some RHEL9 servers hosted in AWS EC2 that get their DHCP lease from “some thing” on their VLAN… They’re replacing some RHEL7 servers I recently configured to use static “host assigned” IP addresses (simple as editing /etc/sysconfig/network-scripts/ifcfg-$NIC
files) instead of DHCP…
I need to change their (the RHEL9) DNS settings… Apparently it has to be done on the VPC for everything using that VPC… But I don’t want to do a global change.
Found some “nmcli” command strings that I can use (I tested them on a VirtualBox RHEL9 instance)… Those config changes survive reboots… phew!
Everything’s becoming WAY more complex than it needs to be…
Excerpt from my shell history on that VirtualBox RHEL9 instance :
63 sudo nmcli connection modify enp0s3 ipv4.dns "8.8.8.8 8.8.4.4"
68 sudo nmcli connection mod enp0s3 ipv4.ignore-auto-dns yes
71 man nmcli
72 sudo nmcli connection mod enp0s3 ipv4.dns-search saturno.net
And to enforce each change sudo systemctl restart NetworkManager
(there’s probably a better way - but at least your session doesn’t disconnect) - but after restarting NetworkManager SystemD - I can see my changes in /etc/resolv.conf
(why can’t we edit that file directly? What a bullshit backwards step that is!)
[root@rel9-000 ~]# cat /etc/resolv.conf
# Generated by NetworkManager
search saturno.net
nameserver 8.8.8.8
nameserver 8.8.4.4
nameserver fe80::da44:89ff:feee:c453%enp0s3
In Australia (or even Blighty) when we see bullshit like this we’d exclaim : “surely they’re taking the piss!”… Why? Was that easier?
That :
# Generated by NetworkManager
Is a dire warning - it’s not stated - but implied “DO NOT EDIT THIS FILE”…