Veth pairs fail activation on Jammy
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
network-manager (Ubuntu) |
New
|
Undecided
|
Unassigned | ||
Jammy |
New
|
Low
|
Unassigned |
Bug Description
Network Manager 1.36 has a bug that prevents it to activate veth pairs. The problem was found in the Netplan's CI with the new support for veths in Netplan (because we run the tests on Jammy).
How to reproduce the problem:
1) Launch a Jammy VM and install network-manager
lxc launch ubuntu:jammy jammy --vm
lxc shell jammy
apt -y install network-manager
2) Set the default Netplan's renderer to NetworkManager so NM can manage interfaces (it will make Netplan create the file /var/run/
netplan set --origin-
netplan apply
3) Create the veth pair
nmcli con add type veth ifname veth0 peer veth1 ipv4.method disabled ipv6.method disabled
nmcli con add type veth ifname veth1 peer veth0 ipv4.method disabled ipv6.method disabled
4) Reboot
5) Check with "nmcli con show" that the new connections were not activated, even though both interfaces were created in the system. Also, check the systemd journal and you should see this error message:
<error> [1692805758.9025] manager: (veth-veth0) couldn't create the device: Failed to create veth interface 'veth0' for 'veth-veth0': exists
Try the very same steps on Lunar and you'll see that the connections will be activated just fine.
This issue appears to be fixed by this commit https:/
I created a PPA with the fix here https:/
If you run the same steps again on Jammy with this PPA you'll see it fixes this issue. In fact, Netplan's integration tests will work on Jammy using the PPA.
Related branches
- Network-manager: Pending requested
-
Diff: 231 lines (+192/-2)5 files modifieddebian/changelog (+7/-2)
debian/patches/lp2032824/0001-veth-fix-veth-activation-on-booting.patch (+56/-0)
debian/patches/lp2032824/0002-veth-drop-iface-peer-check-during-create_and_realize.patch (+42/-0)
debian/patches/lp2032824/0003-veth-fix-detection-of-existing-interfaces-in-create_.patch (+84/-0)
debian/patches/series (+3/-0)
I linked the patch I used for analysis.