From f6505ee6c34224399ba8a183d5675fd1c89d8219 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 29 Jun 2022 18:25:55 +0000 Subject: [PATCH] aliases: Don't call arpping to announce new IP addresses I am not sure what the rationale is here, but we should probably not do this. Other hosts on the network will be able to update their ARP caches properly. Signed-off-by: Michael Tremer --- src/misc-progs/setaliases.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/misc-progs/setaliases.c b/src/misc-progs/setaliases.c index 4d59aa0a8c..a541a4fd20 100644 --- a/src/misc-progs/setaliases.c +++ b/src/misc-progs/setaliases.c @@ -188,11 +188,6 @@ int main(void) aliasip, red_netmask, intf, SCOPE); safe_system(command); - // Send an ARP broadcast - snprintf(command, STRING_SIZE-1, - "/usr/sbin/arping -q -c 1 -w 1 -i %s -S %s %s", - intf, aliasip, default_gateway); - safe_system(command); alias++; } return 0; -- 2.39.5