grabber link rapidshare | download | Trik Download | mp3-college | Lingua | Random Teks | my community | visitor


December 29, 2009

mikrotik - generate script queue simple di mikrotik

Filed under: mikrotik

cara paling mudah untuk meng-generat queue simple di mikrotik, misal kita psang untuk klien dengan range ip 2-254, sbb:

:local i;
:for i from=2 to=254 do ={/queue simple add name=("192.168.0." . $i) target-address=("192.168.0." . $i) limit-at=0/128000 max-limit=0/256000
}

 

Tags : script queue mikrotik bandwith management

December 28, 2009

mikr0tik - mendalami pengertian pengaturan queue di mt

Filed under: network, mikrotik, wireless

Implementasi QoS (Quality of Services) di Mikrotik banyak bergantung pada sistem HTB (Hierarchical Token Bucket). HTB memungkinkan kita membuat queue menjadi lebih terstruktur, dengan melakukan pengelompokan-pengelompokan bertingkat. Yang banyak tidak disadari adalah, jika kita tidak mengimplementasikan HTB pada Queue (baik Simple Queue maupun Queue Tree), ternyata ada beberapa parameter yang tidak bekerja seperti yang kita inginkan.Beberapa parameter yang tidak bekerja adalah priority, dan dual limitation (CIR / MIR).

Pada pembahasan artikel ini, kita akan mengambil contoh sebuah sistem QoS sederhana, di mana kita ingin mengalokasikan bandwidth sebesar 400kbps untuk 3 client, di mana masing-masing client bisa mendapatkan maksimal 200kbps. Di antara ketiga client tersebut, memiliki prioritas yang berbeda, yaitu: 1,2, dan 3.

(Read more)

December 13, 2009

squid proxy pada windows xp

Filed under: internet, network

Ada beberapa cara untuk menghemat jatah quota kita tersebut, diantaranya adalah dengan meminimalkan content untuk browsing (ex: disable images), menggunakan compression proxy (toonel, onspeed, dll), dan menggunakan cache proxy. Dan kebetulan saya akan membahas penghematan bandwidth dengan cache proxy menggunakan Squid 2.7.STABLE5.

Kenapa menggunakan cache proxy ? Dengan cache proxy, pada situs-situs yang sering kita kunjungi, content yang harus didownload dan mengurangi jatah quota kita akan lebih sedikit. Karena content-content tersebut akan tersimpan dahulu di cache proxy kita. Jadi secara tidak langsung, jika kita mengunjungi situs tersebut berulang kali, sama saja kita mendownload content dari komputer yang terinstall proxy kita. Kesimpulannya.. lebih cepat dan lebih ngirit bandwidth.

Ok, langsung saja ke proses instalasinya.
(Read more)

November 8, 2009

reset EnGenius (Senao) EOC-1650/EOC-2610/EOC-3500/EAP-3660/EOC-5610 ke Firmware Pabrikan

Filed under: software, network, wireless

Dokumentasi resmi untuk flashing firmware EnGenius tersebut dapat dilihat di website resmi EnGenius (http://engeniustech.com/resources/Firmware%20Update%20by%20Telnet%20v1.2.pdf).

Berikut pengalaman saya mengembalikan Firmware EOC-2610, setelah sebelumnya saya mencoba OpenWRT. Jika anda mempunyai sebuah EOC-2610 dan mengalami masalah, seperti yang saya alami dulu, tidak bisa login ke Web Interface, mungkin dengan flashing firmware ini masalah tersebut dapat di atasi.

Langkah-langkah:

(Read more)

October 18, 2009

Firmware Engenius Senao ECB-3220

Filed under: network, wireless

Access Point 2.4GHz Engenius/Senao ECB-3220 400mW

Multifunction Access Point Plus Long Range - 7+1 multifunction - access point, bridge, universal repeater, client, wds repeater, wisp (client router), long range / 3 times greater range, wisp + universal repeater.

Radio Access Point yang handal. Power max. 400mW. Mendukung SNMP Management, Wireless Distribution System (WDS) dan sudah support PoE. Selain indoor, seringkali juga dipakai untuk outdoor.

Ushering in the next generation of indoor client bridges with access point functionality is the ECB-3220 by EnGenius. With the quality and functionality expected of an EnGenius product, the ECB-3220 provides up to 400mW of high wireless output power and also adds advanced features such as SNMP management, Wireless Distribution System (WDS), and Power-over-Ethernet (PoE) capability. The ECB-3220 is the perfect solution for any application you might have.

# 400mW RF output power for greater range # Latest security with WEP, WPA/WPA2 # 802.11b/g wireless client bridge/Access Point # PoE capable for flexible deployment

 

 

Firmware

3220 1.39.06 1214K
Release Date: 3/15/2007   Release Notes
3220 MIB 5K
Release Date: 8/25/2006
3220 V1.41.05 1286K
Release Date: 9/27/2007   Release Notes
3220 V1.42.01 1285K
Release Date: 6/16/2008   Release Notes
3220 v1.43.03 1287K
Release Date: 10/3/2008   Release Notes
3220 V1.43.05 1291K
Release Date: 3/31/2009   Release Note

 Tags :  upgrade firmware  download firmware senao  wireless  akses point  eugene firmware

September 26, 2009

redirect proxy squid eksternal dari Mikrotik

Filed under: network, mikrotik

me-redirect proxy squid eksternal dari Mikrotik tanpa harus mengaktifkan web proxy di mikrotik.
exp:
ip address Mesin Mikrotik / klien : 192.168.1.0/24
ip address Mesin Squid Proxy : 192.168.10.2/24 Port = 3128

maka di buatlah rule nat di Mikrotik untuk meredirect request klien ke internet melalui mesin proxy squid sebagai berikut ;

/ip firewall nat add chain=dstnat src-address=192.168.1.0/24 protocol=tcp dst-port=80 action=dstnat dst-address=192.168.10.2 to-ports=3128

atau bisa juga kalau ip address nya lebih dari satu kelas, maka dikasih tanda ! didepan src-address yang berarti bahwa kecuali ip address yang di tulis di src-address maka dilewatkan ke proxy squid

/ip firewall nat add chain=dstnat src-address=!192.168.10.2 protocol=tcp dst-port=80 action dstnat dst-address=192.168.10.2 to-ports=3128

load balance mt

Filed under: network, mikrotik

Load Balance Versi-1
Code:

/ip firewall mangle
add action=mark-connection chain=prerouting comment="Load Balance" connection-state=new disabled=no in-interface=HotSpot new-connection-mark=Line-1 nth=3,1 passthrough=yes
add action=mark-routing chain=prerouting comment="" connection-mark=Line-1 disabled=no in-interface=HotSpot new-routing-mark=Line-1 passthrough=no

add action=mark-connection chain=prerouting comment="" connection-state=new disabled=no in-interface=HotSpot new-connection-mark=Line-2 nth=2,1 passthrough=yes
add action=mark-routing chain=prerouting comment="" connection-mark=Line-2 disabled=no in-interface=HotSpot new-routing-mark=Line-2 passthrough=no

add action=mark-connection chain=prerouting comment="" connection-state=new disabled=no in-interface=HotSpot new-connection-mark=Line-3 passthrough=yes
add action=mark-routing chain=prerouting comment="" connection-mark=Line-3 disabled=no in-interface=HotSpot new-routing-mark=Line-3 passthrough=no

Load Balance Versi-2
(Read more)