From f43fdaa1d778fbb3b0a3f12d739a67c12cd149ad Mon Sep 17 00:00:00 2001 From: dmiller Date: Fri, 20 Sep 2024 17:25:59 +0000 Subject: [PATCH] Use no-route instead of unknown-response for ARP failure --- targets.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/targets.cc b/targets.cc index 24f39de4a..4237b4470 100644 --- a/targets.cc +++ b/targets.cc @@ -548,6 +548,7 @@ static void refresh_hostbatch(HostGroupState *hs, struct addrset *exclude_group, error("%s: Failed to determine dst MAC address for target %s", __func__, hs->hostbatch[i]->NameIP()); hs->hostbatch[i]->flags = HOST_DOWN; + hs->hostbatch[i]->reason.reason_id = ER_NOROUTE; } } }