Mikrotik queue script

:confused: Hi I am trying following script in Mikrotik V5.16. After put the command its doesn’t show any err but no effect in Queue. Can any one tell me where is the problem?


/queue simple
set [find max-limit=“256000/320000”] max-limit=256000/256000 burst-limit=300000/320000 burst-time=8/8

RouterOS changes the values to use the “k”

Flags: X - disabled, I - invalid, D - dynamic
0 name=“queue1” target-addresses=10.10.10.1/32 interface=all parent=none packet-marks=“”
direction=both priority=8 queue=default-small/default-small limit-at=0/0 max-limit=256k/320k
burst-limit=300k/320k burst-threshold=0/0 burst-time=8s/8s total-queue=default-small set

Modify your code as follows and it should work:
set [find max-limit=“256k/320k”] max-limit=256000/256000 burst-limit=300000/320000 burst-time=8/8

Its work Thank you very much :smiley:

You’re Welcome :smiley: