From 31f5e94ae14cd915444c1df8b4a493dc81b2085e Mon Sep 17 00:00:00 2001 From: Gilles Grandou Date: Fri, 14 Jan 2022 19:02:07 +0100 Subject: [PATCH] livebox now longer answer to ping6 on LAN :( --- dyndomain | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dyndomain b/dyndomain index 9162b1d..0482313 100755 --- a/dyndomain +++ b/dyndomain @@ -68,7 +68,7 @@ def load_conf(): def ping(hostname): - cmd = "ping -c1 -w3 %s" % hostname + cmd = "ping -4 -c1 -w3 %s" % hostname ret = subprocess.run(cmd.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE) return 0 if ret.returncode else 1