Description
I added this to the route table where 192.168.1.117 is the physical IP address of my GW1 on my lan.
ip route add 192.168.91.1 via 192.168.1.117
But I get this error when
python -m pypowerwall tedapi
pyPowerwall - Powerwall Gateway TEDAPI Reader [v0.12.4]
- Connecting to https://192.168.91.1... FAILED
ERROR: Unable to connect to Powerwall Gateway 192.168.91.1 on port 443.
Please verify your your host has a route to the Gateway.
Error details: HTTPSConnectionPool(host='192.168.91.1', port=443): Max retries exceeded with url: / (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7fbe22c59610>, 'Connection to 192.168.91.1 timed out. (connect timeout=5)'))
EDIT: I tried pinging gw
ping 192.168.91.1
PING 192.168.91.1 (192.168.91.1): 56 data bytes
64 bytes from 192.168.91.1: seq=0 ttl=64 time=1.458 ms
64 bytes from 192.168.91.1: seq=1 ttl=64 time=2.169 ms
64 bytes from 192.168.91.1: seq=2 ttl=64 time=1.844 ms
Thoughts?