EVOLUTION-MANAGER
Edit File: radius_acct_cleanup.lua
-- -- (C) 2019-24 - ntop.org -- local dirs = ntop.getDirs() package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path package.path = dirs.installdir .. "/scripts/lua/modules/pools/?.lua;" .. package.path local radius_handler = require "radius_handler" local host_pools = require "host_pools" -- ################################################################# if radius_handler.isAccountingEnabled() then -- TODO: currently accounting is supported only for an interface -- add the support to multiple interfaces interface.select(tostring(interface.getFirstInterfaceId())) local keys = radius_handler.getAllKeys() local s = host_pools:create() for _, member in pairs(keys) do local mac_info = interface.getMacInfo(member) if not mac_info then -- In case the MAC is not connected, call the stop -- and move the host into the default pool s:bind_member(member, host_pools.DEFAULT_POOL_ID) radius_handler.accountingStop(member) end end interface.select("-1") -- System Interface end