2021-12-19 01:06:50 +00:00
|
|
|
diff --git a/homeassistant/components/network/__init__.py b/homeassistant/components/network/__init__.py
|
2022-01-19 23:45:15 +00:00
|
|
|
index b3ef88e7ab..b7a8471e1a 100644
|
2021-12-19 01:06:50 +00:00
|
|
|
--- a/homeassistant/components/network/__init__.py
|
|
|
|
+++ b/homeassistant/components/network/__init__.py
|
2022-01-19 23:45:15 +00:00
|
|
|
@@ -30,7 +30,7 @@ async def async_get_source_ip(
|
2021-12-19 01:06:50 +00:00
|
|
|
) -> str:
|
|
|
|
"""Get the source ip for a target ip."""
|
|
|
|
adapters = await async_get_adapters(hass)
|
|
|
|
- all_ipv4s = []
|
|
|
|
+ all_ipv4s = ["127.0.0.1"]
|
|
|
|
for adapter in adapters:
|
|
|
|
if adapter["enabled"] and (ipv4s := adapter["ipv4"]):
|
|
|
|
all_ipv4s.extend([ipv4["address"] for ipv4 in ipv4s])
|