blob: 3c56c83105bb7e4bce0dcc065377e8ea9fa931cf (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#
# RouterOS script: accesslist-duplicates%TEMPL%
# Copyright (c) 2018 Christian Hesse <mail@eworm.de>
#
# print duplicate antries in wireless access list
#
# !! This is just a template! Replace '%PATH%' with 'caps-man'
# !! or 'interface wireless'!
:local seen [ :toarray "" ];
:local shown [ :toarray "" ];
:foreach acclist in=[ / %PATH% access-list find where mac-address!="00:00:00:00:00:00" ] do={
:local mac [ / %PATH% access-list get $acclist mac-address ];
:foreach "seen-mac" in=$seen do={
:if ($"seen-mac" = $mac) do={
:local skip 0;
:foreach "shown-mac" in=$shown do={
:if ($"shown-mac" = $mac) do={ :set skip 1; }
}
:if ($skip = 0) do={
/ %PATH% access-list print where mac-address=$mac;
:set $shown ( $shown , $mac );
}
}
}
:set $seen ( $seen , $mac );
}
|