can anyone tell me what is wrong with this script??? I does nothing does not even make an error in the LOG…
V 2.8.28
:for i from=26 to=100 do={/queue simple add target-address=(192.168.168. . $i . “/32”) max-limit={384000/768000}burst-limit={768000/1024000}burst-threshold={768000/768000}burst-time={15}
Thanks,
Joe Palmer
The script I use I found on the forums and doesn’t have as many brackets as the one you posted. Try this one and see if it works.
:for i from=26 to=100 do={/queue simple add target-address=(192.168.168. . $i . “/32”) max-limit=384000/768000 burst-limit=768000/1024000 burst-threshold=768000/768000 burst-time=15}
This worked!
It seems that if you specify tx/rx speeds you have to specify tx/rx TIMES.
:for i from=26 to=100 do={/queue simple add target-address=(192.168.168. . $i . “/32”) max-limit=384000/768000 burst-limit=768000/1024000 burst-threshold=768000/768000 burst-time=15/15}
Thanks cmsMark for your Input