How To Install APF Firewall on Cpanel

Author Topic: How To Install APF Firewall on Cpanel  (Read 3737 times)

mahbub-web

  • Guest
How To Install APF Firewall on Cpanel
« on: April 20, 2013, 11:53:12 PM »
How To Install APF Firewall on Cpanel

Advanced Policy Firewall, or APF, is basically an interface to iptables, which is the standard interface to managing network ports on Linux machines. Interacting with iptables can be complex and error-prone, and APF greatly simplifies working with it. However, APF is still only accessible by ssh. There is no way to make changes in APF through WHM or cPanel.

All of the APF configuration files are located in the /etc/apf folder on your server.  Within this folder
the allow_hosts.rules file contains all of the IP addresses that are whitelisted for the server and
the deny_hosts.rules file contains all of the IPs that are being blocked by the firewall.  Within
the deny_hosts.rules file each IP that is being blocked should also include a reason behind the block(most of them will be blocked by bfd, which blocks IPs attempting to brute force the server).

To block an IP in the firewall, simply ssh in as root and run the following command:

Code: [Select]
apf -d 127.0.0.1
If the IP has previously been whitelisted, that command will give you this error:

Code: [Select]
127.0.0.1 already exists in /etc/apf/allow_hosts.rules
You’ll need to open /etc/apf/allow_hosts.rules in your preferred text editor and remove the IP before you can block it in the firewall. If your setup is more recent, this command may work to get the IP out of allow_hosts.rules:

Code: [Select]
apf -u 127.0.0.1
Starting, stopping, and restarting apf can be easily done via the command line:

apf -s This will start apf if it is not running.

apf -r This will restart apf.

apf -f This will stop apf and flush all rules from the firewall.

White-listing an IP

If you have an IP address that you would like never to be added to the firewall (also known as whitelisting), simply run this command as root:

Code: [Select]
apf -a 127.0.0.1
(be sure to replace 127.0.0.1 with the IP address in question)
If the IP address is currently being blocked by the firewall, you will get an error:

Code: [Select]
127.0.0.1 already exists in /etc/apf/deny_hosts.rules
If that happens, you will need to open /etc/apf/deny_hosts.rules in your favorite text editor and remove the IP address before it can be added to the whitelist. If your setup is more recent, you may be able to run the following to remove the IP address from deny_hosts.rules:

Code: [Select]
apf -u 127.0.0.1
Opening a port in the apf firewall

By default apf is configured in such a way that all ports are blocked besides the ones specifically allowed to be open to the world.  To allow access to additional ports, the main apf configuration file needs to be edited.

First open the apf.conf file

Code: [Select]
vim /etc/apf/conf.apf
Within this file the file that needs to be changed starts with IG_TCP_CPORTS= and looks like this:

Code: [Select]
IG_TCP_CPORTS="20,21,22,25,53,80,110,143,443,465,993,995,2082
,2083,2084,2086,2087,2095,2096,3306,3784,7786,30052"

Now this line needs to be edited to include the additional port.
  • Within vim hit a to enter insert mode.
  • Within insert mode add the additional port to the current list followed by a comma.
  • Now hit escape(esc) to exit insert mode.
  • To write and save the changes type :wq and hit enter.
  • After these changes have been done restart apf with this command: apf -r

These instructions are for opening a TCP port.  If a UDP port also needs to be opened up the instructions are the same except the line that needs be edited is the IG_UDP_CPORTS line.

ref: http://www.servernoobs.com/how-to-install-apf-firewall-on-cpanel/