Please .... !!!!

Agar mendapatkan nilai throughput yang tinggi

Kami sarankan semua clients menggunakan antena antena grid

sangat sangat kami anjurkan

menggunakan antena GRID

Gunakan antena seperti ini

http://www.mikrotik.com

ENJOY ... SHARE

LAZUARDY NETWORK

Best Connection

http://www.mikrotik.com

Block Port 80 untuk Game Center dengan mikrotik

Block Port 80 untuk Game Center dengan mikrotik
Pertama - tama makasih untuk Fahmi atas penjelasan tentang Firewall di Mirotik

sekenario

Game center dengan IP 192.168.0.65-78 tidak dapat mengakses http kecuali Ip game di IIX, karena ada user bandel yang sering browsing di game.

pertama masukkan ip addres game di address list dan IP Game IIX

[admin@Config] > ip firewall address-list pr
Flags: X - disabled, D - dynamic
# LIST ADDRESS
0 IpGame 192.168.0.65
1 IpGame 192.168.0.66
2 IpGame 192.168.0.67
3 IpGame 192.168.0.68
4 IpGame 192.168.0.69
5 IpGame 192.168.0.70
6 IpGame 192.168.0.71
7 IpGame 192.168.0.72
8 IpGame 192.168.0.73
9 IpGame 192.168.0.74
10 IpGame 192.168.0.75
11 IpGame 192.168.0.76
12 IpGame 192.168.0.77
13 IpGame 192.168.0.78
14 ;;; Game IIX
Game IIX 202.43.161.0/24
15 Game IIX 202.43.167.0/24
16 Game IIX 202.93.18.0/24
17 Game IIX 202.93.17.0/24
18 Game IIX 202.93.20.0/24
19 Game IIX 202.93.21.0/24
20 Game IIX 202.93.22.0/24
21 Game IIX 122.102.49.0/24
22 Game IIX 122.102.52.0/24
23 Game IIX 76.13.15.0/24
24 Game IIX 202.78.197.0/24
25 Game IIX 202.149.74.0/24
26 Game IIX 202.149.70.0/24
27 Game IIX 207.182.135.0/24
28 Game IIX 203.153.122.0/24
29 Game IIX 68.142.233.0/24
30 Game IIX 212.143.22.0/24
31 Game IIX 202.149.65.0/24
32 Game IIX 206.190.35.0/24
33 Game IIX 202.10.63.0/24
34 Game IIX 202.10.32.0/24
35 Game IIX 209.85.173.0/24
36 Game IIX 202.149.79.0/24
[admin@Config] >

Rule Firewall Filter

[admin@Config] > ip firewall filter print
Flags: X - disabled, I - invalid, D - dynamic

1 chain=forward protocol=tcp dst-port=80 src-address-list=IpGame dst-address-list=Game IIX
action=accept

2 ;;; blok http 21-24
chain=forward protocol=tcp dst-port=80 src-address-list=IpGame action=drop

Jadi Ip game tidak bisa mengakses http kecuali IP game IIX

sumber : http://blog.ardi85.web.id/2009/05/block-port-80-untuk-game-center-dengan.html

bertempur sama hackers

/ip firewall filter
code
add action=accept chain=input comment="Allow limited pings" disabled=no limit=50/5s,2 protocol=icmp

add action=accept chain=input comment="" disabled=no limit=50/5s,2 protocol=icmp

*Chain di atas digunakan untuk membatasi ping (ddos) yang ditujukan ke router kita.

code
add action=accept chain=output comment="" content="530 Login incorrect" disabled=no dst-limit=1/1m,9,dst-address/1m protocol=tcp

add action=add-dst-to-address-list address-list=FTP_BlackList address-list-timeout=1d chain=output comment="" content="530 Login incorrect" disabled=no protocol=tcp

***chain di atas digunakan, apabila anda terpaksa harus mengaktifkan ftp di router anda.

code
add action=drop chain=input comment="drop SSH&TELNET Brute Forcers" disabled=no dst-port=22-23 protocol=tcp src-address-list=IP_BlackList

add action=add-src-to-address-list address-list=IP_BlackList address-list-timeout=1d chain=input comment="" connection-state=new disabled=no dst-port=22-23 protocol=tcp src-address-list=SSH_BlackList_3

add action=add-src-to-address-list address-list=SSH_BlackList_3 address-list-timeout=1m chain=input comment="" connection-state=new disabled=no dst-port=22-23 protocol=tcp src-address-list=SSH_BlackList_2

add action=add-src-to-address-list address-list=SSH_BlackList_2 address-list-timeout=1m chain=input comment="" connection-state=new disabled=no dst-port=22-23 protocol=tcp src-address-list=SSH_BlackList_1

add action=add-src-to-address-list address-list=SSH_BlackList_1 address-list-timeout=1m chain=input comment="" connection-state=new disabled=no dst-port=22-23 protocol=tcp

***Chain ini digunakan untuk mengecek apakah ada aktivitas dari hacker yang mencoba untuk masuk ke router melalui port 22 (ssh) atau port 23 (telnet).
- Pada kesempatan pertama, ip hacker akan otomatis masuk ke address list SSH_BlackList_1 selama 1 menit.
- Apabila hacker tadi mencoba pada kesempatan kedua, maka ip nya akan masuk ke address list SSH_BlackList_2 selama 1 menit.
- Apabila hacker tadi masih mencoba untuk masuk, maka ip nya akan masuk ke address list SSH_BlackList_3 selama 1 menit
- Apabila hacker tadi masih mencoba sekali lagi untuk masuk ke router, maka ip hacker tsb akan masuk ke address list IP_BlackList, dan akan di banned dari router kita selama 1 hari.

cat: harap diperhatikan bahwa rule ini berlaku untuk kita. Jadi kalau kita lupa login atau password; atau salah mengetikkan password sebanyak 4x dalam kurun waktu kurang dari 1 menit; maka ip kita akan di banned oleh router kita sendiri selama 1 hari. karenanya jangan pernah melupakan password anda sendiri.

code
add action=drop chain=input comment="drop port scanners" disabled=no src-address-list=port_scanners

add chain=input protocol=tcp psd=21,3s,3,1 action=add-src-to-address-list addresslist="port scanners" address-list-timeout=2w comment="Port scanners to list" disabled=no

***Chain ini dipakai untuk mendaftar ip ke black-list address list. Chain selanjutnya untuk mendeteksi apakah ada indikasi aktifitas port scanner:

code
add action=add-src-to-address-list address-list=port_scanners address-list-timeout=2w chain=input comment="" disabled=no protocol=tcp tcp-flags=fin,!syn,!rst,!psh,!ack,!urg

add action=add-src-to-address-list address-list=port_scanners address-list-timeout=2w chain=input comment="" disabled=no protocol=tcp tcp-flags=fin,syn

add action=add-src-to-address-list address-list=port_scanners address-list-timeout=2w chain=input comment="" disabled=no protocol=tcp tcp-flags=syn,rst

add action=add-src-to-address-list address-list=port_scanners address-list-timeout=2w chain=input comment="" disabled=no protocol=tcp tcp-flags=fin,psh,urg,!syn,!rst,!ack

add action=add-src-to-address-list address-list=port_scanners address-list-timeout=2w chain=input comment="" disabled=no protocol=tcp tcp-flags=fin,syn,rst,psh,ack,urg

add action=add-src-to-address-list address-list=port_scanners address-list-timeout=2w chain=input comment="" disabled=no protocol=tcp tcp-flags=!fin,!syn,!rst,!psh,!ack,!urg

***Secara singkat, perintah di atas berarti apabila ada tanda2 serangan seperti yang sudah ditandai di atas, maka ip hacker tsb akan dimasukkan ke dalam address list port-scanner selama 2 minggu (sesuaikan berapa lama anda ingin memblock ip tsb)

sumber wiki mikrotik

Replacement projector bulb BENQ SP820

Replacement projector bulb BENQ SP820

Supplied equipment: gloves, filter
Lamplife (hours): 2000
Performance (W): 280
Lamp type: P-VIP

Changing the lamp:
1. Turn off the projector and unplug it. Let the projector cool for at least 45 minutes. The hot lamp can burn you!
2. Find the lamp cover on the projector and remove it by loosening the screws on it.
3. Use a proper screwdriver to loosen the screws which secure the lamp inside the projector.
4. Grasp the lamp by its wire handrail or handle plate and carefully remove it.
5. At this point, always clean the projector and replace the air filter which provides air to the lamp.
6. Install the new lamp according to the aforementioned instructions in the reverse order.
7. Turn on the projector and turn the lamp operation counter to zero.

Changing a bare lamp without module:
1. Turn off the projector and unplug it. Let the projector cool for at least 45 minutes. The hot lamp can burn you!
2. Find the lamp cover on the projector and remove it by loosening the screws on it.
3. Use a proper screwdriver to loosen the screws which secure the lamp inside the projector.
4. Grasp the lamp by its wire handrail and carefully remove it.
5. At this point, always clean the projector and replace the air filter which provides air to the lamp.
6. Remove all impurities from the lamp module. If it is damaged, or if the connectors are oxidized, order a new complete module – you will thereby prevent and potential damage to the lamp or to the projector!
7. Examine and remeber in detail the method by which the lamp is fastened in the module, and the method of clamping the connectors – or mark the original connection.
8. If one of the connector parts is firmly fastened to the lamp, it will be necessary to disconnect it. Plug the cable eye to the end of the connector. The cable eye is included with the lamp.
9. Carefully remove the old lamp from the module. Wear a glove when installing the new lamp. The glove is included with the lamp. Never touch the lamp with your bare hand!
10. Insert the new lamp into the module and tighten the connectors.
11. Install the new lamp according to the aforementioned instructions in Numbers 1 to 5 in the reverse order.
12. Turn on the projector and turn the lamp operation counter to zero.

Reset the lamp counter hours of operation for the projector BENQ SP820
1. Turn on the projector
2. While the projector is on, press “MENU” to open the menu
3. Select “OPTION” in the “MENU” by pressing buttons “5 / 6”, then press “ENTER”
4. Select “LAMP TIMER” (hour counter) by pressing buttons “5 / 6”, then press “RESET” for at least 3 seconds.
5. Select “RESET” by pressing button “5”

card reader HuBMas

Power adaptor ada diatas plavon. Kabel AC dipojok ruang tunggu naik ke atas ext. blok.
power adaptor 12V.AC pake socket.(4412)

filter warning ( sanyo )

reset filter counternya.

menu setting - filter counter - kemudian reset
seharusnya dalam hal ini perlu dilakukan penggantian filternya, recomended searching google.

call tanberg jakarta

PTB-JKT
ruang besar -----> Main PTB Jakarta
ruang kecil -----> Muara Badak

klik menu tanbergnya cari menu call.
terus mainkan aja dech mau call ke ruang kecil atau ruang besar.
syarat di lokasi yg mau di calling hrs dalam keadaan ON.
dialing secara otomatis konek.