Since around 11:45 CEST today my Intesis-based ducted AC has been unavailable in Home Assistant, while I can still control it perfectly from the Intesis web portal. I isolated which part of their cloud is broken and thought it was worth sharing, because the logs on their own are misleading.
Setup: HA 2026.8.1, jnimmo/hass-intesishome 2.2.0, Mitsubishi Heavy Industries VRF with an AC Cloud Control gateway.
The log just repeats this every ~7 minutes:
[pyintesishome] Connection to 212.92.41.143:5210 failed: [Errno 110]
Connect call failed ('212.92.41.143', 5210); auto-reconnect will retry
[custom_components.intesishome] Setup of config entry ... cancelled
Which looks like a local network or firewall problem. It isn’t. I probed the endpoints from my LAN and from a cloud host on a completely different ISP, same result both times:
| Endpoint | Result |
|---|---|
user.intesishome.com:443 → 212.92.41.142 |
connects in 0.27 s |
accloud.intesis.com:443 → same IP |
connects |
212.92.41.143:5210 (push socket) |
timeout |
212.92.41.143:5209 |
timeout |
Both hostnames resolve to the same server, and that server is fine — which is why the portal and the mobile app keep working. What’s down is the persistent TCP socket on .143:5210, and that is the only thing the integration uses for state and commands. Hence: portal fine, Home Assistant dead.
Two things that made it worse for me:
-
The config entry ends up in
setup_error, notsetup_retry. Home Assistant never retries that state, so the integration will stay dead even after Intesis comes back, until you reload the entry or restart HA. I worked around it with an automation that reloads the config entry every 15 min while the entity is unavailable, and notifies me when it recovers. -
Two days earlier, a partial handshake left the entity registered but with
hvac_modes: ["off"]and noTARGET_TEMPERATURE— so every automation touching it threwEntity ... does not support action climate.set_temperature. Reloading the integration fixed it.
There’s an open request to poll poll_status() over HTTPS instead of depending on the push socket — jnimmo/hass-intesishome#50. Today is a good argument for it: the HTTP path was healthy the whole time.
Anyone else seeing this since 15 August? If you are, it would help to know your region and gateway type (IntesisHome vs AC Cloud Control) — that would tell us whether it’s a global outage or one server in the pool.


