mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
Implemented support of host filtering with TX traffic sent
This commit is contained in:
parent
784e2d86b3
commit
fadd612d14
9 changed files with 57 additions and 7 deletions
|
|
@ -117,10 +117,14 @@ if mode == "local" then
|
|||
hosts_retrv_function = interface.getLocalHostsInfo
|
||||
elseif mode == "local_no_tx" then
|
||||
hosts_retrv_function = interface.getLocalHostsInfoNoTX
|
||||
elseif mode == "local_no_tcp_tx" then
|
||||
hosts_retrv_function = interface.getLocalHostsInfoNoTXTCP
|
||||
elseif mode == "remote" then
|
||||
hosts_retrv_function = interface.getRemoteHostsInfo
|
||||
elseif mode == "remote_no_tx" then
|
||||
hosts_retrv_function = interface.getRemoteHostsInfoNoTX
|
||||
elseif mode == "remote_no_tcp_tx" then
|
||||
hosts_retrv_function = interface.getRemoteHostsInfoNoTXTCP
|
||||
elseif mode == "broadcast_domain" then
|
||||
hosts_retrv_function = interface.getBroadcastDomainHostsInfo
|
||||
elseif mode == "filtered" then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue