EveryCloud Technologies   

ConfigServer Firewall (CSF) on CentOS cPanel server

ConfigServer firewall is a popular Linux firewall security suite. It is easy to install, flexible to configure and secure with extra checks. CSF helps to control exactly what traffic is allowed in and out of the server and protect the server from malicious attack.

The CSF installation includes control panel user interface available via WHM and login failure daemon process (lfd) that runs periodically to scan the latest log file entries for login attempts  that continually fail within a short period of time. Such attempts are often called “Brute-force attacks” and the daemon process responds very quickly to such patterns and blocks offending IPs quickly.

So, login to your server via ssh and let’s start CSF installation by retrieving the package files using wget command:

# wget http://configserver.com/free/csf.tgz


Unpack the archive:

# tar xfz csf.tgz


Navigate to the uncompressed csf directory:

# cd csf


Run the installer:

# sh install.sh


It will create configuration file and add all required cPanel services to allow list. Let’s disable testing mode by editing main CSF configuration file. Open the file using any editor (vi, nano, etc):

# nano /etc/csf/csf.conf


and change

TESTING = “1”

to

TESTING = “0

When done, restart CSF:

# csf -r


Now CSF is installed and ready. You can simply manage it via cPanel WHM interface WHM > Config Security & Firewall:

You may want to visit “Check server security” page next, allow/block IP addresses, flush blocks, restart login failure daemon and much more.

In case you need to allow/block IP address using command line, the options are pretty simple.

To add your IP address to a permanent, allow list:

# csf -a 123.45.67.89


To block the IP:

# csf -d 123.45.67.89


(ref: http://www.vps.net/  Accessed:14/09/2015, [Online] 

http://wiki.vps.net/controlpanels/cpanel/how-to-install-firewall-using-configserver-firewall-csf-on-centos-cpanel-server/)