Action disabled: register
content:en_us:5_custom_firewall

Custom Firewall

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 install the module.

You can find this feature in the menu system at the following location:

<navigation>Network|Firewall|Custom</navigation>

Configuration

An invalid custom rule can block remote access to webconfig.

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.).

<code> # 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 search?q=clearos%2C%20clearos%20content%2C%20Custom%20Firewall%2C%20app-firewall_custom%2C%20clearos5%2C%20userguide%2C%20categorynetwork%2C%20subcategoryfirewall%2C%20maintainer_dloper&amp;btnI=lucky

content/en_us/5_custom_firewall.txt · Last modified: 2015/03/02 15:02 (external edit)