ntopng/scripts/callbacks/system/discover.lua
2020-01-08 23:52:51 +01:00

46 lines
1.7 KiB
Lua

--
-- (C) 2013-20 - ntop.org
--
local dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
require "lua_utils"
local discover_utils = require "discover_utils"
local callback_utils = require "callback_utils"
local ifnames = interface.getIfNames()
local periodic_discovery_condition = function(ifId)
return discover_utils.interfaceNetworkDiscoveryEnabled(ifId)
end
local oneshot_discovery_condition = function(ifId)
return discover_utils.networkDiscoveryRequested(ifId)
end
local discovery_function = function(ifname, ifstats)
if interface.isDiscoverableInterface() then
traceError(TRACE_INFO,TRACE_CONSOLE, "[Discover] Started periodic discovery on interface "..ifname)
local res = discover_utils.discover2table(ifname, true --[[ recache --]])
traceError(TRACE_INFO,TRACE_CONSOLE, "[Discover] Completed periodic discovery on interface "..ifname)
discover_utils.clearNetworkDiscovery(ifstats.id)
end
end
-- periodic discovery enabled
local discovery_enabled = (ntop.getPref("ntopng.prefs.is_periodic_network_discovery_enabled") == "1")
if discovery_enabled then
local discovery_interval = ntop.getPref("ntopng.prefs.network_discovery_interval")
if isEmptyString(discovery_interval) then discovery_interval = 15 * 60 --[[ 15 minutes --]] end
local now = os.time()
local diff = now % tonumber(discovery_interval)
if diff < 5 then
callback_utils.foreachInterface(ifnames, periodic_discovery_condition, discovery_function)
end
end
-- discovery requests performed by the user from the GUI
callback_utils.foreachInterface(ifnames, oneshot_discovery_condition, discovery_function)