diff options
author | Stanislav Zaikin <zstaseg@gmail.com> | 2022-05-10 20:50:36 +0200 |
---|---|---|
committer | John Lo <lojultra2020@outlook.com> | 2022-08-30 18:37:20 +0000 |
commit | 7dc351f6895d94eaee1fd04672368cc425e14103 (patch) | |
tree | 36d860e467e9b9ea081eb36a85f654d127db57f7 /src/vnet/ip-neighbor | |
parent | c37ce790763fac7ce890a28120db3b16425b1ceb (diff) |
l2: skip arp term for locally originated packets
Mark arp packet as locally originated when probing/replying and don't apply any
arp-term logic against it.
Type: fix
Signed-off-by: Stanislav Zaikin <zstaseg@gmail.com>
Change-Id: I305ff5cac8cac456decf92f21b961aa4ce286079
Diffstat (limited to 'src/vnet/ip-neighbor')
-rw-r--r-- | src/vnet/ip-neighbor/ip4_neighbor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/ip-neighbor/ip4_neighbor.h b/src/vnet/ip-neighbor/ip4_neighbor.h index 8ace8d1a2d0..7941ebdbced 100644 --- a/src/vnet/ip-neighbor/ip4_neighbor.h +++ b/src/vnet/ip-neighbor/ip4_neighbor.h @@ -61,6 +61,7 @@ ip4_neighbor_probe (vlib_main_t *vm, vnet_main_t *vnm, h0->ip4_over_ethernet[1].ip4 = *dst; vnet_buffer (b0)->sw_if_index[VLIB_TX] = adj0->rewrite_header.sw_if_index; + b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED; vlib_buffer_advance (b0, -adj0->rewrite_header.data_bytes); |