diff options
author | Alexander Chernavin <achernavin@netgate.com> | 2020-06-11 09:57:33 -0400 |
---|---|---|
committer | Matthew Smith <mgsmith@netgate.com> | 2020-06-23 02:23:06 +0000 |
commit | 86d6df69e0b2ba36c56b3eae43d7847b823f91d1 (patch) | |
tree | 0f44172ae12b46b6f5f14de459762887aee7ad71 /src/vnet | |
parent | 1523c347d8f9e2a628d733e97f76d39b879861f0 (diff) |
ip6-nd: punt neighbor advertisements
With this change, punt received neighbor advertisements instead of drop
in order to give other elements of the system an opportunity to handle
them.
Type: improvement
Change-Id: Ie6cde9eebc83e42029967141cb32ebc459fd3680
Signed-off-by: Alexander Chernavin <achernavin@netgate.com>
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/ip6-nd/ip6_nd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/ip6-nd/ip6_nd.c b/src/vnet/ip6-nd/ip6_nd.c index eb89eb817f6..a8f7f15aa94 100644 --- a/src/vnet/ip6-nd/ip6_nd.c +++ b/src/vnet/ip6-nd/ip6_nd.c @@ -410,7 +410,7 @@ VLIB_REGISTER_NODE (ip6_icmp_neighbor_advertisement_node,static) = .n_next_nodes = 1, .next_nodes = { - [0] = "ip6-drop", + [0] = "ip6-punt", }, }; /* *INDENT-ON* */ |