ufw

Langue: en

Autres versions - même langue

Version: 304339 (debian - 07/07/09)

Section: 8 (Commandes administrateur)

NAME

ufw - program for managing a netfilter firewall

DESCRIPTION

This program is for managing a Linux firewall and aims to provide an easy to use interface for the user.

USAGE

ufw [--dry-run] enable|disable|reload
ufw [--dry-run] default allow|deny|reject
ufw [--dry-run] logging on|off|LEVEL
ufw [--dry-run] status [verbose|numbered]
ufw [--dry-run] show [raw]
ufw [--dry-run] [delete] [insert NUM] allow|deny|reject|limit [log|log-all] PORT[/protocol]
ufw [--dry-run] [delete] [insert NUM] allow|deny|reject|limit [log|log-all] [proto protocol] [from ADDRESS [port PORT]] [to ADDRESS [port PORT]]
ufw [--dry-run] app list|info|default|update

OPTIONS

--version
show program's version number and exit
-h, --help
show help message and exit
--dry-run
don't modify anything, just show the changes
enable
reloads firewall and enables firewall on boot
disable
unloads firewall and disables firewall on boot
reload
reloads firewall
default allow|deny|reject
change the default policy for incoming traffic. Note that existing rules will have to be migrated manually when changing the default policy. See RULE SYNTAX for more on deny and reject.
logging on|off|LEVEL
toggle logging. Logged packets use the LOG_KERN syslog facility. Specifying a LEVEL turns logging on for the specified LEVEL. The default log level is 'low'. See LOGGING for details.
status
show status of firewall and ufw managed rules. Use status verbose for extra information. In the status output, 'Anywhere' is synonymous with 'any' and '0.0.0.0/0'.
show
show the running firewall in raw iptables format.
allow ARGS
add allow rule. See RULE SYNTAX
deny ARGS
add deny rule. See RULE SYNTAX
reject ARGS
add reject rule. See RULE SYNTAX
limit ARGS
add limit rule. Currently only IPv4 is supported. See RULE SYNTAX
delete RULE
deletes the corresponding RULE
insert NUM RULE
insert the corresponding RULE as rule number NUM

RULE SYNTAX

Users can specify rules using either a simple syntax or a full syntax. The simple syntax only specifies the port and optionally the protocol to be allowed or denied on the host. For example:


  ufw allow 53

This rule will allow tcp and udp port 53 to any address on this host. To specify a protocol, append '/protocol' to the port. For example:


  ufw allow 25/tcp

This will allow tcp port 25 to any address on this host. ufw will also check /etc/services for the port and protocol if specifying a service by name. Eg:


  ufw allow smtp

Users can also use a fuller syntax, specifying the source and destination addresses and ports. This syntax is based on OpenBSD's PF syntax. For example:


  ufw deny proto tcp to any port 80

This will deny all traffic to tcp port 80 on this host. Another example:


  ufw deny proto tcp from 10.0.0.0/8 to 192.168.0.1 port 25

This will deny all traffic from the RFC1918 Class A network to tcp port 25 with the address 192.168.0.1.


  ufw deny proto tcp from 2001:db8::/32 to any port 25

This will deny all traffic from the IPv6 2001:db8::/32 to tcp port 25 on this host. Note that IPv6 must be enabled in /etc/default/ufw for IPv6 firewalling to work.


  ufw allow proto tcp from any to any port 80,443,8080:8090

This will allow all traffic to tcp ports 80, 443 and 8080-8090 inclusive. Note that when specifying multiple ports, the ports list must be numeric, cannot contain spaces and must be modified as a whole. Eg, in the above example you cannot later try to delete just the '443' port. You cannot specify more than 15 ports (ranges count as 2 ports, so the port count in the above example is 4).

ufw supports connection rate limiting, which is useful for protecting against brute-force login attacks. ufw will deny connections if an IP address has attempted to initiate 6 or more connections in the last 30 seconds. See http://www.debian-administration.org/articles/187 for details. Typical usage is:


  ufw limit ssh/tcp

Sometimes it is desirable to let the sender know when traffic is being denied, rather than simply ignoring it. In these cases, use reject instead of deny. For example:


  ufw reject auth

To delete a rule, simply prefix the original rule with delete. For example, if the original rule was:


  ufw deny 80/tcp

Use this to delete it:


  ufw delete deny 80/tcp

To insert a rule, specify the new rule as normal, but prefix the rule with the rule number to insert. For example, if you have four rules, and you want to insert a new rule as rule number three, use:


  ufw insert 3 deny to any port 22 from 10.0.0.135 proto tcp

To see a list of numbered rules, use:


  ufw status numbered

ufw supports per rule logging. By default, no logging is performed when a packet matches a rule. Specifying log will log all new connections matching the rule, and log-all will log all packets matching the rule. For example, to allow and log all new ssh connections, use:


  ufw allow log 22/tcp

See LOGGING for more information on logging.

EXAMPLES

Deny all access to port 53:


  ufw deny 53

Allow all access to tcp port 80:


  ufw allow 80/tcp

Allow all access from RFC1918 networks to this host:


  ufw allow from 10.0.0.0/8
  ufw allow from 172.16.0.0/12
  ufw allow from 192.168.0.0/16

Deny access to udp port 514 from host 1.2.3.4:


  ufw deny proto udp from 1.2.3.4 to any port 514

Allow access to udp 1.2.3.4 port 5469 from 1.2.3.5 port 5469:


  ufw allow proto udp from 1.2.3.5 port 5469 to 1.2.3.4 port 5469

REMOTE MANAGEMENT

When running ufw enable or starting ufw via its initscript, ufw will flush its chains. This is required so ufw can maintain a consistent state, but it may drop existing connections (eg ssh). ufw does support adding rules before enabling the firewall, so administrators can do:


  ufw allow proto tcp from any to any port 22

before running 'ufw enable'. The rules will still be flushed, but the ssh port will be open after enabling the firewall. Please note that once ufw is 'enabled', ufw will not flush the chains when adding or removing rules (but will when modifying a rule or changing the default policy).

APPLICATION INTEGRATION

ufw supports application integration by reading profiles located in /etc/ufw/applications.d. To list the names of application profiles known to ufw, use:


  ufw app list

Users can specify one of the applications names when adding rules. For example, when using the simple syntax, users can use:


  ufw allow <name>

Or for the extended syntax:


  ufw allow from 192.168.0.0/16 to any app <name>

You should not specify the protocol with either syntax, and with the extended syntax, use app in place of the port clause.

Details on the firewall profile for a given application can be seen with:


  ufw app info <name>

where '<name>' is one of the applications seen with the app list command. User's may also specify all to see the profiles for all known applications.

After creating or editing an application profile, user's can run:


  ufw app update <name>

This command will automatically update the firewall with updated profile information. If specify 'all' for name, then all the profiles will be updated. To update a profile and add a new rule to the firewall automatically, user's can run:


  ufw app update --add-new <name>

The behavior of the update --add-new command can be configured using:


  ufw app default <policy>

The default application policy is skip, which means that the update --add-new command will do nothing. Users may also specify a policy of allow or deny so the update --add-new command may automatically update the firewall. WARNING: it may be a security to risk to use a default allow policy for applications profiles. Carefully consider the security ramifications before using a default allow policy.

LOGGING

ufw supports multiple logging levels. ufw defaults to a loglevel of 'low' when a loglevel is not specified. Users may specify a loglevel with:


  ufw logging LEVEL

LEVEL may be 'off', 'low', 'medium', 'high' and full. Log levels are defined as:

off
disables ufw managed logging
low
logs all blocked packets not matching the default policy (with rate limiting), as well as packets matching logged rules
medium
log level low, plus all allowed packets not matching the default policy, all INVALID packets, and all new connections. All logging is done with rate limiting.
high
log level medium (without rate limiting), plus all packets with rate limiting
full
log level high without rate limiting

Loglevels above medium generate a lot of logging output, and may quickly fill up your disk. Loglevel medium may generate a lot of logging output on a busy system.

Specifying 'on' simply enables logging at log level 'low' if logging is currently not enabled.

NOTES

On installation, ufw is disabled with a default policy of deny.

Rule ordering is important and the first match wins. Therefore when adding rules, add the more specific rules first with more general rules later.

ufw is not intended to provide complete firewall functionality via its command interface, but instead provides an easy way to add or remove simple rules. It is currently mainly used for host-based firewalls.

The status command shows basic information about the state of the firewall, as well as rules managed via the ufw command. It does not show rules from the rules files in /etc/ufw. To see the complete state of the firewall, users can ufw show raw. This displays the filter, nat, mangle and raw tables using:


  iptables -n -L -v -x -t <table>
  ip6tables -n -L -v -x -t <table>

See the iptables and ip6tables documentation for more details.

Currently, ufw is a front-end for iptables-restore, with its rules saved in /etc/ufw/before.rules, /etc/ufw/after.rules and /var/lib/ufw/user.rules. Administrators can customize before.rules and after.rules as desired using the standard iptables-restore syntax. Rules are evaluated as follows: before.rules first, user.rules next, and after.rules last. IPv6 rules are evaluated in the same way, with the rules files named before6.rules, user6.rules and after6.rules. Please note that ufw status only shows rules added with ufw and not the rules found in the /etc/ufw rules files.

ufw will read in /etc/ufw/sysctl.conf on boot when enabled. Please note that /etc/ufw/sysctl.conf overrides values in the system systcl.conf (usually /etc/sysctl.conf). To change this behavior, modify /etc/default/ufw.

If the default policy is set to REJECT, ufw may interfere with rules added outside of the ufw framework. See README for details.

 

SEE ALSO

iptables(8), ip6tables(8), iptables-restore(8), ip6tables-restore(8), sysctl(8), sysctl.conf(5)

AUTHOR

ufw is (C) 2008-2009, Canonical Ltd.

ufw and this manual page was originally written by Jamie Strandboge <jamie@canonical.com>