mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
29 lines
786 B
Lua
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
|