Script Otomatis Custom Queue Tree Dan Mangle Hotspot Mikrotik

Sebelumnya aku sudah sharing cara custom hotspot di simple queue nah kini giliran custom hotspot di queue tree :D

1.Syarat Rate Limit (rx/tx) dikosongin
2.Jika memakai user manager tinggal masukin nama profile hotspot ke dalam Group name pada usermanager, jangan lupa Rate limit di kosongin
3. Sesuaikan nama parent, di tumpuan aku memakai "7.ALL HTSPOT"
Saat user login Script ini akan otomatis menambahkan input gres pada queue tree dan mangle, dan akan menghapus kembali dikala user logout. kekurangan script ini aku menciptakan upload dan download dalam satu paket, jikalau mau terpisah silahkan dimodifikasi sesuai kebutuhan kebutuhan :)





# SCRIPT ON LOGIN
:local datetime [/system clock get date]; :local timedate [/system clock get time]; [/ip firewall mangle add action=mark-packet chain=prerouting dst-address="$address" new-packet-mark=("paket-"."$address") passthrough=no comment=("paket-"."$address")]; [/ip firewall mangle add action=mark-packet chain=forward dst-address="$address" new-packet-mark=("paket-"."$address") passthrough=no comment=("paket-"."$address")]; [/queue tree add max-limit=2M name=("$user"." -> "."$address") comment=("Login at: [ $timedate - $datetime ] From: [ $interface ] Mac: [ ".$"mac-address"." ]") packet-mark=("paket-"."$address") queue="HS-Down" parent="7.ALL HOTSPOT"]; :log warning ("--> [ $user ] Login at: [ $timedate - $datetime ] From: [ $interface ] Mac: [ ".$"mac-address"." ]") 

# SCRIPT ON LOGOUT
/queue tree remove [find packet-mark=("paket-"."$address")] ; /ip firewall mangle remove [find where comment=("paket-"."$address")] :log warning ("--> [ $user ] Logout at: [ $timedate - $datetime ] From: [ $interface ] Mac: [ ".$"mac-address"." ]") 

Sumber http://www.o-om.com


EmoticonEmoticon