diff options
author | 2024-11-18 12:08:57 -0800 | |
---|---|---|
committer | 2024-12-23 21:28:08 +0000 | |
commit | 6d4dbd4f29d6789cf4ea799d0b2eb9d489fa339d (patch) | |
tree | 3c1b6b1d56bd86a1d6a99e36c020a81f54a43f8b /src/vnet/session/session_table.h | |
parent | 755690c6c31671bdce4771db04199e151c32c5d0 (diff) |
session: add auto sdl
New CLI to enable/disable auto-sdl (requires session enable rt-backend sdl)
auto-sdl <enable|disable> [threshold <n>] [remove-timeout <t>]
threshold is defined as the number of packets before the SDL entry is created to deny the source.
remove-timeout is defined as the duration to remove the SDL entry which was created earlier.
Type: feature
Change-Id: I513094a59663970beae33257006c652674643764
Signed-off-by: Steven Luong <sluong@cisco.com>
Diffstat (limited to 'src/vnet/session/session_table.h')
-rw-r--r-- | src/vnet/session/session_table.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/session/session_table.h b/src/vnet/session/session_table.h index 126e849beae..e3d5c4db91c 100644 --- a/src/vnet/session/session_table.h +++ b/src/vnet/session/session_table.h @@ -46,7 +46,7 @@ typedef struct _session_lookup_table /** For global tables only one fib proto is active. This is a * byproduct of fib table ids not necessarily being the same for - * identical fib idices of v4 and v6 fib protos */ + * identical fib indices of v4 and v6 fib protos */ u8 active_fib_proto; /* Required for pool_get_aligned(...) */ CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |