Configurator issues

Just started a new install of Home Assistant since the last one went out to lunch somehow. Raspberry Pi 3, microSD card flashed with hassio.

I installed Configurator right away. But I can’t get in.

Configurator log shows this:

WARNING:2018-10-14 06:25:55,721:__main__:Invalid network in ALLOWED_NETWORKS: 192.168.2.0/16
INFO:2018-10-14 06:25:55,724:__main__:Starting server
INFO:2018-10-14 06:25:55,725:__main__:Listening on: http://0.0.0.0:3218
WARNING:2018-10-14 06:25:59,645:__main__:Client IP not within allowed networks.
INFO:2018-10-14 06:25:59,646:__main__:192.168.2.89 - "GET / HTTP/1.1" 420 -

I don’t remember these issues last time I set this up.

Configurator config:

{
  "username": "admin",
  "password": "yoyoma32$$A",
  "ssl": false,
  "certfile": "fullchain.pem",
  "keyfile": "privkey.pem",
  "allowed_networks": [
    "192.168.2.0/16",
    "172.30.0.0/16"
  ],
  "banned_ips": [
    "8.8.8.8"
  ],
  "banlimit": 0,
  "ignore_pattern": [
    "__pycache__"
  ],
  "dirsfirst": false,
  "enforce_basepath": false,
  "notify_service": "persistent_notification.create",
  "verify_hostname": "False"
}

My PC is on 192.168.2.89. What’s the correct entry for the “allowed network” field? I’m on the same LAN as the Pi.

/24 not /16

Technically, “192.168.2.0/16” isn’t correct. You probably want to change the allowed_networks entry to “192.168.2.0/24”.

1 Like

Thanks, that solved it. /24.

you probably want to erase your password from you first post too.