UPnP


The upnp component enables you to collect network statistics from your router such as bytes in/out and packets in/out. This information is provided by the Internet Gateway Device (IGD) Protocol if enabled on your router.

The IGD automatically creates port forwarding mappings on your router for Home Assistant, exposing your installation to the internet. The mapping will never automatically expire. Upon stopping Home Assistant, the mapping will be removed from your router.

Please note that UPnP or NAT-PMP needs to be enabled on your router for this component to work.

To integrate this into Home Assistant, add the following section to your configuration.yaml file:

# Example configuration.yaml entry with custom external portal
upnp:
  ports:
    hass: 8000
    8080: 8080

If you which to have the statistics without having port mapping done through IGD, add the option port_mapping.

Configuration variables:

Configuration Variables

ports

(map)(Optional)Map of ports to map from internal to external. Pass ‘hass’ as internal port to use the port Home Assistant runs on.

Default value: open same port on external router as that HASS runs locally and forwards it.

port_mapping

(boolean)(Optional)If the component should try to map ports.

Default value: false

units

(string)(Optional)Define the units used for the UPNP sensor. Possible values are Bytes, KBytes, MBytes, GBytes.

Default value: Mbytes

local_ip

(string)(Optional)The local IP address of the computer running Home Assistant.

Default value: Try to auto-detect IP of host.