Mangle Game Online
Untuk pembuatan mangle game, karena cukup banyak game-game yang akan di-mangle, akan lebih mudah jika dibuat mark-connection semua game terlebih dahulu dengan marking yang sama.
/ip firewall mangle
chain = forward
src address = 192.168.1.0/24 (sesuaikan dengan jaringan anda)
protocol = tcp
dst port = 36567,8001 (sesuaikan dengan port game yang telah diketahui)
action = mark connection
new connection mark = koneksi-game
passthrough = yes
Setelah langkah mark-connection selesai, barulah dibuat mark-packet
berdasarkan mark-connection=koneksi-game yang sebelumnya telah dibuatchain = forward
src address = 192.168.1.0/24 (sesuaikan dengan jaringan anda)
protocol = tcp
dst port = 36567,8001 (sesuaikan dengan port game yang telah diketahui)
action = mark connection
new connection mark = koneksi-game
passthrough = yes
/ip firewall mangle
chain = forward
connection mark = koneksi-game
action = mark-packet
new packet mark = paket-game
passthrough = no
Mangle Selain Game Onlinechain = forward
connection mark = koneksi-game
action = mark-packet
new packet mark = paket-game
passthrough = no
Pada langkah sebelumnya telah dibuat mangle untuk game. Selanjutnya tinggal dibuat mangle untuk traffic selain game online. Di dalam nya bisa terdapat traffic browsing,chating,dsb.
/ip firewall mangle
chain = forward
src address = 192.168.1.0/24
connection mark = no-mark
action = mark connection
new connection mark = koneksi-browsing
passthrough = yes
sama dengan langkah marking pada traffic game, buat mark-packet setelah langkah mark-connection selesai.chain = forward
src address = 192.168.1.0/24
connection mark = no-mark
action = mark connection
new connection mark = koneksi-browsing
passthrough = yes
/ip firewall mangle
chain = forward
connection mark = koneksi-browsing
action = mark packet
new packet mark = paket browsing
passthrough = no
Hasil akhir dari konfigurasi mangle seperti berikutchain = forward
connection mark = koneksi-browsing
action = mark packet
new packet mark = paket browsing
passthrough = no
Manajemen bandwidth
Pada artikel ini akan digunakan Queue tree untuk melakukan manajemen bandwidth berdasarkan mangle mark-packet yang sudah dibuat sebelumnya. Sebagai asumsi, bandwidth total yang dimiliki dedicated 1Mbps
Langkah pertama, definisikan terlebih dahulu total bandwidth yang ada, baik untuk upload maupun download.
/queues queue tree
add new queue
name = total-upload
parent = ether1
queue type = default
priority = 8
max limit = 1M (sesuaikan dengan kondisi anda)
add new queue
name = total-upload
parent = ether1
queue type = default
priority = 8
max limit = 1M (sesuaikan dengan kondisi anda)
/queues queue tree
add new queue
name = total-download
parent = ether2
queue type = default
priority = 8
max limit = 1M (sesuaikan dengan kondisi anda)
Selanjutnya, buat queue untuk traffic browsing dan game berdasarkan
mark-packet yang sudah dibuat sebelumnya. Pada contoh ini menggunakan
model HTB dengan bandwidth minimal (limit-at)=512k dan max-limit=1Mbps.add new queue
name = total-download
parent = ether2
queue type = default
priority = 8
max limit = 1M (sesuaikan dengan kondisi anda)
/queues queue tree
add new queue
name = browsing-download
parent = total-download
packet marks = paket-browsing
queue type = default
priority = 8
limit at = 512k
max limit = 1M (sesuaikan dengan kondisi anda)
add new queue
name = browsing-download
parent = total-download
packet marks = paket-browsing
queue type = default
priority = 8
limit at = 512k
max limit = 1M (sesuaikan dengan kondisi anda)
/queues queue tree
add new queue
name = game-download
parent = total-download
packet marks = paket-game
queue type = default
priority = 8
limit at = 512k
max limit = 1M (sesuaikan dengan kondisi anda)
Lakukan juga untuk traffic browsing upload dan game uploadadd new queue
name = game-download
parent = total-download
packet marks = paket-game
queue type = default
priority = 8
limit at = 512k
max limit = 1M (sesuaikan dengan kondisi anda)
/queues queue tree
add new queue
name = browsing-upload
parent = total-upload
packet marks = paket-browsing
queue type = default
priority = 8
limit at = 512k
max limit = 1M (sesuaikan dengan kondisi anda)
add new queue
name = browsing-upload
parent = total-upload
packet marks = paket-browsing
queue type = default
priority = 8
limit at = 512k
max limit = 1M (sesuaikan dengan kondisi anda)
/queues queue tree
add new queue
name = game-upload
parent = total-upload
packet marks = paket-game
queue type = default
priority = 8
limit at = 512k
max limit = 1M (sesuaikan dengan kondisi anda)
Testadd new queue
name = game-upload
parent = total-upload
packet marks = paket-game
queue type = default
priority = 8
limit at = 512k
max limit = 1M (sesuaikan dengan kondisi anda)
Dengan menggunakan model HTB, antar traffic browsing dengan game sudah memiliki bandwidth garansi masing-masing, sehingga jika keduanya berjalan bersamaan tidak akan saling mengganggu.
mau tanya boss,,,,setingan queue sy udh sama dgn yg diatas.tp kok yg di total download perent ether2 kok gk jalan avg.rate ny
ReplyDelete