My company’s using user profile on hotspot to limit bandwidth. But, is there anyway to limit bandwidth without using hotspot ? Because, there are some devices that don’t auto pop-up login page of hotspot.
Thank you.
My company’s using user profile on hotspot to limit bandwidth. But, is there anyway to limit bandwidth without using hotspot ? Because, there are some devices that don’t auto pop-up login page of hotspot.
Thank you.
Certainly. It’s the ‘target’ value in the simple queue definition:
/queue type
add kind=pcq name=up-5M pcq-classifier=src-address pcq-rate=5M
add kind=pcq name=down-5M pcq-classifier=dst-address pcq-rate=5M
/queue simple
add max-limit=50M/50M name="50M total, 5M per client" queue=up-5M/down-5M target=192.168.88.0/24
This creates a simple queue which limits the total traffic to 50M down and up and each client to 5M down and up.
-Chris
Thanks for reply Chris,
it works perfectly like a charm. Thank you so much !!!