From f0a5f6f7096d36b8f704b9f0f5230d197aa026ed Mon Sep 17 00:00:00 2001 From: Peter Haag Date: Sun, 2 Jun 2024 11:22:32 +0200 Subject: [PATCH] Add NOKIA enterprise IDs. Not yet wired. #533 --- src/libnffile/vcs_track.h | 4 ++-- src/netflow/ipfix.c | 16 ++++++++++++++++ src/netflow/ipfix.h | 4 ++++ 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/src/libnffile/vcs_track.h b/src/libnffile/vcs_track.h index 057412fb..a5f8630a 100644 --- a/src/libnffile/vcs_track.h +++ b/src/libnffile/vcs_track.h @@ -2,6 +2,6 @@ #define __VCS_TRACK_H__ //THIS FILE IS AUTO GENERATED //DO NOT TRACK THIS FILE WITH THE VCS -#define VCS_TRACK_DATE "2024-06-01 13:28:53 +0200" -#define VCS_TRACK_HASH "2b5db3b" +#define VCS_TRACK_DATE "2024-06-01 15:41:05 +0200" +#define VCS_TRACK_HASH "1619a60" #endif diff --git a/src/netflow/ipfix.c b/src/netflow/ipfix.c index 810f0814..96d41dc1 100755 --- a/src/netflow/ipfix.c +++ b/src/netflow/ipfix.c @@ -370,6 +370,22 @@ static int LookupElement(uint16_t type, uint32_t EnterpriseNumber) { break; } break; + case 637: // Nokia + switch (type) { + case 91: // InsideServiceId + dbg_printf(" NOKIA enterprise InsideServiceId: %u\n", type); + type = NOKIA_InsideServiceId; + break; + case 92: // OutsideServiceId + dbg_printf(" NOKIA enterprise OutsideServiceId: %u\n", type); + type = NOKIA_OutsideServiceId; + break; + case 93: // NatSubString + dbg_printf(" NOKIA enterprise NatSubString: %u\n", type); + type = NOKIA_NatSubString; + break; + } + break; case 6871: // yaf CERT Coordination Centre // map yaf types here switch (type) { diff --git a/src/netflow/ipfix.h b/src/netflow/ipfix.h index f6b4e8dc..176aeabe 100644 --- a/src/netflow/ipfix.h +++ b/src/netflow/ipfix.h @@ -363,6 +363,10 @@ typedef struct ipfix_template_elements_e_s { #define LOCAL_inPayload 32767 #define LOCAL_outPayload 32768 +#define NOKIA_InsideServiceId 32769 +#define NOKIA_OutsideServiceId 32770 +#define NOKIA_NatSubString 32771 + #define VENDOR_BIT_REVERSE 0x4000 /* prototypes */