2023-08-07 20:13:34 +00:00
|
|
|
#!rsc by RouterOS
|
|
|
|
# RouterOS script: accesslist-duplicates.wifiwave2
|
|
|
|
# Copyright (c) 2018-2023 Christian Hesse <mail@eworm.de>
|
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
|
|
|
|
#
|
|
|
|
# print duplicate antries in wireless access list
|
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/accesslist-duplicates.md
|
|
|
|
#
|
|
|
|
# !! Do not edit this file, it is generated from template!
|
|
|
|
|
|
|
|
:local 0 "accesslist-duplicates.wifiwave2";
|
|
|
|
:global GlobalFunctionsReady;
|
|
|
|
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
|
|
|
|
|
|
|
:global Read;
|
|
|
|
|
|
|
|
:local Seen ({});
|
|
|
|
:local Shown ({});
|
|
|
|
|
|
|
|
:foreach AccList in=[ /interface/wifiwave2/access-list/find where mac-address!="00:00:00:00:00:00" ] do={
|
|
|
|
:local Mac [ /interface/wifiwave2/access-list/get $AccList mac-address ];
|
|
|
|
:foreach SeenMac in=$Seen do={
|
2023-10-16 19:40:56 +00:00
|
|
|
:if ($SeenMac = $Mac && $Shown->$Mac != 1) do={
|
|
|
|
/interface/wifiwave2/access-list/print where mac-address=$Mac;
|
2023-08-07 20:13:34 +00:00
|
|
|
|
2023-10-16 19:40:56 +00:00
|
|
|
:put "\nNumeric id to remove, any key to skip!";
|
|
|
|
:local Remove [ :tonum [ $Read ] ];
|
|
|
|
:if ([ :typeof $Remove ] = "num") do={
|
|
|
|
:put ("Removing numeric id " . $Remove . "...\n");
|
|
|
|
/interface/wifiwave2/access-list/remove $Remove;
|
2023-08-07 20:13:34 +00:00
|
|
|
}
|
2023-10-16 19:40:56 +00:00
|
|
|
:set ($Shown->$Mac) 1;
|
2023-08-07 20:13:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
:set Seen ($Seen, $Mac);
|
|
|
|
}
|