hello, ich have 1000 Hotspot User on my router and i want to remove the total bytes download & upload limet for all users.
can someone help me with e script? otherwise i have to touch every single user account.
Thank you
hello, ich have 1000 Hotspot User on my router and i want to remove the total bytes download & upload limet for all users.
can someone help me with e script? otherwise i have to touch every single user account.
Thank you
if you wan reset all counters of all users use
/ip hotspot user reset-counters [find]
if you want cancel limit bytes in/out/total of all users use
/ip hotspot user set [find] limit-bytes-in=0 limit-bytes-out=0 limit-bytes-total=0;
Thx,
reset i know, but i want remove the counter from each User profile.
but i have 1000 profiles, does someone has a solution?
thx
if you mean disable rate limit of user profiles, use this script:
:foreach UPro in=[/ip hotspot user profile find] do={
/ip hotspot user profile set $UPro rate-limit="";
}
Or just
/ip hotspot user profile set [find] rate-limit=""