Limit Incoming Traffic from IP

Hey All,

Hoping I can get some advice with something I am trying to do.
Okay so we have 200Mbps Incoming to one of our ports.
Am I able to Limit Per Incoming IP the maximum bandwidth they can route and prioritize it at the same time.

For Example, IP Address of 1.1.1.1 can have a maximum of 100Mbps during anytime, but this traffic is prioritized over any other traffic. So basically when its transferring it will always use up to 100Mbps.
Not familiar how to do with with Mikrotiks, so any advice would be great :slight_smile:

Thanks,

Ryan

ex: dst address 1.1.1.1 ? and need max speed 100mbps?
or srs addess 1.1.1.1?and need max speed 100mbps?

Source Address 1.1.1.1 needs to only be allowed 100Mbps maximum incoming.

hello
replace ether1 to your interface name

/ip firewall mangle add action=mark-connection new-connection-mark=my_connect passthrough=yes ;
/ip firewall mangle add action=mark-packet new-packet-mark=my_allpacket connection-mark=my_connect ;
/queue type add name=limit kind=pcq pcq-classifier=dst-address pcq-rate=100M;
/queue tree add name=speed parent=ether1 packet-mark=my_allpacket queue=limit priority=8;

Thanks :slight_smile: I will give it a shot