I am using the following script to control individual devices in a coffee shop (free Wi-Fi). I have to exclude certain devices from being affected by this script. How do I go about doing this?
:local queueName "Client- $leaseActMAC";
:if ($leaseBound = "1") do={
/queue simple add name=$queueName target=($leaseActIP . "/32") parent="Internal" max-limit=1000k/1000k comment=[/ip dhcp-server lease get [find where active-mac-address=$leaseActMAC && active-address=$leaseActIP] host-name];
} else={
/queue simple remove $queueName
}