受欢迎的博客标签

Home Assistant Core Remote access CheckList

Published

Home Assistant Core Remote access CheckList

 

Quick Start


Find your configuration directory on  Server

way 1:

Home Assistant will print out the configuration directory it is using when starting up.

way2: Find your configuration directory in Home Assistant frontend

The path to your configuration directory can be found in the Home Assistant frontend by going to Configuration > Settings > Info

 

Example configuration.yaml  on  Server

https://www.home-assistant.io/examples/#example-configurationyaml

 

 

Find home-assistant.log directory  on  Server

99

 

Server

configuration.yaml

 

config in configuration.yaml

config home

way 1:

way 2:

homeassistant:
  name: Home
  latitude: xx.xxxx
  longitude: xx.xxxx
  unit_system: imperial
  time_zone: America/Chicago
config user Can only log in from the local network?

http://192.168.101.50:8123/config/users

 

Config Trusted Networks Skip Login Page ?

The Trusted Networks auth provider defines a range of IP addresses for which no authentication will be required (also known as “allowlisting”). For example, you can allowlist your local network so you won’t be prompted for a password if you access Home Assistant from inside your home.

When you log in from one of these networks, you will be asked which user account to use and won’t need to enter a password.

https://www.home-assistant.io/docs/authentication/providers/

Here is an example in configuration.yaml to set up Trusted Networks:

homeassistant:
  auth_providers:
    - type: trusted_networks
      trusted_networks:
        - 192.168.0.0/24
        - fd00::/8

 

 

 

Client

login ui-Login Page display?

 

auth provider?

Home Assistant automatically configures the standard auth providers so you don’t need to specify auth_providers in your configuration.yaml file unless you are configuring more than one. 

https://www.home-assistant.io/docs/authentication/providers/