mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-05 19:15:03 +00:00
Fixes asn mode dashboard not correctly working
This commit is contained in:
parent
64abb12e52
commit
1f5231d7c7
4 changed files with 125 additions and 81 deletions
29
scripts/lua/rest/v2/get/interface/current_interface.lua
Normal file
29
scripts/lua/rest/v2/get/interface/current_interface.lua
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
--
|
||||
-- (C) 2013-24 - ntop.org
|
||||
--
|
||||
|
||||
local dirs = ntop.getDirs()
|
||||
|
||||
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
||||
|
||||
require "http_lint"
|
||||
local rest_utils = require("rest_utils")
|
||||
|
||||
--
|
||||
-- Read the IP address(es) for an interface
|
||||
-- Example: curl -u admin:admin -H "Content-Type: application/json" -d '{"ifid": "1"}' http://localhost:3000/lua/rest/v2/get/interface/address.lua
|
||||
--
|
||||
-- NOTE: in case of invalid login, no error is returned but redirected to login
|
||||
--
|
||||
|
||||
local rc = rest_utils.consts.success.ok
|
||||
local res = {}
|
||||
|
||||
local ifid = interface.getId()
|
||||
local if_name = interface.getName()
|
||||
local rsp = {
|
||||
name = if_name,
|
||||
id = ifid
|
||||
}
|
||||
|
||||
rest_utils.answer(rc, rsp)
|
||||
Loading…
Add table
Add a link
Reference in a new issue