Setting Mikrotik

Setting Mikrotik Router Gateway
Setting MikrotikBandwidth Management Warnet
Setting Mikrotik Bandwidth Management Game Online
Setting Mikrotik Pisah Bandwidth Klien Warnet dan Game Online
Setting Mikrotik Limit Download / IDM / Video Streaming
Setting Mikrotik Firewall (proteksi, blokir situs, blokir akses internet)
Setting Mikrotik Wireless
Setting Mikrotik Hotspot
Setting Mikrotik Billing / Voucher Hotspot
Setting Mikrotik Login Hotspot
Setting Mikrotik VPN
Setting Mikrotik Remote (IP Publik statis / dinamis)
Setting Mikrotik + CCTV (Streaming CCTV)
Setting Mikrotik + Web Server / FTP Server (Personal Hosting)
Setting Mikrotik + Video Streaming
Setting Mikrotik + Radio Online
Setting Mikrotik + Client Monitoring via Netflow
Setting Mikrotik + Proxy Server (cache HIT youtube, patch game online, facebook)
Setting Mikrotik Load Balance ( 2 ISP atau lebih)
Setting Mikrotik Pisah Gateway Klien LAN Kabel dan Hotspot
Setting Mikrotik sesuai keinginan Anda

Point Blank Mikrotik

/ip firewall mangle add chain=game action=mark-connection \
new-connection-mark=Game passthrough=yes protocol=tcp \
dst-address=203.89.146.0/23 dst-port=39190 comment=”Point Blank”
/ip firewall \
mangle add chain=game action=mark-connection new-connection-mark=Game \
passthrough=yes protocol=udp dst-address=203.89.146.0/23 \
dst-port=40000-40010
/ip firewall mangle add chain=game action=mark-packet \
new-packet-mark=Game_pkt passthrough=no connection-mark=Game
/ip firewall \
mangle add chain=prerouting action=jump jump-target=game
/queue type add \
name=”Game” kind=pcq pcq-rate=0 pcq-limit=50 \
pcq-classifier=src-address,dst-address,src-port,dst-port \
pcq-total-limit=2000
/queue tree add name=”Game” parent=global-total \
packet-mark=Game_pkt limit-at=0 queue=Game priority=1 max-limit=0 burst-limit=0 \
burst-threshold=0 burst-time=0s

Mikrotik Poker

/ip firewall mangle add chain=prerouting protocol=tcp dst-port=9339 \
connection-state=new action=mark-connection new-connection-mark=poker \
passthrough=yes comment="poker" disabled=no
/ip firewall mangle add \
chain=prerouting connection-mark=poker action=mark-packet new-packet-mark=poker1 \
passthrough=no comment="" disabled=no
/queue tree add name="poker mania" \
parent=global-out packet-mark=poker1 limit-at=0 queue=default priority=1 \
max-limit=0 burst-limit=0 burst-threshold=0 burst-time=0s disabled=no

Konfigurasi Mikrotik PCQ



ip firewall nat
add action=masquerade src-address-list=localNet chain=srcnat comment="NAT-LOCAL" disabled=no \
out-interface=Public
add action=masquerade src-address-list=ProxyNet chain=srcnat comment="NAT-PROXY" disabled=no \
out-interface=Public
add action=dst-nat chain=dstnat comment="TRANSPARENT PROXY" disabled=no \
dst-address-list=!ProxyNET dst-port=80,8080,3128 in-interface=Local \
protocol=tcp to-addresses=192.168.3.2 to-ports=3128
(atau yang saya punya redirect proxy seperti ini :)
add action=dst-nat chain=dstnat comment="TRANSPARENT PROXY" disabled=no \
src-address=192.168.2.2-192.168.2.17 dst-port=80,8080,3128 in-interface=Local \
protocol=tcp to-addresses=192.168.3.2 to-ports=3128
add action=dst-nat chain=dstnat comment="TRANSPARENT DNS" disabled=no \
dst-port=53 in-interface=Local protocol=udp to-ports=53
add action=dst-nat chain=dstnat comment="" disabled=no dst-port=53 \
in-interface=Local protocol=tcp to-ports=53
add action=dst-nat chain=dstnat comment="" disabled=no dst-port=53 \
in-interface=Proxy protocol=udp to-ports=53
add action=dst-nat chain=dstnat comment="" disabled=no dst-port=53 \
in-interface=Proxy protocol=tcp to-ports=53
Penjelasan :
- Transparent DNS agar client tidak bisa menggunakan NS selain yang terpasang di mikrotik
  (bisa sobat gunakan atau tidak, tergantung keinginan)
- Mengarahkan request dari client tujuan port 80,8080,3128 ke squid external
  saya beri contoh 2 untuk redirect terserah sobat mo pilih yang mana pastinya keduanya jalan
  jika ada interface lain misalkan hotspot sobat tingal tambahkan tanda ! pada src.address atau   dst.address list
Untuk manglenya biar saya jelaskan satu-persatu biar tidak bingung :
/ip firewall mangle
add action=mark-packet chain=forward comment="PROXY-HIT-DSCP 12" disabled=no \
dscp=12 new-packet-mark=proxy-hit passthrough=no

Menandai paket proxy-hit dari external proxy yang nantinya pada rule queue diberikan kebebasan tanpa proses limitasi
add action=change-dscp chain=postrouting comment=CRITICAL disabled=no \
new-dscp=1 protocol=icmp
add action=change-dscp chain=postrouting comment="" disabled=no dst-port=53 \
new-dscp=1 protocol=udp
add action=change-dscp chain=postrouting comment="" disabled=no dst-port=53 \
new-dscp=1 protocol=tcp
add action=mark-connection chain=postrouting comment="" disabled=no dscp=1 \
new-connection-mark=critical_conn passthrough=yes
add action=mark-packet chain=postrouting comment="" connection-mark=\
critical_conn disabled=no new-packet-mark=critical_pkt passthrough=no
Menandai paket ICMP dan DNS request untuk diberikan prioritas tertinggi
add action=mark-connection chain=prerouting comment=MARK-ALL-CONN disabled=no \
dst-address-list=!localNet in-interface=Local new-connection-mark=\
all.pre_conn passthrough=yes
add action=mark-connection chain=forward comment="" disabled=no \
new-connection-mark=all.post_conn out-interface=Local passthrough=yes \
src-address-list=!localNet
add action=mark-packet chain=prerouting comment="" connection-mark=\
all.pre_conn disabled=no new-packet-mark=all.pre_pkt passthrough=yes
add action=mark-packet chain=forward comment="" connection-mark=all.post_conn \
disabled=no new-packet-mark=all.post_pkt passthrough=yes
Menandai SEMUA paket keluar masuk dari Local interface SELAIN ke Local Address
add action=mark-connection chain=prerouting comment=GAMES connection-mark=\
all.pre_conn disabled=no dst-port=9339,843 new-connection-mark=games_conn \
passthrough=yes protocol=tcp
add action=mark-connection chain=prerouting comment="" connection-mark=\
all.pre_conn disabled=no dst-port=40000-40010 new-connection-mark=\
games_conn passthrough=yes protocol=udp
add action=mark-packet chain=forward comment="" connection-mark=games_conn \
disabled=no new-packet-mark=games_pkt passthrough=no

Menandai Paket GAMES untuk diberikan prioritas KEDUA
add action=mark-connection chain=prerouting comment=HTTP-CLIENT \
connection-mark=all.pre_conn disabled=no new-connection-mark=\
browsing_conn packet-size=0-64 passthrough=yes protocol=tcp tcp-flags=ack
add action=mark-connection chain=prerouting comment="" connection-mark=\
all.pre_conn disabled=no dst-port=80,443 new-connection-mark=\
browsing_conn passthrough=yes protocol=tcp
add action=mark-packet chain=forward comment="" connection-bytes=0-131072 \
connection-mark=browsing_conn disabled=no new-packet-mark=browsing_pkt \
passthrough=no protocol=tcp
add action=mark-connection chain=prerouting comment=HTTP-PROXY disabled=no \
dst-address-list=!localNet dst-port=80,443 new-connection-mark=proxy_conn \
passthrough=yes protocol=tcp src-address-list=ProxyNET
add action=mark-packet chain=forward comment="" connection-mark=proxy_conn \
disabled=no new-packet-mark=proxy_pkt passthrough=no

Menandai paket untuk browsing TERMASUK http req dari external proxy dengan conn-byte=0-131072 serta paket-paket protocol tcp yang berukuran kecil (packet-size=0-64 tcp-flags=ack) untuk diberikan prioritas KETIGA
add action=mark-connection chain=prerouting comment=REALTIME connection-mark=\
all.pre_conn disabled=no dst-port=22,179,110,161,8291 \
new-connection-mark=realtime_conn passthrough=yes protocol=tcp
add action=mark-connection chain=prerouting comment="" connection-mark=\
all.pre_conn disabled=no dst-port=123 new-connection-mark=realtime_conn \
passthrough=yes protocol=udp
add action=mark-packet chain=forward comment="" connection-mark=realtime_conn \
disabled=no new-packet-mark=realtime_pkt passthrough=no

Menandai paket-paket REALTIME ACCESS untuk diberikan prioritas KEEMPAT
add action=mark-connection chain=prerouting comment=FILETRANSER \
connection-mark=all.pre_conn disabled=no dst-port=20,21,23 \
new-connection-mark=communication_conn passthrough=yes protocol=tcp
add action=mark-packet chain=forward comment="" connection-mark=\
communication_conn disabled=no new-packet-mark=communication_pkt \
passthrough=no
Menandai paket-paket FILETRANSFER untuk diberikan prioritas KELIMA
add action=mark-connection chain=prerouting comment=NORMAL connection-mark=\
all.pre_conn disabled=no dst-address-list=!ProxyNET new-connection-mark=\
normal_conn passthrough=yes
add action=mark-packet chain=forward comment="" connection-mark=normal_conn \
disabled=no new-packet-mark=normal_pkt passthrough=no
Menandai semua paket yang tersisa SELAIN tujuan Proxy untuk diberikan prioritas KEENAM
add action=mark-packet chain=forward comment=DOWNLOAD connection-bytes=\
131072-4294967295 connection-mark=all.post_conn disabled=no dst-address=\
192.168.2.2 new-packet-mark=client1 passthrough=no protocol=tcp
add action=mark-packet chain=forward comment="" connection-bytes=\
131072-4294967295 connection-mark=all.post_conn disabled=no dst-address=\
192.168.2.3 new-packet-mark=client2 passthrough=no protocol=tcp
………………..dst sampai jumlah client yang di perlukanterpenuhi
add action=mark-packet chain=forward comment=DOWNLOAD-NO-LIMIT connection-bytes=\
131072-4294967295 connection-mark=all.post_conn disabled=no dst-address=\
192.168.2.16 new-packet-mark=client16 passthrough=no protocol=tcp
add action=mark-packet chain=forward comment="" connection-bytes=\
131072-4294967295 connection-mark=all.post_conn disabled=no dst-address=\
192.168.2.17 new-packet-mark=client17 passthrough=no protocol=tcp

Menandai paket protocol tcp yang diteruskan ke client untuk memberikan batasan download pada masing-masing client dengan conn-byte=131072-4294967295
Setelah itu buat queue type nya
/queue type
add kind=pcq name=pcq_up pcq-classifier=src-address pcq-limit=200 pcq-rate=0 \
pcq-total-limit=8000
add kind=pcq name=pcq_down pcq-classifier=dst-address pcq-limit=200 pcq-rate=\
0 pcq-total-limit=8000
add kind=pfifo name=pfifo-critical pfifo-limit=10
add kind=pcq name=pcq_critical.up pcq-classifier=src-address,src-port \
pcq-limit=20 pcq-rate=0 pcq-total-limit=500
add kind=pcq name=pcq_critical.down pcq-classifier=dst-address,dst-port \
pcq-limit=20 pcq-rate=0 pcq-total-limit=500
di lanjut menambahkan queue tree nya…..
/queue tree
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 \
max-limit=0 name="A. PROXY HIT" packet-mark=proxy-hit parent=Local \
priority=1 queue=default
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 \
max-limit=0 name="B. CRITICAL" packet-mark=critical_pkt parent=Public \
priority=1 queue=pfifo-critical
Tanpa limit dengan prioritas pertama untuk proxy hit dan critical

add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 \
max-limit=0 name="C. INBOUND" packet-mark=all.post_pkt parent=global-out \
priority=8
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 \
max-limit=0 name="D. OUTBOUND" packet-mark=all.pre_pkt parent=Public \
priority=8
Membuat parent untuk inbound (traffic masuk ke client) dan outbound (traffic keluar dari public)
Untuk child INBOUND nya saya bagi menjadi beberapa prioritas seperti berikut :

add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 \
max-limit=0 name="A. GAMES" packet-mark=games_pkt parent="C. INBOUND" \
priority=2 queue=pcq_critical.down
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 \
max-limit=0 name="B. HTTP" packet-mark=browsing_pkt parent="C. INBOUND" \
priority=3 queue=pcq_down
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=64k \
max-limit=128k name="C. REALTIME" packet-mark=realtime_pkt parent=\
"C. INBOUND" priority=4 queue=pcq_critical.down
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=64k \
max-limit=128k name="D. FILETRANS" packet-mark=communication_pkt parent=\
"C. INBOUND" priority=5 queue=pcq_down
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=64k \
max-limit=128k name="E. NORMAL" packet-mark=normal_pkt parent=\
"C. INBOUND" priority=6 queue=pcq_down
selanjutnya parent untuk download per client nya :

add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 \
max-limit=1024k name="F. DOWN 1M" parent="C. INBOUND" priority=8
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 \
max-limit=0 name="G. DOWN 2M" parent="C. INBOUND" priority=8
membuat 2 parent untuk 1M dan 2M (atau tanpa limit)
Setelah itu buat child nya, untuk memberikan batasan download per clientnya

add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 \
max-limit=256k name=Client1 packet-mark=client1 parent=\
"F. DOWN 1M" priority=8 queue=pcq_down
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 \
max-limit=256k name=Client2 packet-mark=client2 parent=\
"F. DOWN 1M" priority=8 queue=pcq_down
…………………..dst sampai semua paket ke client yang di perlukan terpenuhi
Batasan download sebesar 1M untuk semua client dan maksimum 256k per client

add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 \
max-limit=0 name=Client16 packet-mark=client16 parent=\
"G. DOWN 2M" priority=8 queue=pcq_down
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 \
max-limit=0 name=Client17 packet-mark=client17 parent=\
"G. DOWN 2M" priority=8 queue=pcq_down
Tanpa batasan download untuk IP 192.168.2.16 dan 192.168.2.17
Kemudiam membuat limit untuk uploadnya

add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 \
max-limit=0 name="A. GAMES UP" packet-mark=games_pkt parent="D. OUTBOUND" \
priority=2 queue=pcq_critical.up
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=64k \
max-limit=256k name="B. HTTP UP" packet-mark=proxy_pkt parent=\
"D. OUTBOUND" priority=3 queue=pcq_up
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=32k \
max-limit=64k name="C. REALTIME UP" packet-mark=realtime_pkt parent=\
"D. OUTBOUND" priority=4 queue=pcq_critical.up
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=64k \
max-limit=128k name="D. FILETRANS UP" packet-mark=communication_pkt \
parent="D. OUTBOUND" priority=5 queue=pcq_up
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=64k \
max-limit=128k name="E. NORMAL UP" packet-mark=normal_pkt parent=\
"D. OUTBOUND" priority=6 queue=pcq_up



routing untuk game online, tambahkan rule mangle

/ip firewall mangle add action=mark-connection chain=prerouting 
comment="GAME ONLINE" dst-port="1818,2001,3010,4300,5105,5121,
5126,5171,5340-5352,6000-6001,6000-6152,7777" new-connection-mark="mark1" 
passthrough=yes protocol=tcp

/ip firewall mangle add action=mark-connection chain=prerouting 
disabled=no dst-port="7341-7350,7451,8085,9600,9601-9602,9300,9400,
9700,9376-9377,10001-10011,40000" new-connection-mark="mark1" 
passthrough=yes protocol=tcp

/ip firewall mangle add action=mark-connection chain=prerouting 
dst-port="10009,13008,16666,28012,11011-11041,10402,11031,12011,
12110,13413,15000-15002,15001,15002" new-connection-mark="mark1" 
passthrough=yes protocol=tcp

/ip firewall mangle add action=mark-connection chain=prerouting 
disabled=no dst-port="16402-16502,18901-18909,19000,19101,22100,
27780,29000,29200,39100,39110,39220,39190,49100" new-connection-mark="mark1" 
passthrough=yes protocol=tcp

/ip firewall mangle add action=mark-connection chain=prerouting 
dst-port=14009-14010 new-connection-mark="mark1" 
passthrough=yes protocol=tcp

/ip firewall mangle add action=mark-connection chain=prerouting 
dst-port="1293,1479,6100-6152,7777-7977,9401,9600-9602,12020-12080,
30000,40000-40010" new-connection-mark="mark1" 
passthrough=yes protocol=udp

/ip firewall mangle add action=mark-connection chain=prerouting 
dst-port=42051-42052,11100-11125,11440-11460 new-connection-mark="mark1" 
passthrough=yes protocol=udp

/ip firewall mangle add action=mark-connection chain=prerouting 
dst-port=14009-14010 new-connection-mark="mark1" passthrough=yes protocol=udp

Seting Web Proxy di Mikrotik 2.9.27

1. Login ke Mikrotik via WinBox
2. Pilih Menu IP kemudian Pilih Web Proxy

3. Klik menu Settings
4. Buat setting seperti ini

5. Kemudian Klik Enable
6. Untuk memblokir situs klik tanda PLUS

7. Pilih menua IP kemudian pilih Firewall

8. Pilih tab NAT

9. Add NAT Rule
10. Pada kolom In. Interface isikan ether ang kamu pake
11. Pilih tab Action
12. Buat seperti gambar kemudian klik Apply dan OK
Dah selesai donk
Sekarang silahkan di coba proxynya
Semoga berhasil

Limit Youtube,Ekstensi File,dan IDM di layer 7 Mikrotik

--Buka winbox kemudian klik "ip" kemudian klik "firewall" kemudian klik tanda "plus" warna merah kemudian klik "layer7 protocols"

--isikan
Code:
Name=http-video dan RegeXp=http/(0\.9|1\.0|1\.1)[\x09-\x0d ][1-5][0-9][0-9][\x09-\x0d -~]*(content-type: video)

--tambah mangle,copykan kode bawah ini dan patekan di "New Terminal" winbox

Code:
/ip firewall mangle add action=mark-packet chain=prerouting comment="http-video mark-packet" disabled=no layer7-protocol=http-video new-packet-mark=http-video passthrough=no

dan yang terakhir setting queuenya
Quote:queue simple add name="youtube" dst-address=0.0.0.0/0 interface=all parent=none packet-marks=http-video direction=both priority=8 queue=default-small/default-small limit-at=0/0 max-limit=100k/100k burst-limit=0/0 burst-threshold=0/0 burst-time=0s/0s total-queue=default-small
yang ane bold merah,sesuaikan dgn kekuatan bandwidth nte 

This guide will demonstrate how-to crack Mikrotik ver 3.30

STEPS INVOLVED

# First install Mikrotik 3.20
# Add Ip Address for remote login
# Download KEYGEN
# Upload keygen.npk into Mikrotik FILES section via winbox & Reboot *** Must do, otherwise SSH will give connection refused error.
# SSH to Mikrotik and run the keygen
# Import the KEY
# Download Mikrotik 3.30 Version and upload it to FILES Section & Shutdown.
# DONE. Check Mikrotik version , it should be 3.30 with L6

Let’s begin . . .
# MIKROTIK 3.20 INSTALLATION

1) First install Mikrotik 3.20 from
1    http://204.62.56.64/mikrotik/3.20/mikrotik-3.20.iso



Remember to un-check the following components.

mpls-test
routing-test
wireless-test
xen

As shown in the image below.



Then Press ‘i’ to start installation.
After installation complete, press ENTER to reboot.

After booting, Login to console.
First time default id of fresh installation of Mikrotik is
ID = admin
Pass = no password, just Enter
# ADD IP ADDRESS FOR REMOTE LOGIN SUPPORT

Now add an IP Address so we can remotely login to Mikrotik via sshin later steps.Use the following command
1    /ip address add address=192.168.2.1/24 interface=ether1


As shown in the image below.



Note: As you can see ROUTER HAS NO SOFTWARE KEY and you have 24 hours limit to enter a valid key.
Now its time to break this up.
# DOWNLOAD KEYGEN

Download Keygen from
1    http://www.4shared.com/rar/9VLogU-q/Syed-Jahanzaib-MT-330_Full.html



OR
1    http://megaupload.com/?d=HNOGD4YM


[if the above link don't work, email me at aacable [at] hotmail.com
and i will send you the keygen in .rar format.

Unzip it any folder for example c:\keygen
You will see following contents.


Upload keygen.npk into Mikrotik FILES section

Now connect to Mikrotik via WINBOX and upload keygen.npk (from c:\keygen) into FILES section.
As shown in the image below.



.

# Now restart Mikrotik and it will automatically install keygen.npk in mikrotik system.

Upon Rebooting you should see the INSTALLING KEY GEN on the console window, This is must, otherwise you will get ‘connection refused error’.


.

After Rebooting, Make sure you get the keygen package file in System/Packages List.
As showed in the image below . . .

SSH TO EXECUTE KEYGEN

After booting. from your PC, Open command prompt , goto the folder where you extracted the keygen file i.e c:\keygen
1    cd c:\keygen



Now Connect with ssh to mikrotik via following command (ssh is included in this folder)
1    ssh 192.168.2.1


& Type the following command
1    roskey /dev/hda HU6I-XPT



As shown in the image below.



NOTE: Various harddisk have different code as below (Adjust it according to your harddisk chemistry)
hda= HD Virtual
hdb= HD IDE
sda= HD sata

It will take Long time, this is the only irritating & time taken section of the whole process (Mine took about 3 hours, your’s can be less depend on the hardware) to change the KEY on Mikrotik to match our’s, So sit back , Relax and have a cup of TEA)
After completing the process, it will show you the message “WORK FINE“.
As shown in the image below.



Now Shutdown the Mikrotik PC. Now start it again and Verify that your mikrotik key have changed to HU6I-XPT.
IMPORT LICENSE KEY IN 3.20

Goto SYSTEM / LICENSE and click IMPORT License and point it to the key at c:\keygen\HU6I-XPT.key
As shown in the image below.



It will ask you to Reboot. Do it 

After rebooting, Goto SYSTEM/LICENSE and see your New Key in Action
Now that we have cracked Mikrotik 3.20, its time to upgrade it to 3.30 which supports PCC.
FINALLY UPGRADE TO VER 3.30   

Download Mikrotik 3.30 version (.NPK Update Package File) from
1    http://204.62.56.64/mikrotik/3.30/routeros-x86-3.30.npk


Upload this file to mikrotik FILES section (by copy paste or drag n drop method) & Reboot, it will automatically update the base Ver to 3.30



After rebooting , check License Level and Mikrotik version.



Cara Setting Web Proxy MikroTIK

Salah satu fungsi proxy adalah untuk menyimpan cache. Apabila sebuah LAN menggunakan proxy untuk berhubungan dengan Internet, maka yang dilakukan oleh browser ketika user mengakses sebuah URL adalah mengambil request tersebut di server proxy. Sedangkan jika data belum terdapat di server proxy maka proxy akan mengambilkan dulu dari web server. Kemudian request tersebut disimpan di cache server proxy. Selanjutnya jika ada client yang melakukan request ke URL yang sama, maka request akan diambilkan dari cache server proxy. Teknik ini akan membuat akses ke Internet lebih cepat.  Berikut adalah langkah pengaturan regular proxy di Mikrotik.

Langkah pengaturan melalui command line

1. Ketik perintah berikut untuk mengaktifkan fitur web proxy di mikrotik
/ip proxy set enabled=yes
2. Set cache administrator
/ip proxy set cache-administrator=webmaster
3. Melihat hasil dari setting di atas
/ip proxy print

Mikrotik CPU Pentium 3 Handal 24 Jam On Terus

Kami menjual Mikrotik CPU Pentium 3 handal yang siap ON 24 jam terus menerus. Kami garansi CPU tersebut selama 3 bulan. Setiap CPU sudah kami uji di jaringan wireless internet kami. Mampu menangani 150 klient secara bersamaan.
Cocok untuk RTRWNET yang mempunyai klien lebih dari 20. Segera hubungi PJK untuk informasi lebih lanjut.