Good News! - Viber, WhatsApp, Line, Tango etc have been Unblocked. These were blocked few days back on the ground of security issues. I checked this morning and all of these were working perfectly. This has happened when people were fearing ban on Facebook on same excuse.
Continue readingTag: block
How to block IP address in Linux – Using IPTables Rule
Using IPTables rules we can block a Single IP address or a block of IP Addresses. The following command (via ssh) will drop any packet coming from the IP address 1.2.3.4 : # iptables -I INPUT -s 1.2.3.4 -j DROP or you can use append # iptables -A INPUT -s 1.2.3.4 -j DROP How To Block Subnet…
Continue reading