mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
88 lines
3 KiB
Lua
88 lines
3 KiB
Lua
--
|
|
-- (C) 2020 - ntop.org
|
|
--
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
require "ntop_utils"
|
|
|
|
local page_utils = require "page_utils"
|
|
local json = require "dkjson"
|
|
local template_utils = require("template_utils")
|
|
local checks = require "checks"
|
|
|
|
sendHTTPContentTypeHeader('text/html')
|
|
|
|
page_utils.print_header_and_set_active_menu_entry(page_utils.menu_entries.network_config)
|
|
|
|
dofile(dirs.installdir .. "/scripts/lua/inc/menu.lua")
|
|
|
|
local page = _GET["page"]
|
|
|
|
page_utils.print_navbar(i18n("checks.network_configuration"),
|
|
ntop.getHttpPrefix() .. "/lua/admin/network_configuration.lua", {{
|
|
active = (page == nil or page == 'assets_inventory'),
|
|
page_name = "assets_inventory",
|
|
label = "<i class=\"fas fa-lg fa-home\" data-bs-toggle=\"tooltip\" data-bs-placement=\"top\" title=\"" ..
|
|
i18n("checks.network_configuration") .. "\"></i>"
|
|
}, {
|
|
active = (page == "policy"),
|
|
page_name = "policy",
|
|
hidden = not ntop.isEnterpriseL(),
|
|
label = i18n("network_configuration.network_policy")
|
|
}})
|
|
|
|
local context = {
|
|
ifid = interface.getId(),
|
|
csrf = ntop.getRandomCSRFValue()
|
|
}
|
|
|
|
if (page == nil or page == 'assets_inventory') then
|
|
local checks_config = checks.getConfigset()["config"]
|
|
local interface_config = checks_config["interface"]
|
|
local flow_config = checks_config["flow"]
|
|
local is_check_enabled = false
|
|
|
|
if (flow_config) then
|
|
-- Interface alerts
|
|
if (flow_config["unexpected_dns"]) and (flow_config["unexpected_dns"]["all"]["enabled"]) or
|
|
(flow_config["unexpected_ntp"]) and (flow_config["unexpected_ntp"]["all"]["enabled"]) or
|
|
(flow_config["unexpected_smtp"]) and (flow_config["unexpected_smtp"]["all"]["enabled"]) or
|
|
(flow_config["unexpected_gateway"]) and (flow_config["unexpected_gateway"]["all"]["enabled"]) or
|
|
(flow_config["unexpected_dhcp"]) and (flow_config["unexpected_dhcp"]["all"]["enabled"]) then
|
|
is_check_enabled = true
|
|
end
|
|
end
|
|
|
|
context.is_check_enabled = is_check_enabled
|
|
local json_context = json.encode(context)
|
|
|
|
template_utils.render("pages/vue_page.template", {
|
|
vue_page_name = "PageNetworkConfiguration",
|
|
page_context = json_context
|
|
|
|
})
|
|
else
|
|
local checks_config = checks.getConfigset()["config"]
|
|
local interface_config = checks_config["interface"]
|
|
local flow_config = checks_config["flow"]
|
|
local is_check_enabled = false
|
|
|
|
if (flow_config) then
|
|
-- Interface alerts
|
|
if (flow_config["host_policy"]) and (flow_config["host_policy"]["all"]["enabled"]) then
|
|
is_check_enabled = true
|
|
end
|
|
end
|
|
|
|
context.is_check_enabled = is_check_enabled
|
|
local json_context = json.encode(context)
|
|
|
|
template_utils.render("pages/vue_page.template", {
|
|
vue_page_name = "PageNetworkPolicy",
|
|
page_context = json_context
|
|
})
|
|
end
|
|
|
|
dofile(dirs.installdir .. "/scripts/lua/inc/footer.lua")
|