Breezes come with a pre-configured static IP. If you need to change the network configuration, here's how.
Ubuntu 22.04+ (Netplan)
Edit /etc/netplan/01-netcfg.yaml:
network:
version: 2
ethernets:
eth0:
addresses:
- 192.168.1.100/24
gateway4: 192.168.1.1
nameservers:
addresses:
- 8.8.8.8
- 8.8.4.4Apply:
netplan applyAlmaLinux / Rocky Linux (nmcli)
nmcli con mod eth0 ipv4.addresses 192.168.1.100/24
nmcli con mod eth0 ipv4.gateway 192.168.1.1
nmcli con mod eth0 ipv4.dns "8.8.8.8 8.8.4.4"
nmcli con mod eth0 ipv4.method manual
nmcli con up eth0Warning: Misconfiguring network settings can lock you out of SSH. Use the VNC console as a backup.