From 2480c83169a14aae37029ed06df0236690a141fa Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Thu, 15 Aug 2019 10:17:41 +0200 Subject: [PATCH] Fix socat command (#1211) --- hassio/misc/forwarder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hassio/misc/forwarder.py b/hassio/misc/forwarder.py index a20d5d84b..357fd677a 100644 --- a/hassio/misc/forwarder.py +++ b/hassio/misc/forwarder.py @@ -9,7 +9,7 @@ import async_timeout _LOGGER = logging.getLogger(__name__) -COMMAND = "socat UDP-RECVFROM:53,fork UDP-SENDTO:{!s}" +COMMAND = "socat UDP-RECVFROM:53,fork UDP-SENDTO:{!s}:53" class DNSForward: