From 39c9f911cc012354d4eba7eea66d61131e2bf073 Mon Sep 17 00:00:00 2001 From: Joshua Boniface Date: Sun, 15 Dec 2019 14:55:34 -0500 Subject: [PATCH] Increase arping interval to 0.2s --- node-daemon/pvcd/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-daemon/pvcd/common.py b/node-daemon/pvcd/common.py index 38fa06fb..7567b155 100644 --- a/node-daemon/pvcd/common.py +++ b/node-daemon/pvcd/common.py @@ -119,7 +119,7 @@ def createIPAddress(ipaddr, cidrnetmask, dev): ) ) run_os_command( - 'arping -W 0.1 -A -c3 -I {dev} -P -U -S {ip} {ip}'.format( + 'arping -P -U -W 0.2 -c5 -I {dev} -S {ip} {ip}'.format( dev=dev, ip=ipaddr ),