I am currently using Ubuntu 24.04.1 LTS (latest version), and before the update, I was running Ubuntu 24.04 LTS (maybe). My setup includes a GUI, and I use Virt-Manager to host VMs.
After the update, my previous netplan configuration stopped working, and I lost internet connectivity on the host machine. Below is the previous configuration:
network:
version: 2
renderer: networkd
ethernets:
eth1:
dhcp4: no
bridges:
br0:
interfaces: [eth1]
dhcp4: no
addresses: [103.192.157.246/28]
routes:
- to: default
via: 103.192.157.241
metric: 100
nameservers:
addresses: [103.84.36.5]
dhcp6: no
link-local: [ ]
parameters:
stp: false
forward-delay: 0
I require a proper bridge configuration to assign an IP address to my VMs, but I haven’t gotten this working.
Here is the configuration I’m currently using, which allows the host to connect to the internet but does not work with the bridge setup I need.
network:
version: 2
ethernets:
NM-2f5257fe-8930-34b9-aca3-549d092c0943:
renderer: NetworkManager
match:
name: "eth1"
addresses:
- "103.192.157.246/24"
nameservers:
addresses:
- 103.84.36.5
dhcp6: true
wakeonlan: true
networkmanager:
uuid: "2f5257fe-8930-34b9-aca3-549d092c0943"
name: "Wired connection 2"
passthrough:
connection.autoconnect-priority: "-999"
ethernet._: ""
ipv4.address1: "103.192.157.246/24,103.192.157.241"
ipv4.method: "manual"
ipv6.addr-gen-mode: "default"
ipv6.ip6-privacy: "-1"
proxy._: ""
Any advice on how to resolve this issue would be greatly appreciated. Thank you in advance for your help!