This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Showing posts with label Lain-lain. Show all posts
Showing posts with label Lain-lain. Show all posts

Sunday, March 26, 2017

POE Backup wireless (ups wireless)

Terkadang kita disibukkan keluhan pelanggan wifi kita saat lampu mati, terutama bagi para pemain rt/rw net yg mempunyai beberapa repeater.

Bagaimana menyiasati hal tersebut?, yaitu bisa dengan membuat DC UPS pada repeater.
Kenapa memakai dc ups, bukan ups pada umumnya? Dikarenakan listrik yang dikonsumsi oleh waireless atau switch memakai tegangan dc dan rata-rata memakai 24v kebawah.
Alangkah mubadzirnya energi listrik jika kita memakai UPS AC karena termakan oleh efisiensi alat diluar yang hilang akibat efek elektromagnet.

Apa saja alat-alat yang dibutuhkan, kuat berapa lama dan bisa menangani apa saja ?
Saya sudah membuat video untuk cara membuat backup wireless ini


Share:

Saturday, June 18, 2011

Script untuk mengamankan MikroTik dari port scanner, DDOS dan netcut

Scriptnya:

/ip firewall filter

add action=add-src-to-address-list address-list=DDOS address-list-timeout=15s \ chain=input comment="" disabled=no dst-port=1337 protocol=tcp

add action=add-src-to-address-list address-list=DDOS address-list-timeout=15m \ chain=input comment="" disabled=no dst-port=7331 protocol=tcp src-address-list=knock

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

add action=add-src-to-address-list address-list="port scanners" address-list-timeout=2w \ chain=input comment="SYN/FIN scan" 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="SYN/RST scan" 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 disabled=no tcp-flags=fin,psh,urg,!syn,!rst,!ack protocol=tcp \ comment="FIN/PSH/URG scan"

add action=add-src-to-address-list address-list="port scanners" address-list-timeout=2w \ chain=input disabled=no protocol=tcp tcp-flags=fin,syn,rst,psh,ack,urg \
comment="ALL/ALL scan"

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

add action=add-src-to-address-list address-list="port scanners" address-list-timeout=2w \ chain=input comment="NMAP FIN Stealth scan" disabled=no protocol=tcp

add action=accept chain=input comment="ANTI NETCUT" disabled=no dst-port=0-65535 \ protocol=tcp src-address=61.213.183.1-61.213.183.254

add action=accept chain=input comment="ANTI NETCUT" disabled=no dst-port=0-65535 \ protocol=tcp src-address=67.195.134.1-67.195.134.254

add action=accept chain=input comment="ANTI NETCUT" disabled=no dst-port=0-65535 \ protocol=tcp src-address=68.142.233.1-68.142.233.254

add action=accept chain=input comment="ANTI NETCUT" disabled=no dst-port=0-65535 \ protocol=tcp src-address=68.180.217.1-68.180.217.254

add action=accept chain=input comment="ANTI NETCUT" disabled=no dst-port=0-65535 \ protocol=tcp src-address=203.84.204.1-203.84.204.254

add action=accept chain=input comment="ANTI NETCUT" disabled=no dst-port=0-65535 \ protocol=tcp src-address=69.63.176.1-69.63.176.254

add action=accept chain=input comment="ANTI NETCUT" disabled=no dst-port=0-65535 \ protocol=tcp src-address=69.63.181.1-69.63.181.254

add action=accept chain=input comment="ANTI NETCUT" disabled=no dst-port=0-65535 \ protocol=tcp src-address=63.245.209.1-63.245.209.254

add action=accept chain=input comment="ANTI NETCUT" disabled=no dst-port=0-65535 \ protocol=tcp src-address=63.245.213.1-63.245.213.254
Share:

Anti DDoS di Mikrotik

ip firewall filter add chain=input protocol=tcp dst-port=1337 action= add-src-to-address-list address-list=DDOS address-list-timeout=15s comment=”" disabled=no
ip firewall filter add chain=input protocol=tcp dst-port=7331 src-address-list=knock action= add-src-to-address-list address-list=DDOS address-list-timeout=15m comment=”" disabled=no

ip firewall filter add chain=input connection-state=established action=accept comment=”accept established connection packets” disabled=no
ip firewall filter add chain=input connection-state=related action=accept comment=”accept related connection packets” disabled=no
ip firewall filter add chain=input connection-state=invalid action=drop comment=”drop Paket Invalid” disabled=no

ip firewall filter add chain=input protocol=tcp psd=21,3s,3,1 action=drop comment=”Mendetek serangan Port Scaner” disabled=no
ip firewall filter add chain=input protocol=tcp connection-limit=3,32 src-address-list=black_list action=tarpit comment=”Bikin kejutan ke ip penyerang” disabled=no
ip firewall filter add chain=input protocol=tcp connection-limit=10,32 action=add-src-to-address-list address-list=black_list address-list-timeout=1d comment=”Masukin ke karung Ip penyerang” disabled=no

ip firewall filter add chain=input protocol=icmp action=jump jump-target=ICMP comment=”jump chain ICMP” disabled=no
ip firewall filter add chain=input action=jump jump-target=services comment=”jump chain service” disabled=no

ip firewall filter add chain=input dst-address-type=broadcast action=accept comment=”Allow Broadcast Traffic” disabled=no

ip firewall filter add chain=input action=log log-prefix=”Filter:” comment=”Catat kegiatan penyerang” disabled=no

ip firewall filter add chain=input src-address=Subnet WAN action=accept comment=”List Ip yang boleh akses ke router”
ip firewall filter add chain=input src-address=Subnet Lan action=accept
ip firewall filter add chain=input src-address=Subnet DMZ action=accept
ip firewall filter add chain=input action=drop comment=”Blok Semua yang aneh2″ disabled=no

ip firewall filter add chain=ICMP protocol=icmp icmp-options=0:0-255 limit=5,5 action=accept comment=”0:0 dan limit utk 5pac/s” disabled=no
ip firewall filter add chain=ICMP protocol=icmp icmp-options=3:3 limit=5,5 action=accept comment=”3:3 dan limit utk 5pac/s” disabled=no
ip firewall filter add chain=ICMP protocol=icmp icmp-options=3:4 limit=5,5 action=accept comment=”3:4 dan limit for 5pac/s” disabled=no
ip firewall filter add chain=ICMP protocol=icmp icmp-options=8:0-255 limit=5,5 action=accept comment=”8:0 and limit utk 5pac/s” disabled=no
ip firewall filter add chain=ICMP protocol=icmp icmp-options=11:0-255 limit=5,5 action=accept comment=”11:0 and limit utk 5pac/s” disabled=no
ip firewall filter add chain=ICMP protocol=icmp action=drop comment=”Blok semua yang aneh2″ disabled=no

ip firewall filter add chain=forward protocol=icmp comment=”Perbolehkan ping”
ip firewall filter add chain=forward protocol=udp comment=”Perbolehkan ke udp”
ip firewall filter add chain=forward src-address=Subnet WAN action=accept comment=”Akses hanya dari ip terdaftar”
ip firewall filter add chain=forward src-address=Subnet LAN action=accept
ip firewall filter add chain=forward src-address=Subnet DMZ action=accept
ip firewall filter add chain=forward action=drop comment=”blok semua yang aneh2″
Share:

Sunday, October 25, 2009

Cadar bukan ajaran islam

Al azhar: cadar bukan ajaran islam
By Republika Newsroom
Selasa, 06 Oktober 2009 pukul 13:21:00

ISLAMONLINE.NET KAIRO--Pimpinan Al-Azhar, institusi pendidikan tertinggi di dunia Sunni, telah memerintahkan para siswi untuk melepas niqab (cadar) selama kunjungan mereka ke sekolah Al-Azhar dan akan membuat larangan resmi pemakaian penutup wajah (cadar) di sekolah-sekolah. Demikian dilaporkan surat kabar Al-Masri Al-Youm pada hari Senin (5/10).

"Kenapa kamu mengenakan cadar ketika duduk di kelas sementara semua temanmu wanita?" tanya Imam Besar Al-Azhar, Syekh Mohamed Sayyid Tantawi, kepada seorang siswi kelas 8.


Gadis muda itu terkejut dengan pertanyaan yang datang dari ulama pimpinan Al-Azhar tersebut. Seorang guru berusaha untuk menjelaskannya. "Dia melepaskan niqabnya di dalam kelas, tetapi ia hanya memakainya di saat Anda masuk dengan rombongan Anda."

Namun Syekh Tantawi tidak puas dan bersikeras bahwa gadis muda tersebut harus melepas cadar yang menutup wajahnya. "Niqab adalah sebuah tradisi dan tidak ada hubungannya dengan Islam."

Setelah gadis itu menuruti perintahnya untuk membuka niqab, Syekh Tantawi kemudian meminta supaya gadis tersebut tidak memakainya lagi. "Saya berkata kepadamu lagi bahwa niqab itu tidak ada hubungannya dengan Islam dan hanya sekadar kebiasaan. Saya memahami agama lebih baik daripada kamu dan orang tuamu."

Sebagian besar perempuan Muslim di Mesir mengenakan jilbab, yang merupakan aturan wajib berpakaian dalam Islam. Namun fenomena makin maraknya wanita mengenakan cadar rupanya telah menggelisahkan pemerintah dan beberapa kalangan intelektual Al-Azhar.

Kementerian pelayanan wakaf dan agama baru-baru ini telah menyebar buklet di masjid-masjid yang berisi penentangan terhadap praktik penggunaan cadar. Mayoritas ulama Islam pun meyakini bahwa seorang wanita tidak wajib untuk menutupi wajah atau tangannya. Mereka percaya bahwa hal tersebut merupakan hak setiap wanita untuk memutuskan apakah akan menutup wajah dengan cadar atau tidak.

Imam Besar Al-Azhar berjanji untuk mengeluarkan larangan terhadap cadar di semua sekolah yang terkait dengan Al-Azhar. "Saya berniat untuk mengeluarkan peraturan yang melarang niqab di sekolah-sekolah Al-Azhar. Tidak ada siswa atau guru yang akan diizinkan masuk ke sekolah dengan mengenakan niqab," kata Syekh Tantawi.

Didirikan pada tahun 359 H (971 M), Masjid Al-Azhar menarik cendekiawan dari dunia Muslim dan tumbuh menjadi sebuah universitas ternama dan terpandang di seluruh penjuru dunia. Universitas Al-Azhar telah menjadi kiblat ilmu agama Islam selama berabad-abad. Kelas pertama di Al-Azhar diberikan pada tahun 975 M dan kampus pertama dibangun 13 tahun kemudian.

Al-Azhar pertama kali menerima kehadiran murid wanita pada tahun 1961, namun ditempatkan dalam kelas terpisah hingga sekarang. Di tahun yang sama, subyek-subyek tentang teknik dan kedokteran mulai ditambahkan pada kelas-kelas syariah, Alquran, dan bahasa Arab. iol/taq


Diposkan oleh Manbaul Ulum di 12:05:00 AM
Label: Zona Informasi
Share:

Followers

Total Pageviews

Definition List

Unordered List

Support