Introduction and basic usages of iptables under Unix/Linux

* What is iptables in Linux ?  Iptables is a rule based firewall system and is normally pre-installed on a Unix operating system which is controlling the incoming and outgoing packets. Basic structure of iptables The structure for the iptables is like, Tables which has chains and the chains which contains rules. Tables —> Chains […]

Iptables commands .

  #!/bin/sh#File: /etc/rc.d/rc.firewall# At once log and drop any known abusive IPsiptables -A INPUT -p tcp -s 87.118.104.44 -m limit –limit 1/minute –limit-burst 10 -j LOG –log-prefix “[DROPPED_NODE]“ –log-level 4iptables -A INPUT -p tcp -s 87.118.104.44 -j DROP# Allow fr?m ?n? t? ?n? ?n 127.0.0.1/32iptables -A INPUT -s 127.0.0.1/32 -j ACCEPTiptables -A OUTPUT -s 127.0.0.1/32 -j […]

List of 51 Linux Commands for Beginners 

Linux is a top-rated platform on the internet.  Linux is a free and open-source operating system, meaning anyone can use, modify, and distribute it without cost or restrictions. It powers many devices and systems, including personal computers, servers, supercomputers, smartphones (Android), and embedded devices. As per the stats, nearly 97% of websites on the internet use Linux servers and 55.9% of professional developers […]