]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - share/man/man5/pf.conf.5
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / share / man / man5 / pf.conf.5
1 .\"    $FreeBSD$
2 .\"     $OpenBSD: pf.conf.5,v 1.406 2009/01/31 19:37:12 sobrado Exp $
3 .\"
4 .\" Copyright (c) 2002, Daniel Hartmeier
5 .\" All rights reserved.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\"
11 .\"    - Redistributions of source code must retain the above copyright
12 .\"      notice, this list of conditions and the following disclaimer.
13 .\"    - Redistributions in binary form must reproduce the above
14 .\"      copyright notice, this list of conditions and the following
15 .\"      disclaimer in the documentation and/or other materials provided
16 .\"      with the distribution.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 .\" "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 .\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21 .\" FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22 .\" COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24 .\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25 .\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26 .\" CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
28 .\" ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 .\" POSSIBILITY OF SUCH DAMAGE.
30 .\"
31 .Dd June 29 2012
32 .Dt PF.CONF 5
33 .Os
34 .Sh NAME
35 .Nm pf.conf
36 .Nd packet filter configuration file
37 .Sh DESCRIPTION
38 The
39 .Xr pf 4
40 packet filter modifies, drops or passes packets according to rules or
41 definitions specified in
42 .Nm pf.conf .
43 .Sh STATEMENT ORDER
44 There are seven types of statements in
45 .Nm pf.conf :
46 .Bl -tag -width xxxx
47 .It Cm Macros
48 User-defined variables may be defined and used later, simplifying
49 the configuration file.
50 Macros must be defined before they are referenced in
51 .Nm pf.conf .
52 .It Cm Tables
53 Tables provide a mechanism for increasing the performance and flexibility of
54 rules with large numbers of source or destination addresses.
55 .It Cm Options
56 Options tune the behaviour of the packet filtering engine.
57 .It Cm Traffic Normalization Li (e.g. Em scrub )
58 Traffic normalization protects internal machines against inconsistencies
59 in Internet protocols and implementations.
60 .It Cm Queueing
61 Queueing provides rule-based bandwidth control.
62 .It Cm Translation Li (Various forms of NAT)
63 Translation rules specify how addresses are to be mapped or redirected to
64 other addresses.
65 .It Cm Packet Filtering
66 Packet filtering provides rule-based blocking or passing of packets.
67 .El
68 .Pp
69 With the exception of
70 .Cm macros
71 and
72 .Cm tables ,
73 the types of statements should be grouped and appear in
74 .Nm pf.conf
75 in the order shown above, as this matches the operation of the underlying
76 packet filtering engine.
77 By default
78 .Xr pfctl 8
79 enforces this order (see
80 .Ar set require-order
81 below).
82 .Pp
83 Comments can be put anywhere in the file using a hash mark
84 .Pq Sq # ,
85 and extend to the end of the current line.
86 .Pp
87 Additional configuration files can be included with the
88 .Ic include
89 keyword, for example:
90 .Bd -literal -offset indent
91 include "/etc/pf/sub.filter.conf"
92 .Ed
93 .Sh MACROS
94 Macros can be defined that will later be expanded in context.
95 Macro names must start with a letter, and may contain letters, digits
96 and underscores.
97 Macro names may not be reserved words (for example
98 .Ar pass ,
99 .Ar in ,
100 .Ar out ) .
101 Macros are not expanded inside quotes.
102 .Pp
103 For example,
104 .Bd -literal -offset indent
105 ext_if = \&"kue0\&"
106 all_ifs = \&"{\&" $ext_if lo0 \&"}\&"
107 pass out on $ext_if from any to any
108 pass in  on $ext_if proto tcp from any to any port 25
109 .Ed
110 .Sh TABLES
111 Tables are named structures which can hold a collection of addresses and
112 networks.
113 Lookups against tables in
114 .Xr pf 4
115 are relatively fast, making a single rule with tables much more efficient,
116 in terms of
117 processor usage and memory consumption, than a large number of rules which
118 differ only in IP address (either created explicitly or automatically by rule
119 expansion).
120 .Pp
121 Tables can be used as the source or destination of filter rules,
122 .Ar scrub
123 rules
124 or
125 translation rules such as
126 .Ar nat
127 or
128 .Ar rdr
129 (see below for details on the various rule types).
130 Tables can also be used for the redirect address of
131 .Ar nat
132 and
133 .Ar rdr
134 rules and in the routing options of filter rules, but only for
135 .Ar round-robin
136 pools.
137 .Pp
138 Tables can be defined with any of the following
139 .Xr pfctl 8
140 mechanisms.
141 As with macros, reserved words may not be used as table names.
142 .Bl -tag -width "manually"
143 .It Ar manually
144 Persistent tables can be manually created with the
145 .Ar add
146 or
147 .Ar replace
148 option of
149 .Xr pfctl 8 ,
150 before or after the ruleset has been loaded.
151 .It Pa pf.conf
152 Table definitions can be placed directly in this file, and loaded at the
153 same time as other rules are loaded, atomically.
154 Table definitions inside
155 .Nm pf.conf
156 use the
157 .Ar table
158 statement, and are especially useful to define non-persistent tables.
159 The contents of a pre-existing table defined without a list of addresses
160 to initialize it is not altered when
161 .Nm pf.conf
162 is loaded.
163 A table initialized with the empty list,
164 .Li { } ,
165 will be cleared on load.
166 .El
167 .Pp
168 Tables may be defined with the following attributes:
169 .Bl -tag -width persist
170 .It Ar persist
171 The
172 .Ar persist
173 flag forces the kernel to keep the table even when no rules refer to it.
174 If the flag is not set, the kernel will automatically remove the table
175 when the last rule referring to it is flushed.
176 .It Ar const
177 The
178 .Ar const
179 flag prevents the user from altering the contents of the table once it
180 has been created.
181 Without that flag,
182 .Xr pfctl 8
183 can be used to add or remove addresses from the table at any time, even
184 when running with
185 .Xr securelevel 7
186 = 2.
187 .It Ar counters
188 The
189 .Ar counters
190 flag enables per-address packet and byte counters which can be displayed with
191 .Xr pfctl 8 .
192 .El
193 .Pp
194 For example,
195 .Bd -literal -offset indent
196 table \*(Ltprivate\*(Gt const { 10/8, 172.16/12, 192.168/16 }
197 table \*(Ltbadhosts\*(Gt persist
198 block on fxp0 from { \*(Ltprivate\*(Gt, \*(Ltbadhosts\*(Gt } to any
199 .Ed
200 .Pp
201 creates a table called private, to hold RFC 1918 private network
202 blocks, and a table called badhosts, which is initially empty.
203 A filter rule is set up to block all traffic coming from addresses listed in
204 either table.
205 The private table cannot have its contents changed and the badhosts table
206 will exist even when no active filter rules reference it.
207 Addresses may later be added to the badhosts table, so that traffic from
208 these hosts can be blocked by using
209 .Bd -literal -offset indent
210 # pfctl -t badhosts -Tadd 204.92.77.111
211 .Ed
212 .Pp
213 A table can also be initialized with an address list specified in one or more
214 external files, using the following syntax:
215 .Bd -literal -offset indent
216 table \*(Ltspam\*(Gt persist file \&"/etc/spammers\&" file \&"/etc/openrelays\&"
217 block on fxp0 from \*(Ltspam\*(Gt to any
218 .Ed
219 .Pp
220 The files
221 .Pa /etc/spammers
222 and
223 .Pa /etc/openrelays
224 list IP addresses, one per line.
225 Any lines beginning with a # are treated as comments and ignored.
226 In addition to being specified by IP address, hosts may also be
227 specified by their hostname.
228 When the resolver is called to add a hostname to a table,
229 .Em all
230 resulting IPv4 and IPv6 addresses are placed into the table.
231 IP addresses can also be entered in a table by specifying a valid interface
232 name, a valid interface group or the
233 .Em self
234 keyword, in which case all addresses assigned to the interface(s) will be
235 added to the table.
236 .Sh OPTIONS
237 .Xr pf 4
238 may be tuned for various situations using the
239 .Ar set
240 command.
241 .Bl -tag -width xxxx
242 .It Ar set timeout
243 .Pp
244 .Bl -tag -width "src.track" -compact
245 .It Ar interval
246 Interval between purging expired states and fragments.
247 .It Ar frag
248 Seconds before an unassembled fragment is expired.
249 .It Ar src.track
250 Length of time to retain a source tracking entry after the last state
251 expires.
252 .El
253 .Pp
254 When a packet matches a stateful connection, the seconds to live for the
255 connection will be updated to that of the
256 .Ar proto.modifier
257 which corresponds to the connection state.
258 Each packet which matches this state will reset the TTL.
259 Tuning these values may improve the performance of the
260 firewall at the risk of dropping valid idle connections.
261 .Pp
262 .Bl -tag -width xxxx -compact
263 .It Ar tcp.first
264 The state after the first packet.
265 .It Ar tcp.opening
266 The state before the destination host ever sends a packet.
267 .It Ar tcp.established
268 The fully established state.
269 .It Ar tcp.closing
270 The state after the first FIN has been sent.
271 .It Ar tcp.finwait
272 The state after both FINs have been exchanged and the connection is closed.
273 Some hosts (notably web servers on Solaris) send TCP packets even after closing
274 the connection.
275 Increasing
276 .Ar tcp.finwait
277 (and possibly
278 .Ar tcp.closing )
279 can prevent blocking of such packets.
280 .It Ar tcp.closed
281 The state after one endpoint sends an RST.
282 .El
283 .Pp
284 ICMP and UDP are handled in a fashion similar to TCP, but with a much more
285 limited set of states:
286 .Pp
287 .Bl -tag -width xxxx -compact
288 .It Ar udp.first
289 The state after the first packet.
290 .It Ar udp.single
291 The state if the source host sends more than one packet but the destination
292 host has never sent one back.
293 .It Ar udp.multiple
294 The state if both hosts have sent packets.
295 .It Ar icmp.first
296 The state after the first packet.
297 .It Ar icmp.error
298 The state after an ICMP error came back in response to an ICMP packet.
299 .El
300 .Pp
301 Other protocols are handled similarly to UDP:
302 .Pp
303 .Bl -tag -width xxxx -compact
304 .It Ar other.first
305 .It Ar other.single
306 .It Ar other.multiple
307 .El
308 .Pp
309 Timeout values can be reduced adaptively as the number of state table
310 entries grows.
311 .Pp
312 .Bl -tag -width xxxx -compact
313 .It Ar adaptive.start
314 When the number of state entries exceeds this value, adaptive scaling
315 begins.
316 All timeout values are scaled linearly with factor
317 (adaptive.end - number of states) / (adaptive.end - adaptive.start).
318 .It Ar adaptive.end
319 When reaching this number of state entries, all timeout values become
320 zero, effectively purging all state entries immediately.
321 This value is used to define the scale factor, it should not actually
322 be reached (set a lower state limit, see below).
323 .El
324 .Pp
325 Adaptive timeouts are enabled by default, with an adaptive.start value
326 equal to 60% of the state limit, and an adaptive.end value equal to
327 120% of the state limit.
328 They can be disabled by setting both adaptive.start and adaptive.end to 0.
329 .Pp
330 The adaptive timeout values can be defined both globally and for each rule.
331 When used on a per-rule basis, the values relate to the number of
332 states created by the rule, otherwise to the total number of
333 states.
334 .Pp
335 For example:
336 .Bd -literal -offset indent
337 set timeout tcp.first 120
338 set timeout tcp.established 86400
339 set timeout { adaptive.start 6000, adaptive.end 12000 }
340 set limit states 10000
341 .Ed
342 .Pp
343 With 9000 state table entries, the timeout values are scaled to 50%
344 (tcp.first 60, tcp.established 43200).
345 .Pp
346 .It Ar set loginterface
347 Enable collection of packet and byte count statistics for the given
348 interface or interface group.
349 These statistics can be viewed using
350 .Bd -literal -offset indent
351 # pfctl -s info
352 .Ed
353 .Pp
354 In this example
355 .Xr pf 4
356 collects statistics on the interface named dc0:
357 .Bd -literal -offset indent
358 set loginterface dc0
359 .Ed
360 .Pp
361 One can disable the loginterface using:
362 .Bd -literal -offset indent
363 set loginterface none
364 .Ed
365 .Pp
366 .It Ar set limit
367 Sets hard limits on the memory pools used by the packet filter.
368 See
369 .Xr zone 9
370 for an explanation of memory pools.
371 .Pp
372 For example,
373 .Bd -literal -offset indent
374 set limit states 20000
375 .Ed
376 .Pp
377 sets the maximum number of entries in the memory pool used by state table
378 entries (generated by
379 .Ar pass
380 rules which do not specify
381 .Ar no state )
382 to 20000.
383 Using
384 .Bd -literal -offset indent
385 set limit frags 20000
386 .Ed
387 .Pp
388 sets the maximum number of entries in the memory pool used for fragment
389 reassembly (generated by
390 .Ar scrub
391 rules) to 20000.
392 Using
393 .Bd -literal -offset indent
394 set limit src-nodes 2000
395 .Ed
396 .Pp
397 sets the maximum number of entries in the memory pool used for tracking
398 source IP addresses (generated by the
399 .Ar sticky-address
400 and
401 .Ar src.track
402 options) to 2000.
403 Using
404 .Bd -literal -offset indent
405 set limit tables 1000
406 set limit table-entries 100000
407 .Ed
408 .Pp
409 sets limits on the memory pools used by tables.
410 The first limits the number of tables that can exist to 1000.
411 The second limits the overall number of addresses that can be stored
412 in tables to 100000.
413 .Pp
414 Various limits can be combined on a single line:
415 .Bd -literal -offset indent
416 set limit { states 20000, frags 20000, src-nodes 2000 }
417 .Ed
418 .Pp
419 .It Ar set ruleset-optimization
420 .Bl -tag -width xxxxxxxx -compact
421 .It Ar none
422 Disable the ruleset optimizer.
423 .It Ar basic
424 Enable basic ruleset optimization.
425 This is the default behaviour.
426 Basic ruleset optimization does four things to improve the
427 performance of ruleset evaluations:
428 .Pp
429 .Bl -enum -compact
430 .It
431 remove duplicate rules
432 .It
433 remove rules that are a subset of another rule
434 .It
435 combine multiple rules into a table when advantageous
436 .It
437 re-order the rules to improve evaluation performance
438 .El
439 .Pp
440 .It Ar profile
441 Uses the currently loaded ruleset as a feedback profile to tailor the
442 ordering of quick rules to actual network traffic.
443 .El
444 .Pp
445 It is important to note that the ruleset optimizer will modify the ruleset
446 to improve performance.
447 A side effect of the ruleset modification is that per-rule accounting
448 statistics will have different meanings than before.
449 If per-rule accounting is important for billing purposes or whatnot,
450 either the ruleset optimizer should not be used or a label field should
451 be added to all of the accounting rules to act as optimization barriers.
452 .Pp
453 Optimization can also be set as a command-line argument to
454 .Xr pfctl 8 ,
455 overriding the settings in
456 .Nm .
457 .It Ar set optimization
458 Optimize state timeouts for one of the following network environments:
459 .Pp
460 .Bl -tag -width xxxx -compact
461 .It Ar normal
462 A normal network environment.
463 Suitable for almost all networks.
464 .It Ar high-latency
465 A high-latency environment (such as a satellite connection).
466 .It Ar satellite
467 Alias for
468 .Ar high-latency .
469 .It Ar aggressive
470 Aggressively expire connections.
471 This can greatly reduce the memory usage of the firewall at the cost of
472 dropping idle connections early.
473 .It Ar conservative
474 Extremely conservative settings.
475 Avoid dropping legitimate connections at the
476 expense of greater memory utilization (possibly much greater on a busy
477 network) and slightly increased processor utilization.
478 .El
479 .Pp
480 For example:
481 .Bd -literal -offset indent
482 set optimization aggressive
483 .Ed
484 .Pp
485 .It Ar set block-policy
486 The
487 .Ar block-policy
488 option sets the default behaviour for the packet
489 .Ar block
490 action:
491 .Pp
492 .Bl -tag -width xxxxxxxx -compact
493 .It Ar drop
494 Packet is silently dropped.
495 .It Ar return
496 A TCP RST is returned for blocked TCP packets,
497 an ICMP UNREACHABLE is returned for blocked UDP packets,
498 and all other packets are silently dropped.
499 .El
500 .Pp
501 For example:
502 .Bd -literal -offset indent
503 set block-policy return
504 .Ed
505 .It Ar set state-policy
506 The
507 .Ar state-policy
508 option sets the default behaviour for states:
509 .Pp
510 .Bl -tag -width group-bound -compact
511 .It Ar if-bound
512 States are bound to interface.
513 .It Ar floating
514 States can match packets on any interfaces (the default).
515 .El
516 .Pp
517 For example:
518 .Bd -literal -offset indent
519 set state-policy if-bound
520 .Ed
521 .It Ar set state-defaults
522 The
523 .Ar state-defaults
524 option sets the state options for states created from rules
525 without an explicit
526 .Ar keep state .
527 For example:
528 .Bd -literal -offset indent
529 set state-defaults pflow, no-sync
530 .Ed
531 .It Ar set hostid
532 The 32-bit
533 .Ar hostid
534 identifies this firewall's state table entries to other firewalls
535 in a
536 .Xr pfsync 4
537 failover cluster.
538 By default the hostid is set to a pseudo-random value, however it may be
539 desirable to manually configure it, for example to more easily identify the
540 source of state table entries.
541 .Bd -literal -offset indent
542 set hostid 1
543 .Ed
544 .Pp
545 The hostid may be specified in either decimal or hexadecimal.
546 .It Ar set require-order
547 By default
548 .Xr pfctl 8
549 enforces an ordering of the statement types in the ruleset to:
550 .Em options ,
551 .Em normalization ,
552 .Em queueing ,
553 .Em translation ,
554 .Em filtering .
555 Setting this option to
556 .Ar no
557 disables this enforcement.
558 There may be non-trivial and non-obvious implications to an out of
559 order ruleset.
560 Consider carefully before disabling the order enforcement.
561 .It Ar set fingerprints
562 Load fingerprints of known operating systems from the given filename.
563 By default fingerprints of known operating systems are automatically
564 loaded from
565 .Xr pf.os 5
566 in
567 .Pa /etc
568 but can be overridden via this option.
569 Setting this option may leave a small period of time where the fingerprints
570 referenced by the currently active ruleset are inconsistent until the new
571 ruleset finishes loading.
572 .Pp
573 For example:
574 .Pp
575 .Dl set fingerprints \&"/etc/pf.os.devel\&"
576 .Pp
577 .It Ar set skip on Aq Ar ifspec
578 List interfaces for which packets should not be filtered.
579 Packets passing in or out on such interfaces are passed as if pf was
580 disabled, i.e. pf does not process them in any way.
581 This can be useful on loopback and other virtual interfaces, when
582 packet filtering is not desired and can have unexpected effects.
583 For example:
584 .Pp
585 .Dl set skip on lo0
586 .Pp
587 .It Ar set debug
588 Set the debug
589 .Ar level
590 to one of the following:
591 .Pp
592 .Bl -tag -width xxxxxxxxxxxx -compact
593 .It Ar none
594 Don't generate debug messages.
595 .It Ar urgent
596 Generate debug messages only for serious errors.
597 .It Ar misc
598 Generate debug messages for various errors.
599 .It Ar loud
600 Generate debug messages for common conditions.
601 .El
602 .El
603 .Sh TRAFFIC NORMALIZATION
604 Traffic normalization is used to sanitize packet content in such
605 a way that there are no ambiguities in packet interpretation on
606 the receiving side.
607 The normalizer does IP fragment reassembly to prevent attacks
608 that confuse intrusion detection systems by sending overlapping
609 IP fragments.
610 Packet normalization is invoked with the
611 .Ar scrub
612 directive.
613 .Pp
614 .Ar scrub
615 has the following options:
616 .Bl -tag -width xxxx
617 .It Ar no-df
618 Clears the
619 .Ar dont-fragment
620 bit from a matching IP packet.
621 Some operating systems are known to generate fragmented packets with the
622 .Ar dont-fragment
623 bit set.
624 This is particularly true with NFS.
625 .Ar Scrub
626 will drop such fragmented
627 .Ar dont-fragment
628 packets unless
629 .Ar no-df
630 is specified.
631 .Pp
632 Unfortunately some operating systems also generate their
633 .Ar dont-fragment
634 packets with a zero IP identification field.
635 Clearing the
636 .Ar dont-fragment
637 bit on packets with a zero IP ID may cause deleterious results if an
638 upstream router later fragments the packet.
639 Using the
640 .Ar random-id
641 modifier (see below) is recommended in combination with the
642 .Ar no-df
643 modifier to ensure unique IP identifiers.
644 .It Ar min-ttl Aq Ar number
645 Enforces a minimum TTL for matching IP packets.
646 .It Ar max-mss Aq Ar number
647 Enforces a maximum MSS for matching TCP packets.
648 .It Xo Ar set-tos Aq Ar string
649 .No \*(Ba Aq Ar number
650 .Xc
651 Enforces a
652 .Em TOS
653 for matching IP packets.
654 .Em TOS
655 may be
656 given as one of
657 .Ar lowdelay ,
658 .Ar throughput ,
659 .Ar reliability ,
660 or as either hex or decimal.
661 .It Ar random-id
662 Replaces the IP identification field with random values to compensate
663 for predictable values generated by many hosts.
664 This option only applies to packets that are not fragmented
665 after the optional fragment reassembly.
666 .It Ar fragment reassemble
667 Using
668 .Ar scrub
669 rules, fragments can be reassembled by normalization.
670 In this case, fragments are buffered until they form a complete
671 packet, and only the completed packet is passed on to the filter.
672 The advantage is that filter rules have to deal only with complete
673 packets, and can ignore fragments.
674 The drawback of caching fragments is the additional memory cost.
675 But the full reassembly method is the only method that currently works
676 with NAT.
677 This is the default behavior of a
678 .Ar scrub
679 rule if no fragmentation modifier is supplied.
680 .It Ar fragment crop
681 The default fragment reassembly method is expensive, hence the option
682 to crop is provided.
683 In this case,
684 .Xr pf 4
685 will track the fragments and cache a small range descriptor.
686 Duplicate fragments are dropped and overlaps are cropped.
687 Thus data will only occur once on the wire with ambiguities resolving to
688 the first occurrence.
689 Unlike the
690 .Ar fragment reassemble
691 modifier, fragments are not buffered, they are passed as soon as they
692 are received.
693 The
694 .Ar fragment crop
695 reassembly mechanism does not yet work with NAT.
696 .Pp
697 .It Ar fragment drop-ovl
698 This option is similar to the
699 .Ar fragment crop
700 modifier except that all overlapping or duplicate fragments will be
701 dropped, and all further corresponding fragments will be
702 dropped as well.
703 .It Ar reassemble tcp
704 Statefully normalizes TCP connections.
705 .Ar scrub reassemble tcp
706 rules may not have the direction (in/out) specified.
707 .Ar reassemble tcp
708 performs the following normalizations:
709 .Pp
710 .Bl -tag -width timeout -compact
711 .It ttl
712 Neither side of the connection is allowed to reduce their IP TTL.
713 An attacker may send a packet such that it reaches the firewall, affects
714 the firewall state, and expires before reaching the destination host.
715 .Ar reassemble tcp
716 will raise the TTL of all packets back up to the highest value seen on
717 the connection.
718 .It timestamp modulation
719 Modern TCP stacks will send a timestamp on every TCP packet and echo
720 the other endpoint's timestamp back to them.
721 Many operating systems will merely start the timestamp at zero when
722 first booted, and increment it several times a second.
723 The uptime of the host can be deduced by reading the timestamp and multiplying
724 by a constant.
725 Also observing several different timestamps can be used to count hosts
726 behind a NAT device.
727 And spoofing TCP packets into a connection requires knowing or guessing
728 valid timestamps.
729 Timestamps merely need to be monotonically increasing and not derived off a
730 guessable base time.
731 .Ar reassemble tcp
732 will cause
733 .Ar scrub
734 to modulate the TCP timestamps with a random number.
735 .It extended PAWS checks
736 There is a problem with TCP on long fat pipes, in that a packet might get
737 delayed for longer than it takes the connection to wrap its 32-bit sequence
738 space.
739 In such an occurrence, the old packet would be indistinguishable from a
740 new packet and would be accepted as such.
741 The solution to this is called PAWS: Protection Against Wrapped Sequence
742 numbers.
743 It protects against it by making sure the timestamp on each packet does
744 not go backwards.
745 .Ar reassemble tcp
746 also makes sure the timestamp on the packet does not go forward more
747 than the RFC allows.
748 By doing this,
749 .Xr pf 4
750 artificially extends the security of TCP sequence numbers by 10 to 18
751 bits when the host uses appropriately randomized timestamps, since a
752 blind attacker would have to guess the timestamp as well.
753 .El
754 .El
755 .Pp
756 For example,
757 .Bd -literal -offset indent
758 scrub in on $ext_if all fragment reassemble
759 .Ed
760 .Pp
761 The
762 .Ar no
763 option prefixed to a scrub rule causes matching packets to remain unscrubbed,
764 much in the same way as
765 .Ar drop quick
766 works in the packet filter (see below).
767 This mechanism should be used when it is necessary to exclude specific packets
768 from broader scrub rules.
769 .Sh QUEUEING
770 The ALTQ system is currently not available in the GENERIC kernel nor as
771 loadable modules.
772 In order to use the herein after called queueing options one has to use a
773 custom built kernel.
774 Please refer to
775 .Xr altq 4
776 to learn about the related kernel options.
777 .Pp
778 Packets can be assigned to queues for the purpose of bandwidth
779 control.
780 At least two declarations are required to configure queues, and later
781 any packet filtering rule can reference the defined queues by name.
782 During the filtering component of
783 .Nm pf.conf ,
784 the last referenced
785 .Ar queue
786 name is where any packets from
787 .Ar pass
788 rules will be queued, while for
789 .Ar block
790 rules it specifies where any resulting ICMP or TCP RST
791 packets should be queued.
792 The
793 .Ar scheduler
794 defines the algorithm used to decide which packets get delayed, dropped, or
795 sent out immediately.
796 There are three
797 .Ar schedulers
798 currently supported.
799 .Bl -tag -width xxxx
800 .It Ar cbq
801 Class Based Queueing.
802 .Ar Queues
803 attached to an interface build a tree, thus each
804 .Ar queue
805 can have further child
806 .Ar queues .
807 Each queue can have a
808 .Ar priority
809 and a
810 .Ar bandwidth
811 assigned.
812 .Ar Priority
813 mainly controls the time packets take to get sent out, while
814 .Ar bandwidth
815 has primarily effects on throughput.
816 .Ar cbq
817 achieves both partitioning and sharing of link bandwidth
818 by hierarchically structured classes.
819 Each class has its own
820 .Ar queue
821 and is assigned its share of
822 .Ar bandwidth .
823 A child class can borrow bandwidth from its parent class
824 as long as excess bandwidth is available
825 (see the option
826 .Ar borrow ,
827 below).
828 .It Ar priq
829 Priority Queueing.
830 .Ar Queues
831 are flat attached to the interface, thus,
832 .Ar queues
833 cannot have further child
834 .Ar queues .
835 Each
836 .Ar queue
837 has a unique
838 .Ar priority
839 assigned, ranging from 0 to 15.
840 Packets in the
841 .Ar queue
842 with the highest
843 .Ar priority
844 are processed first.
845 .It Ar hfsc
846 Hierarchical Fair Service Curve.
847 .Ar Queues
848 attached to an interface build a tree, thus each
849 .Ar queue
850 can have further child
851 .Ar queues .
852 Each queue can have a
853 .Ar priority
854 and a
855 .Ar bandwidth
856 assigned.
857 .Ar Priority
858 mainly controls the time packets take to get sent out, while
859 .Ar bandwidth
860 primarily affects throughput.
861 .Ar hfsc
862 supports both link-sharing and guaranteed real-time services.
863 It employs a service curve based QoS model,
864 and its unique feature is an ability to decouple
865 .Ar delay
866 and
867 .Ar bandwidth
868 allocation.
869 .El
870 .Pp
871 The interfaces on which queueing should be activated are declared using
872 the
873 .Ar altq on
874 declaration.
875 .Ar altq on
876 has the following keywords:
877 .Bl -tag -width xxxx
878 .It Aq Ar interface
879 Queueing is enabled on the named interface.
880 .It Aq Ar scheduler
881 Specifies which queueing scheduler to use.
882 Currently supported values
883 are
884 .Ar cbq
885 for Class Based Queueing,
886 .Ar priq
887 for Priority Queueing and
888 .Ar hfsc
889 for the Hierarchical Fair Service Curve scheduler.
890 .It Ar bandwidth Aq Ar bw
891 The maximum bitrate for all queues on an
892 interface may be specified using the
893 .Ar bandwidth
894 keyword.
895 The value can be specified as an absolute value or as a
896 percentage of the interface bandwidth.
897 When using an absolute value, the suffixes
898 .Ar b ,
899 .Ar Kb ,
900 .Ar Mb ,
901 and
902 .Ar Gb
903 are used to represent bits, kilobits, megabits, and
904 gigabits per second, respectively.
905 The value must not exceed the interface bandwidth.
906 If
907 .Ar bandwidth
908 is not specified, the interface bandwidth is used
909 (but take note that some interfaces do not know their bandwidth,
910 or can adapt their bandwidth rates).
911 .It Ar qlimit Aq Ar limit
912 The maximum number of packets held in the queue.
913 The default is 50.
914 .It Ar tbrsize Aq Ar size
915 Adjusts the size, in bytes, of the token bucket regulator.
916 If not specified, heuristics based on the
917 interface bandwidth are used to determine the size.
918 .It Ar queue Aq Ar list
919 Defines a list of subqueues to create on an interface.
920 .El
921 .Pp
922 In the following example, the interface dc0
923 should queue up to 5Mbps in four second-level queues using
924 Class Based Queueing.
925 Those four queues will be shown in a later example.
926 .Bd -literal -offset indent
927 altq on dc0 cbq bandwidth 5Mb queue { std, http, mail, ssh }
928 .Ed
929 .Pp
930 Once interfaces are activated for queueing using the
931 .Ar altq
932 directive, a sequence of
933 .Ar queue
934 directives may be defined.
935 The name associated with a
936 .Ar queue
937 must match a queue defined in the
938 .Ar altq
939 directive (e.g. mail), or, except for the
940 .Ar priq
941 .Ar scheduler ,
942 in a parent
943 .Ar queue
944 declaration.
945 The following keywords can be used:
946 .Bl -tag -width xxxx
947 .It Ar on Aq Ar interface
948 Specifies the interface the queue operates on.
949 If not given, it operates on all matching interfaces.
950 .It Ar bandwidth Aq Ar bw
951 Specifies the maximum bitrate to be processed by the queue.
952 This value must not exceed the value of the parent
953 .Ar queue
954 and can be specified as an absolute value or a percentage of the parent
955 queue's bandwidth.
956 If not specified, defaults to 100% of the parent queue's bandwidth.
957 The
958 .Ar priq
959 scheduler does not support bandwidth specification.
960 .It Ar priority Aq Ar level
961 Between queues a priority level can be set.
962 For
963 .Ar cbq
964 and
965 .Ar hfsc ,
966 the range is 0 to 7 and for
967 .Ar priq ,
968 the range is 0 to 15.
969 The default for all is 1.
970 .Ar Priq
971 queues with a higher priority are always served first.
972 .Ar Cbq
973 and
974 .Ar Hfsc
975 queues with a higher priority are preferred in the case of overload.
976 .It Ar qlimit Aq Ar limit
977 The maximum number of packets held in the queue.
978 The default is 50.
979 .El
980 .Pp
981 The
982 .Ar scheduler
983 can get additional parameters with
984 .Xo Aq Ar scheduler
985 .Pf ( Aq Ar parameters ) .
986 .Xc
987 Parameters are as follows:
988 .Bl -tag -width Fl
989 .It Ar default
990 Packets not matched by another queue are assigned to this one.
991 Exactly one default queue is required.
992 .It Ar red
993 Enable RED (Random Early Detection) on this queue.
994 RED drops packets with a probability proportional to the average
995 queue length.
996 .It Ar rio
997 Enables RIO on this queue.
998 RIO is RED with IN/OUT, thus running
999 RED two times more than RIO would achieve the same effect.
1000 RIO is currently not supported in the GENERIC kernel.
1001 .It Ar ecn
1002 Enables ECN (Explicit Congestion Notification) on this queue.
1003 ECN implies RED.
1004 .El
1005 .Pp
1006 The
1007 .Ar cbq
1008 .Ar scheduler
1009 supports an additional option:
1010 .Bl -tag -width Fl
1011 .It Ar borrow
1012 The queue can borrow bandwidth from the parent.
1013 .El
1014 .Pp
1015 The
1016 .Ar hfsc
1017 .Ar scheduler
1018 supports some additional options:
1019 .Bl -tag -width Fl
1020 .It Ar realtime Aq Ar sc
1021 The minimum required bandwidth for the queue.
1022 .It Ar upperlimit Aq Ar sc
1023 The maximum allowed bandwidth for the queue.
1024 .It Ar linkshare Aq Ar sc
1025 The bandwidth share of a backlogged queue.
1026 .El
1027 .Pp
1028 .Aq Ar sc
1029 is an acronym for
1030 .Ar service curve .
1031 .Pp
1032 The format for service curve specifications is
1033 .Ar ( m1 , d , m2 ) .
1034 .Ar m2
1035 controls the bandwidth assigned to the queue.
1036 .Ar m1
1037 and
1038 .Ar d
1039 are optional and can be used to control the initial bandwidth assignment.
1040 For the first
1041 .Ar d
1042 milliseconds the queue gets the bandwidth given as
1043 .Ar m1 ,
1044 afterwards the value given in
1045 .Ar m2 .
1046 .Pp
1047 Furthermore, with
1048 .Ar cbq
1049 and
1050 .Ar hfsc ,
1051 child queues can be specified as in an
1052 .Ar altq
1053 declaration, thus building a tree of queues using a part of
1054 their parent's bandwidth.
1055 .Pp
1056 Packets can be assigned to queues based on filter rules by using the
1057 .Ar queue
1058 keyword.
1059 Normally only one
1060 .Ar queue
1061 is specified; when a second one is specified it will instead be used for
1062 packets which have a
1063 .Em TOS
1064 of
1065 .Em lowdelay
1066 and for TCP ACKs with no data payload.
1067 .Pp
1068 To continue the previous example, the examples below would specify the
1069 four referenced
1070 queues, plus a few child queues.
1071 Interactive
1072 .Xr ssh 1
1073 sessions get priority over bulk transfers like
1074 .Xr scp 1
1075 and
1076 .Xr sftp 1 .
1077 The queues may then be referenced by filtering rules (see
1078 .Sx PACKET FILTERING
1079 below).
1080 .Bd -literal
1081 queue std bandwidth 10% cbq(default)
1082 queue http bandwidth 60% priority 2 cbq(borrow red) \e
1083       { employees, developers }
1084 queue  developers bandwidth 75% cbq(borrow)
1085 queue  employees bandwidth 15%
1086 queue mail bandwidth 10% priority 0 cbq(borrow ecn)
1087 queue ssh bandwidth 20% cbq(borrow) { ssh_interactive, ssh_bulk }
1088 queue  ssh_interactive bandwidth 50% priority 7 cbq(borrow)
1089 queue  ssh_bulk bandwidth 50% priority 0 cbq(borrow)
1090
1091 block return out on dc0 inet all queue std
1092 pass out on dc0 inet proto tcp from $developerhosts to any port 80 \e
1093       queue developers
1094 pass out on dc0 inet proto tcp from $employeehosts to any port 80 \e
1095       queue employees
1096 pass out on dc0 inet proto tcp from any to any port 22 \e
1097       queue(ssh_bulk, ssh_interactive)
1098 pass out on dc0 inet proto tcp from any to any port 25 \e
1099       queue mail
1100 .Ed
1101 .Sh TRANSLATION
1102 Translation rules modify either the source or destination address of the
1103 packets associated with a stateful connection.
1104 A stateful connection is automatically created to track packets matching
1105 such a rule as long as they are not blocked by the filtering section of
1106 .Nm pf.conf .
1107 The translation engine modifies the specified address and/or port in the
1108 packet, recalculates IP, TCP and UDP checksums as necessary, and passes it to
1109 the packet filter for evaluation.
1110 .Pp
1111 Since translation occurs before filtering the filter
1112 engine will see packets as they look after any
1113 addresses and ports have been translated.
1114 Filter rules will therefore have to filter based on the translated
1115 address and port number.
1116 Packets that match a translation rule are only automatically passed if
1117 the
1118 .Ar pass
1119 modifier is given, otherwise they are
1120 still subject to
1121 .Ar block
1122 and
1123 .Ar pass
1124 rules.
1125 .Pp
1126 The state entry created permits
1127 .Xr pf 4
1128 to keep track of the original address for traffic associated with that state
1129 and correctly direct return traffic for that connection.
1130 .Pp
1131 Various types of translation are possible with pf:
1132 .Bl -tag -width xxxx
1133 .It Ar binat
1134 A
1135 .Ar binat
1136 rule specifies a bidirectional mapping between an external IP netblock
1137 and an internal IP netblock.
1138 .It Ar nat
1139 A
1140 .Ar nat
1141 rule specifies that IP addresses are to be changed as the packet
1142 traverses the given interface.
1143 This technique allows one or more IP addresses
1144 on the translating host to support network traffic for a larger range of
1145 machines on an "inside" network.
1146 Although in theory any IP address can be used on the inside, it is strongly
1147 recommended that one of the address ranges defined by RFC 1918 be used.
1148 These netblocks are:
1149 .Bd -literal
1150 10.0.0.0 - 10.255.255.255 (all of net 10, i.e., 10/8)
1151 172.16.0.0 - 172.31.255.255 (i.e., 172.16/12)
1152 192.168.0.0 - 192.168.255.255 (i.e., 192.168/16)
1153 .Ed
1154 .It Pa rdr
1155 The packet is redirected to another destination and possibly a
1156 different port.
1157 .Ar rdr
1158 rules can optionally specify port ranges instead of single ports.
1159 rdr ... port 2000:2999 -\*(Gt ... port 4000
1160 redirects ports 2000 to 2999 (inclusive) to port 4000.
1161 rdr ... port 2000:2999 -\*(Gt ... port 4000:*
1162 redirects port 2000 to 4000, 2001 to 4001, ..., 2999 to 4999.
1163 .El
1164 .Pp
1165 In addition to modifying the address, some translation rules may modify
1166 source or destination ports for
1167 .Xr tcp 4
1168 or
1169 .Xr udp 4
1170 connections; implicitly in the case of
1171 .Ar nat
1172 rules and explicitly in the case of
1173 .Ar rdr
1174 rules.
1175 Port numbers are never translated with a
1176 .Ar binat
1177 rule.
1178 .Pp
1179 Evaluation order of the translation rules is dependent on the type
1180 of the translation rules and of the direction of a packet.
1181 .Ar binat
1182 rules are always evaluated first.
1183 Then either the
1184 .Ar rdr
1185 rules are evaluated on an inbound packet or the
1186 .Ar nat
1187 rules on an outbound packet.
1188 Rules of the same type are evaluated in the same order in which they
1189 appear in the ruleset.
1190 The first matching rule decides what action is taken.
1191 .Pp
1192 The
1193 .Ar no
1194 option prefixed to a translation rule causes packets to remain untranslated,
1195 much in the same way as
1196 .Ar drop quick
1197 works in the packet filter (see below).
1198 If no rule matches the packet it is passed to the filter engine unmodified.
1199 .Pp
1200 Translation rules apply only to packets that pass through
1201 the specified interface, and if no interface is specified,
1202 translation is applied to packets on all interfaces.
1203 For instance, redirecting port 80 on an external interface to an internal
1204 web server will only work for connections originating from the outside.
1205 Connections to the address of the external interface from local hosts will
1206 not be redirected, since such packets do not actually pass through the
1207 external interface.
1208 Redirections cannot reflect packets back through the interface they arrive
1209 on, they can only be redirected to hosts connected to different interfaces
1210 or to the firewall itself.
1211 .Pp
1212 Note that redirecting external incoming connections to the loopback
1213 address, as in
1214 .Bd -literal -offset indent
1215 rdr on ne3 inet proto tcp to port smtp -\*(Gt 127.0.0.1 port spamd
1216 .Ed
1217 .Pp
1218 will effectively allow an external host to connect to daemons
1219 bound solely to the loopback address, circumventing the traditional
1220 blocking of such connections on a real interface.
1221 Unless this effect is desired, any of the local non-loopback addresses
1222 should be used as redirection target instead, which allows external
1223 connections only to daemons bound to this address or not bound to
1224 any address.
1225 .Pp
1226 See
1227 .Sx TRANSLATION EXAMPLES
1228 below.
1229 .Sh PACKET FILTERING
1230 .Xr pf 4
1231 has the ability to
1232 .Ar block
1233 and
1234 .Ar pass
1235 packets based on attributes of their layer 3 (see
1236 .Xr ip 4
1237 and
1238 .Xr ip6 4 )
1239 and layer 4 (see
1240 .Xr icmp 4 ,
1241 .Xr icmp6 4 ,
1242 .Xr tcp 4 ,
1243 .Xr udp 4 )
1244 headers.
1245 In addition, packets may also be
1246 assigned to queues for the purpose of bandwidth control.
1247 .Pp
1248 For each packet processed by the packet filter, the filter rules are
1249 evaluated in sequential order, from first to last.
1250 The last matching rule decides what action is taken.
1251 If no rule matches the packet, the default action is to pass
1252 the packet.
1253 .Pp
1254 The following actions can be used in the filter:
1255 .Bl -tag -width xxxx
1256 .It Ar block
1257 The packet is blocked.
1258 There are a number of ways in which a
1259 .Ar block
1260 rule can behave when blocking a packet.
1261 The default behaviour is to
1262 .Ar drop
1263 packets silently, however this can be overridden or made
1264 explicit either globally, by setting the
1265 .Ar block-policy
1266 option, or on a per-rule basis with one of the following options:
1267 .Pp
1268 .Bl -tag -width xxxx -compact
1269 .It Ar drop
1270 The packet is silently dropped.
1271 .It Ar return-rst
1272 This applies only to
1273 .Xr tcp 4
1274 packets, and issues a TCP RST which closes the
1275 connection.
1276 .It Ar return-icmp
1277 .It Ar return-icmp6
1278 This causes ICMP messages to be returned for packets which match the rule.
1279 By default this is an ICMP UNREACHABLE message, however this
1280 can be overridden by specifying a message as a code or number.
1281 .It Ar return
1282 This causes a TCP RST to be returned for
1283 .Xr tcp 4
1284 packets and an ICMP UNREACHABLE for UDP and other packets.
1285 .El
1286 .Pp
1287 Options returning ICMP packets currently have no effect if
1288 .Xr pf 4
1289 operates on a
1290 .Xr if_bridge 4 ,
1291 as the code to support this feature has not yet been implemented.
1292 .Pp
1293 The simplest mechanism to block everything by default and only pass
1294 packets that match explicit rules is specify a first filter rule of:
1295 .Bd -literal -offset indent
1296 block all
1297 .Ed
1298 .It Ar pass
1299 The packet is passed;
1300 state is created unless the
1301 .Ar no state
1302 option is specified.
1303 .El
1304 .Pp
1305 By default
1306 .Xr pf 4
1307 filters packets statefully; the first time a packet matches a
1308 .Ar pass
1309 rule, a state entry is created; for subsequent packets the filter checks
1310 whether the packet matches any state.
1311 If it does, the packet is passed without evaluation of any rules.
1312 After the connection is closed or times out, the state entry is automatically
1313 removed.
1314 .Pp
1315 This has several advantages.
1316 For TCP connections, comparing a packet to a state involves checking
1317 its sequence numbers, as well as TCP timestamps if a
1318 .Ar scrub reassemble tcp
1319 rule applies to the connection.
1320 If these values are outside the narrow windows of expected
1321 values, the packet is dropped.
1322 This prevents spoofing attacks, such as when an attacker sends packets with
1323 a fake source address/port but does not know the connection's sequence
1324 numbers.
1325 Similarly,
1326 .Xr pf 4
1327 knows how to match ICMP replies to states.
1328 For example,
1329 .Bd -literal -offset indent
1330 pass out inet proto icmp all icmp-type echoreq
1331 .Ed
1332 .Pp
1333 allows echo requests (such as those created by
1334 .Xr ping 8 )
1335 out statefully, and matches incoming echo replies correctly to states.
1336 .Pp
1337 Also, looking up states is usually faster than evaluating rules.
1338 If there are 50 rules, all of them are evaluated sequentially in O(n).
1339 Even with 50000 states, only 16 comparisons are needed to match a
1340 state, since states are stored in a binary search tree that allows
1341 searches in O(log2 n).
1342 .Pp
1343 Furthermore, correct handling of ICMP error messages is critical to
1344 many protocols, particularly TCP.
1345 .Xr pf 4
1346 matches ICMP error messages to the correct connection, checks them against
1347 connection parameters, and passes them if appropriate.
1348 For example if an ICMP source quench message referring to a stateful TCP
1349 connection arrives, it will be matched to the state and get passed.
1350 .Pp
1351 Finally, state tracking is required for
1352 .Ar nat , binat No and Ar rdr
1353 rules, in order to track address and port translations and reverse the
1354 translation on returning packets.
1355 .Pp
1356 .Xr pf 4
1357 will also create state for other protocols which are effectively stateless by
1358 nature.
1359 UDP packets are matched to states using only host addresses and ports,
1360 and other protocols are matched to states using only the host addresses.
1361 .Pp
1362 If stateless filtering of individual packets is desired,
1363 the
1364 .Ar no state
1365 keyword can be used to specify that state will not be created
1366 if this is the last matching rule.
1367 A number of parameters can also be set to affect how
1368 .Xr pf 4
1369 handles state tracking.
1370 See
1371 .Sx STATEFUL TRACKING OPTIONS
1372 below for further details.
1373 .Sh PARAMETERS
1374 The rule parameters specify the packets to which a rule applies.
1375 A packet always comes in on, or goes out through, one interface.
1376 Most parameters are optional.
1377 If a parameter is specified, the rule only applies to packets with
1378 matching attributes.
1379 Certain parameters can be expressed as lists, in which case
1380 .Xr pfctl 8
1381 generates all needed rule combinations.
1382 .Bl -tag -width xxxx
1383 .It Ar in No or Ar out
1384 This rule applies to incoming or outgoing packets.
1385 If neither
1386 .Ar in
1387 nor
1388 .Ar out
1389 are specified, the rule will match packets in both directions.
1390 .It Ar log
1391 In addition to the action specified, a log message is generated.
1392 Only the packet that establishes the state is logged,
1393 unless the
1394 .Ar no state
1395 option is specified.
1396 The logged packets are sent to a
1397 .Xr pflog 4
1398 interface, by default
1399 .Ar pflog0 .
1400 This interface is monitored by the
1401 .Xr pflogd 8
1402 logging daemon, which dumps the logged packets to the file
1403 .Pa /var/log/pflog
1404 in
1405 .Xr pcap 3
1406 binary format.
1407 .It Ar log (all)
1408 Used to force logging of all packets for a connection.
1409 This is not necessary when
1410 .Ar no state
1411 is explicitly specified.
1412 As with
1413 .Ar log ,
1414 packets are logged to
1415 .Xr pflog 4 .
1416 .It Ar log (user)
1417 Logs the
1418 .Ux
1419 user ID of the user that owns the socket and the PID of the process that
1420 has the socket open where the packet is sourced from or destined to
1421 (depending on which socket is local).
1422 This is in addition to the normal information logged.
1423 .Pp
1424 Only the first packet
1425 logged via
1426 .Ar log (all, user)
1427 will have the user credentials logged when using stateful matching.
1428 .It Ar log (to Aq Ar interface )
1429 Send logs to the specified
1430 .Xr pflog 4
1431 interface instead of
1432 .Ar pflog0 .
1433 .It Ar quick
1434 If a packet matches a rule which has the
1435 .Ar quick
1436 option set, this rule
1437 is considered the last matching rule, and evaluation of subsequent rules
1438 is skipped.
1439 .It Ar on Aq Ar interface
1440 This rule applies only to packets coming in on, or going out through, this
1441 particular interface or interface group.
1442 For more information on interface groups,
1443 see the
1444 .Ic group
1445 keyword in
1446 .Xr ifconfig 8 .
1447 .It Aq Ar af
1448 This rule applies only to packets of this address family.
1449 Supported values are
1450 .Ar inet
1451 and
1452 .Ar inet6 .
1453 .It Ar proto Aq Ar protocol
1454 This rule applies only to packets of this protocol.
1455 Common protocols are
1456 .Xr icmp 4 ,
1457 .Xr icmp6 4 ,
1458 .Xr tcp 4 ,
1459 and
1460 .Xr udp 4 .
1461 For a list of all the protocol name to number mappings used by
1462 .Xr pfctl 8 ,
1463 see the file
1464 .Pa /etc/protocols .
1465 .It Xo
1466 .Ar from Aq Ar source
1467 .Ar port Aq Ar source
1468 .Ar os Aq Ar source
1469 .Ar to Aq Ar dest
1470 .Ar port Aq Ar dest
1471 .Xc
1472 This rule applies only to packets with the specified source and destination
1473 addresses and ports.
1474 .Pp
1475 Addresses can be specified in CIDR notation (matching netblocks), as
1476 symbolic host names, interface names or interface group names, or as any
1477 of the following keywords:
1478 .Pp
1479 .Bl -tag -width xxxxxxxxxxxxxx -compact
1480 .It Ar any
1481 Any address.
1482 .It Ar no-route
1483 Any address which is not currently routable.
1484 .It Ar urpf-failed
1485 Any source address that fails a unicast reverse path forwarding (URPF)
1486 check, i.e. packets coming in on an interface other than that which holds
1487 the route back to the packet's source address.
1488 .It Aq Ar table
1489 Any address that matches the given table.
1490 .El
1491 .Pp
1492 Ranges of addresses are specified by using the
1493 .Sq -
1494 operator.
1495 For instance:
1496 .Dq 10.1.1.10 - 10.1.1.12
1497 means all addresses from 10.1.1.10 to 10.1.1.12,
1498 hence addresses 10.1.1.10, 10.1.1.11, and 10.1.1.12.
1499 .Pp
1500 Interface names and interface group names can have modifiers appended:
1501 .Pp
1502 .Bl -tag -width xxxxxxxxxxxx -compact
1503 .It Ar :network
1504 Translates to the network(s) attached to the interface.
1505 .It Ar :broadcast
1506 Translates to the interface's broadcast address(es).
1507 .It Ar :peer
1508 Translates to the point-to-point interface's peer address(es).
1509 .It Ar :0
1510 Do not include interface aliases.
1511 .El
1512 .Pp
1513 Host names may also have the
1514 .Ar :0
1515 option appended to restrict the name resolution to the first of each
1516 v4 and v6 address found.
1517 .Pp
1518 Host name resolution and interface to address translation are done at
1519 ruleset load-time.
1520 When the address of an interface (or host name) changes (under DHCP or PPP,
1521 for instance), the ruleset must be reloaded for the change to be reflected
1522 in the kernel.
1523 Surrounding the interface name (and optional modifiers) in parentheses
1524 changes this behaviour.
1525 When the interface name is surrounded by parentheses, the rule is
1526 automatically updated whenever the interface changes its address.
1527 The ruleset does not need to be reloaded.
1528 This is especially useful with
1529 .Ar nat .
1530 .Pp
1531 Ports can be specified either by number or by name.
1532 For example, port 80 can be specified as
1533 .Em www .
1534 For a list of all port name to number mappings used by
1535 .Xr pfctl 8 ,
1536 see the file
1537 .Pa /etc/services .
1538 .Pp
1539 Ports and ranges of ports are specified by using these operators:
1540 .Bd -literal -offset indent
1541 =       (equal)
1542 !=      (unequal)
1543 \*(Lt   (less than)
1544 \*(Le   (less than or equal)
1545 \*(Gt   (greater than)
1546 \*(Ge   (greater than or equal)
1547 :       (range including boundaries)
1548 \*(Gt\*(Lt      (range excluding boundaries)
1549 \*(Lt\*(Gt      (except range)
1550 .Ed
1551 .Pp
1552 .Sq \*(Gt\*(Lt ,
1553 .Sq \*(Lt\*(Gt
1554 and
1555 .Sq \&:
1556 are binary operators (they take two arguments).
1557 For instance:
1558 .Bl -tag -width Fl
1559 .It Ar port 2000:2004
1560 means
1561 .Sq all ports \*(Ge 2000 and \*(Le 2004 ,
1562 hence ports 2000, 2001, 2002, 2003 and 2004.
1563 .It Ar port 2000 \*(Gt\*(Lt 2004
1564 means
1565 .Sq all ports \*(Gt 2000 and \*(Lt 2004 ,
1566 hence ports 2001, 2002 and 2003.
1567 .It Ar port 2000 \*(Lt\*(Gt 2004
1568 means
1569 .Sq all ports \*(Lt 2000 or \*(Gt 2004 ,
1570 hence ports 1-1999 and 2005-65535.
1571 .El
1572 .Pp
1573 The operating system of the source host can be specified in the case of TCP
1574 rules with the
1575 .Ar OS
1576 modifier.
1577 See the
1578 .Sx OPERATING SYSTEM FINGERPRINTING
1579 section for more information.
1580 .Pp
1581 The host, port and OS specifications are optional, as in the following examples:
1582 .Bd -literal -offset indent
1583 pass in all
1584 pass in from any to any
1585 pass in proto tcp from any port \*(Le 1024 to any
1586 pass in proto tcp from any to any port 25
1587 pass in proto tcp from 10.0.0.0/8 port \*(Gt 1024 \e
1588       to ! 10.1.2.3 port != ssh
1589 pass in proto tcp from any os "OpenBSD"
1590 .Ed
1591 .It Ar all
1592 This is equivalent to "from any to any".
1593 .It Ar group Aq Ar group
1594 Similar to
1595 .Ar user ,
1596 this rule only applies to packets of sockets owned by the specified group.
1597 .It Ar user Aq Ar user
1598 This rule only applies to packets of sockets owned by the specified user.
1599 For outgoing connections initiated from the firewall, this is the user
1600 that opened the connection.
1601 For incoming connections to the firewall itself, this is the user that
1602 listens on the destination port.
1603 For forwarded connections, where the firewall is not a connection endpoint,
1604 the user and group are
1605 .Em unknown .
1606 .Pp
1607 All packets, both outgoing and incoming, of one connection are associated
1608 with the same user and group.
1609 Only TCP and UDP packets can be associated with users; for other protocols
1610 these parameters are ignored.
1611 .Pp
1612 User and group refer to the effective (as opposed to the real) IDs, in
1613 case the socket is created by a setuid/setgid process.
1614 User and group IDs are stored when a socket is created;
1615 when a process creates a listening socket as root (for instance, by
1616 binding to a privileged port) and subsequently changes to another
1617 user ID (to drop privileges), the credentials will remain root.
1618 .Pp
1619 User and group IDs can be specified as either numbers or names.
1620 The syntax is similar to the one for ports.
1621 The value
1622 .Em unknown
1623 matches packets of forwarded connections.
1624 .Em unknown
1625 can only be used with the operators
1626 .Cm =
1627 and
1628 .Cm != .
1629 Other constructs like
1630 .Cm user \*(Ge unknown
1631 are invalid.
1632 Forwarded packets with unknown user and group ID match only rules
1633 that explicitly compare against
1634 .Em unknown
1635 with the operators
1636 .Cm =
1637 or
1638 .Cm != .
1639 For instance
1640 .Cm user \*(Ge 0
1641 does not match forwarded packets.
1642 The following example allows only selected users to open outgoing
1643 connections:
1644 .Bd -literal -offset indent
1645 block out proto { tcp, udp } all
1646 pass  out proto { tcp, udp } all user { \*(Lt 1000, dhartmei }
1647 .Ed
1648 .It Xo Ar flags Aq Ar a
1649 .Pf / Ns Aq Ar b
1650 .No \*(Ba / Ns Aq Ar b
1651 .No \*(Ba any
1652 .Xc
1653 This rule only applies to TCP packets that have the flags
1654 .Aq Ar a
1655 set out of set
1656 .Aq Ar b .
1657 Flags not specified in
1658 .Aq Ar b
1659 are ignored.
1660 For stateful connections, the default is
1661 .Ar flags S/SA .
1662 To indicate that flags should not be checked at all, specify
1663 .Ar flags any .
1664 The flags are: (F)IN, (S)YN, (R)ST, (P)USH, (A)CK, (U)RG, (E)CE, and C(W)R.
1665 .Bl -tag -width Fl
1666 .It Ar flags S/S
1667 Flag SYN is set.
1668 The other flags are ignored.
1669 .It Ar flags S/SA
1670 This is the default setting for stateful connections.
1671 Out of SYN and ACK, exactly SYN may be set.
1672 SYN, SYN+PSH and SYN+RST match, but SYN+ACK, ACK and ACK+RST do not.
1673 This is more restrictive than the previous example.
1674 .It Ar flags /SFRA
1675 If the first set is not specified, it defaults to none.
1676 All of SYN, FIN, RST and ACK must be unset.
1677 .El
1678 .Pp
1679 Because
1680 .Ar flags S/SA
1681 is applied by default (unless
1682 .Ar no state
1683 is specified), only the initial SYN packet of a TCP handshake will create
1684 a state for a TCP connection.
1685 It is possible to be less restrictive, and allow state creation from
1686 intermediate
1687 .Pq non-SYN
1688 packets, by specifying
1689 .Ar flags any .
1690 This will cause
1691 .Xr pf 4
1692 to synchronize to existing connections, for instance
1693 if one flushes the state table.
1694 However, states created from such intermediate packets may be missing
1695 connection details such as the TCP window scaling factor.
1696 States which modify the packet flow, such as those affected by
1697 .Ar nat , binat No or Ar rdr
1698 rules,
1699 .Ar modulate No or Ar synproxy state
1700 options, or scrubbed with
1701 .Ar reassemble tcp
1702 will also not be recoverable from intermediate packets.
1703 Such connections will stall and time out.
1704 .It Xo Ar icmp-type Aq Ar type
1705 .Ar code Aq Ar code
1706 .Xc
1707 .It Xo Ar icmp6-type Aq Ar type
1708 .Ar code Aq Ar code
1709 .Xc
1710 This rule only applies to ICMP or ICMPv6 packets with the specified type
1711 and code.
1712 Text names for ICMP types and codes are listed in
1713 .Xr icmp 4
1714 and
1715 .Xr icmp6 4 .
1716 This parameter is only valid for rules that cover protocols ICMP or
1717 ICMP6.
1718 The protocol and the ICMP type indicator
1719 .Po
1720 .Ar icmp-type
1721 or
1722 .Ar icmp6-type
1723 .Pc
1724 must match.
1725 .It Xo Ar tos Aq Ar string
1726 .No \*(Ba Aq Ar number
1727 .Xc
1728 This rule applies to packets with the specified
1729 .Em TOS
1730 bits set.
1731 .Em TOS
1732 may be
1733 given as one of
1734 .Ar lowdelay ,
1735 .Ar throughput ,
1736 .Ar reliability ,
1737 or as either hex or decimal.
1738 .Pp
1739 For example, the following rules are identical:
1740 .Bd -literal -offset indent
1741 pass all tos lowdelay
1742 pass all tos 0x10
1743 pass all tos 16
1744 .Ed
1745 .It Ar allow-opts
1746 By default, IPv4 packets with IP options or IPv6 packets with routing
1747 extension headers are blocked.
1748 When
1749 .Ar allow-opts
1750 is specified for a
1751 .Ar pass
1752 rule, packets that pass the filter based on that rule (last matching)
1753 do so even if they contain IP options or routing extension headers.
1754 For packets that match state, the rule that initially created the
1755 state is used.
1756 The implicit
1757 .Ar pass
1758 rule that is used when a packet does not match any rules does not
1759 allow IP options.
1760 .It Ar label Aq Ar string
1761 Adds a label (name) to the rule, which can be used to identify the rule.
1762 For instance,
1763 pfctl -s labels
1764 shows per-rule statistics for rules that have labels.
1765 .Pp
1766 The following macros can be used in labels:
1767 .Pp
1768 .Bl -tag -width $srcaddr -compact -offset indent
1769 .It Ar $if
1770 The interface.
1771 .It Ar $srcaddr
1772 The source IP address.
1773 .It Ar $dstaddr
1774 The destination IP address.
1775 .It Ar $srcport
1776 The source port specification.
1777 .It Ar $dstport
1778 The destination port specification.
1779 .It Ar $proto
1780 The protocol name.
1781 .It Ar $nr
1782 The rule number.
1783 .El
1784 .Pp
1785 For example:
1786 .Bd -literal -offset indent
1787 ips = \&"{ 1.2.3.4, 1.2.3.5 }\&"
1788 pass in proto tcp from any to $ips \e
1789       port \*(Gt 1023 label \&"$dstaddr:$dstport\&"
1790 .Ed
1791 .Pp
1792 expands to
1793 .Bd -literal -offset indent
1794 pass in inet proto tcp from any to 1.2.3.4 \e
1795       port \*(Gt 1023 label \&"1.2.3.4:\*(Gt1023\&"
1796 pass in inet proto tcp from any to 1.2.3.5 \e
1797       port \*(Gt 1023 label \&"1.2.3.5:\*(Gt1023\&"
1798 .Ed
1799 .Pp
1800 The macro expansion for the
1801 .Ar label
1802 directive occurs only at configuration file parse time, not during runtime.
1803 .It Xo Ar queue Aq Ar queue
1804 .No \*(Ba ( Aq Ar queue ,
1805 .Aq Ar queue )
1806 .Xc
1807 Packets matching this rule will be assigned to the specified queue.
1808 If two queues are given, packets which have a
1809 .Em TOS
1810 of
1811 .Em lowdelay
1812 and TCP ACKs with no data payload will be assigned to the second one.
1813 See
1814 .Sx QUEUEING
1815 for setup details.
1816 .Pp
1817 For example:
1818 .Bd -literal -offset indent
1819 pass in proto tcp to port 25 queue mail
1820 pass in proto tcp to port 22 queue(ssh_bulk, ssh_prio)
1821 .Ed
1822 .It Ar tag Aq Ar string
1823 Packets matching this rule will be tagged with the
1824 specified string.
1825 The tag acts as an internal marker that can be used to
1826 identify these packets later on.
1827 This can be used, for example, to provide trust between
1828 interfaces and to determine if packets have been
1829 processed by translation rules.
1830 Tags are
1831 .Qq sticky ,
1832 meaning that the packet will be tagged even if the rule
1833 is not the last matching rule.
1834 Further matching rules can replace the tag with a
1835 new one but will not remove a previously applied tag.
1836 A packet is only ever assigned one tag at a time.
1837 Packet tagging can be done during
1838 .Ar nat ,
1839 .Ar rdr ,
1840 or
1841 .Ar binat
1842 rules in addition to filter rules.
1843 Tags take the same macros as labels (see above).
1844 .It Ar tagged Aq Ar string
1845 Used with filter, translation or scrub rules
1846 to specify that packets must already
1847 be tagged with the given tag in order to match the rule.
1848 Inverse tag matching can also be done
1849 by specifying the
1850 .Cm !\&
1851 operator before the
1852 .Ar tagged
1853 keyword.
1854 .It Ar rtable Aq Ar number
1855 Used to select an alternate routing table for the routing lookup.
1856 Only effective before the route lookup happened, i.e. when filtering inbound.
1857 .It Xo Ar divert-to Aq Ar host
1858 .Ar port Aq Ar port
1859 .Xc
1860 Used to redirect packets to a local socket bound to
1861 .Ar host
1862 and
1863 .Ar port .
1864 The packets will not be modified, so
1865 .Xr getsockname 2
1866 on the socket will return the original destination address of the packet.
1867 .It Ar divert-reply
1868 Used to receive replies for sockets that are bound to addresses
1869 which are not local to the machine.
1870 See
1871 .Xr setsockopt 2
1872 for information on how to bind these sockets.
1873 .It Ar probability Aq Ar number
1874 A probability attribute can be attached to a rule, with a value set between
1875 0 and 1, bounds not included.
1876 In that case, the rule will be honoured using the given probability value
1877 only.
1878 For example, the following rule will drop 20% of incoming ICMP packets:
1879 .Bd -literal -offset indent
1880 block in proto icmp probability 20%
1881 .Ed
1882 .El
1883 .Sh ROUTING
1884 If a packet matches a rule with a route option set, the packet filter will
1885 route the packet according to the type of route option.
1886 When such a rule creates state, the route option is also applied to all
1887 packets matching the same connection.
1888 .Bl -tag -width xxxx
1889 .It Ar fastroute
1890 The
1891 .Ar fastroute
1892 option does a normal route lookup to find the next hop for the packet.
1893 .It Ar route-to
1894 The
1895 .Ar route-to
1896 option routes the packet to the specified interface with an optional address
1897 for the next hop.
1898 When a
1899 .Ar route-to
1900 rule creates state, only packets that pass in the same direction as the
1901 filter rule specifies will be routed in this way.
1902 Packets passing in the opposite direction (replies) are not affected
1903 and are routed normally.
1904 .It Ar reply-to
1905 The
1906 .Ar reply-to
1907 option is similar to
1908 .Ar route-to ,
1909 but routes packets that pass in the opposite direction (replies) to the
1910 specified interface.
1911 Opposite direction is only defined in the context of a state entry, and
1912 .Ar reply-to
1913 is useful only in rules that create state.
1914 It can be used on systems with multiple external connections to
1915 route all outgoing packets of a connection through the interface
1916 the incoming connection arrived through (symmetric routing enforcement).
1917 .It Ar dup-to
1918 The
1919 .Ar dup-to
1920 option creates a duplicate of the packet and routes it like
1921 .Ar route-to .
1922 The original packet gets routed as it normally would.
1923 .El
1924 .Sh POOL OPTIONS
1925 For
1926 .Ar nat
1927 and
1928 .Ar rdr
1929 rules, (as well as for the
1930 .Ar route-to ,
1931 .Ar reply-to
1932 and
1933 .Ar dup-to
1934 rule options) for which there is a single redirection address which has a
1935 subnet mask smaller than 32 for IPv4 or 128 for IPv6 (more than one IP
1936 address), a variety of different methods for assigning this address can be
1937 used:
1938 .Bl -tag -width xxxx
1939 .It Ar bitmask
1940 The
1941 .Ar bitmask
1942 option applies the network portion of the redirection address to the address
1943 to be modified (source with
1944 .Ar nat ,
1945 destination with
1946 .Ar rdr ) .
1947 .It Ar random
1948 The
1949 .Ar random
1950 option selects an address at random within the defined block of addresses.
1951 .It Ar source-hash
1952 The
1953 .Ar source-hash
1954 option uses a hash of the source address to determine the redirection address,
1955 ensuring that the redirection address is always the same for a given source.
1956 An optional key can be specified after this keyword either in hex or as a
1957 string; by default
1958 .Xr pfctl 8
1959 randomly generates a key for source-hash every time the
1960 ruleset is reloaded.
1961 .It Ar round-robin
1962 The
1963 .Ar round-robin
1964 option loops through the redirection address(es).
1965 .Pp
1966 When more than one redirection address is specified,
1967 .Ar round-robin
1968 is the only permitted pool type.
1969 .It Ar static-port
1970 With
1971 .Ar nat
1972 rules, the
1973 .Ar static-port
1974 option prevents
1975 .Xr pf 4
1976 from modifying the source port on TCP and UDP packets.
1977 .El
1978 .Pp
1979 Additionally, the
1980 .Ar sticky-address
1981 option can be specified to help ensure that multiple connections from the
1982 same source are mapped to the same redirection address.
1983 This option can be used with the
1984 .Ar random
1985 and
1986 .Ar round-robin
1987 pool options.
1988 Note that by default these associations are destroyed as soon as there are
1989 no longer states which refer to them; in order to make the mappings last
1990 beyond the lifetime of the states, increase the global options with
1991 .Ar set timeout src.track .
1992 See
1993 .Sx STATEFUL TRACKING OPTIONS
1994 for more ways to control the source tracking.
1995 .Sh STATE MODULATION
1996 Much of the security derived from TCP is attributable to how well the
1997 initial sequence numbers (ISNs) are chosen.
1998 Some popular stack implementations choose
1999 .Em very
2000 poor ISNs and thus are normally susceptible to ISN prediction exploits.
2001 By applying a
2002 .Ar modulate state
2003 rule to a TCP connection,
2004 .Xr pf 4
2005 will create a high quality random sequence number for each connection
2006 endpoint.
2007 .Pp
2008 The
2009 .Ar modulate state
2010 directive implicitly keeps state on the rule and is
2011 only applicable to TCP connections.
2012 .Pp
2013 For instance:
2014 .Bd -literal -offset indent
2015 block all
2016 pass out proto tcp from any to any modulate state
2017 pass in  proto tcp from any to any port 25 flags S/SFRA modulate state
2018 .Ed
2019 .Pp
2020 Note that modulated connections will not recover when the state table
2021 is lost (firewall reboot, flushing the state table, etc...).
2022 .Xr pf 4
2023 will not be able to infer a connection again after the state table flushes
2024 the connection's modulator.
2025 When the state is lost, the connection may be left dangling until the
2026 respective endpoints time out the connection.
2027 It is possible on a fast local network for the endpoints to start an ACK
2028 storm while trying to resynchronize after the loss of the modulator.
2029 The default
2030 .Ar flags
2031 settings (or a more strict equivalent) should be used on
2032 .Ar modulate state
2033 rules to prevent ACK storms.
2034 .Pp
2035 Note that alternative methods are available
2036 to prevent loss of the state table
2037 and allow for firewall failover.
2038 See
2039 .Xr carp 4
2040 and
2041 .Xr pfsync 4
2042 for further information.
2043 .Sh SYN PROXY
2044 By default,
2045 .Xr pf 4
2046 passes packets that are part of a
2047 .Xr tcp 4
2048 handshake between the endpoints.
2049 The
2050 .Ar synproxy state
2051 option can be used to cause
2052 .Xr pf 4
2053 itself to complete the handshake with the active endpoint, perform a handshake
2054 with the passive endpoint, and then forward packets between the endpoints.
2055 .Pp
2056 No packets are sent to the passive endpoint before the active endpoint has
2057 completed the handshake, hence so-called SYN floods with spoofed source
2058 addresses will not reach the passive endpoint, as the sender can't complete the
2059 handshake.
2060 .Pp
2061 The proxy is transparent to both endpoints, they each see a single
2062 connection from/to the other endpoint.
2063 .Xr pf 4
2064 chooses random initial sequence numbers for both handshakes.
2065 Once the handshakes are completed, the sequence number modulators
2066 (see previous section) are used to translate further packets of the
2067 connection.
2068 .Ar synproxy state
2069 includes
2070 .Ar modulate state .
2071 .Pp
2072 Rules with
2073 .Ar synproxy
2074 will not work if
2075 .Xr pf 4
2076 operates on a
2077 .Xr bridge 4 .
2078 .Pp
2079 Example:
2080 .Bd -literal -offset indent
2081 pass in proto tcp from any to any port www synproxy state
2082 .Ed
2083 .Sh STATEFUL TRACKING OPTIONS
2084 A number of options related to stateful tracking can be applied on a
2085 per-rule basis.
2086 .Ar keep state ,
2087 .Ar modulate state
2088 and
2089 .Ar synproxy state
2090 support these options, and
2091 .Ar keep state
2092 must be specified explicitly to apply options to a rule.
2093 .Pp
2094 .Bl -tag -width xxxx -compact
2095 .It Ar max Aq Ar number
2096 Limits the number of concurrent states the rule may create.
2097 When this limit is reached, further packets that would create
2098 state will not match this rule until existing states time out.
2099 .It Ar no-sync
2100 Prevent state changes for states created by this rule from appearing on the
2101 .Xr pfsync 4
2102 interface.
2103 .It Xo Aq Ar timeout
2104 .Aq Ar seconds
2105 .Xc
2106 Changes the timeout values used for states created by this rule.
2107 For a list of all valid timeout names, see
2108 .Sx OPTIONS
2109 above.
2110 .It Ar sloppy
2111 Uses a sloppy TCP connection tracker that does not check sequence
2112 numbers at all, which makes insertion and ICMP teardown attacks way
2113 easier.
2114 This is intended to be used in situations where one does not see all
2115 packets of a connection, e.g. in asymmetric routing situations.
2116 Cannot be used with modulate or synproxy state.
2117 .It Ar pflow
2118 States created by this rule are exported on the
2119 .Xr pflow 4
2120 interface.
2121 .El
2122 .Pp
2123 Multiple options can be specified, separated by commas:
2124 .Bd -literal -offset indent
2125 pass in proto tcp from any to any \e
2126       port www keep state \e
2127       (max 100, source-track rule, max-src-nodes 75, \e
2128       max-src-states 3, tcp.established 60, tcp.closing 5)
2129 .Ed
2130 .Pp
2131 When the
2132 .Ar source-track
2133 keyword is specified, the number of states per source IP is tracked.
2134 .Pp
2135 .Bl -tag -width xxxx -compact
2136 .It Ar source-track rule
2137 The maximum number of states created by this rule is limited by the rule's
2138 .Ar max-src-nodes
2139 and
2140 .Ar max-src-states
2141 options.
2142 Only state entries created by this particular rule count toward the rule's
2143 limits.
2144 .It Ar source-track global
2145 The number of states created by all rules that use this option is limited.
2146 Each rule can specify different
2147 .Ar max-src-nodes
2148 and
2149 .Ar max-src-states
2150 options, however state entries created by any participating rule count towards
2151 each individual rule's limits.
2152 .El
2153 .Pp
2154 The following limits can be set:
2155 .Pp
2156 .Bl -tag -width xxxx -compact
2157 .It Ar max-src-nodes Aq Ar number
2158 Limits the maximum number of source addresses which can simultaneously
2159 have state table entries.
2160 .It Ar max-src-states Aq Ar number
2161 Limits the maximum number of simultaneous state entries that a single
2162 source address can create with this rule.
2163 .El
2164 .Pp
2165 For stateful TCP connections, limits on established connections (connections
2166 which have completed the TCP 3-way handshake) can also be enforced
2167 per source IP.
2168 .Pp
2169 .Bl -tag -width xxxx -compact
2170 .It Ar max-src-conn Aq Ar number
2171 Limits the maximum number of simultaneous TCP connections which have
2172 completed the 3-way handshake that a single host can make.
2173 .It Xo Ar max-src-conn-rate Aq Ar number
2174 .No / Aq Ar seconds
2175 .Xc
2176 Limit the rate of new connections over a time interval.
2177 The connection rate is an approximation calculated as a moving average.
2178 .El
2179 .Pp
2180 Because the 3-way handshake ensures that the source address is not being
2181 spoofed, more aggressive action can be taken based on these limits.
2182 With the
2183 .Ar overload Aq Ar table
2184 state option, source IP addresses which hit either of the limits on
2185 established connections will be added to the named table.
2186 This table can be used in the ruleset to block further activity from
2187 the offending host, redirect it to a tarpit process, or restrict its
2188 bandwidth.
2189 .Pp
2190 The optional
2191 .Ar flush
2192 keyword kills all states created by the matching rule which originate
2193 from the host which exceeds these limits.
2194 The
2195 .Ar global
2196 modifier to the flush command kills all states originating from the
2197 offending host, regardless of which rule created the state.
2198 .Pp
2199 For example, the following rules will protect the webserver against
2200 hosts making more than 100 connections in 10 seconds.
2201 Any host which connects faster than this rate will have its address added
2202 to the
2203 .Aq bad_hosts
2204 table and have all states originating from it flushed.
2205 Any new packets arriving from this host will be dropped unconditionally
2206 by the block rule.
2207 .Bd -literal -offset indent
2208 block quick from \*(Ltbad_hosts\*(Gt
2209 pass in on $ext_if proto tcp to $webserver port www keep state \e
2210         (max-src-conn-rate 100/10, overload \*(Ltbad_hosts\*(Gt flush global)
2211 .Ed
2212 .Sh OPERATING SYSTEM FINGERPRINTING
2213 Passive OS Fingerprinting is a mechanism to inspect nuances of a TCP
2214 connection's initial SYN packet and guess at the host's operating system.
2215 Unfortunately these nuances are easily spoofed by an attacker so the
2216 fingerprint is not useful in making security decisions.
2217 But the fingerprint is typically accurate enough to make policy decisions
2218 upon.
2219 .Pp
2220 The fingerprints may be specified by operating system class, by
2221 version, or by subtype/patchlevel.
2222 The class of an operating system is typically the vendor or genre
2223 and would be
2224 .Ox
2225 for the
2226 .Xr pf 4
2227 firewall itself.
2228 The version of the oldest available
2229 .Ox
2230 release on the main FTP site
2231 would be 2.6 and the fingerprint would be written
2232 .Pp
2233 .Dl \&"OpenBSD 2.6\&"
2234 .Pp
2235 The subtype of an operating system is typically used to describe the
2236 patchlevel if that patch led to changes in the TCP stack behavior.
2237 In the case of
2238 .Ox ,
2239 the only subtype is for a fingerprint that was
2240 normalized by the
2241 .Ar no-df
2242 scrub option and would be specified as
2243 .Pp
2244 .Dl \&"OpenBSD 3.3 no-df\&"
2245 .Pp
2246 Fingerprints for most popular operating systems are provided by
2247 .Xr pf.os 5 .
2248 Once
2249 .Xr pf 4
2250 is running, a complete list of known operating system fingerprints may
2251 be listed by running:
2252 .Pp
2253 .Dl # pfctl -so
2254 .Pp
2255 Filter rules can enforce policy at any level of operating system specification
2256 assuming a fingerprint is present.
2257 Policy could limit traffic to approved operating systems or even ban traffic
2258 from hosts that aren't at the latest service pack.
2259 .Pp
2260 The
2261 .Ar unknown
2262 class can also be used as the fingerprint which will match packets for
2263 which no operating system fingerprint is known.
2264 .Pp
2265 Examples:
2266 .Bd -literal -offset indent
2267 pass  out proto tcp from any os OpenBSD
2268 block out proto tcp from any os Doors
2269 block out proto tcp from any os "Doors PT"
2270 block out proto tcp from any os "Doors PT SP3"
2271 block out from any os "unknown"
2272 pass on lo0 proto tcp from any os "OpenBSD 3.3 lo0"
2273 .Ed
2274 .Pp
2275 Operating system fingerprinting is limited only to the TCP SYN packet.
2276 This means that it will not work on other protocols and will not match
2277 a currently established connection.
2278 .Pp
2279 Caveat: operating system fingerprints are occasionally wrong.
2280 There are three problems: an attacker can trivially craft his packets to
2281 appear as any operating system he chooses;
2282 an operating system patch could change the stack behavior and no fingerprints
2283 will match it until the database is updated;
2284 and multiple operating systems may have the same fingerprint.
2285 .Sh BLOCKING SPOOFED TRAFFIC
2286 "Spoofing" is the faking of IP addresses, typically for malicious
2287 purposes.
2288 The
2289 .Ar antispoof
2290 directive expands to a set of filter rules which will block all
2291 traffic with a source IP from the network(s) directly connected
2292 to the specified interface(s) from entering the system through
2293 any other interface.
2294 .Pp
2295 For example, the line
2296 .Bd -literal -offset indent
2297 antispoof for lo0
2298 .Ed
2299 .Pp
2300 expands to
2301 .Bd -literal -offset indent
2302 block drop in on ! lo0 inet from 127.0.0.1/8 to any
2303 block drop in on ! lo0 inet6 from ::1 to any
2304 .Ed
2305 .Pp
2306 For non-loopback interfaces, there are additional rules to block incoming
2307 packets with a source IP address identical to the interface's IP(s).
2308 For example, assuming the interface wi0 had an IP address of 10.0.0.1 and a
2309 netmask of 255.255.255.0,
2310 the line
2311 .Bd -literal -offset indent
2312 antispoof for wi0 inet
2313 .Ed
2314 .Pp
2315 expands to
2316 .Bd -literal -offset indent
2317 block drop in on ! wi0 inet from 10.0.0.0/24 to any
2318 block drop in inet from 10.0.0.1 to any
2319 .Ed
2320 .Pp
2321 Caveat: Rules created by the
2322 .Ar antispoof
2323 directive interfere with packets sent over loopback interfaces
2324 to local addresses.
2325 One should pass these explicitly.
2326 .Sh FRAGMENT HANDLING
2327 The size of IP datagrams (packets) can be significantly larger than the
2328 maximum transmission unit (MTU) of the network.
2329 In cases when it is necessary or more efficient to send such large packets,
2330 the large packet will be fragmented into many smaller packets that will each
2331 fit onto the wire.
2332 Unfortunately for a firewalling device, only the first logical fragment will
2333 contain the necessary header information for the subprotocol that allows
2334 .Xr pf 4
2335 to filter on things such as TCP ports or to perform NAT.
2336 .Pp
2337 Besides the use of
2338 .Ar scrub
2339 rules as described in
2340 .Sx TRAFFIC NORMALIZATION
2341 above, there are three options for handling fragments in the packet filter.
2342 .Pp
2343 One alternative is to filter individual fragments with filter rules.
2344 If no
2345 .Ar scrub
2346 rule applies to a fragment, it is passed to the filter.
2347 Filter rules with matching IP header parameters decide whether the
2348 fragment is passed or blocked, in the same way as complete packets
2349 are filtered.
2350 Without reassembly, fragments can only be filtered based on IP header
2351 fields (source/destination address, protocol), since subprotocol header
2352 fields are not available (TCP/UDP port numbers, ICMP code/type).
2353 The
2354 .Ar fragment
2355 option can be used to restrict filter rules to apply only to
2356 fragments, but not complete packets.
2357 Filter rules without the
2358 .Ar fragment
2359 option still apply to fragments, if they only specify IP header fields.
2360 For instance, the rule
2361 .Bd -literal -offset indent
2362 pass in proto tcp from any to any port 80
2363 .Ed
2364 .Pp
2365 never applies to a fragment, even if the fragment is part of a TCP
2366 packet with destination port 80, because without reassembly this information
2367 is not available for each fragment.
2368 This also means that fragments cannot create new or match existing
2369 state table entries, which makes stateful filtering and address
2370 translation (NAT, redirection) for fragments impossible.
2371 .Pp
2372 It's also possible to reassemble only certain fragments by specifying
2373 source or destination addresses or protocols as parameters in
2374 .Ar scrub
2375 rules.
2376 .Pp
2377 In most cases, the benefits of reassembly outweigh the additional
2378 memory cost, and it's recommended to use
2379 .Ar scrub
2380 rules to reassemble
2381 all fragments via the
2382 .Ar fragment reassemble
2383 modifier.
2384 .Pp
2385 The memory allocated for fragment caching can be limited using
2386 .Xr pfctl 8 .
2387 Once this limit is reached, fragments that would have to be cached
2388 are dropped until other entries time out.
2389 The timeout value can also be adjusted.
2390 .Pp
2391 Currently, only IPv4 fragments are supported and IPv6 fragments
2392 are blocked unconditionally.
2393 .Sh ANCHORS
2394 Besides the main ruleset,
2395 .Xr pfctl 8
2396 can load rulesets into
2397 .Ar anchor
2398 attachment points.
2399 An
2400 .Ar anchor
2401 is a container that can hold rules, address tables, and other anchors.
2402 .Pp
2403 An
2404 .Ar anchor
2405 has a name which specifies the path where
2406 .Xr pfctl 8
2407 can be used to access the anchor to perform operations on it, such as
2408 attaching child anchors to it or loading rules into it.
2409 Anchors may be nested, with components separated by
2410 .Sq /
2411 characters, similar to how file system hierarchies are laid out.
2412 The main ruleset is actually the default anchor, so filter and
2413 translation rules, for example, may also be contained in any anchor.
2414 .Pp
2415 An anchor can reference another
2416 .Ar anchor
2417 attachment point
2418 using the following kinds
2419 of rules:
2420 .Bl -tag -width xxxx
2421 .It Ar nat-anchor Aq Ar name
2422 Evaluates the
2423 .Ar nat
2424 rules in the specified
2425 .Ar anchor .
2426 .It Ar rdr-anchor Aq Ar name
2427 Evaluates the
2428 .Ar rdr
2429 rules in the specified
2430 .Ar anchor .
2431 .It Ar binat-anchor Aq Ar name
2432 Evaluates the
2433 .Ar binat
2434 rules in the specified
2435 .Ar anchor .
2436 .It Ar anchor Aq Ar name
2437 Evaluates the filter rules in the specified
2438 .Ar anchor .
2439 .It Xo Ar load anchor
2440 .Aq Ar name
2441 .Ar from Aq Ar file
2442 .Xc
2443 Loads the rules from the specified file into the
2444 anchor
2445 .Ar name .
2446 .El
2447 .Pp
2448 When evaluation of the main ruleset reaches an
2449 .Ar anchor
2450 rule,
2451 .Xr pf 4
2452 will proceed to evaluate all rules specified in that anchor.
2453 .Pp
2454 Matching filter and translation rules marked with the
2455 .Ar quick
2456 option are final and abort the evaluation of the rules in other
2457 anchors and the main ruleset.
2458 If the
2459 .Ar anchor
2460 itself is marked with the
2461 .Ar quick
2462 option,
2463 ruleset evaluation will terminate when the anchor is exited if the packet is
2464 matched by any rule within the anchor.
2465 .Pp
2466 .Ar anchor
2467 rules are evaluated relative to the anchor in which they are contained.
2468 For example, all
2469 .Ar anchor
2470 rules specified in the main ruleset will reference anchor
2471 attachment points underneath the main ruleset, and
2472 .Ar anchor
2473 rules specified in a file loaded from a
2474 .Ar load anchor
2475 rule will be attached under that anchor point.
2476 .Pp
2477 Rules may be contained in
2478 .Ar anchor
2479 attachment points which do not contain any rules when the main ruleset
2480 is loaded, and later such anchors can be manipulated through
2481 .Xr pfctl 8
2482 without reloading the main ruleset or other anchors.
2483 For example,
2484 .Bd -literal -offset indent
2485 ext_if = \&"kue0\&"
2486 block on $ext_if all
2487 anchor spam
2488 pass out on $ext_if all
2489 pass in on $ext_if proto tcp from any \e
2490       to $ext_if port smtp
2491 .Ed
2492 .Pp
2493 blocks all packets on the external interface by default, then evaluates
2494 all rules in the
2495 .Ar anchor
2496 named "spam", and finally passes all outgoing connections and
2497 incoming connections to port 25.
2498 .Bd -literal -offset indent
2499 # echo \&"block in quick from 1.2.3.4 to any\&" \&| \e
2500       pfctl -a spam -f -
2501 .Ed
2502 .Pp
2503 This loads a single rule into the
2504 .Ar anchor ,
2505 which blocks all packets from a specific address.
2506 .Pp
2507 The anchor can also be populated by adding a
2508 .Ar load anchor
2509 rule after the
2510 .Ar anchor
2511 rule:
2512 .Bd -literal -offset indent
2513 anchor spam
2514 load anchor spam from "/etc/pf-spam.conf"
2515 .Ed
2516 .Pp
2517 When
2518 .Xr pfctl 8
2519 loads
2520 .Nm pf.conf ,
2521 it will also load all the rules from the file
2522 .Pa /etc/pf-spam.conf
2523 into the anchor.
2524 .Pp
2525 Optionally,
2526 .Ar anchor
2527 rules can specify packet filtering parameters using the same syntax as
2528 filter rules.
2529 When parameters are used, the
2530 .Ar anchor
2531 rule is only evaluated for matching packets.
2532 This allows conditional evaluation of anchors, like:
2533 .Bd -literal -offset indent
2534 block on $ext_if all
2535 anchor spam proto tcp from any to any port smtp
2536 pass out on $ext_if all
2537 pass in on $ext_if proto tcp from any to $ext_if port smtp
2538 .Ed
2539 .Pp
2540 The rules inside
2541 .Ar anchor
2542 spam are only evaluated for
2543 .Ar tcp
2544 packets with destination port 25.
2545 Hence,
2546 .Bd -literal -offset indent
2547 # echo \&"block in quick from 1.2.3.4 to any" \&| \e
2548       pfctl -a spam -f -
2549 .Ed
2550 .Pp
2551 will only block connections from 1.2.3.4 to port 25.
2552 .Pp
2553 Anchors may end with the asterisk
2554 .Pq Sq *
2555 character, which signifies that all anchors attached at that point
2556 should be evaluated in the alphabetical ordering of their anchor name.
2557 For example,
2558 .Bd -literal -offset indent
2559 anchor "spam/*"
2560 .Ed
2561 .Pp
2562 will evaluate each rule in each anchor attached to the
2563 .Li spam
2564 anchor.
2565 Note that it will only evaluate anchors that are directly attached to the
2566 .Li spam
2567 anchor, and will not descend to evaluate anchors recursively.
2568 .Pp
2569 Since anchors are evaluated relative to the anchor in which they are
2570 contained, there is a mechanism for accessing the parent and ancestor
2571 anchors of a given anchor.
2572 Similar to file system path name resolution, if the sequence
2573 .Dq ..
2574 appears as an anchor path component, the parent anchor of the current
2575 anchor in the path evaluation at that point will become the new current
2576 anchor.
2577 As an example, consider the following:
2578 .Bd -literal -offset indent
2579 # echo ' anchor "spam/allowed" ' | pfctl -f -
2580 # echo -e ' anchor "../banned" \en pass' | \e
2581       pfctl -a spam/allowed -f -
2582 .Ed
2583 .Pp
2584 Evaluation of the main ruleset will lead into the
2585 .Li spam/allowed
2586 anchor, which will evaluate the rules in the
2587 .Li spam/banned
2588 anchor, if any, before finally evaluating the
2589 .Ar pass
2590 rule.
2591 .Pp
2592 Filter rule
2593 .Ar anchors
2594 can also be loaded inline in the ruleset within a brace ('{' '}') delimited
2595 block.
2596 Brace delimited blocks may contain rules or other brace-delimited blocks.
2597 When anchors are loaded this way the anchor name becomes optional.
2598 .Bd -literal -offset indent
2599 anchor "external" on egress {
2600         block
2601         anchor out {
2602                 pass proto tcp from any to port { 25, 80, 443 }
2603         }
2604         pass in proto tcp to any port 22
2605 }
2606 .Ed
2607 .Pp
2608 Since the parser specification for anchor names is a string, any
2609 reference to an anchor name containing
2610 .Sq /
2611 characters will require double quote
2612 .Pq Sq \&"
2613 characters around the anchor name.
2614 .Sh TRANSLATION EXAMPLES
2615 This example maps incoming requests on port 80 to port 8080, on
2616 which a daemon is running (because, for example, it is not run as root,
2617 and therefore lacks permission to bind to port 80).
2618 .Bd -literal
2619 # use a macro for the interface name, so it can be changed easily
2620 ext_if = \&"ne3\&"
2621
2622 # map daemon on 8080 to appear to be on 80
2623 rdr on $ext_if proto tcp from any to any port 80 -\*(Gt 127.0.0.1 port 8080
2624 .Ed
2625 .Pp
2626 If the
2627 .Ar pass
2628 modifier is given, packets matching the translation rule are passed without
2629 inspecting the filter rules:
2630 .Bd -literal
2631 rdr pass on $ext_if proto tcp from any to any port 80 -\*(Gt 127.0.0.1 \e
2632       port 8080
2633 .Ed
2634 .Pp
2635 In the example below, vlan12 is configured as 192.168.168.1;
2636 the machine translates all packets coming from 192.168.168.0/24 to 204.92.77.111
2637 when they are going out any interface except vlan12.
2638 This has the net effect of making traffic from the 192.168.168.0/24
2639 network appear as though it is the Internet routable address
2640 204.92.77.111 to nodes behind any interface on the router except
2641 for the nodes on vlan12.
2642 (Thus, 192.168.168.1 can talk to the 192.168.168.0/24 nodes.)
2643 .Bd -literal
2644 nat on ! vlan12 from 192.168.168.0/24 to any -\*(Gt 204.92.77.111
2645 .Ed
2646 .Pp
2647 In the example below, the machine sits between a fake internal 144.19.74.*
2648 network, and a routable external IP of 204.92.77.100.
2649 The
2650 .Ar no nat
2651 rule excludes protocol AH from being translated.
2652 .Bd -literal
2653 # NO NAT
2654 no nat on $ext_if proto ah from 144.19.74.0/24 to any
2655 nat on $ext_if from 144.19.74.0/24 to any -\*(Gt 204.92.77.100
2656 .Ed
2657 .Pp
2658 In the example below, packets bound for one specific server, as well as those
2659 generated by the sysadmins are not proxied; all other connections are.
2660 .Bd -literal
2661 # NO RDR
2662 no rdr on $int_if proto { tcp, udp } from any to $server port 80
2663 no rdr on $int_if proto { tcp, udp } from $sysadmins to any port 80
2664 rdr on $int_if proto { tcp, udp } from any to any port 80 -\*(Gt 127.0.0.1 \e
2665       port 80
2666 .Ed
2667 .Pp
2668 This longer example uses both a NAT and a redirection.
2669 The external interface has the address 157.161.48.183.
2670 On localhost, we are running
2671 .Xr ftp-proxy 8 ,
2672 waiting for FTP sessions to be redirected to it.
2673 The three mandatory anchors for
2674 .Xr ftp-proxy 8
2675 are omitted from this example; see the
2676 .Xr ftp-proxy 8
2677 manpage.
2678 .Bd -literal
2679 # NAT
2680 # Translate outgoing packets' source addresses (any protocol).
2681 # In this case, any address but the gateway's external address is mapped.
2682 nat on $ext_if inet from ! ($ext_if) to any -\*(Gt ($ext_if)
2683
2684 # NAT PROXYING
2685 # Map outgoing packets' source port to an assigned proxy port instead of
2686 # an arbitrary port.
2687 # In this case, proxy outgoing isakmp with port 500 on the gateway.
2688 nat on $ext_if inet proto udp from any port = isakmp to any -\*(Gt ($ext_if) \e
2689       port 500
2690
2691 # BINAT
2692 # Translate outgoing packets' source address (any protocol).
2693 # Translate incoming packets' destination address to an internal machine
2694 # (bidirectional).
2695 binat on $ext_if from 10.1.2.150 to any -\*(Gt $ext_if
2696
2697 # RDR
2698 # Translate incoming packets' destination addresses.
2699 # As an example, redirect a TCP and UDP port to an internal machine.
2700 rdr on $ext_if inet proto tcp from any to ($ext_if) port 8080 \e
2701       -\*(Gt 10.1.2.151 port 22
2702 rdr on $ext_if inet proto udp from any to ($ext_if) port 8080 \e
2703       -\*(Gt 10.1.2.151 port 53
2704
2705 # RDR
2706 # Translate outgoing ftp control connections to send them to localhost
2707 # for proxying with ftp-proxy(8) running on port 8021.
2708 rdr on $int_if proto tcp from any to any port 21 -\*(Gt 127.0.0.1 port 8021
2709 .Ed
2710 .Pp
2711 In this example, a NAT gateway is set up to translate internal addresses
2712 using a pool of public addresses (192.0.2.16/28) and to redirect
2713 incoming web server connections to a group of web servers on the internal
2714 network.
2715 .Bd -literal
2716 # NAT LOAD BALANCE
2717 # Translate outgoing packets' source addresses using an address pool.
2718 # A given source address is always translated to the same pool address by
2719 # using the source-hash keyword.
2720 nat on $ext_if inet from any to any -\*(Gt 192.0.2.16/28 source-hash
2721
2722 # RDR ROUND ROBIN
2723 # Translate incoming web server connections to a group of web servers on
2724 # the internal network.
2725 rdr on $ext_if proto tcp from any to any port 80 \e
2726       -\*(Gt { 10.1.2.155, 10.1.2.160, 10.1.2.161 } round-robin
2727 .Ed
2728 .Sh FILTER EXAMPLES
2729 .Bd -literal
2730 # The external interface is kue0
2731 # (157.161.48.183, the only routable address)
2732 # and the private network is 10.0.0.0/8, for which we are doing NAT.
2733
2734 # use a macro for the interface name, so it can be changed easily
2735 ext_if = \&"kue0\&"
2736
2737 # normalize all incoming traffic
2738 scrub in on $ext_if all fragment reassemble
2739
2740 # block and log everything by default
2741 block return log on $ext_if all
2742
2743 # block anything coming from source we have no back routes for
2744 block in from no-route to any
2745
2746 # block packets whose ingress interface does not match the one in
2747 # the route back to their source address
2748 block in from urpf-failed to any
2749
2750 # block and log outgoing packets that do not have our address as source,
2751 # they are either spoofed or something is misconfigured (NAT disabled,
2752 # for instance), we want to be nice and do not send out garbage.
2753 block out log quick on $ext_if from ! 157.161.48.183 to any
2754
2755 # silently drop broadcasts (cable modem noise)
2756 block in quick on $ext_if from any to 255.255.255.255
2757
2758 # block and log incoming packets from reserved address space and invalid
2759 # addresses, they are either spoofed or misconfigured, we cannot reply to
2760 # them anyway (hence, no return-rst).
2761 block in log quick on $ext_if from { 10.0.0.0/8, 172.16.0.0/12, \e
2762       192.168.0.0/16, 255.255.255.255/32 } to any
2763
2764 # ICMP
2765
2766 # pass out/in certain ICMP queries and keep state (ping)
2767 # state matching is done on host addresses and ICMP id (not type/code),
2768 # so replies (like 0/0 for 8/0) will match queries
2769 # ICMP error messages (which always refer to a TCP/UDP packet) are
2770 # handled by the TCP/UDP states
2771 pass on $ext_if inet proto icmp all icmp-type 8 code 0
2772
2773 # UDP
2774
2775 # pass out all UDP connections and keep state
2776 pass out on $ext_if proto udp all
2777
2778 # pass in certain UDP connections and keep state (DNS)
2779 pass in on $ext_if proto udp from any to any port domain
2780
2781 # TCP
2782
2783 # pass out all TCP connections and modulate state
2784 pass out on $ext_if proto tcp all modulate state
2785
2786 # pass in certain TCP connections and keep state (SSH, SMTP, DNS, IDENT)
2787 pass in on $ext_if proto tcp from any to any port { ssh, smtp, domain, \e
2788       auth }
2789
2790 # Do not allow Windows 9x SMTP connections since they are typically
2791 # a viral worm. Alternately we could limit these OSes to 1 connection each.
2792 block in on $ext_if proto tcp from any os {"Windows 95", "Windows 98"} \e
2793       to any port smtp
2794
2795 # IPv6
2796 # pass in/out all IPv6 traffic: note that we have to enable this in two
2797 # different ways, on both our physical interface and our tunnel
2798 pass quick on gif0 inet6
2799 pass quick on $ext_if proto ipv6
2800
2801 # Packet Tagging
2802
2803 # three interfaces: $int_if, $ext_if, and $wifi_if (wireless). NAT is
2804 # being done on $ext_if for all outgoing packets. tag packets in on
2805 # $int_if and pass those tagged packets out on $ext_if.  all other
2806 # outgoing packets (i.e., packets from the wireless network) are only
2807 # permitted to access port 80.
2808
2809 pass in on $int_if from any to any tag INTNET
2810 pass in on $wifi_if from any to any
2811
2812 block out on $ext_if from any to any
2813 pass out quick on $ext_if tagged INTNET
2814 pass out on $ext_if proto tcp from any to any port 80
2815
2816 # tag incoming packets as they are redirected to spamd(8). use the tag
2817 # to pass those packets through the packet filter.
2818
2819 rdr on $ext_if inet proto tcp from \*(Ltspammers\*(Gt to port smtp \e
2820         tag SPAMD -\*(Gt 127.0.0.1 port spamd
2821
2822 block in on $ext_if
2823 pass in on $ext_if inet proto tcp tagged SPAMD
2824 .Ed
2825 .Sh GRAMMAR
2826 Syntax for
2827 .Nm
2828 in BNF:
2829 .Bd -literal
2830 line           = ( option | pf-rule | nat-rule | binat-rule | rdr-rule |
2831                  antispoof-rule | altq-rule | queue-rule | trans-anchors |
2832                  anchor-rule | anchor-close | load-anchor | table-rule |
2833                  include )
2834
2835 option         = "set" ( [ "timeout" ( timeout | "{" timeout-list "}" ) ] |
2836                  [ "ruleset-optimization" [ "none" | "basic" | "profile" ]] |
2837                  [ "optimization" [ "default" | "normal" |
2838                  "high-latency" | "satellite" |
2839                  "aggressive" | "conservative" ] ]
2840                  [ "limit" ( limit-item | "{" limit-list "}" ) ] |
2841                  [ "loginterface" ( interface-name | "none" ) ] |
2842                  [ "block-policy" ( "drop" | "return" ) ] |
2843                  [ "state-policy" ( "if-bound" | "floating" ) ]
2844                  [ "state-defaults" state-opts ]
2845                  [ "require-order" ( "yes" | "no" ) ]
2846                  [ "fingerprints" filename ] |
2847                  [ "skip on" ifspec ] |
2848                  [ "debug" ( "none" | "urgent" | "misc" | "loud" ) ] )
2849
2850 pf-rule        = action [ ( "in" | "out" ) ]
2851                  [ "log" [ "(" logopts ")"] ] [ "quick" ]
2852                  [ "on" ifspec ] [ "fastroute" | route ] [ af ] [ protospec ]
2853                  hosts [ filteropt-list ]
2854
2855 logopts        = logopt [ "," logopts ]
2856 logopt         = "all" | "user" | "to" interface-name
2857
2858 filteropt-list = filteropt-list filteropt | filteropt
2859 filteropt      = user | group | flags | icmp-type | icmp6-type | "tos" tos |
2860                  ( "no" | "keep" | "modulate" | "synproxy" ) "state"
2861                  [ "(" state-opts ")" ] |
2862                  "fragment" | "no-df" | "min-ttl" number | "set-tos" tos |
2863                  "max-mss" number | "random-id" | "reassemble tcp" |
2864                  fragmentation | "allow-opts" |
2865                  "label" string | "tag" string | [ ! ] "tagged" string |
2866                  "queue" ( string | "(" string [ [ "," ] string ] ")" ) |
2867                  "rtable" number | "probability" number"%"
2868
2869 nat-rule       = [ "no" ] "nat" [ "pass" [ "log" [ "(" logopts ")" ] ] ]
2870                  [ "on" ifspec ] [ af ]
2871                  [ protospec ] hosts [ "tag" string ] [ "tagged" string ]
2872                  [ "-\*(Gt" ( redirhost | "{" redirhost-list "}" )
2873                  [ portspec ] [ pooltype ] [ "static-port" ] ]
2874
2875 binat-rule     = [ "no" ] "binat" [ "pass" [ "log" [ "(" logopts ")" ] ] ]
2876                  [ "on" interface-name ] [ af ]
2877                  [ "proto" ( proto-name | proto-number ) ]
2878                  "from" address [ "/" mask-bits ] "to" ipspec
2879                  [ "tag" string ] [ "tagged" string ]
2880                  [ "-\*(Gt" address [ "/" mask-bits ] ]
2881
2882 rdr-rule       = [ "no" ] "rdr" [ "pass" [ "log" [ "(" logopts ")" ] ] ]
2883                  [ "on" ifspec ] [ af ]
2884                  [ protospec ] hosts [ "tag" string ] [ "tagged" string ]
2885                  [ "-\*(Gt" ( redirhost | "{" redirhost-list "}" )
2886                  [ portspec ] [ pooltype ] ]
2887
2888 antispoof-rule = "antispoof" [ "log" ] [ "quick" ]
2889                  "for" ifspec [ af ] [ "label" string ]
2890
2891 table-rule     = "table" "\*(Lt" string "\*(Gt" [ tableopts-list ]
2892 tableopts-list = tableopts-list tableopts | tableopts
2893 tableopts      = "persist" | "const" | "counters" | "file" string |
2894                  "{" [ tableaddr-list ] "}"
2895 tableaddr-list = tableaddr-list [ "," ] tableaddr-spec | tableaddr-spec
2896 tableaddr-spec = [ "!" ] tableaddr [ "/" mask-bits ]
2897 tableaddr      = hostname | ifspec | "self" |
2898                  ipv4-dotted-quad | ipv6-coloned-hex
2899
2900 altq-rule      = "altq on" interface-name queueopts-list
2901                  "queue" subqueue
2902 queue-rule     = "queue" string [ "on" interface-name ] queueopts-list
2903                  subqueue
2904
2905 anchor-rule    = "anchor" [ string ] [ ( "in" | "out" ) ] [ "on" ifspec ]
2906                  [ af ] [ protospec ] [ hosts ] [ filteropt-list ] [ "{" ]
2907
2908 anchor-close   = "}"
2909
2910 trans-anchors  = ( "nat-anchor" | "rdr-anchor" | "binat-anchor" ) string
2911                  [ "on" ifspec ] [ af ] [ "proto" ] [ protospec ] [ hosts ]
2912
2913 load-anchor    = "load anchor" string "from" filename
2914
2915 queueopts-list = queueopts-list queueopts | queueopts
2916 queueopts      = [ "bandwidth" bandwidth-spec ] |
2917                  [ "qlimit" number ] | [ "tbrsize" number ] |
2918                  [ "priority" number ] | [ schedulers ]
2919 schedulers     = ( cbq-def | priq-def | hfsc-def )
2920 bandwidth-spec = "number" ( "b" | "Kb" | "Mb" | "Gb" | "%" )
2921
2922 action         = "pass" | "block" [ return ] | [ "no" ] "scrub"
2923 return         = "drop" | "return" | "return-rst" [ "( ttl" number ")" ] |
2924                  "return-icmp" [ "(" icmpcode [ [ "," ] icmp6code ] ")" ] |
2925                  "return-icmp6" [ "(" icmp6code ")" ]
2926 icmpcode       = ( icmp-code-name | icmp-code-number )
2927 icmp6code      = ( icmp6-code-name | icmp6-code-number )
2928
2929 ifspec         = ( [ "!" ] ( interface-name | interface-group ) ) |
2930                  "{" interface-list "}"
2931 interface-list = [ "!" ] ( interface-name | interface-group )
2932                  [ [ "," ] interface-list ]
2933 route          = ( "route-to" | "reply-to" | "dup-to" )
2934                  ( routehost | "{" routehost-list "}" )
2935                  [ pooltype ]
2936 af             = "inet" | "inet6"
2937
2938 protospec      = "proto" ( proto-name | proto-number |
2939                  "{" proto-list "}" )
2940 proto-list     = ( proto-name | proto-number ) [ [ "," ] proto-list ]
2941
2942 hosts          = "all" |
2943                  "from" ( "any" | "no-route" | "urpf-failed" | "self" | host |
2944                  "{" host-list "}" ) [ port ] [ os ]
2945                  "to"   ( "any" | "no-route" | "self" | host |
2946                  "{" host-list "}" ) [ port ]
2947
2948 ipspec         = "any" | host | "{" host-list "}"
2949 host           = [ "!" ] ( address [ "/" mask-bits ] | "\*(Lt" string "\*(Gt" )
2950 redirhost      = address [ "/" mask-bits ]
2951 routehost      = "(" interface-name [ address [ "/" mask-bits ] ] ")"
2952 address        = ( interface-name | interface-group |
2953                  "(" ( interface-name | interface-group ) ")" |
2954                  hostname | ipv4-dotted-quad | ipv6-coloned-hex )
2955 host-list      = host [ [ "," ] host-list ]
2956 redirhost-list = redirhost [ [ "," ] redirhost-list ]
2957 routehost-list = routehost [ [ "," ] routehost-list ]
2958
2959 port           = "port" ( unary-op | binary-op | "{" op-list "}" )
2960 portspec       = "port" ( number | name ) [ ":" ( "*" | number | name ) ]
2961 os             = "os"  ( os-name | "{" os-list "}" )
2962 user           = "user" ( unary-op | binary-op | "{" op-list "}" )
2963 group          = "group" ( unary-op | binary-op | "{" op-list "}" )
2964
2965 unary-op       = [ "=" | "!=" | "\*(Lt" | "\*(Le" | "\*(Gt" | "\*(Ge" ]
2966                  ( name | number )
2967 binary-op      = number ( "\*(Lt\*(Gt" | "\*(Gt\*(Lt" | ":" ) number
2968 op-list        = ( unary-op | binary-op ) [ [ "," ] op-list ]
2969
2970 os-name        = operating-system-name
2971 os-list        = os-name [ [ "," ] os-list ]
2972
2973 flags          = "flags" ( [ flag-set ] "/"  flag-set | "any" )
2974 flag-set       = [ "F" ] [ "S" ] [ "R" ] [ "P" ] [ "A" ] [ "U" ] [ "E" ]
2975                  [ "W" ]
2976
2977 icmp-type      = "icmp-type" ( icmp-type-code | "{" icmp-list "}" )
2978 icmp6-type     = "icmp6-type" ( icmp-type-code | "{" icmp-list "}" )
2979 icmp-type-code = ( icmp-type-name | icmp-type-number )
2980                  [ "code" ( icmp-code-name | icmp-code-number ) ]
2981 icmp-list      = icmp-type-code [ [ "," ] icmp-list ]
2982
2983 tos            = ( "lowdelay" | "throughput" | "reliability" |
2984                  [ "0x" ] number )
2985
2986 state-opts     = state-opt [ [ "," ] state-opts ]
2987 state-opt      = ( "max" number | "no-sync" | timeout | "sloppy" | "pflow" |
2988                  "source-track" [ ( "rule" | "global" ) ] |
2989                  "max-src-nodes" number | "max-src-states" number |
2990                  "max-src-conn" number |
2991                  "max-src-conn-rate" number "/" number |
2992                  "overload" "\*(Lt" string "\*(Gt" [ "flush" ] |
2993                  "if-bound" | "floating" )
2994
2995 fragmentation  = [ "fragment reassemble" | "fragment crop" |
2996                  "fragment drop-ovl" ]
2997
2998 timeout-list   = timeout [ [ "," ] timeout-list ]
2999 timeout        = ( "tcp.first" | "tcp.opening" | "tcp.established" |
3000                  "tcp.closing" | "tcp.finwait" | "tcp.closed" |
3001                  "udp.first" | "udp.single" | "udp.multiple" |
3002                  "icmp.first" | "icmp.error" |
3003                  "other.first" | "other.single" | "other.multiple" |
3004                  "frag" | "interval" | "src.track" |
3005                  "adaptive.start" | "adaptive.end" ) number
3006
3007 limit-list     = limit-item [ [ "," ] limit-list ]
3008 limit-item     = ( "states" | "frags" | "src-nodes" ) number
3009
3010 pooltype       = ( "bitmask" | "random" |
3011                  "source-hash" [ ( hex-key | string-key ) ] |
3012                  "round-robin" ) [ sticky-address ]
3013
3014 subqueue       = string | "{" queue-list "}"
3015 queue-list     = string [ [ "," ] string ]
3016 cbq-def        = "cbq" [ "(" cbq-opt [ [ "," ] cbq-opt ] ")" ]
3017 priq-def       = "priq" [ "(" priq-opt [ [ "," ] priq-opt ] ")" ]
3018 hfsc-def       = "hfsc" [ "(" hfsc-opt [ [ "," ] hfsc-opt ] ")" ]
3019 cbq-opt        = ( "default" | "borrow" | "red" | "ecn" | "rio" )
3020 priq-opt       = ( "default" | "red" | "ecn" | "rio" )
3021 hfsc-opt       = ( "default" | "red" | "ecn" | "rio" |
3022                  linkshare-sc | realtime-sc | upperlimit-sc )
3023 linkshare-sc   = "linkshare" sc-spec
3024 realtime-sc    = "realtime" sc-spec
3025 upperlimit-sc  = "upperlimit" sc-spec
3026 sc-spec        = ( bandwidth-spec |
3027                  "(" bandwidth-spec number bandwidth-spec ")" )
3028 include        = "include" filename
3029 .Ed
3030 .Sh FILES
3031 .Bl -tag -width "/etc/protocols" -compact
3032 .It Pa /etc/hosts
3033 Host name database.
3034 .It Pa /etc/pf.conf
3035 Default location of the ruleset file.
3036 .It Pa /etc/pf.os
3037 Default location of OS fingerprints.
3038 .It Pa /etc/protocols
3039 Protocol name database.
3040 .It Pa /etc/services
3041 Service name database.
3042 .El
3043 .Sh SEE ALSO
3044 .Xr altq 4 ,
3045 .Xr carp 4 ,
3046 .Xr icmp 4 ,
3047 .Xr icmp6 4 ,
3048 .Xr ip 4 ,
3049 .Xr ip6 4 ,
3050 .Xr pf 4 ,
3051 .Xr pflow 4 ,
3052 .Xr pfsync 4 ,
3053 .Xr tcp 4 ,
3054 .Xr udp 4 ,
3055 .Xr hosts 5 ,
3056 .Xr pf.os 5 ,
3057 .Xr protocols 5 ,
3058 .Xr services 5 ,
3059 .Xr ftp-proxy 8 ,
3060 .Xr pfctl 8 ,
3061 .Xr pflogd 8 ,
3062 .Sh HISTORY
3063 The
3064 .Nm
3065 file format first appeared in
3066 .Ox 3.0 .