04.03.2026, 10:20
You should use new Visu 
What task exactly do you have? Do you need IP list to be configurable or do you simply want to display the status for each IP?
If the list is fixed you can make a resident script that pings each address and updates the status. You can add as many IP/group address pairs to the ips table.

What task exactly do you have? Do you need IP list to be configurable or do you simply want to display the status for each IP?
If the list is fixed you can make a resident script that pings each address and updates the status. You can add as many IP/group address pairs to the ips table.
Code:
ips = {
['192.168.0.1'] = '0/0/1',
['192.168.0.2'] = '0/0/2',
}
function ping(ip)
local res = os.execute('ping -c 2 -W 5 ' .. ip)
return res == 0
end
for ip, addr in pairs(ips) do
res = ping(ip)
grp.checkwrite(addr, res)
os.sleep(1)
end
