Page 1 of 1

Script to add Simple Queues does not work

Posted: Sat Oct 08, 2005 3:52 am
by palmczak
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

Script to add Simple Queues does not work

Posted: Tue Oct 11, 2005 10:30 pm
by cmsMark
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}

Posted: Wed Oct 12, 2005 2:24 am
by palmczak
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