Home Assistant and SSH
Most system engineers are very familiar with SSH (Secure shell)
In this blog post we are going to use the tunneling option of SSH to create a secure connection and forward the Home Assistant frontend to a local system.
The involved parties are:
- Remote system: Where Home Assistant is running, usually in your home network.
- Local system: Where you want to see the frontend.
The prerequirements are that you need to allow the forwarding of port 22 from your router to the system where Home Assistant is running in your network. It might also be needed that you enable the SSH daemon by $ sudo systemctl start sshd
on the remote system and to adjust the host firewall. If you are running Hass.io then enable the SSH Server add-on. You must also have a public IP address or hostname which can be provided by dynamic DNS (e.g., NO-IP
First let’s have a look at the command we are going to use. Use man ssh
to get more information.
A possible example could look like the command below.
The first time you establish the connection you need to accept the fingerprint.
Now you are able to use your frontend on your local system: http://localhost:8000
Things to keep in mind:
- You need a public IP address or hostname (Dynamic DNS will work) if you want to use it from the internet.
- You need to setup port forwarding on your router.
- Don’t allow
root
to use SSH. SetPermitRootLogin no
on the remote system. - Your local port must be above 1024. Only
root
is allowed to forward privileged ports which are below 1024. - Use SSH keys for authentication
instead of passwords to avoid bruteforce attacks.