Add UPnP sensor troubleshooting (#9060)

* Add UPnP sensor troubleshooting

* Minor changes
This commit is contained in:
Thom Stricklin 2019-03-28 16:43:30 -07:00 committed by Fabian Affolter
parent c2ff81aa3a
commit bc314cca4f

View File

@ -64,3 +64,14 @@ ports:
type: map
default: Open same port on external router as that HASS runs locally and forwards it.
{% endconfiguration %}
## {% linkable_title Troubleshooting %}
If Home Assistant is not able to discover UPnP sensors, it may be because the local IP address was not auto-detected correctly. To prevent this, you may add the `local_ip` option to your UPnP configuration:
```yaml
# Example configuration.yaml with UPnP sensors enabled and local_ip set
upnp:
sensors: true
local_ip: 192.168.1.2
```