Posts

Showing posts from October, 2013

QOS with Mikrotik (HaK)

Image
QOS With Mikrotik Following are few scenarios for some examples : I will add more soon, 1# Allowing specific extension Low Priority over other traffic In this example we are marking traffic via mangle rules. . iso  extension is marked as low priority traffic , and all other traffic is marked as hi priority traffic. For example We have  256kb  internet bandwidth in total. and we want that when users are downloading any . iso  file, it gets low priority over other traffic i.e browsing etc. Use the following. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 /ip firewall mangle add action=mark-connection chain=postrouting comment="Mark Conn for .iso Ext" content=iso disabled=no new-connection-mark=iso-conn passthrough=yes add action=mark-packet chain=postrouting comment="Mark Pkts for iso-conn Ext" connection-mark=iso-conn disabled=no new-packet-mark=lo-prio-traffic-pkts passthrough=no add action=mark-connection chain=po