mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
Add alias and device type columns to host pools (#953)
* Add alias and device type columns to host pools * Add host pool members links when available * Add host pool links * Implement host pool members pagination * Host Pools GUI fixes and improvements * Remove hardcoded columns number * Host Pools GUI fixes * Remove debug print
This commit is contained in:
parent
f711ab555b
commit
2a843966da
10 changed files with 332 additions and 147 deletions
|
|
@ -22,8 +22,7 @@ end
|
|||
|
||||
|
||||
function expandIpV4Network(net)
|
||||
local prefix = tonumber(net:match("/(.+)"))
|
||||
local address = net:gsub("/.+","")
|
||||
local address, prefix = splitNetworkPrefix(net)
|
||||
|
||||
if(prefix == nil or prefix > 32 or prefix <= 0) then prefix = 32 end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue