diff options
author | Christian Hesse <mail@eworm.de> | 2023-08-09 18:56:29 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2023-08-15 11:26:18 +0200 |
commit | 2c3e077b8ec984f501156f757c72a57703f846b4 (patch) | |
tree | 9cb609e7515b68256a37a6efe06b8373ca6eae8f /accesslist-duplicates.wifiwave2.rsc | |
parent | c37739c2f6b050c965e0fa734309e1ecbed90add (diff) | |
parent | 92aca1aac05ba943fa41c9c6640265991a906e30 (diff) |
Merge branch 'wifiwave2' into next
Diffstat (limited to 'accesslist-duplicates.wifiwave2.rsc')
-rw-r--r-- | accesslist-duplicates.wifiwave2.rsc | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/accesslist-duplicates.wifiwave2.rsc b/accesslist-duplicates.wifiwave2.rsc new file mode 100644 index 0000000..7c0ecf4 --- /dev/null +++ b/accesslist-duplicates.wifiwave2.rsc @@ -0,0 +1,42 @@ +#!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={ + :if ($SeenMac = $Mac) do={ + :local Skip 0; + :foreach ShownMac in=$Shown do={ + :if ($ShownMac = $Mac) do={ :set Skip 1; } + } + :if ($Skip = 0) do={ + /interface/wifiwave2/access-list/print where mac-address=$Mac; + :set Shown ($Shown, $Mac); + + :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; + } + } + } + } + :set Seen ($Seen, $Mac); +} |