[Bug 1979951] [NEW] 127.0.0.1/::1 removed from loopback interface if you configure extra IPs on lo (r104 regression/behaviour change)
Launchpad Bug Tracker
1979951 at bugs.launchpad.net
Thu Sep 15 15:31:49 UTC 2022
You have been subscribed to a public bug by Matthieu Clemenceau (mclemenceau):
[Impact]
Users who wish to configure additional addresses on lo may inadvertently
remove the 127.0.0.1/8 address from the interface. And, because this
only happens on the second invocation of `netplan apply`, it can create
confusing breakages for users. Although this is not a recommended
configuration, it was previously supported and the current behavior is a
regression.
[Test Plan]
* Configure additional addresses on the lo interface. I am testing in a
LXD container, so I added the following to /etc/netplan/10-lxc.yaml
under `ethernets:`
lo:
addresses: ["10.10.10.17/24","10.10.10.19/24"]
* Apply the config, and then inspect the lo interface's addresses:
$ netplan apply
$ ip addr show dev lo
* Observe that the 127.0.0.1/8 address is still present. Now, run the
same commands again:
$ netplan apply
$ ip addr show dev lo
* On an affected system, observe that the 127.0.0.1/8 address is now
gone. On a patched system, the address should still be present.
[Where problems could occur]
The patch removes cases where systemd-networkd will drop foreign
addresses from a managed link. If problems were to occur, it would be
related to the addresses configured on a managed link.
[Original Description]
If you configure the loopback interface using netplan without listing
the standard loopback addresses (127.0.0.1 / ::1) that are auto-
configured on boot then they are removed by netplan in r104+ but were
not in r103.
Confusingly this only happens the second time "netplan apply" is invoked
and not the first time.
There is some argument this is not a valid configuration, however
- It worked on r103 and broke in the r104 SRU for 20.04 and breaks on upgrade
- Since it only occurs on the second "netplan apply" it is likely people will accidentally create a configuration that on first verification works but breaks later
- Adding addresses to a loopback or dummy interface is a common need
- There is no dummy interface support in Netplan
- Removing the loopback IP doesn't immediately cause obvious breakage in an SSH session but causes all sorts of hard to diagnose issues with applications
Thus I consider this a high priority regression because of the multiple
ways this can break a system at an unexpected/unrelated time to when the
original change was made.
As a workaround you can add 127.0.0.1/::1 to the file and this seems to
generally work and product almost the same configuration with the
exception that "brd 127.255.255.255" is added to the "ip addr" output
compared to the auto-created configuration. All of the different routing
tables seem otherwise the tame.
= Test Case =
(1) Add IP configuration for lo to /etc/netplan/lo.yaml
lo:
match:
name: lo
addresses:
- 10.10.10.17/24
- 10.10.10.19/24
(2) Run "netplan apply" and observe the "ip addr show dev lo" output. Expected: 127.0.0.1/::1 are still there.
(3) Run "netplan apply" a second time and observe the "ip addr show dev lo" output. Expected: 127.0.0.1/::1 are now removed.
(4) Repeat the same test under netplan r103. Expected: 127.0.0.1/::1 are still there in both cases.
= Observations =
I found this change of behaviour happens only in r104. It is suspected
but not clear that this is due to the configuraiton diffing behaviour
introduced in r104. It's not clear to me why it doesn't happen on the
first "netplan apply".
I also found a recent upstream systemd commit to prevent networkd removing 127.0.0.1/::1 which solves this issue on r104 as well. It's possible this is a better fix to backport to solve this:
https://github.com/systemd/systemd/commit/b69bfa43052586cd6894c32d7d3d447195539ec5
Reverting to r103 *or* running a newer systemd with that patch resolves
the issue on 20.04 and 22.04 in my testing.
** Affects: netplan.io (Ubuntu)
Importance: High
Status: Confirmed
** Affects: systemd (Ubuntu)
Importance: Undecided
Status: Fix Released
** Affects: netplan.io (Ubuntu Focal)
Importance: Undecided
Status: New
** Affects: systemd (Ubuntu Focal)
Importance: Undecided
Status: Fix Committed
** Affects: netplan.io (Ubuntu Jammy)
Importance: Undecided
Status: New
** Affects: systemd (Ubuntu Jammy)
Importance: Undecided
Status: Fix Committed
** Tags: foundations-todo fr-2514 sts verification-done verification-done-focal verification-done-jammy
--
127.0.0.1/::1 removed from loopback interface if you configure extra IPs on lo (r104 regression/behaviour change)
https://bugs.launchpad.net/bugs/1979951
You received this bug notification because you are a member of Ubuntu Foundations Bugs, which is subscribed to the bug report.
More information about the foundations-bugs
mailing list