EVOLUTION-MANAGER
Edit File: table_port_data.lua
-- -- (C) 2013-24 - ntop.org -- dirs = ntop.getDirs() package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path -- Imports require "lua_utils" local rest_utils = require "rest_utils" -- Local variables local ifid = _GET["ifid"] or interface.getId() local host_ip = _GET["host"] local host_vlan = _GET["vlan"] or 0 local requested_proto = _GET["protocol"] local mode = _GET["mode"] interface.select(tostring(ifid)) local host = interface.getHostInfo(host_ip, host_vlan) or {} local rsp = {} local ports = {} -- ################################## if host then if mode == "remote" then ports = host.used_ports.remote_contacted_ports else ports = host.used_ports.local_server_ports end end -- ################################## for k, l7_proto in pairs(ports) do local res = split(k, ":") local protocol = res[1] local port = tonumber(res[2]) if port and protocol then if(protocol == requested_proto) then rsp[#rsp + 1] = { port_info = { l7_proto = l7_proto, port = port } } end end end -- ################################## rest_utils.answer(rest_utils.consts.success.ok, rsp)