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