From 17710e3783dce36d04fa569a9783ca11ddf1b597 Mon Sep 17 00:00:00 2001 From: Steven Looman Date: Wed, 22 Sep 2021 19:15:30 +0200 Subject: [PATCH] Clean up upnp YAML config (#19339) Co-authored-by: J. Nick Koston --- source/_integrations/upnp.markdown | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/source/_integrations/upnp.markdown b/source/_integrations/upnp.markdown index 18b19fd4963..d15872aba2a 100644 --- a/source/_integrations/upnp.markdown +++ b/source/_integrations/upnp.markdown @@ -36,21 +36,3 @@ Alternatively, you can use YAML by adding the following section to your `configu # Example configuration.yaml entry upnp: ``` - -{% configuration %} -local_ip: - description: The local IP address of the computer running Home Assistant. - required: false - type: string - default: Try to auto-detect IP of host. -{% endconfiguration %} - -## Troubleshooting - -If Home Assistant is not able to discover the UPnP device, it may be because the local IP address of the computer running Home Assistant was not auto-detected correctly. To prevent this, you may add the `local_ip` option to your UPnP configuration: - -```yaml -# Example configuration.yaml with local_ip set -upnp: - local_ip: 192.168.1.2 -```