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

29 lines
786 B
Lua

--
-- (C) 2013-20 - ntop.org
--
local dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
package.path = dirs.installdir .. "/pro/scripts/callbacks/system/?.lua;" .. package.path
if ntop.isnEdge() then
package.path = dirs.installdir .. "/pro/scripts/lua/nedge/modules/?.lua;" .. package.path
-- Select the NetfilterInterface, as by default the System interface is selected
interface.select(nil)
require("lua_utils")
local NfConfig = require("nf_config")
NfConfig.checkPolicyChange()
if ntop.isRoutingMode() then
local ping_utils = require('ping_utils')
local nf_config = NfConfig:readable()
nf_config:recheckGatewaysInformationFromSystem()
ping_utils.check_status(nf_config)
end
end