How Do I Block an IP Address on Centos 6 via IPTables

H

How Can We Help?

How Do I Block an IP Address on Centos 6 via IPTables

  1. Open a new Terminal Window
  2. Type the following command replacing IPADDRESSTOBLOCK with the IP Address that you wish to block.
    iptables -A INPUT -s IPADDRESSTOBLOCK -j DROP

    Explanation of above command:

    -A = Append one or more rules to the end of the selected chain
    -s = Source, in this case the IP address to block
    -j = This indicates what to do if the rule matches

  3. Save the Rule to the IPTables
    service iptables save

About the author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

About Author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

Follow Me