Netgear integration stopped working on 0.80

After updating I cannot see the presence trackers and I get the following errors on the log file.
Is anyone else having issues with the Netgear integration? Thanks.

Log Details (ERROR)
Sun Oct 14 2018 21:07:21 GMT-0500 (Central Daylight Time)

Error talking to API
Traceback (most recent call last):
File “/usr/local/lib/python3.6/site-packages/urllib3/connection.py”, line 171, in _new_conn
(self._dns_host, self.port), self.timeout, **extra_kw)
File “/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py”, line 79, in create_connection
raise err
File “/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py”, line 69, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File “/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py”, line 600, in urlopen
chunked=chunked)
File “/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py”, line 354, in _make_request
conn.request(method, url, **httplib_request_kw)
File “/usr/local/lib/python3.6/http/client.py”, line 1239, in request
self._send_request(method, url, body, headers, encode_chunked)
File “/usr/local/lib/python3.6/http/client.py”, line 1285, in _send_request
self.endheaders(body, encode_chunked=encode_chunked)
File “/usr/local/lib/python3.6/http/client.py”, line 1234, in endheaders
self._send_output(message_body, encode_chunked=encode_chunked)
File “/usr/local/lib/python3.6/http/client.py”, line 1026, in _send_output
self.send(msg)
File “/usr/local/lib/python3.6/http/client.py”, line 964, in send
self.connect()
File “/usr/local/lib/python3.6/site-packages/urllib3/connection.py”, line 196, in connect
conn = self._new_conn()
File “/usr/local/lib/python3.6/site-packages/urllib3/connection.py”, line 180, in _new_conn
self, “Failed to establish a new connection: %s” % e)
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x725257f0>: Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File “/usr/local/lib/python3.6/site-packages/requests/adapters.py”, line 445, in send
timeout=timeout
File “/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py”, line 638, in urlopen
_stacktrace=sys.exc_info()[2])
File “/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py”, line 398, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host=‘routerlogin.net’, port=5000): Max retries exceeded with url: /soap/server_sa/ (Caused by NewConnectionError(’<urllib3.connection.HTTPConnection object at 0x725257f0>: Failed to establish a new connection: [Errno 111] Connection refused’,))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File “/usr/local/lib/python3.6/site-packages/pynetgear/init.py”, line 272, in _make_request
data=message, timeout=30, verify=False)
File “/usr/local/lib/python3.6/site-packages/requests/api.py”, line 112, in post
return request(‘post’, url, data=data, json=json, **kwargs)
File “/usr/local/lib/python3.6/site-packages/requests/api.py”, line 58, in request
return session.request(method=method, url=url, **kwargs)
File “/usr/local/lib/python3.6/site-packages/requests/sessions.py”, line 512, in request
resp = self.send(prep, **send_kwargs)
File “/usr/local/lib/python3.6/site-packages/requests/sessions.py”, line 622, in send
r = adapter.send(request, **kwargs)
File “/usr/local/lib/python3.6/site-packages/requests/adapters.py”, line 513, in send
raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPConnectionPool(host=‘routerlogin.net’, port=5000): Max retries exceeded with url: /soap/server_sa/ (Caused by NewConnectionError(’<urllib3.connection.HTTPConnection object at 0x725257f0>: Failed to establish a new connection: [Errno 111] Connection refused’,))

I also have a " Error talking to pynetgear API" … While searching for a possible solution, i also found (closed) https://github.com/home-assistant/home-assistant/issues/10588 , and tried the suggested steps (ping routerlogin.net and curl into router), which both work. Afaik, i have had problems talking to the Netgear for a long time btw (i’m upgrading HA to almost every new version, so it’s not that i come from an old version to 0.80.3).

I had this same issue and then saw that the port that the device tracker addresses by default is 5000. I changed the port to 80 through the setup section and it works.

device_tracker:
platform: netgear
port: 80

Setting the port to 80 saved me. Since the last update (0.9.7) my device tracker had been acting strange.
One of the side effects was a long startup time (over 5 minutes) whenever I rebooted HA. I updated my device tracker with host and port and now it seems to work smooth again.

Thanks!