Posts

Showing posts with the label ip

Blogger blog is not open for ip problem

Image
Blogger blog is not open for ip problem Blogger blog is not opening normally. For somedays my Netgator.blogspot.com blog is not opening. I am using Grameen Phone mobile broadband internet service. When I found that my blog is not open then I tried to launch another blogger blog. Result is same. Any blogspot blog failed to open from my side. I tried Hidemyass.com and understand that it is a ip problem. Blogger authority might find any illegal operation caused from Grameen phone ip (internet protocol) address, so they blocked it. For this security issue I am facing this kind of problem blogger blog open with the help of hidemyass.com proxy I think blogger authority should understand that all of their user from Bangladesh is not criminal.

Block User Pelanggan Internet dari IP Address List Dengan Firewall Filter

Image
Block User Pelanggan Internet dari IP Address List Dengan Firewall Filter Pada kasus pelanggan internet bulanan yang belum menggunakan session hotspot ataupun user manager pada mikrotik, maka untuk dapat memblockir akses internet pada user client, kita gunakan fasilitas firewall filter, biasanya cara ini digunakan untuk media pembelajaran tahap awal menganai Drop Ip Addrest-List . Cara paling simple ini memang biasanya dilakukan oleh admin mikrotik yang mempunyai resource router yang kecil, kenapa begitu ? karna dengan rule yang minimal tidak akan membuat over pada memory atau cpu di router board mikrotik yang dipakai. Untuk langsung mempraktekan caranya mari kita simak langkah-langkah berikut ini : Buat addrest list drop ip yang ingin dimasukan ke daftar block Buat Filrewall filter yang nanti kita arahkan ke daftar ip block Mode CLI /ip firewall address-list add address=192.168.100.2 list=drop add address=192.168.100.112 list=drop add address=192.168.100.111 list=drop add address=192....

Block Mac dan IP Address Static Client Hotspot Mikrotik

Image
Block Mac dan IP Address Static Client Hotspot Mikrotik Untuk dapat mengunci client hotspot agar tidak bisa ganti-ganti IP Address maka kita perlu melakukan kunci mac address si client hotspot, rule ini dilakukan oleh owner hotspot yang masih menggunakan IP Static untuk memanajement hotspot mikrotiknya. Sebelum kita lanjut ke step-stepnya untuk mengetahui Mac Si Client kita kopi saja Mac si client dari IP -> ARP Berikut langkah-langkah yang harus kita lakukan pada mikrotik kita : Buat filter rule dengan klik ip -> firewall -> filter lalu input seperti gambar dibawah Klik Tab Advance lalu input seperti gambar dibawah : Lanjut pada menu tab Action kita pilih = Drop Mode CLI /ip firewall filter add action=drop chain=forward comment="Block IP MAC" src-address=!192.168.100.190 src-mac-address=D8:5D:4C:CF:2D:83 Copy - Paste di New Terminal Source/Reference : - http://mikrotik.co.id BACA JUGA : ARTIKEL TENTANG SETTING MIKROTIK DIBAWAH INI : 1. Tutorial Setting Mikrotik dari...

Block ping request from a specific IP using iptables on Ubuntu 12 04 Tested

Block ping request from a specific IP using iptables on Ubuntu 12 04 Tested My Sever OS:Ubuntu 12.04 IP: 192.168.56.100 My Client OS:Ubuntu 13.04 IP 192.168.56.101 Task Block the ping request from client to server, so that when client ping the server, client should not get any reply. Solution Add the below rule in iptable of the server iptables -A INPUT -i eth0 -p icmp --icmp-type echo-request -s 192.168.56.101 -j DROP You have to specify the icmp-type as echo-request other wise the outgoing ping from server to client also will get blocked because when you ping client from server following happens :-ICMP echo-request is send to client :-ICMP echo-reply is send back from client to server(this get dropped if no icmp-type is indicated) Save rules in iptables permanently If you give iptables-save rules will be saved for the current session but will be gone once you reboot your machine. To save them permanently Open / etc/network/interfaces file vim /etc/network/interfaces Append the below...