Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions doc/protocols.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4327,3 +4327,12 @@ References: `InterSystems IRIS official site: <https://www.intersystems.com/prod
libp2p is a modular network stack and open-source library that enables developers to build decentralised, peer-to-peer (P2P) applications.

References: `Official site: <https://libp2p.io>`_


.. _Proto_477:

`NDPI_PROTOCOL_NETMOTION`
=========================
NetMotion Mobility (formerly Mobility XE) is an enterprise mobile VPN that keeps sessions persistent across network changes, widely deployed in public-sector and first-responder fleets. Clients tunnel to the Mobility server using the Internet Mobility Protocol (IMP), by default over UDP/5008.

References: `Official site: <https://www.netmotionsoftware.com>`_

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated to your PR, but it is funny that the site of a VPN provider triggers:

Image

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found this odd (unfortunate?) as well and dug a bit more.. it seems like NetMotion was maybe acquired by a company called Aboslute so I guess they abandoned the old domain? The only clients I've seen running are all still branded NetMotion and point to this old URL. I can dig more if you want but the new owner has very little useful info on their site.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is fine as it is

1 change: 1 addition & 0 deletions src/include/ndpi_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -1091,6 +1091,7 @@ void init_gearup_booster_dissector(struct ndpi_detection_module_struct *ndpi_str
void init_msdo_dissector(struct ndpi_detection_module_struct *ndpi_struct);
void init_melsec_dissector(struct ndpi_detection_module_struct *ndpi_struct);
void init_hamachi_dissector(struct ndpi_detection_module_struct *ndpi_struct);
void init_netmotion_dissector(struct ndpi_detection_module_struct *ndpi_struct);
void init_glbp_dissector(struct ndpi_detection_module_struct *ndpi_struct);
void init_easyweather_dissector(struct ndpi_detection_module_struct *ndpi_struct);
void init_mudfish_dissector(struct ndpi_detection_module_struct *ndpi_struct);
Expand Down
1 change: 1 addition & 0 deletions src/include/ndpi_protocol_ids.h
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,7 @@ typedef enum {
NDPI_PROTOCOL_SBE = 474,
NDPI_PROTOCOL_IRIS = 475,
NDPI_PROTOCOL_LIBP2P = 476,
NDPI_PROTOCOL_NETMOTION = 477,

/* If you add a new protocol, please update the documentation at doc/protocols.rst, too! */

Expand Down
7 changes: 7 additions & 0 deletions src/include/ndpi_typedefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -1001,6 +1001,9 @@ struct ndpi_flow_udp_struct {
/* NDPI_PROTOCOL_HAMACHI */
u_int32_t hamachi_stage:2;

/* NDPI_PROTOCOL_NETMOTION */
u_int32_t netmotion_stage:2;

/* NDPI_PROTOCOL_EPICGAMES */
u_int32_t epicgames_stage:1;
u_int32_t epicgames_word;
Expand All @@ -1027,6 +1030,10 @@ struct ndpi_flow_udp_struct {
u_int32_t hamachi_long[2];
u_int16_t hamachi_short[2];

/* NDPI_PROTOCOL_NETMOTION */
u_int32_t netmotion_token[2];
u_int16_t netmotion_cid[2];

/* NDPI_PROTOCOL_QUIC */
u_int8_t *quic_reasm_buf;
u_int8_t *quic_reasm_buf_bitmap;
Expand Down
8 changes: 8 additions & 0 deletions src/lib/ndpi_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2951,6 +2951,11 @@ static void init_protocol_defaults(struct ndpi_detection_module_struct *ndpi_str
ndpi_build_default_ports(ports_a, 12975, 32976, 0, 0, 0) /* TCP */,
ndpi_build_default_ports(ports_b, 17771, 0, 0, 0, 0) /* UDP */,
0);
ndpi_set_proto_defaults(ndpi_str, 0 /* encrypted */, 1 /* app proto */, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_NETMOTION,
"NetMotion", NDPI_PROTOCOL_CATEGORY_VPN, NDPI_PROTOCOL_QOE_CATEGORY_UNSPECIFIED,
ndpi_build_default_ports(ports_a, 5008, 0, 0, 0, 0) /* TCP */,
ndpi_build_default_ports(ports_b, 5008, 0, 0, 0, 0) /* UDP */,
0);
ndpi_set_proto_defaults(ndpi_str, 1 /* cleartext */, 0 /* nw proto */, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_GLBP,
"GLBP", NDPI_PROTOCOL_CATEGORY_NETWORK, NDPI_PROTOCOL_QOE_CATEGORY_UNSPECIFIED,
ndpi_build_default_ports(ports_a, 0, 0, 0, 0, 0) /* TCP */,
Expand Down Expand Up @@ -7587,6 +7592,9 @@ static int dissectors_init(struct ndpi_detection_module_struct *ndpi_str) {
/* Iris */
init_iris_dissector(ndpi_str);

/* NetMotion Mobility */
init_netmotion_dissector(ndpi_str);

#ifdef CUSTOM_NDPI_PROTOCOLS
#include "../../../nDPI-custom/custom_ndpi_main_init.c"
#endif
Expand Down
136 changes: 136 additions & 0 deletions src/lib/protocols/netmotion.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
/*
* netmotion.c
*
* NetMotion Mobility (Mobility XE) - Internet Mobility Protocol (IMP)
*
* Copyright (C) 2026 - ntop.org
*
* This file is part of nDPI, an open source deep packet inspection
* library based on the OpenDPI and PACE technology by ipoque GmbH
*
* nDPI is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* nDPI is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with nDPI. If not, see <http://www.gnu.org/licenses/>.
*
*/

#include "ndpi_protocol_ids.h"

#define NDPI_CURRENT_PROTO NDPI_PROTOCOL_NETMOTION

#include "ndpi_api.h"
#include "ndpi_private.h"

/*
* NetMotion Mobility clients tunnel to the Mobility server over the Internet
* Mobility Protocol (IMP), by default UDP/5008. IMP is connection-oriented and
* survives client IP changes, so every datagram carries a fixed per-connection
* header:
*
* [0:2] big-endian length of the first IMP message (self-inclusive)
* [2] 0x4c constant magic
* [3] message type/flags (small)
* [4:6] 16-bit connection id, constant per direction, differs by direction
* [6:8] 16-bit per-direction sequence counter
* [8:12] peer connection id + sequence (mirror of the other direction)
* [12:16] 32-bit session token, constant per direction, differs by direction
*
* The payload is encrypted; detection keys on the framing invariants only,
* verifying that the connection id and session token are constant within a
* direction and differ across directions (same approach as hamachi.c).
*/
Comment thread
IvanNardi marked this conversation as resolved.

#define NETMOTION_MIN_LEN 16
#define NETMOTION_MAGIC 0x4c

static void ndpi_int_netmotion_add_connection(struct ndpi_detection_module_struct *ndpi_struct,
struct ndpi_flow_struct *flow)
{
NDPI_LOG_INFO(ndpi_struct, "found NetMotion\n");
ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_NETMOTION,
NDPI_PROTOCOL_UNKNOWN, NDPI_CONFIDENCE_DPI);
}

static void ndpi_search_netmotion(struct ndpi_detection_module_struct *ndpi_struct,
struct ndpi_flow_struct *flow)
{
struct ndpi_packet_struct const * const packet = &ndpi_struct->packet;
u_int16_t len_field, cid;
u_int32_t token;
u_int8_t dir;

NDPI_LOG_DBG(ndpi_struct, "search NetMotion\n");

if(packet->payload_packet_len < NETMOTION_MIN_LEN)
goto exclude_netmotion;

if(packet->payload[2] != NETMOTION_MAGIC || packet->payload[3] > 0x01)
goto exclude_netmotion;

/* Self-inclusive length of the first IMP message; datagrams may carry
several messages (or be GSO-coalesced), so len_field <= payload_len. */
len_field = ntohs(get_u_int16_t(packet->payload, 0));
if(len_field < NETMOTION_MIN_LEN || len_field > packet->payload_packet_len)
goto exclude_netmotion;

cid = ntohs(get_u_int16_t(packet->payload, 4));
token = ntohl(get_u_int32_t(packet->payload, 12));
dir = packet->packet_direction;

if(flow->l4.udp.netmotion_stage == 0) {
flow->l4.udp.netmotion_cid[dir] = cid;
flow->l4.udp.netmotion_token[dir] = token;
flow->l4.udp.netmotion_stage = dir ? 2 : 1;
return;
}

if(flow->l4.udp.netmotion_stage == 1 || flow->l4.udp.netmotion_stage == 2) {
u_int8_t stored_dir = flow->l4.udp.netmotion_stage - 1;

if(dir == stored_dir) {
if(cid != flow->l4.udp.netmotion_cid[dir] ||
token != flow->l4.udp.netmotion_token[dir])
goto exclude_netmotion;
return; /* still waiting for the opposite direction */
}

/* Opposite direction: the connection id and token must differ. */
if(cid == flow->l4.udp.netmotion_cid[stored_dir] ||
token == flow->l4.udp.netmotion_token[stored_dir])
goto exclude_netmotion;

flow->l4.udp.netmotion_cid[dir] = cid;
flow->l4.udp.netmotion_token[dir] = token;
flow->l4.udp.netmotion_stage = 3;
return;
}

if(flow->l4.udp.netmotion_stage == 3) {
if(cid != flow->l4.udp.netmotion_cid[dir] ||
token != flow->l4.udp.netmotion_token[dir])
goto exclude_netmotion;

ndpi_int_netmotion_add_connection(ndpi_struct, flow);
return;
}

exclude_netmotion:
NDPI_EXCLUDE_DISSECTOR(ndpi_struct, flow);
}

void init_netmotion_dissector(struct ndpi_detection_module_struct *ndpi_struct)
{
ndpi_register_dissector("NetMotion", ndpi_struct,
ndpi_search_netmotion,
NDPI_SELECTION_BITMASK_PROTOCOL_V4_V6_UDP_WITH_PAYLOAD,
1, NDPI_PROTOCOL_NETMOTION);
}
2 changes: 1 addition & 1 deletion tests/cfgs/caches_cfg/result/teams.pcap.out
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ DPI Packets (other): 1 (1.00 pkts/flow)
Confidence Unknown : 1 (flows)
Confidence Match by port : 2 (flows)
Confidence DPI : 80 (flows)
Num dissector calls: 527 (6.35 diss/flow)
Num dissector calls: 528 (6.36 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/9/0 (insert/search/found)
LRU cache stun: 30/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/caches_global/result/lru_ipv6_caches.pcapng.out
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ DPI Packets (TCP): 9 (3.00 pkts/flow)
DPI Packets (UDP): 35 (3.89 pkts/flow)
Confidence DPI (cache) : 4 (flows)
Confidence DPI : 8 (flows)
Num dissector calls: 342 (28.50 diss/flow)
Num dissector calls: 344 (28.67 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 25/4/2 (insert/search/found)
LRU cache stun: 6/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/caches_global/result/teams.pcap.out
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Confidence Unknown : 1 (flows)
Confidence Match by port : 2 (flows)
Confidence DPI (partial) : 4 (flows)
Confidence DPI : 76 (flows)
Num dissector calls: 527 (6.35 diss/flow)
Num dissector calls: 528 (6.36 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/9/0 (insert/search/found)
LRU cache stun: 30/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/classification_only/result/sip.pcap.out
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DPI Packets (UDP): 6 (1.50 pkts/flow)
Confidence Unknown : 1 (flows)
Confidence DPI : 3 (flows)
Num dissector calls: 324 (81.00 diss/flow)
Num dissector calls: 326 (81.50 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/classification_only/result/teams.pcap.out
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Confidence Unknown : 1 (flows)
Confidence Match by port : 2 (flows)
Confidence DPI (partial) : 6 (flows)
Confidence DPI : 74 (flows)
Num dissector calls: 527 (6.35 diss/flow)
Num dissector calls: 528 (6.36 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/9/0 (insert/search/found)
LRU cache stun: 24/0/0 (insert/search/found)
Expand Down
Binary file added tests/cfgs/default/pcap/netmotion.pcap
Binary file not shown.
2 changes: 1 addition & 1 deletion tests/cfgs/default/result/1kxun.pcap.out
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ DPI Packets (UDP): 120 (1.21 pkts/flow)
Confidence Unknown : 9 (flows)
Confidence Match by port : 6 (flows)
Confidence DPI : 182 (flows)
Num dissector calls: 4274 (21.70 diss/flow)
Num dissector calls: 4283 (21.74 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/45/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/default/result/4in4tunnel.pcap.out
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
DPI Packets (UDP): 5 (5.00 pkts/flow)
Confidence Unknown : 1 (flows)
Num dissector calls: 197 (197.00 diss/flow)
Num dissector calls: 198 (198.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/default/result/6in6tunnel.pcap.out
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
DPI Packets (UDP): 2 (2.00 pkts/flow)
Confidence Unknown : 1 (flows)
Num dissector calls: 162 (162.00 diss/flow)
Num dissector calls: 163 (163.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/default/result/EAQ.pcap.out
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DPI Packets (TCP): 12 (6.00 pkts/flow)
DPI Packets (UDP): 116 (4.00 pkts/flow)
Confidence DPI : 31 (flows)
Num dissector calls: 5268 (169.94 diss/flow)
Num dissector calls: 5297 (170.87 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
DPI Packets (UDP): 28 (5.60 pkts/flow)
Confidence DPI : 5 (flows)
Num dissector calls: 171 (34.20 diss/flow)
Num dissector calls: 172 (34.40 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/default/result/KakaoTalk_talk.pcap.out
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ DPI Packets (UDP): 17 (3.40 pkts/flow)
Confidence Match by port : 8 (flows)
Confidence DPI : 11 (flows)
Confidence Match by IP : 1 (flows)
Num dissector calls: 1213 (60.65 diss/flow)
Num dissector calls: 1215 (60.75 diss/flow)
LRU cache ookla: 0/2/0 (insert/search/found)
LRU cache bittorrent: 0/27/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/default/result/anyconnect-vpn.pcap.out
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ DPI Packets (other): 10 (1.00 pkts/flow)
Confidence Unknown : 2 (flows)
Confidence Match by port : 6 (flows)
Confidence DPI : 61 (flows)
Num dissector calls: 789 (11.43 diss/flow)
Num dissector calls: 790 (11.45 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/24/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/default/result/codm.pcap.out
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DPI Packets (TCP): 7 (7.00 pkts/flow)
DPI Packets (UDP): 5 (2.50 pkts/flow)
Confidence DPI : 3 (flows)
Num dissector calls: 485 (161.67 diss/flow)
Num dissector calls: 486 (162.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/default/result/collectd.pcap.out
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Guessed flow protos: 3
DPI Packets (UDP): 13 (1.62 pkts/flow)
Confidence Match by port : 3 (flows)
Confidence DPI : 5 (flows)
Num dissector calls: 505 (63.12 diss/flow)
Num dissector calls: 508 (63.50 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/9/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/default/result/crynet.pcap.out
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
DPI Packets (UDP): 52 (3.25 pkts/flow)
Confidence DPI : 16 (flows)
Num dissector calls: 1964 (122.75 diss/flow)
Num dissector calls: 1968 (123.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/12/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/default/result/custom_rules_ipv6.pcapng.out
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DPI Packets (UDP): 7 (1.00 pkts/flow)
Confidence Unknown : 1 (flows)
Confidence Match by custom rule: 6 (flows)
Num dissector calls: 148 (21.14 diss/flow)
Num dissector calls: 149 (21.29 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/default/result/dhcp-fuzz.pcapng.out
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Guessed flow protos: 1

DPI Packets (UDP): 1 (1.00 pkts/flow)
Confidence Match by port : 1 (flows)
Num dissector calls: 154 (154.00 diss/flow)
Num dissector calls: 155 (155.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/default/result/discord.pcap.out
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DPI Packets (TCP): 5 (5.00 pkts/flow)
DPI Packets (UDP): 60 (1.82 pkts/flow)
Confidence DPI : 34 (flows)
Num dissector calls: 4924 (144.82 diss/flow)
Num dissector calls: 4951 (145.62 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/default/result/discord_mid_flow.pcap.out
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
DPI Packets (UDP): 3 (3.00 pkts/flow)
Confidence DPI : 1 (flows)
Num dissector calls: 175 (175.00 diss/flow)
Num dissector calls: 176 (176.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
DPI Packets (UDP): 256 (1.04 pkts/flow)
Confidence DPI : 245 (flows)
Num dissector calls: 18852 (76.95 diss/flow)
Num dissector calls: 18863 (76.99 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/513/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
2 changes: 1 addition & 1 deletion tests/cfgs/default/result/dnscrypt-v2.pcap.out
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
DPI Packets (UDP): 6 (2.00 pkts/flow)
Confidence DPI : 3 (flows)
Num dissector calls: 483 (161.00 diss/flow)
Num dissector calls: 486 (162.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
DPI Packets (UDP): 2 (2.00 pkts/flow)
Confidence DPI : 1 (flows)
Num dissector calls: 161 (161.00 diss/flow)
Num dissector calls: 162 (162.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found)
Expand Down
Loading
Loading