I run home automation with Home Assistant on a Raspberry Pi, and I’d always been a little uneasy about exposing my home network to the web for remote access. I’d set up SSL encryption and all that, but still felt uncomfortable having an open port in my router and to manage update and security for such an important and private service.
I recently learned about Cloudflare Tunnel, part of Cloudflare’s Zero Trust offerings.
Cloudflare Tunnel provides a secure way to connect your resources to Cloudflare without requiring a
publicly routable IP address. Instead of sending traffic to an external IP and opening ports in your
firewall, a lightweight daemon in your infrastructure (cloudflared
) creates outbound-only
connections to Cloudflare’s global network. This is essentially an agent-initiated reverse tunneling
service.
The service can connect HTTP web servers, SSH servers, remote desktops, and various other protocols safely to Cloudflare’s edge. All you need is a domain handled by Cloudflare.
When I learned about this technology, it immediately caught my attention as a way better solution for securely accessing my Home Assistant setup. I also immediately discovered that this idea is far from novel and that there’s an extremely awesome Home Assistant add-on by Tobias Brenner that makes this setup a breeze.
With the add-on, the changes necessary to get this running were surprisingly minimal, since I already used Cloudflare for my domains anyway. I spent more time cleaning up my old SSL Cert and renewing setup than I did this solution.
Cloudflare-side, it’s essentially just creating the tunnel in Cloudflare and generating a secret token to provide to the add-on:
Back in Home Assistant, you just need to allow requests from the Cloudflared add-on, which runs in a Docker container:
http:
use_x_forwarded_for: true
# The Cloudflared add-on runs locally, so HA has to trust the Docker network it runs on.
trusted_proxies:
- 172.30.33.0/24
With this configuration, I then closed all previously forwarded ports in my router. Now my home automation is accessible only through Cloudflare’s secure infrastructure while being completely sealed from direct access from the outside. After putting the cherry on top - enabling 2FA for Home Assistant - I feel much better about it all.
I’ve struggled a bit with finding a way to close off all internal access to Home Assistant (forcing it all through Cloudflare), but I’ll keep at it.
If you run a Home Assistant instance, I highly recommend this setup.