Cannot access HA remotely since August update

I use HA OS on a NUC, and I used to connect it remotely (either with a web browser or the mobile app). I use the DuckDNS extension, which redirects to my home router. The router is configured to redirect the HA port to the NUC.

It used to work correctly until the August update. Basically, I get a timeout.

* Host myhost.duckdns.org:8123 was resolved.
* IPv6: (none)
* IPv4: myIP (correct)
*   Trying myIP:8123...
* ipv4 connect timeout after 9881ms, move on!
* Failed to connect to myhost.duckdns.org port 8123 after 10002 ms: Timeout was reached
* Closing connection
curl: (28) Failed to connect to myhost.duckdns.org port 8123 after 10002 ms: Timeout was reached

I have checked the new network menu, commented out the HTTP config with no success. I have cleared caches and force-reloaded, which worked in some random cases…

Any help?

Are you sure HA is still using port 8123?

It is using the 8123 port, I have checked the port redirections on the router. And they were working correctly before the update.

Here is info about communication from work (not working) and from home (working)

Wifi work:

$ curl -4 -vk --connect-timeout 10 https://mydomain.duckdns.org:8123/
* Host mydomain.duckdns.org:8123 was resolved.
* IPv6: (none)
* IPv4: xxx.xxx.xxx.xxx
*   Trying xxx.xxx.xxx.xxx:8123...
* ipv4 connect timeout after 9984ms, move on!
* Failed to connect to mydomain.duckdns.org port 8123 after 10004 ms: Timeout was reached
* Closing connection
curl: (28) Failed to connect to mydomain.duckdns.org port 8123 after 10004 ms: Timeout was reached

$ curl -4 -vk --connect-timeout 10 http://xxx.xxx.xxx.xxx:8123/          
*   Trying xxx.xxx.xxx.xxx:8123...
* ipv4 connect timeout after 9999ms, move on!
* Failed to connect to xxx.xxx.xxx.xxx port 8123 after 10005 ms: Timeout was reached
* Closing connection
curl: (28) Failed to connect to xxx.xxx.xxx.xxx port 8123 after 10005 ms: Timeout was reached

Wifi home :

$ curl -4 -vk --connect-timeout 10 https://mydomain.duckdns.org:8123/
* Host mydomain.duckdns.org:8123 was resolved.
* IPv6: (none)
* IPv4: xxx.xxx.xxx.xxx
*   Trying xxx.xxx.xxx.xxx:8123...
* Connected to mydomain.duckdns.org (xxx.xxx.xxx.xxx) port 8123
* ALPN: curl offers h2,http/1.1
* (304) (OUT), TLS handshake, Client hello (1):
* (304) (IN), TLS handshake, Server hello (2):
* (304) (IN), TLS handshake, Unknown (8):
* (304) (IN), TLS handshake, Certificate (11):
* (304) (IN), TLS handshake, CERT verify (15):
* (304) (IN), TLS handshake, Finished (20):
* (304) (OUT), TLS handshake, Finished (20):
* SSL connection using TLSv1.3 / AEAD-AES256-GCM-SHA384 / [blank] / UNDEF
* ALPN: server did not agree on a protocol. Uses default.
* Server certificate:
*  subject: CN=mydomain.duckdns.org
*  start date: Aug 10 01:36:30 2026 GMT
*  expire date: Nov  8 01:36:29 2026 GMT
*  issuer: C=US; O=Let's Encrypt; CN=YE2
*  SSL certificate verify ok.
* using HTTP/1.x
> GET / HTTP/1.1
…

$ curl -4 -vk --connect-timeout 10 http://xxx.xxx.xxx.xxx:8123/
*   Trying xxx.xxx.xxx.xxx:8123...
* Connected to xxx.xxx.xxx.xxx (xxx.xxx.xxx.xxx) port 8123
> GET / HTTP/1.1
> Host: xxx.xxx.xxx.xxx:8123
> User-Agent: curl/8.7.1
> Accept: */*
> 
* Request completely sent off
* Empty reply from server
* Closing connection
curl: (52) Empty reply from server