===== Overview =====
Though most administrators will be able to accomplish all their firewall needs using the standard ClearOS web interface, it may be necessary to add custom firewall rules in some scenarios. The **Custom Firewall Tool** provides a way to create advanced firewall rules. Please use with caution!
===== Installation =====
If you did not select this module to be included during the installation process, you must first [[Software Modules|install the module]].
===== Menu =====
You can find this feature in the menu system at the following location:
Network|Firewall|Custom
===== Configuration =====
An invalid custom rule can block remote access to webconfig.
{{:documentation:clearos_enterprise_5.2:user_guide:customfirewall.png|}}
===== Examples =====
====Limit SSH/Webconfig Access to Specific IP Addresses====
The following entries would restrict remote SSH (port 22) an Webconfig (port 81) access to specific IP address that you define (i.e. allow remote login from office, home, datacenter etc.).
# Deny all SSH connections
iptables -I INPUT -p tcp --dport 22 -j DROP
# All connections from address xyz
iptables -I INPUT -p tcp --source 1.2.3.4 --dport 22 -j ACCEPT
iptables -I INPUT -p tcp --source 5.6.7.8 --dport 22 -j ACCEPT
# Deny all webconfig connections
iptables -I INPUT -p tcp --dport 81 -j DROP
# All connections from address xyz
iptables -I INPUT -p tcp --source 1.2.3.4 --dport 81 -j ACCEPT
iptables -I INPUT -p tcp --source 5.6.7.8 --dport 81 -j ACCEPT