quee mikrotik

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

//5 mbps

/queue simple
add max-limit=5M/5M name=$user parent=PPPoE target=$"remote-address"
add max-limit=1M/1M name=($user."-ML") packet-marks=ML parent=$user priority=1/1
target=""
add max-limit=3M/3M name=($user."-Web") packet-marks=HTTPS parent=$user target=""
add max-limit=5M/5M name=($user."-Speedtest") packet-marks=speedtest parent=$user
target=""
add max-limit=1M/1M name=($user."-Dota2") packet-marks=DOTA2 target=""

// 10 mpbs

/queue simple
add max-limit=10M/10M name=$user parent=PPPoE target=$"remote-address"
add max-limit=1M/1M name=($user."-ML") packet-marks=ML parent=$user priority=1/1
target=""
add max-limit=8M/8M name=($user."-Web") packet-marks=HTTPS parent=$user target=""
add max-limit=10M/10M name=($user."-Speedtest") packet-marks=speedtest parent=$user
target=""
add max-limit=1M/1M name=($user."-Dota2") packet-marks=DOTA2 target=""

// 3mbps

/queue simple
add max-limit=3M/3M name=$user parent=PPPoE target=$"remote-address"
add max-limit=1M/1M name=($user."-ML") packet-marks=ML parent=$user priority=1/1
target=""
add max-limit=2M/2M name=($user."-Web") packet-marks=HTTPS parent=$user target=""
add max-limit=3M/3M name=($user."-Speedtest") packet-marks=speedtest parent=$user
target=""
add max-limit=1M/1M name=($user."-Dota2") packet-marks=DOTA2 target=""

/queue simple remove [find name~$user]

You might also like