hi. i am looking for a way to limit traffic per IP. my network is the 192.168.1.0. 192.168.1.1 is the router (mikrotik 750) and i would like to limit individual IPs such as 192.168.1.50 to have 2Mbps down/1Mbps up. the IP 192.168.1.60 to have 1Mbps down/512kbps up.
is there an easy way (preferably via gui) to limit their bandwidth?
Hello,
There are several resources online that deal with this specifically.
http://wiki.mikrotik.com/wiki/Manual:Queue#Simple_Queues
now if your using Winbox go to queues, simple queues and hit the red + and name it then add the IP address that you wish to limit and then enter the desired speed for upload and download. thats it. I exported the commands as well.
/queue simple
add burst-limit=0/0 burst-threshold=0/0 burst-time=0s/0s direction=both
disabled=no interface=all limit-at=0/0 max-limit=1M/2M name=queue1
packet-marks=“” parent=none priority=8 queue=default-small/default-small
target-addresses=192.168.1.50/32 total-queue=default-small
add burst-limit=0/0 burst-threshold=0/0 burst-time=0s/0s direction=both
disabled=no interface=all limit-at=0/0 max-limit=512k/1M name=queue2
packet-marks=“” parent=none priority=8 queue=default-small/default-small
target-addresses=192.168.1.60/32 total-queue=default-small
Regards,
Josh