Mikrotik Tools

MIKROTIK QUEUE MANAGER

Bandwidth Management & RSC Script Generator

ISP Settings
Service Categories
NameTargetMax Limit (U/D)Limit At (U/D)PriorityActions
1. Bypass Local Traffic
192.168.0.0/16,10.0.0.0/8,172.16.0.0/121000M/1000M0/08/8
2. Ping (icmp) + Latency
192.168.0.0/16,10.0.0.0/8,172.16.0.0/125M/5M1M/1M1/1
3. Dns (53) + Tracert
192.168.0.0/16,10.0.0.0/8,172.16.0.0/125M/5M1M/1M1/1
4. Fastest Speedtest
192.168.0.0/16,10.0.0.0/8,172.16.0.0/12100M/100M100M/100M2/2
5. GLOBAL CONNECTION
192.168.0.0/16,10.0.0.0/8,172.16.0.0/12100M/100M0/08/8
Fastest Priority
192.168.0.0/16,10.0.0.0/8,172.16.0.0/12100M/100M25M/25M4/4
Heavy Traffic
192.168.0.0/16,10.0.0.0/8,172.16.0.0/12100M/100M0/08/8
mikrotik_script.rsc
# MikroTik Script Generated for Simple Queue
# Date: 1/26/2026, 1:28:14 AM
# ISP Bandwidth: D:100M / U:50M

/ip firewall raw

/ip firewall mangle
add action=jump chain=prerouting jump-target=Mualat-Pre comment="Mangle System"
add action=mark-packet chain=Mualat-Pre new-packet-mark="local_bypass_mark" passthrough=no comment="1. Bypass Local Traffic"
add action=mark-packet chain=Mualat-Pre new-packet-mark="ping_mark" passthrough=no comment="2. Ping (icmp) + Latency"
add action=mark-packet chain=Mualat-Pre new-packet-mark="dns_mark" passthrough=no comment="3. Dns (53) + Tracert"
add action=mark-packet chain=Mualat-Pre new-packet-mark="speedtest_mark" passthrough=no comment="4. Fastest Speedtest"
add action=mark-packet chain=Mualat-Pre new-packet-mark="fastest_mark" passthrough=no comment="Fastest Priority"
add action=mark-packet chain=Mualat-Pre new-packet-mark="heavy_traffic_mark" passthrough=no comment="Heavy Traffic"

/queue simple
add name="1. Bypass Local Traffic" target="192.168.0.0/16,10.0.0.0/8,172.16.0.0/12" max-limit=1000M/1000M limit-at=0/0 priority=8/8 packet-marks="local_bypass_mark"
add name="2. Ping (icmp) + Latency" target="192.168.0.0/16,10.0.0.0/8,172.16.0.0/12" max-limit=5M/5M limit-at=1M/1M priority=1/1 packet-marks="ping_mark"
add name="3. Dns (53) + Tracert" target="192.168.0.0/16,10.0.0.0/8,172.16.0.0/12" max-limit=5M/5M limit-at=1M/1M priority=1/1 packet-marks="dns_mark"
add name="4. Fastest Speedtest" target="192.168.0.0/16,10.0.0.0/8,172.16.0.0/12" max-limit=100M/100M limit-at=100M/100M priority=2/2 packet-marks="speedtest_mark"
add name="5. GLOBAL CONNECTION" target="192.168.0.0/16,10.0.0.0/8,172.16.0.0/12" max-limit=100M/100M limit-at=0/0 priority=8/8 packet-marks=""
add name="Fastest Priority" target="192.168.0.0/16,10.0.0.0/8,172.16.0.0/12" max-limit=100M/100M limit-at=25M/25M priority=4/4 parent="5. GLOBAL CONNECTION" packet-marks="fastest_mark"
add name="Heavy Traffic" target="192.168.0.0/16,10.0.0.0/8,172.16.0.0/12" max-limit=100M/100M limit-at=0/0 priority=8/8 parent="5. GLOBAL CONNECTION" packet-marks="heavy_traffic_mark"