-1

I'm using mikrotik RouterOS 6.25 to manage internet speed of staff. But I have a FTP server which server has a dedicated IP (example: 43.245.119.XXX)

Now i'm going give 100M speed to our staff only for this server/ip.

I've tried by following this guide: http://wiki.mikrotik.com/wiki/PCQ_and_Hotspots,_and_exempting_upstream_resources_from_rate_limit

But i can't get any good result.

Aminul Islam
  • 75
  • 3
  • 8

1 Answers1

0

Just mark the packets in the with ip of 43.245.119.XXX
like this:
download:

ip firewall mange add action=mark-packet chain=prerouting \
new-packet-mark=ftp protocol=tcp src-address=43.245.119.0/24

upload:

ip firewall mange add action=mark-packet chain=prerouting \
new-packet-mark=ftp protocol=tcp dst-address=43.245.119.0/24

and then for the users' queues in the Advanced tab change the Packet mark to "no-mark"

Arash
  • 400
  • 4
  • 11