hi, i had this script working fine on 3.22 that i use to change simple queues speed:
:local traf;
/queue simple
:for i from=1 to=254 do={
:local ip “172.24.25.$i/32”
:if ([/queue simple find target-addresses=($ip)] != “”) do={
:set traf [get [find target-addresses=($ip)] total-bytes]
:if ($traf < 1048576000) do={
set [find target-addresses=($ip)] max-limit= 56000/192000 limit-at=56000/192000 burst-limit=56000/192000 burst-threshold=56000/192000 burst-time=1m/1m
}
}
}
after upgrading my server to 4.5 it’s working fine till arriving to 172.24.25.70 approximately and stop working eventhough the script still existing in Jobs..
any idea how to solve this problem..
thanks