Add Automatic Tank Gauge protocol (#2527)

See also #2523

---------

Co-authored-by: Nardi Ivan <nardi.ivan@gmail.com>
This commit is contained in:
wssxsxxsx 2024-08-24 04:35:08 +08:00 committed by GitHub
parent f03938a725
commit 8894ebc76f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
116 changed files with 224 additions and 109 deletions

View file

@ -901,3 +901,12 @@ References: `Main site: <https://activemq.apache.org/components/classic/document
ISO/IEC 14908-4 specifies how to tunnel LonWorks control network protocol packets over IP networks. It enables encapsulation of the LonTalk protocol within UDP or TCP packets for transmission across IP-based networks. ISO/IEC 14908-4 specifies how to tunnel LonWorks control network protocol packets over IP networks. It enables encapsulation of the LonTalk protocol within UDP or TCP packets for transmission across IP-based networks.
References: `Paid Specs: <https://www.iso.org/standard/60206.html>`_ References: `Paid Specs: <https://www.iso.org/standard/60206.html>`_
.. _Proto 423:
`NDPI_PROTOCOL_ATG`
===================
This protocol is used to transfer data between the various components of an ATG (Automatic Tank Gauge) system.
References: `Protocol Specs: <https://github.com/Orange-Cyberdefense/awesome-industrial-protocols/blob/main/protocols/atg.md>`_

View file

@ -933,6 +933,7 @@ void init_cloudflare_warp_dissector(struct ndpi_detection_module_struct *ndpi_st
void init_nano_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id); void init_nano_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id);
void init_openwire_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id); void init_openwire_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id);
void init_cnp_ip_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id); void init_cnp_ip_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id);
void init_atg_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id);
#endif #endif

View file

@ -451,6 +451,7 @@ typedef enum {
NDPI_PROTOCOL_NANO = 420, NDPI_PROTOCOL_NANO = 420,
NDPI_PROTOCOL_OPENWIRE = 421, NDPI_PROTOCOL_OPENWIRE = 421,
NDPI_PROTOCOL_CNP_IP = 422, NDPI_PROTOCOL_CNP_IP = 422,
NDPI_PROTOCOL_ATG = 423,
#ifdef CUSTOM_NDPI_PROTOCOLS #ifdef CUSTOM_NDPI_PROTOCOLS
#include "../../../nDPI-custom/custom_ndpi_protocol_ids.h" #include "../../../nDPI-custom/custom_ndpi_protocol_ids.h"

View file

@ -2302,6 +2302,10 @@ static void ndpi_init_protocol_defaults(struct ndpi_detection_module_struct *ndp
"CNP-IP", NDPI_PROTOCOL_CATEGORY_IOT_SCADA, "CNP-IP", NDPI_PROTOCOL_CATEGORY_IOT_SCADA,
ndpi_build_default_ports(ports_a, 0, 0, 0, 0, 0) /* TCP */, ndpi_build_default_ports(ports_a, 0, 0, 0, 0, 0) /* TCP */,
ndpi_build_default_ports(ports_b, 0, 0, 0, 0, 0) /* UDP */); ndpi_build_default_ports(ports_b, 0, 0, 0, 0, 0) /* UDP */);
ndpi_set_proto_defaults(ndpi_str, 1 /* cleartext */, 0 /* nw proto */, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_ATG,
"ATG", NDPI_PROTOCOL_CATEGORY_IOT_SCADA,
ndpi_build_default_ports(ports_a, 0, 0, 0, 0, 0) /* TCP */,
ndpi_build_default_ports(ports_b, 0, 0, 0, 0, 0) /* UDP */);
#ifdef CUSTOM_NDPI_PROTOCOLS #ifdef CUSTOM_NDPI_PROTOCOLS
#include "../../../nDPI-custom/custom_ndpi_main.c" #include "../../../nDPI-custom/custom_ndpi_main.c"
@ -6259,6 +6263,9 @@ static int ndpi_callback_init(struct ndpi_detection_module_struct *ndpi_str) {
/* ISO/IEC 14908-4 */ /* ISO/IEC 14908-4 */
init_cnp_ip_dissector(ndpi_str, &a); init_cnp_ip_dissector(ndpi_str, &a);
/* ATG */
init_atg_dissector(ndpi_str, &a);
#ifdef CUSTOM_NDPI_PROTOCOLS #ifdef CUSTOM_NDPI_PROTOCOLS
#include "../../../nDPI-custom/custom_ndpi_main_init.c" #include "../../../nDPI-custom/custom_ndpi_main_init.c"
#endif #endif

67
src/lib/protocols/atg.c Normal file
View file

@ -0,0 +1,67 @@
/*
* atg.c
*
* Copyright (C) 2024 - ntop.org
*
* 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_ATG
#include "ndpi_api.h"
#include "ndpi_private.h"
static void ndpi_int_atg_add_connection(struct ndpi_detection_module_struct
*ndpi_struct, struct ndpi_flow_struct *flow) {
ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_ATG,
NDPI_PROTOCOL_UNKNOWN, NDPI_CONFIDENCE_DPI);
}
static void ndpi_search_atg(struct ndpi_detection_module_struct *ndpi_struct,
struct ndpi_flow_struct *flow) {
struct ndpi_packet_struct *packet = &ndpi_struct->packet;
NDPI_LOG_DBG(ndpi_struct, "search for ATG\n");
if(packet->payload_packet_len >= 8) {
u_int16_t atg_port = ntohs(10001);
if((packet->tcp->source == atg_port) || (packet->tcp->dest == atg_port)) {
if(packet->payload[0] == 0x01 &&
(packet->payload[1] == 0x49 || packet->payload[1] == 0x69 || packet->payload[1] == 0x53 || packet->payload[1] == 0x73 ) &&
memcmp(&packet->payload[packet->payload_packet_len - 2], "\r\n", 2) == 0) {
NDPI_LOG_INFO(ndpi_struct, "found atg\n");
ndpi_int_atg_add_connection(ndpi_struct, flow);
return;
}
}
}
NDPI_EXCLUDE_PROTO(ndpi_struct, flow);
}
void init_atg_dissector(struct ndpi_detection_module_struct *ndpi_struct,
u_int32_t *id) {
ndpi_set_bitmask_protocol_detection("ATG", ndpi_struct, *id,
NDPI_PROTOCOL_ATG,
ndpi_search_atg,
NDPI_SELECTION_BITMASK_PROTOCOL_V4_V6_TCP_WITH_PAYLOAD_WITHOUT_RETRANSMISSION,
SAVE_DETECTION_BITMASK_AS_UNKNOWN,
ADD_TO_DETECTION_BITMASK);
*id += 1;
}

View file

@ -3,7 +3,7 @@ Guessed flow protos: 1
DPI Packets (TCP): 40 (6.67 pkts/flow) DPI Packets (TCP): 40 (6.67 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Confidence DPI : 5 (flows) Confidence DPI : 5 (flows)
Num dissector calls: 580 (96.67 diss/flow) Num dissector calls: 583 (97.17 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -7,7 +7,7 @@ Confidence Unknown : 1 (flows)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Confidence DPI (partial) : 1 (flows) Confidence DPI (partial) : 1 (flows)
Confidence DPI : 80 (flows) Confidence DPI : 80 (flows)
Num dissector calls: 519 (6.25 diss/flow) Num dissector calls: 520 (6.27 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/9/0 (insert/search/found) LRU cache bittorrent: 0/9/0 (insert/search/found)
LRU cache stun: 30/0/0 (insert/search/found) LRU cache stun: 30/0/0 (insert/search/found)

View file

@ -4,7 +4,7 @@ DPI Packets (TCP): 40 (6.67 pkts/flow)
Confidence DPI (partial cache): 1 (flows) Confidence DPI (partial cache): 1 (flows)
Confidence DPI : 4 (flows) Confidence DPI : 4 (flows)
Confidence DPI (aggressive) : 1 (flows) Confidence DPI (aggressive) : 1 (flows)
Num dissector calls: 580 (96.67 diss/flow) Num dissector calls: 583 (97.17 diss/flow)
LRU cache ookla: 4/2/2 (insert/search/found) LRU cache ookla: 4/2/2 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -7,7 +7,7 @@ Confidence Unknown : 1 (flows)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Confidence DPI (partial) : 5 (flows) Confidence DPI (partial) : 5 (flows)
Confidence DPI : 76 (flows) Confidence DPI : 76 (flows)
Num dissector calls: 519 (6.25 diss/flow) Num dissector calls: 520 (6.27 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/9/0 (insert/search/found) LRU cache bittorrent: 0/9/0 (insert/search/found)
LRU cache stun: 30/0/0 (insert/search/found) LRU cache stun: 30/0/0 (insert/search/found)

Binary file not shown.

View file

@ -5,7 +5,7 @@ DPI Packets (UDP): 120 (1.21 pkts/flow)
Confidence Unknown : 14 (flows) Confidence Unknown : 14 (flows)
Confidence Match by port : 6 (flows) Confidence Match by port : 6 (flows)
Confidence DPI : 177 (flows) Confidence DPI : 177 (flows)
Num dissector calls: 4991 (25.34 diss/flow) Num dissector calls: 4994 (25.35 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/60/0 (insert/search/found) LRU cache bittorrent: 0/60/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -2,7 +2,7 @@ Guessed flow protos: 1
DPI Packets (TCP): 1 (1.00 pkts/flow) DPI Packets (TCP): 1 (1.00 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Num dissector calls: 153 (153.00 diss/flow) Num dissector calls: 154 (154.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 6 (6.00 pkts/flow) DPI Packets (TCP): 6 (6.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 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 ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -5,7 +5,7 @@ DPI Packets (UDP): 36 (2.00 pkts/flow)
DPI Packets (other): 1 (1.00 pkts/flow) DPI Packets (other): 1 (1.00 pkts/flow)
Confidence Match by port : 5 (flows) Confidence Match by port : 5 (flows)
Confidence DPI : 33 (flows) Confidence DPI : 33 (flows)
Num dissector calls: 557 (14.66 diss/flow) Num dissector calls: 559 (14.71 diss/flow)
LRU cache ookla: 0/1/0 (insert/search/found) LRU cache ookla: 0/1/0 (insert/search/found)
LRU cache bittorrent: 0/15/0 (insert/search/found) LRU cache bittorrent: 0/15/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -5,7 +5,7 @@ DPI Packets (UDP): 10 (2.00 pkts/flow)
Confidence Match by port : 8 (flows) Confidence Match by port : 8 (flows)
Confidence DPI : 11 (flows) Confidence DPI : 11 (flows)
Confidence Match by IP : 1 (flows) Confidence Match by IP : 1 (flows)
Num dissector calls: 1229 (61.45 diss/flow) Num dissector calls: 1233 (61.65 diss/flow)
LRU cache ookla: 0/2/0 (insert/search/found) LRU cache ookla: 0/2/0 (insert/search/found)
LRU cache bittorrent: 0/27/0 (insert/search/found) LRU cache bittorrent: 0/27/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -2,7 +2,7 @@ Guessed flow protos: 1
DPI Packets (TCP): 21 (21.00 pkts/flow) DPI Packets (TCP): 21 (21.00 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Num dissector calls: 259 (259.00 diss/flow) Num dissector calls: 260 (260.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -5,7 +5,7 @@ DPI Packets (UDP): 64 (1.94 pkts/flow)
DPI Packets (other): 6 (1.00 pkts/flow) DPI Packets (other): 6 (1.00 pkts/flow)
Confidence Match by port : 14 (flows) Confidence Match by port : 14 (flows)
Confidence DPI : 146 (flows) Confidence DPI : 146 (flows)
Num dissector calls: 567 (3.54 diss/flow) Num dissector calls: 568 (3.55 diss/flow)
LRU cache ookla: 0/5/0 (insert/search/found) LRU cache ookla: 0/5/0 (insert/search/found)
LRU cache bittorrent: 0/42/0 (insert/search/found) LRU cache bittorrent: 0/42/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 9 (3.00 pkts/flow) DPI Packets (TCP): 9 (3.00 pkts/flow)
Confidence DPI : 3 (flows) Confidence DPI : 3 (flows)
Num dissector calls: 381 (127.00 diss/flow) Num dissector calls: 382 (127.33 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -6,7 +6,7 @@ DPI Packets (other): 10 (1.00 pkts/flow)
Confidence Unknown : 2 (flows) Confidence Unknown : 2 (flows)
Confidence Match by port : 6 (flows) Confidence Match by port : 6 (flows)
Confidence DPI : 61 (flows) Confidence DPI : 61 (flows)
Num dissector calls: 816 (11.83 diss/flow) Num dissector calls: 817 (11.84 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/24/0 (insert/search/found) LRU cache bittorrent: 0/24/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -0,0 +1,28 @@
DPI Packets (TCP): 5 (2.50 pkts/flow)
Confidence DPI : 2 (flows)
Num dissector calls: 308 (154.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)
LRU cache tls_cert: 0/0/0 (insert/search/found)
LRU cache mining: 0/0/0 (insert/search/found)
LRU cache msteams: 0/0/0 (insert/search/found)
LRU cache fpc_dns: 0/1/0 (insert/search/found)
Automa host: 0/0 (search/found)
Automa domain: 0/0 (search/found)
Automa tls cert: 0/0 (search/found)
Automa risk mask: 0/0 (search/found)
Automa common alpns: 0/0 (search/found)
Patricia risk mask: 2/0 (search/found)
Patricia risk mask IPv6: 0/0 (search/found)
Patricia risk: 0/0 (search/found)
Patricia risk IPv6: 0/0 (search/found)
Patricia protocols: 2/2 (search/found)
Patricia protocols IPv6: 0/0 (search/found)
ATG 31 2976 2
Acceptable 31 2976 2
1 TCP 192.168.0.105:3148 <-> 20.108.25.119:10001 [proto: 423/ATG][IP: 276/Azure][ClearText][Confidence: DPI][FPC: 276/Azure, Confidence: IP address][DPI packets: 4][cat: IoT-Scada/31][14 pkts/986 bytes <-> 8 pkts/1304 bytes][Goodput ratio: 5/59][157.76 sec][bytes ratio: -0.139 (Mixed)][IAT c2s/s2c min/avg/max/stddev: 256/2 12561/20187 58945/59439 18236/20472][Pkt Len c2s/s2c min/avg/max/stddev: 66/66 70/163 75/509 4/160][PLAIN TEXT (08/19/2024 02)][Plen Bins: 83,0,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
2 TCP 192.168.0.105:3134 -> 20.108.25.119:10001 [proto: 423/ATG][IP: 276/Azure][ClearText][Confidence: DPI][FPC: 423/ATG, Confidence: DPI][DPI packets: 1][cat: IoT-Scada/31][9 pkts/686 bytes -> 0 pkts/0 bytes][Goodput ratio: 13/0][74.58 sec][bytes ratio: 1.000 (Upload)][IAT c2s/s2c min/avg/max/stddev: 979/0 9322/0 37119/0 11869/0][Pkt Len c2s/s2c min/avg/max/stddev: 71/0 76/0 80/0 3/0][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]

View file

@ -1,7 +1,7 @@
DPI Packets (TCP): 6 (6.00 pkts/flow) DPI Packets (TCP): 6 (6.00 pkts/flow)
DPI Packets (UDP): 2 (2.00 pkts/flow) DPI Packets (UDP): 2 (2.00 pkts/flow)
Confidence DPI : 2 (flows) Confidence DPI : 2 (flows)
Num dissector calls: 334 (167.00 diss/flow) Num dissector calls: 335 (167.50 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 10 (10.00 pkts/flow) DPI Packets (TCP): 10 (10.00 pkts/flow)
Confidence DPI (cache) : 1 (flows) Confidence DPI (cache) : 1 (flows)
Num dissector calls: 243 (243.00 diss/flow) Num dissector calls: 244 (244.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 10/1/1 (insert/search/found) LRU cache bittorrent: 10/1/1 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 16 (5.33 pkts/flow) DPI Packets (TCP): 16 (5.33 pkts/flow)
Confidence DPI : 3 (flows) Confidence DPI : 3 (flows)
Num dissector calls: 309 (103.00 diss/flow) Num dissector calls: 311 (103.67 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -5,7 +5,7 @@ DPI Packets (UDP): 1 (1.00 pkts/flow)
Confidence Match by port : 2 (flows) Confidence Match by port : 2 (flows)
Confidence DPI : 6 (flows) Confidence DPI : 6 (flows)
Confidence Match by IP : 1 (flows) Confidence Match by IP : 1 (flows)
Num dissector calls: 350 (38.89 diss/flow) Num dissector calls: 351 (39.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/9/0 (insert/search/found) LRU cache bittorrent: 0/9/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,7 +1,7 @@
DPI Packets (TCP): 7 (7.00 pkts/flow) DPI Packets (TCP): 7 (7.00 pkts/flow)
DPI Packets (UDP): 5 (2.50 pkts/flow) DPI Packets (UDP): 5 (2.50 pkts/flow)
Confidence DPI : 3 (flows) Confidence DPI : 3 (flows)
Num dissector calls: 474 (158.00 diss/flow) Num dissector calls: 475 (158.33 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -26,6 +26,6 @@ CustomProtocolC 3 222 1
Acceptable 8 592 3 Acceptable 8 592 3
1 TCP 192.168.1.245:56866 -> 3.3.3.3:443 [proto: 91.429/TLS.CustomProtocolA][IP: 429/CustomProtocolA][Encrypted][Confidence: Match by custom rule][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Web/5][3 pkts/222 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][3.05 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 1 TCP 192.168.1.245:56866 -> 3.3.3.3:443 [proto: 91.430/TLS.CustomProtocolA][IP: 430/CustomProtocolA][Encrypted][Confidence: Match by custom rule][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Web/5][3 pkts/222 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][3.05 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
2 TCP 192.168.1.245:58288 -> 3.3.3.3:446 [proto: 800/CustomProtocolC][IP: 800/CustomProtocolC][ClearText][Confidence: Match by custom rule][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][3 pkts/222 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][3.04 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 2 TCP 192.168.1.245:58288 -> 3.3.3.3:446 [proto: 800/CustomProtocolC][IP: 800/CustomProtocolC][ClearText][Confidence: Match by custom rule][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][3 pkts/222 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][3.04 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
3 TCP 192.168.1.245:59682 -> 3.3.3.3:444 [proto: 430/CustomProtocolB][IP: 430/CustomProtocolB][ClearText][Confidence: Match by custom rule][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][2 pkts/148 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][1.02 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 3 TCP 192.168.1.245:59682 -> 3.3.3.3:444 [proto: 431/CustomProtocolB][IP: 431/CustomProtocolB][ClearText][Confidence: Match by custom rule][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][2 pkts/148 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][1.02 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]

View file

@ -1,7 +1,7 @@
DPI Packets (TCP): 10 (10.00 pkts/flow) DPI Packets (TCP): 10 (10.00 pkts/flow)
DPI Packets (UDP): 2 (2.00 pkts/flow) DPI Packets (UDP): 2 (2.00 pkts/flow)
Confidence Unknown : 2 (flows) Confidence Unknown : 2 (flows)
Num dissector calls: 337 (168.50 diss/flow) Num dissector calls: 338 (169.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/6/0 (insert/search/found) LRU cache bittorrent: 0/6/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 48 (8.00 pkts/flow) DPI Packets (TCP): 48 (8.00 pkts/flow)
Confidence DPI : 6 (flows) Confidence DPI : 6 (flows)
Num dissector calls: 225 (37.50 diss/flow) Num dissector calls: 226 (37.67 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 6 (6.00 pkts/flow) DPI Packets (TCP): 6 (6.00 pkts/flow)
Confidence DPI : 1 (flows) 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 ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 17 (17.00 pkts/flow) DPI Packets (TCP): 17 (17.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 178 (178.00 diss/flow) Num dissector calls: 179 (179.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,7 +1,7 @@
DPI Packets (TCP): 39 (13.00 pkts/flow) DPI Packets (TCP): 39 (13.00 pkts/flow)
Confidence Unknown : 1 (flows) Confidence Unknown : 1 (flows)
Confidence DPI : 2 (flows) Confidence DPI : 2 (flows)
Num dissector calls: 528 (176.00 diss/flow) Num dissector calls: 530 (176.67 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 8 (8.00 pkts/flow) DPI Packets (TCP): 8 (8.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 177 (177.00 diss/flow) Num dissector calls: 178 (178.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -6,7 +6,7 @@ DPI Packets (other): 5 (1.00 pkts/flow)
Confidence Unknown : 34 (flows) Confidence Unknown : 34 (flows)
Confidence Match by port : 28 (flows) Confidence Match by port : 28 (flows)
Confidence DPI : 189 (flows) Confidence DPI : 189 (flows)
Num dissector calls: 7774 (30.97 diss/flow) Num dissector calls: 7787 (31.02 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/192/0 (insert/search/found) LRU cache bittorrent: 0/192/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -5,7 +5,7 @@ DPI Packets (other): 1 (1.00 pkts/flow)
Confidence Unknown : 3 (flows) Confidence Unknown : 3 (flows)
Confidence Match by port : 26 (flows) Confidence Match by port : 26 (flows)
Confidence DPI : 11 (flows) Confidence DPI : 11 (flows)
Num dissector calls: 1159 (28.98 diss/flow) Num dissector calls: 1165 (29.12 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/87/0 (insert/search/found) LRU cache bittorrent: 0/87/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 1 (1.00 pkts/flow) DPI Packets (TCP): 1 (1.00 pkts/flow)
Confidence Unknown : 1 (flows) Confidence Unknown : 1 (flows)
Num dissector calls: 152 (152.00 diss/flow) Num dissector calls: 153 (153.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,7 +1,7 @@
DPI Packets (TCP): 13 (6.50 pkts/flow) DPI Packets (TCP): 13 (6.50 pkts/flow)
DPI Packets (UDP): 1 (1.00 pkts/flow) DPI Packets (UDP): 1 (1.00 pkts/flow)
Confidence DPI : 3 (flows) Confidence DPI : 3 (flows)
Num dissector calls: 156 (52.00 diss/flow) Num dissector calls: 157 (52.33 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -2,7 +2,7 @@ Guessed flow protos: 1
DPI Packets (TCP): 24 (24.00 pkts/flow) DPI Packets (TCP): 24 (24.00 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Num dissector calls: 205 (205.00 diss/flow) Num dissector calls: 206 (206.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -2,7 +2,7 @@ Guessed flow protos: 1
DPI Packets (TCP): 1 (1.00 pkts/flow) DPI Packets (TCP): 1 (1.00 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Num dissector calls: 153 (153.00 diss/flow) Num dissector calls: 154 (154.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 19 (19.00 pkts/flow) DPI Packets (TCP): 19 (19.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 224 (224.00 diss/flow) Num dissector calls: 225 (225.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 11 (11.00 pkts/flow) DPI Packets (TCP): 11 (11.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 224 (224.00 diss/flow) Num dissector calls: 225 (225.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -6,7 +6,7 @@ DPI Packets (other): 1 (1.00 pkts/flow)
Confidence Unknown : 1 (flows) Confidence Unknown : 1 (flows)
Confidence Match by port : 7 (flows) Confidence Match by port : 7 (flows)
Confidence DPI : 30 (flows) Confidence DPI : 30 (flows)
Num dissector calls: 1342 (35.32 diss/flow) Num dissector calls: 1346 (35.42 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/24/0 (insert/search/found) LRU cache bittorrent: 0/24/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 7 (7.00 pkts/flow) DPI Packets (TCP): 7 (7.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 183 (183.00 diss/flow) Num dissector calls: 184 (184.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 7 (7.00 pkts/flow) DPI Packets (TCP): 7 (7.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 196 (196.00 diss/flow) Num dissector calls: 197 (197.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 74 (6.17 pkts/flow) DPI Packets (TCP): 74 (6.17 pkts/flow)
Confidence DPI : 12 (flows) Confidence DPI : 12 (flows)
Num dissector calls: 1672 (139.33 diss/flow) Num dissector calls: 1681 (140.08 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -3,7 +3,7 @@ Guessed flow protos: 1
DPI Packets (TCP): 16 (1.78 pkts/flow) DPI Packets (TCP): 16 (1.78 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Confidence DPI : 8 (flows) Confidence DPI : 8 (flows)
Num dissector calls: 226 (25.11 diss/flow) Num dissector calls: 227 (25.22 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -4,7 +4,7 @@ DPI Packets (TCP): 77 (2.14 pkts/flow)
Confidence Unknown : 2 (flows) Confidence Unknown : 2 (flows)
Confidence Match by port : 23 (flows) Confidence Match by port : 23 (flows)
Confidence DPI : 11 (flows) Confidence DPI : 11 (flows)
Num dissector calls: 4526 (125.72 diss/flow) Num dissector calls: 4551 (126.42 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/75/0 (insert/search/found) LRU cache bittorrent: 0/75/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,7 +1,7 @@
DPI Packets (TCP): 56 (8.00 pkts/flow) DPI Packets (TCP): 56 (8.00 pkts/flow)
Confidence Unknown : 2 (flows) Confidence Unknown : 2 (flows)
Confidence DPI : 5 (flows) Confidence DPI : 5 (flows)
Num dissector calls: 358 (51.14 diss/flow) Num dissector calls: 359 (51.29 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/6/0 (insert/search/found) LRU cache bittorrent: 0/6/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 6 (6.00 pkts/flow) DPI Packets (TCP): 6 (6.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 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 ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -2,7 +2,7 @@ Guessed flow protos: 1
DPI Packets (TCP): 14 (14.00 pkts/flow) DPI Packets (TCP): 14 (14.00 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Num dissector calls: 271 (271.00 diss/flow) Num dissector calls: 272 (272.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -3,7 +3,7 @@ Guessed flow protos: 1
DPI Packets (TCP): 18 (1.50 pkts/flow) DPI Packets (TCP): 18 (1.50 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Confidence DPI : 11 (flows) Confidence DPI : 11 (flows)
Num dissector calls: 270 (22.50 diss/flow) Num dissector calls: 271 (22.58 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -4,7 +4,7 @@ DPI Packets (TCP): 129 (9.92 pkts/flow)
DPI Packets (UDP): 2 (2.00 pkts/flow) DPI Packets (UDP): 2 (2.00 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Confidence DPI : 13 (flows) Confidence DPI : 13 (flows)
Num dissector calls: 2149 (153.50 diss/flow) Num dissector calls: 2161 (154.36 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -4,7 +4,7 @@ DPI Packets (TCP): 3 (1.50 pkts/flow)
DPI Packets (UDP): 14 (1.00 pkts/flow) DPI Packets (UDP): 14 (1.00 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Confidence DPI : 15 (flows) Confidence DPI : 15 (flows)
Num dissector calls: 168 (10.50 diss/flow) Num dissector calls: 169 (10.56 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 6 (6.00 pkts/flow) DPI Packets (TCP): 6 (6.00 pkts/flow)
Confidence DPI : 1 (flows) 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 ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -4,7 +4,7 @@ DPI Packets (TCP): 40 (6.67 pkts/flow)
Confidence DPI (partial cache): 1 (flows) Confidence DPI (partial cache): 1 (flows)
Confidence DPI : 4 (flows) Confidence DPI : 4 (flows)
Confidence DPI (aggressive) : 1 (flows) Confidence DPI (aggressive) : 1 (flows)
Num dissector calls: 580 (96.67 diss/flow) Num dissector calls: 583 (97.17 diss/flow)
LRU cache ookla: 4/2/2 (insert/search/found) LRU cache ookla: 4/2/2 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,7 +1,7 @@
DPI Packets (TCP): 24 (8.00 pkts/flow) DPI Packets (TCP): 24 (8.00 pkts/flow)
DPI Packets (UDP): 15 (3.00 pkts/flow) DPI Packets (UDP): 15 (3.00 pkts/flow)
Confidence DPI : 8 (flows) Confidence DPI : 8 (flows)
Num dissector calls: 1372 (171.50 diss/flow) Num dissector calls: 1375 (171.88 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/6/0 (insert/search/found) LRU cache bittorrent: 0/6/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 6 (6.00 pkts/flow) DPI Packets (TCP): 6 (6.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 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 ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -2,7 +2,7 @@ Guessed flow protos: 1
DPI Packets (TCP): 20 (20.00 pkts/flow) DPI Packets (TCP): 20 (20.00 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Num dissector calls: 249 (249.00 diss/flow) Num dissector calls: 250 (250.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -2,7 +2,7 @@ DPI Packets (TCP): 8 (1.33 pkts/flow)
DPI Packets (UDP): 9 (2.25 pkts/flow) DPI Packets (UDP): 9 (2.25 pkts/flow)
Confidence Unknown : 2 (flows) Confidence Unknown : 2 (flows)
Confidence DPI : 8 (flows) Confidence DPI : 8 (flows)
Num dissector calls: 960 (96.00 diss/flow) Num dissector calls: 962 (96.20 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/9/0 (insert/search/found) LRU cache bittorrent: 0/9/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -4,7 +4,7 @@ DPI Packets (TCP): 38 (6.33 pkts/flow)
DPI Packets (UDP): 4 (2.00 pkts/flow) DPI Packets (UDP): 4 (2.00 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Confidence DPI : 7 (flows) Confidence DPI : 7 (flows)
Num dissector calls: 1035 (129.38 diss/flow) Num dissector calls: 1039 (129.88 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 36 (6.00 pkts/flow) DPI Packets (TCP): 36 (6.00 pkts/flow)
Confidence DPI : 6 (flows) Confidence DPI : 6 (flows)
Num dissector calls: 924 (154.00 diss/flow) Num dissector calls: 930 (155.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 6 (6.00 pkts/flow) DPI Packets (TCP): 6 (6.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 160 (160.00 diss/flow) Num dissector calls: 161 (161.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 83 (13.83 pkts/flow) DPI Packets (TCP): 83 (13.83 pkts/flow)
Confidence DPI : 6 (flows) Confidence DPI : 6 (flows)
Num dissector calls: 1275 (212.50 diss/flow) Num dissector calls: 1281 (213.50 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 18 (18.00 pkts/flow) DPI Packets (TCP): 18 (18.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 211 (211.00 diss/flow) Num dissector calls: 212 (212.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -3,7 +3,7 @@ Guessed flow protos: 1
DPI Packets (TCP): 30 (15.00 pkts/flow) DPI Packets (TCP): 30 (15.00 pkts/flow)
Confidence Unknown : 1 (flows) Confidence Unknown : 1 (flows)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Num dissector calls: 481 (240.50 diss/flow) Num dissector calls: 483 (241.50 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/6/0 (insert/search/found) LRU cache bittorrent: 0/6/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 26 (5.20 pkts/flow) DPI Packets (TCP): 26 (5.20 pkts/flow)
Confidence DPI : 5 (flows) Confidence DPI : 5 (flows)
Num dissector calls: 700 (140.00 diss/flow) Num dissector calls: 701 (140.20 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 12 (6.00 pkts/flow) DPI Packets (TCP): 12 (6.00 pkts/flow)
Confidence DPI : 2 (flows) Confidence DPI : 2 (flows)
Num dissector calls: 308 (154.00 diss/flow) Num dissector calls: 310 (155.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 12 (6.00 pkts/flow) DPI Packets (TCP): 12 (6.00 pkts/flow)
Confidence DPI : 2 (flows) Confidence DPI : 2 (flows)
Num dissector calls: 354 (177.00 diss/flow) Num dissector calls: 356 (178.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 23 (23.00 pkts/flow) DPI Packets (TCP): 23 (23.00 pkts/flow)
Confidence Unknown : 1 (flows) Confidence Unknown : 1 (flows)
Num dissector calls: 247 (247.00 diss/flow) Num dissector calls: 248 (248.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -2,7 +2,7 @@ Guessed flow protos: 1
DPI Packets (TCP): 21 (21.00 pkts/flow) DPI Packets (TCP): 21 (21.00 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Num dissector calls: 204 (204.00 diss/flow) Num dissector calls: 205 (205.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -3,7 +3,7 @@ Guessed flow protos: 1
DPI Packets (TCP): 7 (3.50 pkts/flow) DPI Packets (TCP): 7 (3.50 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 203 (101.50 diss/flow) Num dissector calls: 204 (102.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 12 (6.00 pkts/flow) DPI Packets (TCP): 12 (6.00 pkts/flow)
Confidence DPI : 2 (flows) Confidence DPI : 2 (flows)
Num dissector calls: 346 (173.00 diss/flow) Num dissector calls: 348 (174.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 8 (8.00 pkts/flow) DPI Packets (TCP): 8 (8.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 179 (179.00 diss/flow) Num dissector calls: 180 (180.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,7 +1,7 @@
DPI Packets (TCP): 8 (8.00 pkts/flow) DPI Packets (TCP): 8 (8.00 pkts/flow)
DPI Packets (UDP): 9 (3.00 pkts/flow) DPI Packets (UDP): 9 (3.00 pkts/flow)
Confidence DPI : 4 (flows) Confidence DPI : 4 (flows)
Num dissector calls: 667 (166.75 diss/flow) Num dissector calls: 668 (167.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 9 (9.00 pkts/flow) DPI Packets (TCP): 9 (9.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 191 (191.00 diss/flow) Num dissector calls: 192 (192.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 3 (3.00 pkts/flow) DPI Packets (TCP): 3 (3.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 191 (191.00 diss/flow) Num dissector calls: 192 (192.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,7 +1,7 @@
DPI Packets (TCP): 21 (10.50 pkts/flow) DPI Packets (TCP): 21 (10.50 pkts/flow)
Confidence Unknown : 1 (flows) Confidence Unknown : 1 (flows)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 377 (188.50 diss/flow) Num dissector calls: 379 (189.50 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,7 +1,7 @@
DPI Packets (TCP): 16 (8.00 pkts/flow) DPI Packets (TCP): 16 (8.00 pkts/flow)
DPI Packets (UDP): 2 (1.00 pkts/flow) DPI Packets (UDP): 2 (1.00 pkts/flow)
Confidence Unknown : 4 (flows) Confidence Unknown : 4 (flows)
Num dissector calls: 594 (148.50 diss/flow) Num dissector calls: 596 (149.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/12/0 (insert/search/found) LRU cache bittorrent: 0/12/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 5 (5.00 pkts/flow) DPI Packets (TCP): 5 (5.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 178 (178.00 diss/flow) Num dissector calls: 179 (179.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 3 (3.00 pkts/flow) DPI Packets (TCP): 3 (3.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 180 (180.00 diss/flow) Num dissector calls: 181 (181.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 26 (13.00 pkts/flow) DPI Packets (TCP): 26 (13.00 pkts/flow)
Confidence DPI : 2 (flows) Confidence DPI : 2 (flows)
Num dissector calls: 177 (88.50 diss/flow) Num dissector calls: 178 (89.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 11 (11.00 pkts/flow) DPI Packets (TCP): 11 (11.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 218 (218.00 diss/flow) Num dissector calls: 219 (219.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -3,7 +3,7 @@ Guessed flow protos: 1
DPI Packets (TCP): 20 (6.67 pkts/flow) DPI Packets (TCP): 20 (6.67 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Confidence DPI : 2 (flows) Confidence DPI : 2 (flows)
Num dissector calls: 419 (139.67 diss/flow) Num dissector calls: 421 (140.33 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 23 (5.75 pkts/flow) DPI Packets (TCP): 23 (5.75 pkts/flow)
Confidence DPI : 4 (flows) Confidence DPI : 4 (flows)
Num dissector calls: 619 (154.75 diss/flow) Num dissector calls: 623 (155.75 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -6,7 +6,7 @@ DPI Packets (other): 1 (1.00 pkts/flow)
Confidence Match by port : 12 (flows) Confidence Match by port : 12 (flows)
Confidence DPI : 39 (flows) Confidence DPI : 39 (flows)
Confidence Match by IP : 1 (flows) Confidence Match by IP : 1 (flows)
Num dissector calls: 1696 (32.62 diss/flow) Num dissector calls: 1699 (32.67 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/39/0 (insert/search/found) LRU cache bittorrent: 0/39/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -145,7 +145,7 @@ Unrated 1848 107192 1844
48 TCP 172.16.0.8:36050 -> 64.13.134.52:2605 [proto: 13/BGP][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Network/14][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 48 TCP 172.16.0.8:36050 -> 64.13.134.52:2605 [proto: 13/BGP][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Network/14][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
49 TCP 172.16.0.8:36050 -> 64.13.134.52:3000 [proto: 26/ntop][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Network/14][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 49 TCP 172.16.0.8:36050 -> 64.13.134.52:3000 [proto: 26/ntop][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Network/14][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
50 TCP 172.16.0.8:36050 -> 64.13.134.52:3128 [proto: 131/HTTP_Proxy][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Web/5][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 50 TCP 172.16.0.8:36050 -> 64.13.134.52:3128 [proto: 131/HTTP_Proxy][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Web/5][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
51 TCP 172.16.0.8:36050 -> 64.13.134.52:3260 [proto: 423/iSCSI][IP: 0/Unknown][ClearText][Confidence: Match by custom rule][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 51 TCP 172.16.0.8:36050 -> 64.13.134.52:3260 [proto: 424/iSCSI][IP: 0/Unknown][ClearText][Confidence: Match by custom rule][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
52 TCP 172.16.0.8:36050 -> 64.13.134.52:3300 [proto: 381/Ceph][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: DataTransfer/4][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 52 TCP 172.16.0.8:36050 -> 64.13.134.52:3300 [proto: 381/Ceph][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: DataTransfer/4][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
53 TCP 172.16.0.8:36050 -> 64.13.134.52:3306 [proto: 20/MySQL][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Database/11][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 53 TCP 172.16.0.8:36050 -> 64.13.134.52:3306 [proto: 20/MySQL][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Database/11][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
54 TCP 172.16.0.8:36050 -> 64.13.134.52:3389 [proto: 88/RDP][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: RemoteAccess/12][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Desktop/File Sharing **** Unidirectional Traffic **][Risk Score: 20][Risk Info: No server to client traffic / Found RDP][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 54 TCP 172.16.0.8:36050 -> 64.13.134.52:3389 [proto: 88/RDP][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: RemoteAccess/12][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Desktop/File Sharing **** Unidirectional Traffic **][Risk Score: 20][Risk Info: No server to client traffic / Found RDP][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
@ -218,7 +218,7 @@ Unrated 1848 107192 1844
121 TCP 172.16.0.8:36051 -> 64.13.134.52:2605 [proto: 13/BGP][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Network/14][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 121 TCP 172.16.0.8:36051 -> 64.13.134.52:2605 [proto: 13/BGP][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Network/14][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
122 TCP 172.16.0.8:36051 -> 64.13.134.52:3000 [proto: 26/ntop][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Network/14][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 122 TCP 172.16.0.8:36051 -> 64.13.134.52:3000 [proto: 26/ntop][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Network/14][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
123 TCP 172.16.0.8:36051 -> 64.13.134.52:3128 [proto: 131/HTTP_Proxy][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Web/5][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 123 TCP 172.16.0.8:36051 -> 64.13.134.52:3128 [proto: 131/HTTP_Proxy][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Web/5][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
124 TCP 172.16.0.8:36051 -> 64.13.134.52:3260 [proto: 423/iSCSI][IP: 0/Unknown][ClearText][Confidence: Match by custom rule][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 124 TCP 172.16.0.8:36051 -> 64.13.134.52:3260 [proto: 424/iSCSI][IP: 0/Unknown][ClearText][Confidence: Match by custom rule][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
125 TCP 172.16.0.8:36051 -> 64.13.134.52:3300 [proto: 381/Ceph][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: DataTransfer/4][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 125 TCP 172.16.0.8:36051 -> 64.13.134.52:3300 [proto: 381/Ceph][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: DataTransfer/4][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
126 TCP 172.16.0.8:36051 -> 64.13.134.52:3306 [proto: 20/MySQL][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Database/11][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 126 TCP 172.16.0.8:36051 -> 64.13.134.52:3306 [proto: 20/MySQL][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: Database/11][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Unidirectional Traffic **][Risk Score: 10][Risk Info: No server to client traffic][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
127 TCP 172.16.0.8:36051 -> 64.13.134.52:3389 [proto: 88/RDP][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: RemoteAccess/12][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Desktop/File Sharing **** Unidirectional Traffic **][Risk Score: 20][Risk Info: No server to client traffic / Found RDP][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] 127 TCP 172.16.0.8:36051 -> 64.13.134.52:3389 [proto: 88/RDP][IP: 0/Unknown][ClearText][Confidence: Match by port][FPC: 0/Unknown, Confidence: Unknown][DPI packets: 1][cat: RemoteAccess/12][1 pkts/58 bytes -> 0 pkts/0 bytes][Goodput ratio: 0/0][< 1 sec][Risk: ** Desktop/File Sharing **** Unidirectional Traffic **][Risk Score: 20][Risk Info: No server to client traffic / Found RDP][Plen Bins: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]

View file

@ -7,7 +7,7 @@ Confidence Unknown : 1 (flows)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Confidence DPI (partial) : 5 (flows) Confidence DPI (partial) : 5 (flows)
Confidence DPI : 76 (flows) Confidence DPI : 76 (flows)
Num dissector calls: 519 (6.25 diss/flow) Num dissector calls: 520 (6.27 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/9/0 (insert/search/found) LRU cache bittorrent: 0/9/0 (insert/search/found)
LRU cache stun: 30/0/0 (insert/search/found) LRU cache stun: 30/0/0 (insert/search/found)

View file

@ -7,7 +7,7 @@ Confidence DPI (partial) : 1 (flows)
Confidence DPI (cache) : 10 (flows) Confidence DPI (cache) : 10 (flows)
Confidence DPI : 15 (flows) Confidence DPI : 15 (flows)
Confidence Match by IP : 8 (flows) Confidence Match by IP : 8 (flows)
Num dissector calls: 760 (22.35 diss/flow) Num dissector calls: 761 (22.38 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/6/0 (insert/search/found) LRU cache bittorrent: 0/6/0 (insert/search/found)
LRU cache stun: 38/49/10 (insert/search/found) LRU cache stun: 38/49/10 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 32 (32.00 pkts/flow) DPI Packets (TCP): 32 (32.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 1 (flows)
Num dissector calls: 176 (176.00 diss/flow) Num dissector calls: 177 (177.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -3,7 +3,7 @@ Guessed flow protos: 2
DPI Packets (TCP): 66 (11.00 pkts/flow) DPI Packets (TCP): 66 (11.00 pkts/flow)
Confidence DPI : 4 (flows) Confidence DPI : 4 (flows)
Confidence Match by IP : 2 (flows) Confidence Match by IP : 2 (flows)
Num dissector calls: 1342 (223.67 diss/flow) Num dissector calls: 1348 (224.67 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/6/0 (insert/search/found) LRU cache bittorrent: 0/6/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -2,7 +2,7 @@ DPI Packets (TCP): 19 (9.50 pkts/flow)
DPI Packets (UDP): 2 (1.00 pkts/flow) DPI Packets (UDP): 2 (1.00 pkts/flow)
Confidence DPI (cache) : 2 (flows) Confidence DPI (cache) : 2 (flows)
Confidence DPI : 2 (flows) Confidence DPI : 2 (flows)
Num dissector calls: 535 (133.75 diss/flow) Num dissector calls: 537 (134.25 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 17 (8.50 pkts/flow) DPI Packets (TCP): 17 (8.50 pkts/flow)
Confidence DPI : 2 (flows) Confidence DPI : 2 (flows)
Num dissector calls: 155 (77.50 diss/flow) Num dissector calls: 156 (78.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -6,7 +6,7 @@ DPI Packets (other): 2 (1.00 pkts/flow)
Confidence Unknown : 1 (flows) Confidence Unknown : 1 (flows)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Confidence DPI : 33 (flows) Confidence DPI : 33 (flows)
Num dissector calls: 652 (18.63 diss/flow) Num dissector calls: 655 (18.71 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/6/0 (insert/search/found) LRU cache bittorrent: 0/6/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 13 (13.00 pkts/flow) DPI Packets (TCP): 13 (13.00 pkts/flow)
Confidence Unknown : 1 (flows) Confidence Unknown : 1 (flows)
Num dissector calls: 250 (250.00 diss/flow) Num dissector calls: 251 (251.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -3,7 +3,7 @@ Guessed flow protos: 1
DPI Packets (TCP): 10 (3.33 pkts/flow) DPI Packets (TCP): 10 (3.33 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Confidence DPI : 2 (flows) Confidence DPI : 2 (flows)
Num dissector calls: 155 (51.67 diss/flow) Num dissector calls: 156 (52.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 3 (3.00 pkts/flow) DPI Packets (TCP): 3 (3.00 pkts/flow)
Confidence DPI : 1 (flows) Confidence DPI : 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 ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -2,7 +2,7 @@ Guessed flow protos: 1
DPI Packets (TCP): 8 (8.00 pkts/flow) DPI Packets (TCP): 8 (8.00 pkts/flow)
Confidence Match by port : 1 (flows) Confidence Match by port : 1 (flows)
Num dissector calls: 153 (153.00 diss/flow) Num dissector calls: 154 (154.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -5,7 +5,7 @@ DPI Packets (UDP): 34 (2.27 pkts/flow)
DPI Packets (other): 2 (1.00 pkts/flow) DPI Packets (other): 2 (1.00 pkts/flow)
Confidence Match by port : 4 (flows) Confidence Match by port : 4 (flows)
Confidence DPI : 26 (flows) Confidence DPI : 26 (flows)
Num dissector calls: 465 (15.50 diss/flow) Num dissector calls: 466 (15.53 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/12/0 (insert/search/found) LRU cache bittorrent: 0/12/0 (insert/search/found)
LRU cache stun: 3/6/0 (insert/search/found) LRU cache stun: 3/6/0 (insert/search/found)

View file

@ -1,6 +1,6 @@
DPI Packets (TCP): 10 (5.00 pkts/flow) DPI Packets (TCP): 10 (5.00 pkts/flow)
Confidence DPI : 2 (flows) Confidence DPI : 2 (flows)
Num dissector calls: 320 (160.00 diss/flow) Num dissector calls: 322 (161.00 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/0/0 (insert/search/found) LRU cache bittorrent: 0/0/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

View file

@ -5,7 +5,7 @@ DPI Packets (UDP): 44 (3.38 pkts/flow)
Confidence DPI (cache) : 2 (flows) Confidence DPI (cache) : 2 (flows)
Confidence DPI : 11 (flows) Confidence DPI : 11 (flows)
Confidence Match by IP : 1 (flows) Confidence Match by IP : 1 (flows)
Num dissector calls: 373 (26.64 diss/flow) Num dissector calls: 374 (26.71 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/3/0 (insert/search/found) LRU cache bittorrent: 0/3/0 (insert/search/found)
LRU cache stun: 14/2/2 (insert/search/found) LRU cache stun: 14/2/2 (insert/search/found)

View file

@ -5,7 +5,7 @@ DPI Packets (UDP): 1 (1.00 pkts/flow)
Confidence Unknown : 1 (flows) Confidence Unknown : 1 (flows)
Confidence Match by port : 9 (flows) Confidence Match by port : 9 (flows)
Confidence DPI : 23 (flows) Confidence DPI : 23 (flows)
Num dissector calls: 389 (11.79 diss/flow) Num dissector calls: 390 (11.82 diss/flow)
LRU cache ookla: 0/0/0 (insert/search/found) LRU cache ookla: 0/0/0 (insert/search/found)
LRU cache bittorrent: 0/30/0 (insert/search/found) LRU cache bittorrent: 0/30/0 (insert/search/found)
LRU cache stun: 0/0/0 (insert/search/found) LRU cache stun: 0/0/0 (insert/search/found)

Some files were not shown because too many files have changed in this diff Show more