I need to increase the speed profile and queue after 00:00 hours:
I tried doing this:
/system schedule
name: start-increase
start time: 00:00:00
interval: 1d 00:00:00
on event: start-increase-script
/system script
name: start-increase-script
source:
/ppp profile set [find rate-limit=160k/160k] rate-limit=320k/320k
/ppp profile set [find rate-limit=350k/350k] rate-limit=600k/600k
/queue simple set [find max-limit=160000/160000] max-limit=320000/320000
/queue simple set [find max-limit=350000/350000] max-limit=600000/600000
/queue simple set [find limit-at=160000/160000] limit-at=320000/320000
/queue simple set [find limit-at=350000/350000] limit-at=600000/600000
and
/system schedule
name: start-decrease
start time: 08:00:00
interval: 1d 00:00:00
on event: start-decrease-script
/system script
name: start-decrease-script
source:
/ppp profile set [find rate-limit=320k/320k] rate-limit=160k/160k
/ppp profile set [find rate-limit=600k/600k] rate-limit=350k/350k
/queue simple set [find limit-at=320000/320000] limit-at=160000/160000
/queue simple set [find limit-at=600000/600000] limit-at=350000/350000
/queue simple set [find max-limit=320000/320000] max-limit=160000/160000
/queue simple set [find max-limit=600000/600000] max-limit=350000/350000
but
Sometimes it works and sometimes does not work.
Even pressing “run script” is the same.
Ex:
run script start-decrease-script:
queue simple at-limit 320000 and max-limit 600000
all this crazy queues.
the profile works well.
what’s wrong?
ty.
zuza