How to block a specific IP address
To block a specific IP address first make sure IPTables is running:
/etc/init.d/iptables restart
Then add the following rule:
/sbin/iptables -A INPUT --source 1.2.3.4 -j DROP
assuming that 1.2.3.4 is the IP address to block.