diff options
author | Klement Sekera <ksekera@cisco.com> | 2020-03-27 11:54:53 +0100 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2020-06-11 08:02:16 +0000 |
commit | a1018c166a468f7692ab621c743503914266f508 (patch) | |
tree | 5bf1545971dcbad0ffa3f47bad160baf63b2e0d3 /src/plugins/nat/in2out.c | |
parent | 35418ba491505318e0b08b372fcf1e9f0d45d80f (diff) |
nat: simplify bihash buckets/mem config
Derive reasonable values from max translations/max users.
Type: improvement
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Change-Id: I41a96ab63ab138b4160cd60bd6df24fc73791c86
Diffstat (limited to 'src/plugins/nat/in2out.c')
-rw-r--r-- | src/plugins/nat/in2out.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/nat/in2out.c b/src/plugins/nat/in2out.c index 7ed0a225fef..b8febc17c99 100644 --- a/src/plugins/nat/in2out.c +++ b/src/plugins/nat/in2out.c @@ -273,7 +273,8 @@ slow_path (snat_main_t * sm, vlib_buffer_t * b0, if (PREDICT_FALSE (nat44_maximum_sessions_exceeded (sm, thread_index))) { b0->error = node->errors[SNAT_IN2OUT_ERROR_MAX_SESSIONS_EXCEEDED]; - nat_ipfix_logging_max_sessions (thread_index, sm->max_translations); + nat_ipfix_logging_max_sessions (thread_index, + sm->max_translations_per_thread); nat_elog_notice ("maximum sessions exceeded"); return SNAT_IN2OUT_NEXT_DROP; } |