1 .\" $OpenBSD: pfctl.8,v 1.133 2007/07/01 11:38:51 henning Exp $
3 .\" Copyright (c) 2001 Kjell Wooding. All rights reserved.
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\" notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\" notice, this list of conditions and the following disclaimer in the
12 .\" documentation and/or other materials provided with the distribution.
13 .\" 3. The name of the author may not be used to endorse or promote products
14 .\" derived from this software without specific prior written permission.
16 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 .Nd "control the packet filter (PF) and network address translation (NAT) device"
38 .Oo Fl D Ar macro Ns =
43 .Op Fl K Ar host | network
44 .Op Fl k Ar host | network
58 utility communicates with the packet filter device using the
59 ioctl interface described in
61 It allows ruleset and parameter configuration and retrieval of status
62 information from the packet filter.
64 Packet filtering restricts the types of packets that pass through
65 network interfaces entering or leaving the host based on filter
68 The packet filter can also replace addresses and ports of packets.
69 Replacing source addresses and ports of outgoing packets is called
70 NAT (Network Address Translation) and is used to connect an internal
71 network (usually reserved address space) to an external one (the
72 Internet) by making all connections to external hosts appear to
73 come from the gateway.
74 Replacing destination addresses and ports of incoming packets
75 is used to redirect connections to different hosts and/or ports.
76 A combination of both translations, bidirectional NAT, is also
78 Translation rules are described in
87 the rule file specified with the variable
89 is loaded automatically by the
91 scripts and the packet filter is enabled.
93 The packet filter does not itself forward packets between interfaces.
94 Forwarding can be enabled by setting the
97 .Em net.inet.ip.forwarding
99 .Em net.inet6.ip6.forwarding
101 Set them permanently in
106 utility provides several commands.
107 The options are as follows:
110 Load only the queue rules present in the rule file.
111 Other rules and options are ignored.
118 only to the rules in the specified
120 In addition to the main ruleset,
122 can load and manipulate additional rulesets by name,
124 The main ruleset is the default anchor.
126 Anchors are referenced by name and may be nested,
127 with the various components of the anchor path separated by
129 characters, similar to how file system hierarchies are laid out.
130 The last component of the anchor path is where ruleset operations are
135 rules from the main ruleset is described in
138 For example, the following will show all filter rules (see the
140 flag below) inside the anchor
141 .Dq authpf/smith(1234) ,
142 which would have been created for user
147 .Bd -literal -offset indent
148 # pfctl -a "authpf/smith(1234)" -s rules
151 Private tables can also be put inside anchors, either by having table
154 file that is loaded in the anchor, or by using regular table commands, as in:
155 .Bd -literal -offset indent
156 # pfctl -a foo/bar -t mytable -T add 1.2.3.4 5.6.7.8
159 When a rule referring to a table is loaded in an anchor, the rule will use the
160 private table if one is defined, and then fall back to the table defined in the
161 main ruleset, if there is one.
162 This is similar to C rules for variable scope.
163 It is possible to create distinct tables with the same name in the global
164 ruleset and in an anchor, but this is often bad design and a warning will be
167 By default, recursive inline printing of anchors applies only to unnamed
168 anchors specified inline in the ruleset.
169 If the anchor name is terminated with a
173 flag will recursively print all anchors in a brace delimited block.
174 For example the following will print the
177 .Bd -literal -offset indent
178 # pfctl -a 'authpf/*' -sr
181 To print the main ruleset recursively, specify only
184 .Bd -literal -offset indent
187 .It Fl D Ar macro Ns = Ns Ar value
193 Overrides the definition of
197 Disable the packet filter.
199 Enable the packet filter.
201 Flush the filter parameters specified by
203 (may be abbreviated):
205 .Bl -tag -width xxxxxxxxxxxx -compact
209 Flush the queue rules.
211 Flush the filter rules.
213 Flush the state table (NAT and filter).
215 Flush the source tracking table.
217 Flush the filter information (statistics that are not bound to rules).
221 Flush the passive operating system fingerprints.
223 Flush all of the above.
226 Load the rules contained in
230 may contain macros, tables, options, and normalization, queueing,
231 translation, and filtering rules.
232 With the exception of macros and tables, the statements must appear in that
235 Include output helpful for debugging.
238 .It Fl i Ar interface
239 Restrict the operation to the given
241 .It Fl K Ar host | network
242 Kill all of the source tracking entries originating from the specified
250 option may be specified, which will kill all the source tracking
251 entries from the first host/network to the second.
252 .It Fl k Ar host | network
253 Kill all of the state entries originating from the specified
261 option may be specified, which will kill all the state entries
262 from the first host/network to the second.
263 For example, to kill all of the state entries originating from
268 To kill all of the state entries from
273 .Dl # pfctl -k host1 -k host2
275 To kill all states originating from 192.168.1.0/24 to 172.16.0.0/16:
277 .Dl # pfctl -k 192.168.1.0/24 -k 172.16.0.0/16
279 A network prefix length of 0 can be used as a wildcard.
280 To kill all states with the target
283 .Dl # pfctl -k 0.0.0.0/0 -k host2
285 Merge in explicitly given options without resetting those
287 Allows single options to be modified without disturbing the others:
288 .Bd -literal -offset indent
289 # echo "set loginterface fxp0" | pfctl -mf -
292 Load only the NAT rules present in the rule file.
293 Other rules and options are ignored.
295 Do not actually load rules, just parse them.
297 Load only the options present in the rule file.
298 Other rules and options are ignored.
300 Control the ruleset optimizer, overriding any rule file settings.
302 .Bl -tag -width xxxxxxxxxxxx -compact
304 Disable the ruleset optimizer.
306 Enable basic ruleset optimizations.
307 This is the default behaviour.
309 Enable basic ruleset optimizations with profiling.
311 For further information on the ruleset optimizer, see
316 instead of the default
319 Only print errors and warnings.
321 Load only the filter rules present in the rule file.
322 Other rules and options are ignored.
324 Perform reverse DNS lookups on states when displaying them.
326 Show the filter parameters specified by
328 (may be abbreviated):
330 .Bl -tag -width xxxxxxxxxxxxx -compact
332 Show the currently loaded NAT rules.
334 Show the currently loaded queue rules.
335 When used together with
337 per-queue statistics are also shown.
338 When used together with
341 will loop and show updated queue statistics every five seconds, including
342 measured bandwidth and packets per second.
344 Show the currently loaded filter rules.
345 When used together with
347 the per-rule statistics (number of evaluations,
348 packets and bytes) are also shown.
351 optimization done automatically by the kernel
352 will skip evaluation of rules where possible.
353 Packets passed statefully are counted in the rule that created the state
354 (even though the rule isn't evaluated more than once for the entire
357 Show the currently loaded anchors directly attached to the main ruleset.
360 is specified as well, the anchors loaded directly below the given
365 is specified, all anchors attached under the target anchor will be
366 displayed recursively.
368 Show the contents of the state table.
370 Show the contents of the source tracking table.
372 Show filter information (statistics and counters).
373 When used together with
375 source tracking statistics are also shown.
377 Show per-rule statistics (label, evaluations, packets total, bytes total,
378 packets in, bytes in, packets out, bytes out) of
379 filter rules with labels, useful for accounting.
381 Show the current global timeouts.
383 Show the current pool memory hard limits.
385 Show the list of tables.
387 Show the list of operating system fingerprints.
388 .It Fl s Cm Interfaces
389 Show the list of interfaces and interface drivers available to PF.
390 When used together with
392 it additionally lists which interfaces have skip rules activated.
393 When used together with
395 interface statistics are also shown.
397 can be used to select an interface or a group of interfaces.
399 Show all of the above, except for the lists of interfaces and operating
402 .It Fl T Ar command Op Ar address ...
405 (may be abbreviated) to apply to the table.
408 .Bl -tag -width xxxxxxxxxxxx -compact
412 Flush all addresses of a table.
414 Add one or more addresses in a table.
415 Automatically create a nonexisting table.
417 Delete one or more addresses from a table.
418 .It Fl T Cm expire Ar number
419 Delete addresses which had their statistics cleared more than
422 For entries which have never had their statistics cleared,
424 refers to the time they were added to the table.
426 Replace the addresses of the table.
427 Automatically create a nonexisting table.
429 Show the content (addresses) of a table.
431 Test if the given addresses match a table.
433 Clear all the statistics of a table.
435 Load only the table definitions from
437 This is used in conjunction with the
440 .Bd -literal -offset indent
441 # pfctl -Tl -f pf.conf
451 commands, the list of addresses can be specified either directly on the command
452 line and/or in an unformatted text file, using the
455 Comments starting with a
457 are allowed in the text file.
458 With these commands, the
460 flag can also be used once or twice, in which case
463 detailed result of the operation for each individual address, prefixed by
464 one of the following letters:
466 .Bl -tag -width XXX -compact
468 The address/network has been added.
470 The address/network has been changed (negated).
472 The address/network has been deleted.
480 The address/network is duplicated and therefore ignored.
482 The address/network cannot be added/deleted due to conflicting
486 The address/network has been cleared (statistics).
489 Each table maintains a set of counters that can be retrieved using the
493 For example, the following commands define a wide open firewall which will keep
494 track of packets going to or coming from the
497 The following commands configure the firewall and send 10 pings to the FTP
499 .Bd -literal -offset indent
500 # printf "table <test> { ftp.openbsd.org }\en \e
501 pass out to <test>\en" | pfctl -f-
502 # ping -qc10 ftp.openbsd.org
505 We can now use the table
507 command to output, for each address and packet direction, the number of packets
508 and bytes that are being passed or blocked by rules referencing the table.
509 The time at which the current accounting started is also shown with the
512 .Bd -literal -offset indent
513 # pfctl -t test -vTshow
515 Cleared: Thu Feb 13 18:55:18 2003
516 In/Block: [ Packets: 0 Bytes: 0 ]
517 In/Pass: [ Packets: 10 Bytes: 840 ]
518 Out/Block: [ Packets: 0 Bytes: 0 ]
519 Out/Pass: [ Packets: 10 Bytes: 840 ]
522 Similarly, it is possible to view global information about the tables
525 modifier twice and the
529 This will display the number of addresses on each table,
530 the number of rules which reference the table, and the global
531 packet statistics for the whole table:
532 .Bd -literal -offset indent
536 Cleared: Thu Feb 13 18:55:18 2003
537 References: [ Anchors: 0 Rules: 1 ]
538 Evaluations: [ NoMatch: 3496 Match: 1 ]
539 In/Block: [ Packets: 0 Bytes: 0 ]
540 In/Pass: [ Packets: 10 Bytes: 840 ]
541 In/XPass: [ Packets: 0 Bytes: 0 ]
542 Out/Block: [ Packets: 0 Bytes: 0 ]
543 Out/Pass: [ Packets: 10 Bytes: 840 ]
544 Out/XPass: [ Packets: 0 Bytes: 0 ]
547 As we can see here, only one packet \- the initial ping request \- matched the
548 table, but all packets passing as the result of the state are correctly
550 Reloading the table(s) or ruleset will not affect packet accounting in any way.
553 counters are incremented instead of the
557 packet is passed but doesn't match the table anymore.
558 This will happen in our example if someone flushes the table while the
562 When used with a single
565 will only display the first line containing the table flags and name.
566 The flags are defined as follows:
568 .Bl -tag -width XXX -compact
570 For constant tables, which cannot be altered outside
573 For persistent tables, which don't get automatically killed when no rules
576 For tables which are part of the
579 Tables without this flag do not really exist, cannot contain addresses, and are
584 For tables which are part of the
587 This flag can only be witnessed briefly during the loading of
590 For tables which are referenced (used) by rules.
592 This flag is set when a table in the main ruleset is hidden by one or more
593 tables of the same name from anchors attached below it.
596 Specify the name of the table.
598 Produce more verbose output.
601 will produce even more verbose output including ruleset warnings.
602 See the previous section for its effect on table commands.
606 (may be abbreviated) to one of the following:
608 .Bl -tag -width xxxxxxxxxxxx -compact
610 Don't generate debug messages.
612 Generate debug messages only for serious errors.
614 Generate debug messages for various errors.
616 Generate debug messages for common conditions.
619 Clear per-rule statistics.
622 .Bl -tag -width "/etc/pf.conf" -compact
624 Packet filter rules file.
626 Passive operating system fingerprint database.
643 filter mechanism first appeared in