From 686af31c0896c547326c9b5149a53daeef650189 Mon Sep 17 00:00:00 2001 From: Joshua Boniface Date: Sun, 15 Dec 2019 12:30:45 -0500 Subject: [PATCH] Reduce arping interval to 0.1s --- 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 8a54d147..38fa06fb 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 -A -c3 -I {dev} -P -U -S {ip} {ip}'.format( + 'arping -W 0.1 -A -c3 -I {dev} -P -U -S {ip} {ip}'.format( dev=dev, ip=ipaddr ),