Community discussions

MikroTik App
 
palmczak
Frequent Visitor
Frequent Visitor
Topic Author
Posts: 78
Joined: Sat May 29, 2004 7:53 pm

Script to add Simple Queues does not work

Sat Oct 08, 2005 3:52 am

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
 
cmsMark
just joined
Posts: 3
Joined: Fri Jul 23, 2004 9:53 pm
Location: Michigan
Contact:

Script to add Simple Queues does not work

Tue Oct 11, 2005 10:30 pm

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}
 
palmczak
Frequent Visitor
Frequent Visitor
Topic Author
Posts: 78
Joined: Sat May 29, 2004 7:53 pm

Wed Oct 12, 2005 2:24 am

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