Got a super weird problem. The last few days I’ve noticed issues with HA. The weather app periodically reports unavailable, automations are intermittently not working.
Finally got some time to dig into it and it seems to be a network problem. HTTP requests are periodically failing in the container with “Network unreachable”. This occurs both to addresses on my local network and to the Internet.
I can re-create this by running a wget inside the container, e.g.
f0a135ba2c48:/config# wget https://api.glowmarkt.com -O - >/dev/null
Connecting to api.glowmarkt.com (154.51.163.100:443)
wget: server returned error: HTTP/1.1 404 Not Found
f0a135ba2c48:/config# wget https://api.glowmarkt.com -O - >/dev/null
Connecting to api.glowmarkt.com (154.51.163.100:443)
wget: can't connect to remote host (154.51.163.100): Network unreachable
f0a135ba2c48:/config# wget https://api.glowmarkt.com -O - >/dev/null
Connecting to api.glowmarkt.com (154.51.163.100:443)
wget: can't connect to remote host (154.51.163.100): Network unreachable
f0a135ba2c48:/config# wget https://api.glowmarkt.com -O - >/dev/null
Connecting to api.glowmarkt.com (154.51.163.100:443)
wget: server returned error: HTTP/1.1 404 Not Found
I’ve tried deleting and recreating the the container. I’ve updated to the latest version.
I run a number of containers on this host and the issue is isolated to this container, the others are fine. As is network connectivity on the host its self.
And it seems to be only HTTP(S)/TCP traffic impacted. Pings at least works fine.
I’m running Ubuntu 24.04. Anyone else seen this? I’m a bit stumped.