diff options
author | Benoît Ganne <bganne@cisco.com> | 2022-09-12 15:06:22 +0200 |
---|---|---|
committer | Neale Ranns <neale@graphiant.com> | 2022-09-20 22:34:59 +0000 |
commit | 6b4c6e1624ac15e20eeeac385aa8cbee0f142121 (patch) | |
tree | 9a0ea02fdb20b8d3f6626bd1327bdc49cb552d31 | |
parent | 8ffe8f6092e68d39fe94472c369e6735023783f1 (diff) |
arp: check for manually added proxy-arp entries
When manually adding neighbor entries for proxy-arp, those will be
fib-adj entries. Check for proxy-arp instead of dropping immediately.
Type: improvement
Change-Id: Id311159f2966c99719dc2a67d4d2bc92bf366029
Signed-off-by: Benoît Ganne <bganne@cisco.com>
-rw-r--r-- | src/vnet/arp/arp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/arp/arp.c b/src/vnet/arp/arp.c index ce3eb399477..d39d48e2c77 100644 --- a/src/vnet/arp/arp.c +++ b/src/vnet/arp/arp.c @@ -556,7 +556,7 @@ arp_reply (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame) error0 = arp_learn (sw_if_index0, &arp0->ip4_over_ethernet[0]); } - goto drop; + goto next_feature; case ARP_DST_FIB_CONN: /* destination is connected, continue to process */ break; |