How to bandwidth limit with simple queue on Mikrotik Router OS
we have network topology like below picture and we want to limited download and upload for private network (download – 512 kbps and upload – 128 kbps).
Add a simple queue rule, which will limit the download traffic to 512 kbps and upload to 128 kbps for the network 10.1.1.0/24, served by the interface Ether2:
/queue simple add name=private target-addresses=10.1.1.0/24 max-limit=128K/512K interface=ether2
if you want to make exception for some IPs then put that simple queue on top of the rule because mikrotik apply rule from top to down.
/queue simple add name=server target-addresses=10.1.1.1/32 max-limit=0/0 interface=ether2
Note I tested this configuration it could not work for me but when i assign the limit on single IP its works for me .