I’m having trouble accessing the configurator page.
Here’s my options:
{
“username”: “admin”,
“password”: “removed”,
“certfile”: “fullchain.pem”,
“keyfile”: “privkey.pem”,
“ssl”: false,
“allowed_networks”: [
“192.168.0.0/16”
],
“banned_ips”: [
“8.8.8.8”
],
“banlimit”: 0,
“ignore_pattern”: [
“pycache”
],
“dirsfirst”: false
}
When I start the add on, I get this:
starting version 3.2.4
INFO:2018-01-12 16:22:53,317:main:Starting server
INFO:2018-01-12 16:22:53,319:main:Listening on: http://0.0.0.0:3218
I feel like the “Listening on: http://0.0.0.0:3218” part might be important. Why would it be all zeros?
With this open setup, I get the following responses depending upon how I try to access:
http://hassio.local:8123/configurator:
a unending spinning dot and “Policy not fulfilled” if I leave the page and go back.
error log:
INFO:2018-01-12 16:29:13,326:main:123.30.32.1 - “GET / HTTP/1.1” 420 -
INFO:2018-01-12 16:29:18,121:main:123.30.32.1 - “GET / HTTP/1.1” 420 -
duckdns:
a unending spinning dot and “Policy not fulfilled” if I leave the page and go back.
error log:
INFO:2018-01-12 16:30:07,364:main:123.30.32.1 - “GET / HTTP/1.1” 420 -
INFO:2018-01-12 16:30:12,683:main:123.30.32.1 - “GET / HTTP/1.1” 420 -
http://192.168.1.180:3218:
Within the larger hass.io interface it returns the above error (http://192.168.1.180/configurator). If I l go straight to the port, it works fine (http://192.168.1.180:3218)
If I change my options to this:
{
“username”: “admin”,
“password”: “removed”,
“certfile”: “fullchain.pem”,
“keyfile”: “privkey.pem”,
“ssl”: false,
“allowed_networks”: [
“192.168.0.0/24”
],
“banned_ips”: [
“8.8.8.8”
],
“banlimit”: 0,
“ignore_pattern”: [
“pycache”
],
“dirsfirst”: false
}
http://hassio.local:8123/configurator:
a unending spinning dot and “Policy not fulfilled” if I leave the page and go back.
error log:
INFO:2018-01-12 17:34:21,367:main:123.30.32.1 - “GET / HTTP/1.1” 420 -
INFO:2018-01-12 17:34:48,004:main:123.30.32.1 - “GET / HTTP/1.1” 420 -
duckdns:
a unending spinning dot and “Policy not fulfilled” if I leave the page and go back.
error log:
INFO:2018-01-12 17:35:45,171:main:123.30.32.1 - “GET / HTTP/1.1” 420 -
INFO:2018-01-12 17:35:50,787:main:123.30.32.1 - “GET / HTTP/1.1” 420 -
http://192.168.1.180/configurator :
a unending spinning dot and “Policy not fulfilled” if I leave the page and go back.
error log:
INFO:2018-01-12 17:36:31,740:main:123.30.32.1 - “GET / HTTP/1.1” 420 -
INFO:2018-01-12 17:36:37,440:main:123.30.32.1 - “GET / HTTP/1.1” 420 -
I believe my router IP is 192.168.1.1.
So, long story short, I can access configurator via the pi IP, but only when “allowable networks” is set to “192.168.0.0/16”, other other ways of access fail.
All means of access were working yesterday, I’m unaware of what changed to make this all break. Any ideas?
THanks!