my Ubuntu 20.04 LTS server looses its inbound LAN connection after some days of operation. The outbound connection works: I receive status e-Mails from that host. Bridged containers work as they should.
I have seen the resolved answer about a 20.04 LTS, where the network is unreachable. Basically it seems like I have the same problem, since I am not that firm with netplan, maybe someone can point me into the right direction?
My configuration under /etc/netplan/bridge.yaml
looks like this:
network:
version: 2
renderer: networkd
ethernets:
enp0s25:
dhcp4: yes
dhcp6: yes
bridges:
br0:
dhcp4: yes
dhcp6: yes
interfaces:
- enp0s25
The hardware has two devices enp0s25
and enp5s0
. I once tried to bond them and later thought about separating them (regular uplink via enp0s25
and bridge via enp5s0
) but that did not work.. In my current configuration I simply deactivated the second device.
However, what puzzles me now is, that the host itself not reachable, but everything bridged works fluently.
Thanks in advance, Dorian
Update
We have restarted the server, so that I can access it remotely. Thereby, a colleague recognized, that the IPv6 address still works.
I have run journalctl -S 2020-12-18 -o short-full -p 3
to see the error events since the last boot and found a lot of systemd-networkd-wait-online[2579361]: Event loop failed: Connection timed out
events.
→ I'm investigating
ip addr
. Is the IP address of the server the same address that you expect? – user535733 Jan 22 '21 at 12:54Request timeout for icmp_seq 0
and in case of SSH basically the same...connect: operation timed out
.It behaves like the physical connection was severed or as if the firewall rules were altered. But in fact the basic configuration worked for years and through 16.04 LTS and 18.04 LTS .. only since 20.04 and the adaptation of netplan, everything went downhill.
The connection is lost after several days of operation. Sometimes it reapers, often times it does not until a reboot.
– Dorian Jan 22 '21 at 17:21