Hello, I was using this script for disconnect unauthorized hotspot user after 30min connection
:foreach i in ( [ /interface wireless registration-table find where uptime > 1800 ] ) do={
:local detail [ /interface wireless registration-table get $i comment ]
:local mac [ /interface wireless registration-table get $i mac-address ]
:local interface [ /interface wireless registration-table get $i interface ]
:if ( $detail = "" ) do={
[ /interface wireless access-list add mac-address=$mac interface=$interface authentication=no forwarding=no ]
}
}
but now I use Virtual AP, I notice that nothing happen when scheduler executes it…someone knows why ?