* Sets front matter defaults * Removes default front matter from section templates/pages * Removes default front matter from addon pages * Removes default front matter from integration pages * Removes default front matter from posts * Removes default front matter from docs pages * Removes default front matter from other pages * Fixes blog category pages
2.1 KiB
title, description, featured
| title | description | featured |
|---|---|---|
| SSH Server | Allow logging in remotely to Hass.io using SSH. | true |
Setting up an SSH server allows access to your Hass.io folders with any SSH client. It also includes a command-line tool to access the Hass.io API. Try it out:
hassio help
This add-on will not enable you to install packages or do anything as root. This is not allowed with Hass.io.
To use this add-on, you must have a private/public key to log in. To generate them, follow the instructions for Windows and these for other platforms. It is possible to set a password for login since version 2.0 but for high security use private/public keys. You can not run both variants at the same time.
To start this add-on for the first time, you either need to include a key (enclosed in quotation marks, on a single line without line breaks) or set a password in the options section.
{
"authorized_keys": [
"ssh-rsa AKDJD3839...== my-key"
],
"password": ""
}
The username for login over SSH is root. The complete login command is ssh root@hassio.local.
After logging in, you will find yourself in this add-on's container. The Home Assistant configuration directory is mounted on the path /config.
{% configuration %} authorized_keys: description: Your public keys for the authorized key file. Every element will be a line inside that file. required: false type: string password: description: Set a password for login. We do NOT recommend this variant. required: false type: string {% endconfiguration %}
This add-on is not compatible if Hass.io was installed via the generic Linux installer.