mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-03 17:30:11 +00:00
Fixes for capture from nProbe Agent
- Add missing protocol guess - Fix flows filter by L4 protocol - Fix traffic profile filter validation - Fix missing apps in the l7 dropdown - Fix bad unidirectional flow status with ebpf flows - Fix broken flows refresh in username_details.lua
This commit is contained in:
parent
2de94d9226
commit
fa730db28f
9 changed files with 25 additions and 6 deletions
|
|
@ -29,7 +29,7 @@ local script = {
|
|||
-- #################################################################
|
||||
|
||||
function script.hooks.all(now)
|
||||
if(flow.getPacketsRcvd() == 0) then
|
||||
if((flow.getPacketsRcvd() == 0) and (flow.getPacketsSent() > 0)) then
|
||||
-- Now check if the recipient isn't a broadcast/multicast address
|
||||
if(flow.isServerUnicast()) then
|
||||
-- TODO some UDP protocols are inherently unidirectional (e.g. Netflow/sflow)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue