]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/ipfw/ipfw.8
This commit was generated by cvs2svn to compensate for changes in r161657,
[FreeBSD/FreeBSD.git] / sbin / ipfw / ipfw.8
1 .\"
2 .\" $FreeBSD$
3 .\"
4 .Dd July 25, 2006
5 .Dt IPFW 8
6 .Os
7 .Sh NAME
8 .Nm ipfw
9 .Nd IP firewall and traffic shaper control program
10 .Sh SYNOPSIS
11 .Nm
12 .Op Fl cq
13 .Cm add
14 .Ar rule
15 .Nm
16 .Op Fl acdefnNStT
17 .Brq Cm list | show
18 .Op Ar rule | first-last ...
19 .Nm
20 .Op Fl f | q
21 .Cm flush
22 .Nm
23 .Op Fl q
24 .Brq Cm delete | zero | resetlog
25 .Op Cm set
26 .Op Ar number ...
27 .Nm
28 .Cm enable
29 .Brq Cm firewall | altq | one_pass | debug | verbose | dyn_keepalive
30 .Nm
31 .Cm disable
32 .Brq Cm firewall | altq | one_pass | debug | verbose | dyn_keepalive
33 .Pp
34 .Nm
35 .Cm set Oo Cm disable Ar number ... Oc Op Cm enable Ar number ...
36 .Nm
37 .Cm set move
38 .Op Cm rule
39 .Ar number Cm to Ar number
40 .Nm
41 .Cm set swap Ar number number
42 .Nm
43 .Cm set show
44 .Pp
45 .Nm
46 .Cm table Ar number Cm add Ar addr Ns Oo / Ns Ar masklen Oc Op Ar value
47 .Nm
48 .Cm table Ar number Cm delete Ar addr Ns Op / Ns Ar masklen
49 .Nm
50 .Cm table Ar number Cm flush
51 .Nm
52 .Cm table Ar number Cm list
53 .Pp
54 .Nm
55 .Brq Cm pipe | queue
56 .Ar number
57 .Cm config
58 .Ar config-options
59 .Nm
60 .Op Fl s Op Ar field
61 .Brq Cm pipe | queue
62 .Brq Cm delete | list | show
63 .Op Ar number ...
64 .Pp
65 .Nm
66 .Op Fl cfnNqS
67 .Oo
68 .Fl p Ar preproc
69 .Oo
70 .Ar preproc-flags
71 .Oc
72 .Oc
73 .Ar pathname
74 .Sh DESCRIPTION
75 The
76 .Nm
77 utility is the user interface for controlling the
78 .Xr ipfw 4
79 firewall and the
80 .Xr dummynet 4
81 traffic shaper in
82 .Fx .
83 .Pp
84 An
85 .Nm
86 configuration, or
87 .Em ruleset ,
88 is made of a list of
89 .Em rules
90 numbered from 1 to 65535.
91 Packets are passed to
92 .Nm
93 from a number of different places in the protocol stack
94 (depending on the source and destination of the packet,
95 it is possible that
96 .Nm
97 is invoked multiple times on the same packet).
98 The packet passed to the firewall is compared
99 against each of the rules in the firewall
100 .Em ruleset .
101 When a match is found, the action corresponding to the
102 matching rule is performed.
103 .Pp
104 Depending on the action and certain system settings, packets
105 can be reinjected into the firewall at some rule after the
106 matching one for further processing.
107 .Pp
108 An
109 .Nm
110 ruleset always includes a
111 .Em default
112 rule (numbered 65535) which cannot be modified or deleted,
113 and matches all packets.
114 The action associated with the
115 .Em default
116 rule can be either
117 .Cm deny
118 or
119 .Cm allow
120 depending on how the kernel is configured.
121 .Pp
122 If the ruleset includes one or more rules with the
123 .Cm keep-state
124 or
125 .Cm limit
126 option, then
127 .Nm
128 assumes a
129 .Em stateful
130 behaviour, i.e., upon a match it will create dynamic rules matching
131 the exact parameters (addresses and ports) of the matching packet.
132 .Pp
133 These dynamic rules, which have a limited lifetime, are checked
134 at the first occurrence of a
135 .Cm check-state ,
136 .Cm keep-state
137 or
138 .Cm limit
139 rule, and are typically used to open the firewall on-demand to
140 legitimate traffic only.
141 See the
142 .Sx STATEFUL FIREWALL
143 and
144 .Sx EXAMPLES
145 Sections below for more information on the stateful behaviour of
146 .Nm .
147 .Pp
148 All rules (including dynamic ones) have a few associated counters:
149 a packet count, a byte count, a log count and a timestamp
150 indicating the time of the last match.
151 Counters can be displayed or reset with
152 .Nm
153 commands.
154 .Pp
155 Rules can be added with the
156 .Cm add
157 command; deleted individually or in groups with the
158 .Cm delete
159 command, and globally (except those in set 31) with the
160 .Cm flush
161 command; displayed, optionally with the content of the
162 counters, using the
163 .Cm show
164 and
165 .Cm list
166 commands.
167 Finally, counters can be reset with the
168 .Cm zero
169 and
170 .Cm resetlog
171 commands.
172 .Pp
173 Also, each rule belongs to one of 32 different
174 .Em sets
175 , and there are
176 .Nm
177 commands to atomically manipulate sets, such as enable,
178 disable, swap sets, move all rules in a set to another
179 one, delete all rules in a set.
180 These can be useful to
181 install temporary configurations, or to test them.
182 See Section
183 .Sx SETS OF RULES
184 for more information on
185 .Em sets .
186 .Pp
187 The following options are available:
188 .Bl -tag -width indent
189 .It Fl a
190 While listing, show counter values.
191 The
192 .Cm show
193 command just implies this option.
194 .It Fl b
195 Only show the action and the comment, not the body of a rule.
196 Implies
197 .Fl c .
198 .It Fl c
199 When entering or showing rules, print them in compact form,
200 i.e., without the optional "ip from any to any" string
201 when this does not carry any additional information.
202 .It Fl d
203 While listing, show dynamic rules in addition to static ones.
204 .It Fl e
205 While listing, if the
206 .Fl d
207 option was specified, also show expired dynamic rules.
208 .It Fl f
209 Do not ask for confirmation for commands that can cause problems
210 if misused,
211 .No i.e. Cm flush .
212 If there is no tty associated with the process, this is implied.
213 .It Fl n
214 Only check syntax of the command strings, without actually passing
215 them to the kernel.
216 .It Fl N
217 Try to resolve addresses and service names in output.
218 .It Fl q
219 While
220 .Cm add Ns ing ,
221 .Cm zero Ns ing ,
222 .Cm resetlog Ns ging
223 or
224 .Cm flush Ns ing ,
225 be quiet about actions
226 (implies
227 .Fl f ) .
228 This is useful for adjusting rules by executing multiple
229 .Nm
230 commands in a script
231 (e.g.,
232 .Ql sh\ /etc/rc.firewall ) ,
233 or by processing a file of many
234 .Nm
235 rules across a remote login session. It also stops a table add or delete
236 from failing if the entry already exists or is not present.
237 If a
238 .Cm flush
239 is performed in normal (verbose) mode (with the default kernel
240 configuration), it prints a message.
241 Because all rules are flushed, the message might not be delivered
242 to the login session, causing the remote login session to be closed
243 and the remainder of the ruleset to not be processed.
244 Access to the console would then be required to recover.
245 .It Fl S
246 While listing rules, show the
247 .Em set
248 each rule belongs to.
249 If this flag is not specified, disabled rules will not be
250 listed.
251 .It Fl s Op Ar field
252 While listing pipes, sort according to one of the four
253 counters (total or current packets or bytes).
254 .It Fl t
255 While listing, show last match timestamp (converted with ctime()).
256 .It Fl T
257 While listing, show last match timestamp (as seconds from the epoch).
258 This form can be more convenient for postprocessing by scripts.
259 .El
260 .Pp
261 To ease configuration, rules can be put into a file which is
262 processed using
263 .Nm
264 as shown in the last synopsis line.
265 An absolute
266 .Ar pathname
267 must be used.
268 The file will be read line by line and applied as arguments to the
269 .Nm
270 utility.
271 .Pp
272 Optionally, a preprocessor can be specified using
273 .Fl p Ar preproc
274 where
275 .Ar pathname
276 is to be piped through.
277 Useful preprocessors include
278 .Xr cpp 1
279 and
280 .Xr m4 1 .
281 If
282 .Ar preproc
283 does not start with a slash
284 .Pq Ql /
285 as its first character, the usual
286 .Ev PATH
287 name search is performed.
288 Care should be taken with this in environments where not all
289 file systems are mounted (yet) by the time
290 .Nm
291 is being run (e.g.\& when they are mounted over NFS).
292 Once
293 .Fl p
294 has been specified, any additional arguments as passed on to the preprocessor
295 for interpretation.
296 This allows for flexible configuration files (like conditionalizing
297 them on the local hostname) and the use of macros to centralize
298 frequently required arguments like IP addresses.
299 .Pp
300 The
301 .Nm
302 .Cm pipe
303 and
304 .Cm queue
305 commands are used to configure the traffic shaper, as shown in the
306 .Sx TRAFFIC SHAPER (DUMMYNET) CONFIGURATION
307 Section below.
308 .Pp
309 If the world and the kernel get out of sync the
310 .Nm
311 ABI may break, preventing you from being able to add any rules.
312 This can
313 adversely effect the booting process.
314 You can use
315 .Nm
316 .Cm disable
317 .Cm firewall
318 to temporarily disable the firewall to regain access to the network,
319 allowing you to fix the problem.
320 .Sh PACKET FLOW
321 A packet is checked against the active ruleset in multiple places
322 in the protocol stack, under control of several sysctl variables.
323 These places and variables are shown below, and it is important to
324 have this picture in mind in order to design a correct ruleset.
325 .Bd -literal -offset indent
326        ^    to upper layers    V
327        |                       |
328        +----------->-----------+
329        ^                       V
330  [ip(6)_input]           [ip(6)_output]     net.inet(6).ip(6).fw.enable=1
331        |                       |
332        ^                       V
333  [ether_demux]        [ether_output_frame]  net.link.ether.ipfw=1
334        |                       |
335        +-->--[bdg_forward]-->--+            net.link.bridge.ipfw=1
336        ^                       V
337        |      to devices       |
338 .Ed
339 .Pp
340 As can be noted from the above picture, the number of
341 times the same packet goes through the firewall can
342 vary between 0 and 4 depending on packet source and
343 destination, and system configuration.
344 .Pp
345 Note that as packets flow through the stack, headers can be
346 stripped or added to it, and so they may or may not be available
347 for inspection.
348 E.g., incoming packets will include the MAC header when
349 .Nm
350 is invoked from
351 .Cm ether_demux() ,
352 but the same packets will have the MAC header stripped off when
353 .Nm
354 is invoked from
355 .Cm ip_input()
356 or
357 .Cm ip6_input() .
358 .Pp
359 Also note that each packet is always checked against the complete ruleset,
360 irrespective of the place where the check occurs, or the source of the packet.
361 If a rule contains some match patterns or actions which are not valid
362 for the place of invocation (e.g.\& trying to match a MAC header within
363 .Cm ip_input
364 or
365 .Cm ip6_input ),
366 the match pattern will not match, but a
367 .Cm not
368 operator in front of such patterns
369 .Em will
370 cause the pattern to
371 .Em always
372 match on those packets.
373 It is thus the responsibility of
374 the programmer, if necessary, to write a suitable ruleset to
375 differentiate among the possible places.
376 .Cm skipto
377 rules can be useful here, as an example:
378 .Bd -literal -offset indent
379 # packets from ether_demux or bdg_forward
380 ipfw add 10 skipto 1000 all from any to any layer2 in
381 # packets from ip_input
382 ipfw add 10 skipto 2000 all from any to any not layer2 in
383 # packets from ip_output
384 ipfw add 10 skipto 3000 all from any to any not layer2 out
385 # packets from ether_output_frame
386 ipfw add 10 skipto 4000 all from any to any layer2 out
387 .Ed
388 .Pp
389 (yes, at the moment there is no way to differentiate between
390 ether_demux and bdg_forward).
391 .Sh SYNTAX
392 In general, each keyword or argument must be provided as
393 a separate command line argument, with no leading or trailing
394 spaces.
395 Keywords are case-sensitive, whereas arguments may
396 or may not be case-sensitive depending on their nature
397 (e.g.\& uid's are, hostnames are not).
398 .Pp
399 In
400 .Nm ipfw2
401 you can introduce spaces after commas ',' to make
402 the line more readable.
403 You can also put the entire
404 command (including flags) into a single argument.
405 E.g., the following forms are equivalent:
406 .Bd -literal -offset indent
407 ipfw -q add deny src-ip 10.0.0.0/24,127.0.0.1/8
408 ipfw -q add deny src-ip 10.0.0.0/24, 127.0.0.1/8
409 ipfw "-q add deny src-ip 10.0.0.0/24, 127.0.0.1/8"
410 .Ed
411 .Sh RULE FORMAT
412 The format of
413 .Nm
414 rules is the following:
415 .Bd -ragged -offset indent
416 .Bk -words
417 .Op Ar rule_number
418 .Op Cm set Ar set_number
419 .Op Cm prob Ar match_probability
420 .Ar action
421 .Op Cm log Op Cm logamount Ar number
422 .Op Cm altq Ar queue
423 .Oo
424 .Bro Cm tag | untag
425 .Brc Ar number
426 .Oc
427 .Ar body
428 .Ek
429 .Ed
430 .Pp
431 where the body of the rule specifies which information is used
432 for filtering packets, among the following:
433 .Pp
434 .Bl -tag -width "Source and dest. addresses and ports" -offset XXX -compact
435 .It Layer-2 header fields
436 When available
437 .It IPv4 and IPv6 Protocol
438 TCP, UDP, ICMP, etc.
439 .It Source and dest. addresses and ports
440 .It Direction
441 See Section
442 .Sx PACKET FLOW
443 .It Transmit and receive interface
444 By name or address
445 .It Misc. IP header fields
446 Version, type of service, datagram length, identification,
447 fragment flag (non-zero IP offset),
448 Time To Live
449 .It IP options
450 .It IPv6 Extension headers
451 Fragmentation, Hop-by-Hop options,
452 source routing, IPSec options.
453 .It IPv6 Flow-ID
454 .It Misc. TCP header fields
455 TCP flags (SYN, FIN, ACK, RST, etc.),
456 sequence number, acknowledgment number,
457 window
458 .It TCP options
459 .It ICMP types
460 for ICMP packets
461 .It ICMP6 types
462 for ICMP6 packets
463 .It User/group ID
464 When the packet can be associated with a local socket.
465 .It Divert status
466 Whether a packet came from a divert socket (e.g.,
467 .Xr natd 8 ) .
468 .El
469 .Pp
470 Note that some of the above information, e.g.\& source MAC or IP addresses and
471 TCP/UDP ports, could easily be spoofed, so filtering on those fields
472 alone might not guarantee the desired results.
473 .Bl -tag -width indent
474 .It Ar rule_number
475 Each rule is associated with a
476 .Ar rule_number
477 in the range 1..65535, with the latter reserved for the
478 .Em default
479 rule.
480 Rules are checked sequentially by rule number.
481 Multiple rules can have the same number, in which case they are
482 checked (and listed) according to the order in which they have
483 been added.
484 If a rule is entered without specifying a number, the kernel will
485 assign one in such a way that the rule becomes the last one
486 before the
487 .Em default
488 rule.
489 Automatic rule numbers are assigned by incrementing the last
490 non-default rule number by the value of the sysctl variable
491 .Ar net.inet.ip.fw.autoinc_step
492 which defaults to 100.
493 If this is not possible (e.g.\& because we would go beyond the
494 maximum allowed rule number), the number of the last
495 non-default value is used instead.
496 .It Cm set Ar set_number
497 Each rule is associated with a
498 .Ar set_number
499 in the range 0..31.
500 Sets can be individually disabled and enabled, so this parameter
501 is of fundamental importance for atomic ruleset manipulation.
502 It can be also used to simplify deletion of groups of rules.
503 If a rule is entered without specifying a set number,
504 set 0 will be used.
505 .br
506 Set 31 is special in that it cannot be disabled,
507 and rules in set 31 are not deleted by the
508 .Nm ipfw flush
509 command (but you can delete them with the
510 .Nm ipfw delete set 31
511 command).
512 Set 31 is also used for the
513 .Em default
514 rule.
515 .It Cm prob Ar match_probability
516 A match is only declared with the specified probability
517 (floating point number between 0 and 1).
518 This can be useful for a number of applications such as
519 random packet drop or
520 (in conjunction with
521 .Xr dummynet 4 )
522 to simulate the effect of multiple paths leading to out-of-order
523 packet delivery.
524 .Pp
525 Note: this condition is checked before any other condition, including
526 ones such as keep-state or check-state which might have side effects.
527 .It Cm log Op Cm logamount Ar number
528 When a packet matches a rule with the
529 .Cm log
530 keyword, a message will be
531 logged to
532 .Xr syslogd 8
533 with a
534 .Dv LOG_SECURITY
535 facility.
536 The logging only occurs if the sysctl variable
537 .Em net.inet.ip.fw.verbose
538 is set to 1
539 (which is the default when the kernel is compiled with
540 .Dv IPFIREWALL_VERBOSE )
541 and the number of packets logged so far for that
542 particular rule does not exceed the
543 .Cm logamount
544 parameter.
545 If no
546 .Cm logamount
547 is specified, the limit is taken from the sysctl variable
548 .Em net.inet.ip.fw.verbose_limit .
549 In both cases, a value of 0 removes the logging limit.
550 .Pp
551 Once the limit is reached, logging can be re-enabled by
552 clearing the logging counter or the packet counter for that entry, see the
553 .Cm resetlog
554 command.
555 .Pp
556 Note: logging is done after all other packet matching conditions
557 have been successfully verified, and before performing the final
558 action (accept, deny, etc.) on the packet.
559 .It Cm tag Ar number
560 When a packet matches a rule with the
561 .Cm tag
562 keyword, the numeric tag for the given
563 .Ar number
564 in the range 1..65534 will be attached to the packet.
565 The tag acts as an internal marker (it is not sent out over
566 the wire) that can be used to identify these packets later on.
567 This can be used, for example, to provide trust between interfaces
568 and to start doing policy-based filtering.
569 A packet can have mutiple tags at the same time.
570 Tags are "sticky", meaning once a tag is applied to a packet by a
571 matching rule it exists until explicit removal.
572 Tags are kept with the packet everywhere within the kernel, but are
573 lost when packet leaves the kernel, for example, on transmitting
574 packet out to the network or sending packet to a
575 .Xr divert 4
576 socket.
577 .Pp
578 To check for previously applied tags, use the
579 .Cm tagged
580 rule option. To delete previously applied tag, use the
581 .Cm untag
582 keyword.
583 .Pp
584 Note: since tags are kept with the packet everywhere in kernelspace,
585 they can be set and unset anywhere in kernel network subsystem
586 (using
587 .Xr mbuf_tags 9
588 facility), not only by means of
589 .Xr ipfw 4
590 .Cm tag
591 and
592 .Cm untag
593 keywords.
594 For example, there can be a specialized
595 .Xr netgraph 4
596 node doing traffic analyzing and tagging for later inspecting
597 in firewall.
598 .It Cm untag Ar number
599 When a packet matches a rule with the
600 .Cm untag
601 keyword, the tag with the number
602 .Ar number
603 is searched among the tags attached to this packet and,
604 if found, removed from it.
605 Other tags bound to packet, if present, are left untouched.
606 .It Cm altq Ar queue
607 When a packet matches a rule with the
608 .Cm altq
609 keyword, the ALTQ identifier for the given
610 .Ar queue
611 (see
612 .Xr altq 4 )
613 will be attached.
614 Note that this ALTQ tag is only meaningful for packets going "out" of IPFW,
615 and not being rejected or going to divert sockets.
616 Note that if there is insufficient memory at the time the packet is
617 processed, it will not be tagged, so it is wise to make your ALTQ
618 "default" queue policy account for this.
619 If multiple
620 .Cm altq
621 rules match a single packet, only the first one adds the ALTQ classification
622 tag.
623 In doing so, traffic may be shaped by using
624 .Cm count Cm altq Ar queue
625 rules for classification early in the ruleset, then later applying
626 the filtering decision.
627 For example,
628 .Cm check-state
629 and
630 .Cm keep-state
631 rules may come later and provide the actual filtering decisions in
632 addition to the fallback ALTQ tag.
633 .Pp
634 You must run
635 .Xr pfctl 8
636 to set up the queues before IPFW will be able to look them up by name,
637 and if the ALTQ disciplines are rearranged, the rules in containing the
638 queue identifiers in the kernel will likely have gone stale and need
639 to be reloaded.
640 Stale queue identifiers will probably result in misclassification.
641 .Pp
642 All system ALTQ processing can be turned on or off via
643 .Nm
644 .Cm enable Ar altq
645 and
646 .Nm
647 .Cm disable Ar altq .
648 The usage of
649 .Em net.inet.ip.fw.one_pass
650 is irrelevant to ALTQ traffic shaping, as the actual rule action is followed
651 always after adding an ALTQ tag.
652 .El
653 .Ss RULE ACTIONS
654 A rule can be associated with one of the following actions, which
655 will be executed when the packet matches the body of the rule.
656 .Bl -tag -width indent
657 .It Cm allow | accept | pass | permit
658 Allow packets that match rule.
659 The search terminates.
660 .It Cm check-state
661 Checks the packet against the dynamic ruleset.
662 If a match is found, execute the action associated with
663 the rule which generated this dynamic rule, otherwise
664 move to the next rule.
665 .br
666 .Cm Check-state
667 rules do not have a body.
668 If no
669 .Cm check-state
670 rule is found, the dynamic ruleset is checked at the first
671 .Cm keep-state
672 or
673 .Cm limit
674 rule.
675 .It Cm count
676 Update counters for all packets that match rule.
677 The search continues with the next rule.
678 .It Cm deny | drop
679 Discard packets that match this rule.
680 The search terminates.
681 .It Cm divert Ar port
682 Divert packets that match this rule to the
683 .Xr divert 4
684 socket bound to port
685 .Ar port .
686 The search terminates.
687 .It Cm fwd | forward Ar ipaddr | tablearg Ns Op , Ns Ar port
688 Change the next-hop on matching packets to
689 .Ar ipaddr ,
690 which can be an IP address or a host name.
691 The next hop can also be supplied by the last table
692 looked up for the packet by using the
693 .Cm tablearg
694 keyword instead of an explicit address.
695 The search terminates if this rule matches.
696 .Pp
697 If
698 .Ar ipaddr
699 is a local address, then matching packets will be forwarded to
700 .Ar port
701 (or the port number in the packet if one is not specified in the rule)
702 on the local machine.
703 .br
704 If
705 .Ar ipaddr
706 is not a local address, then the port number
707 (if specified) is ignored, and the packet will be
708 forwarded to the remote address, using the route as found in
709 the local routing table for that IP.
710 .br
711 A
712 .Ar fwd
713 rule will not match layer-2 packets (those received
714 on ether_input, ether_output, or bridged).
715 .br
716 The
717 .Cm fwd
718 action does not change the contents of the packet at all.
719 In particular, the destination address remains unmodified, so
720 packets forwarded to another system will usually be rejected by that system
721 unless there is a matching rule on that system to capture them.
722 For packets forwarded locally,
723 the local address of the socket will be
724 set to the original destination address of the packet.
725 This makes the
726 .Xr netstat 1
727 entry look rather weird but is intended for
728 use with transparent proxy servers.
729 .Pp
730 To enable
731 .Cm fwd
732 a custom kernel needs to be compiled with the option
733 .Cd "options IPFIREWALL_FORWARD" .
734 .It Cm pipe Ar pipe_nr
735 Pass packet to a
736 .Xr dummynet 4
737 .Dq pipe
738 (for bandwidth limitation, delay, etc.).
739 See the
740 .Sx TRAFFIC SHAPER (DUMMYNET) CONFIGURATION
741 Section for further information.
742 The search terminates; however, on exit from the pipe and if
743 the
744 .Xr sysctl 8
745 variable
746 .Em net.inet.ip.fw.one_pass
747 is not set, the packet is passed again to the firewall code
748 starting from the next rule.
749 .It Cm queue Ar queue_nr
750 Pass packet to a
751 .Xr dummynet 4
752 .Dq queue
753 (for bandwidth limitation using WF2Q+).
754 .It Cm reject
755 (Deprecated).
756 Synonym for
757 .Cm unreach host .
758 .It Cm reset
759 Discard packets that match this rule, and if the
760 packet is a TCP packet, try to send a TCP reset (RST) notice.
761 The search terminates.
762 .It Cm reset6
763 Discard packets that match this rule, and if the
764 packet is a TCP packet, try to send a TCP reset (RST) notice.
765 The search terminates.
766 .It Cm skipto Ar number
767 Skip all subsequent rules numbered less than
768 .Ar number .
769 The search continues with the first rule numbered
770 .Ar number
771 or higher.
772 .It Cm tee Ar port
773 Send a copy of packets matching this rule to the
774 .Xr divert 4
775 socket bound to port
776 .Ar port .
777 The search continues with the next rule.
778 .It Cm unreach Ar code
779 Discard packets that match this rule, and try to send an ICMP
780 unreachable notice with code
781 .Ar code ,
782 where
783 .Ar code
784 is a number from 0 to 255, or one of these aliases:
785 .Cm net , host , protocol , port ,
786 .Cm needfrag , srcfail , net-unknown , host-unknown ,
787 .Cm isolated , net-prohib , host-prohib , tosnet ,
788 .Cm toshost , filter-prohib , host-precedence
789 or
790 .Cm precedence-cutoff .
791 The search terminates.
792 .It Cm unreach6 Ar code
793 Discard packets that match this rule, and try to send an ICMPv6
794 unreachable notice with code
795 .Ar code ,
796 where
797 .Ar code
798 is a number from 0, 1, 3 or 4, or one of these aliases:
799 .Cm no-route, admin-prohib, address
800 or
801 .Cm port .
802 The search terminates.
803 .It Cm netgraph Ar cookie
804 Divert packet into netgraph with given
805 .Ar cookie .
806 The search terminates.
807 If packet is later returned from netgraph it is either
808 accepted or continues with the next rule, depending on
809 .Em net.inet.ip.fw.one_pass
810 sysctl variable.
811 .It Cm ngtee Ar cookie
812 A copy of packet is diverted into netgraph, original
813 packet is either accepted or continues with the next rule, depending on
814 .Em net.inet.ip.fw.one_pass
815 sysctl variable.
816 See
817 .Xr ng_ipfw 4
818 for more information on
819 .Cm netgraph
820 and
821 .Cm ngtee
822 actions.
823 .El
824 .Ss RULE BODY
825 The body of a rule contains zero or more patterns (such as
826 specific source and destination addresses or ports,
827 protocol options, incoming or outgoing interfaces, etc.)
828 that the packet must match in order to be recognised.
829 In general, the patterns are connected by (implicit)
830 .Cm and
831 operators -- i.e., all must match in order for the
832 rule to match.
833 Individual patterns can be prefixed by the
834 .Cm not
835 operator to reverse the result of the match, as in
836 .Pp
837 .Dl "ipfw add 100 allow ip from not 1.2.3.4 to any"
838 .Pp
839 Additionally, sets of alternative match patterns
840 .Pq Em or-blocks
841 can be constructed by putting the patterns in
842 lists enclosed between parentheses ( ) or braces { }, and
843 using the
844 .Cm or
845 operator as follows:
846 .Pp
847 .Dl "ipfw add 100 allow ip from { x or not y or z } to any"
848 .Pp
849 Only one level of parentheses is allowed.
850 Beware that most shells have special meanings for parentheses
851 or braces, so it is advisable to put a backslash \\ in front of them
852 to prevent such interpretations.
853 .Pp
854 The body of a rule must in general include a source and destination
855 address specifier.
856 The keyword
857 .Ar any
858 can be used in various places to specify that the content of
859 a required field is irrelevant.
860 .Pp
861 The rule body has the following format:
862 .Bd -ragged -offset indent
863 .Op Ar proto Cm from Ar src Cm to Ar dst
864 .Op Ar options
865 .Ed
866 .Pp
867 The first part (proto from src to dst) is for backward
868 compatibility with earlier versions of
869 .Fx .
870 In modern
871 .Fx
872 any match pattern (including MAC headers, IP protocols,
873 addresses and ports) can be specified in the
874 .Ar options
875 section.
876 .Pp
877 Rule fields have the following meaning:
878 .Bl -tag -width indent
879 .It Ar proto : protocol | Cm { Ar protocol Cm or ... }
880 .It Ar protocol : Oo Cm not Oc Ar protocol-name | protocol-number
881 An IP protocol specified by number or name
882 (for a complete list see
883 .Pa /etc/protocols ) ,
884 or one of the following keywords:
885 .Bl -tag -width indent
886 .It Cm ip4 | ipv4
887 Matches IPv4 packets.
888 .It Cm ip6 | ipv6
889 Matches IPv6 packets.
890 .It Cm ip | all
891 Matches any packet.
892 .El
893 .Pp
894 The
895 .Cm ipv6
896 in
897 .Cm proto
898 option will be treated as inner protocol.
899 And, the
900 .Cm ipv4
901 is not available in
902 .Cm proto
903 option.
904 .Pp
905 The
906 .Cm { Ar protocol Cm or ... }
907 format (an
908 .Em or-block )
909 is provided for convenience only but its use is deprecated.
910 .It Ar src No and Ar dst : Bro Cm addr | Cm { Ar addr Cm or ... } Brc Op Oo Cm not Oc Ar ports
911 An address (or a list, see below)
912 optionally followed by
913 .Ar ports
914 specifiers.
915 .Pp
916 The second format
917 .Em ( or-block
918 with multiple addresses) is provided for convenience only and
919 its use is discouraged.
920 .It Ar addr : Oo Cm not Oc Bro
921 .Cm any | me | me6 |
922 .Cm table Ns Pq Ar number Ns Op , Ns Ar value
923 .Ar | addr-list | addr-set
924 .Brc
925 .It Cm any
926 matches any IP address.
927 .It Cm me
928 matches any IP address configured on an interface in the system.
929 .It Cm me6
930 matches any IPv6 address configured on an interface in the system.
931 The address list is evaluated at the time the packet is
932 analysed.
933 .It Cm table Ns Pq Ar number Ns Op , Ns Ar value
934 Matches any IPv4 address for which an entry exists in the lookup table
935 .Ar number .
936 If an optional 32-bit unsigned
937 .Ar value
938 is also specified, an entry will match only if it has this value.
939 See the
940 .Sx LOOKUP TABLES
941 section below for more information on lookup tables.
942 .It Ar addr-list : ip-addr Ns Op Ns , Ns Ar addr-list
943 .It Ar ip-addr :
944 A host or subnet address specified in one of the following ways:
945 .Bl -tag -width indent
946 .It Ar numeric-ip | hostname
947 Matches a single IPv4 address, specified as dotted-quad or a hostname.
948 Hostnames are resolved at the time the rule is added to the firewall list.
949 .It Ar addr Ns / Ns Ar masklen
950 Matches all addresses with base
951 .Ar addr
952 (specified as an IP address or a hostname)
953 and mask width of
954 .Cm masklen
955 bits.
956 As an example, 1.2.3.4/25 will match
957 all IP numbers from 1.2.3.0 to 1.2.3.127 .
958 .It Ar addr Ns : Ns Ar mask
959 Matches all addresses with base
960 .Ar addr
961 (specified as an IP address or a hostname)
962 and the mask of
963 .Ar mask ,
964 specified as a dotted quad.
965 As an example, 1.2.3.4:255.0.255.0 will match
966 1.*.3.*.
967 This form is advised only for non-contiguous
968 masks.
969 It is better to resort to the
970 .Ar addr Ns / Ns Ar masklen
971 format for contiguous masks, which is more compact and less
972 error-prone.
973 .El
974 .It Ar addr-set : addr Ns Oo Ns / Ns Ar masklen Oc Ns Cm { Ns Ar list Ns Cm }
975 .It Ar list : Bro Ar num | num-num Brc Ns Op Ns , Ns Ar list
976 Matches all addresses with base address
977 .Ar addr
978 (specified as an IP address or a hostname)
979 and whose last byte is in the list between braces { } .
980 Note that there must be no spaces between braces and
981 numbers (spaces after commas are allowed).
982 Elements of the list can be specified as single entries
983 or ranges.
984 The
985 .Ar masklen
986 field is used to limit the size of the set of addresses,
987 and can have any value between 24 and 32.
988 If not specified,
989 it will be assumed as 24.
990 .br
991 This format is particularly useful to handle sparse address sets
992 within a single rule.
993 Because the matching occurs using a
994 bitmask, it takes constant time and dramatically reduces
995 the complexity of rulesets.
996 .br
997 As an example, an address specified as 1.2.3.4/24{128,35-55,89}
998 will match the following IP addresses:
999 .br
1000 1.2.3.128, 1.2.3.35 to 1.2.3.55, 1.2.3.89 .
1001 .It Ar addr6-list : ip6-addr Ns Op Ns , Ns Ar addr6-list
1002 .It Ar ip6-addr :
1003 A host or subnet specified one of the following ways:
1004 .Pp
1005 .Bl -tag -width indent
1006 .It Ar numeric-ip | hostname
1007 Matches a single IPv6 address as allowed by
1008 .Xr inet_pton 3
1009 or a hostname.
1010 Hostnames are resolved at the time the rule is added to the firewall
1011 list.
1012 .It Ar addr Ns / Ns Ar masklen
1013 Matches all IPv6 addresses with base
1014 .Ar addr
1015 (specified as allowed by
1016 .Xr inet_pton
1017 or a hostname)
1018 and mask width of
1019 .Cm masklen
1020 bits.
1021 .El
1022 .Pp
1023 No support for sets of IPv6 addresses is provided because IPv6 addresses
1024 are typically random past the initial prefix.
1025 .It Ar ports : Bro Ar port | port Ns \&- Ns Ar port Ns Brc Ns Op , Ns Ar ports
1026 For protocols which support port numbers (such as TCP and UDP), optional
1027 .Cm ports
1028 may be specified as one or more ports or port ranges, separated
1029 by commas but no spaces, and an optional
1030 .Cm not
1031 operator.
1032 The
1033 .Ql \&-
1034 notation specifies a range of ports (including boundaries).
1035 .Pp
1036 Service names (from
1037 .Pa /etc/services )
1038 may be used instead of numeric port values.
1039 The length of the port list is limited to 30 ports or ranges,
1040 though one can specify larger ranges by using an
1041 .Em or-block
1042 in the
1043 .Cm options
1044 section of the rule.
1045 .Pp
1046 A backslash
1047 .Pq Ql \e
1048 can be used to escape the dash
1049 .Pq Ql -
1050 character in a service name (from a shell, the backslash must be
1051 typed twice to avoid the shell itself interpreting it as an escape
1052 character).
1053 .Pp
1054 .Dl "ipfw add count tcp from any ftp\e\e-data-ftp to any"
1055 .Pp
1056 Fragmented packets which have a non-zero offset (i.e., not the first
1057 fragment) will never match a rule which has one or more port
1058 specifications.
1059 See the
1060 .Cm frag
1061 option for details on matching fragmented packets.
1062 .El
1063 .Ss RULE OPTIONS (MATCH PATTERNS)
1064 Additional match patterns can be used within
1065 rules.
1066 Zero or more of these so-called
1067 .Em options
1068 can be present in a rule, optionally prefixed by the
1069 .Cm not
1070 operand, and possibly grouped into
1071 .Em or-blocks .
1072 .Pp
1073 The following match patterns can be used (listed in alphabetical order):
1074 .Bl -tag -width indent
1075 .It Cm // this is a comment.
1076 Inserts the specified text as a comment in the rule.
1077 Everything following // is considered as a comment and stored in the rule.
1078 You can have comment-only rules, which are listed as having a
1079 .Cm count
1080 action followed by the comment.
1081 .It Cm bridged
1082 Alias for
1083 .Cm layer2 .
1084 .It Cm diverted
1085 Matches only packets generated by a divert socket.
1086 .It Cm diverted-loopback
1087 Matches only packets coming from a divert socket back into the IP stack
1088 input for delivery.
1089 .It Cm diverted-output
1090 Matches only packets going from a divert socket back outward to the IP
1091 stack output for delivery.
1092 .It Cm dst-ip Ar ip-address
1093 Matches IPv4 packets whose destination IP is one of the address(es)
1094 specified as argument.
1095 .It Bro Cm dst-ip6 | dst-ipv6 Brc Ar ip6-address
1096 Matches IPv6 packets whose destination IP is one of the address(es)
1097 specified as argument.
1098 .It Cm dst-port Ar ports
1099 Matches IP packets whose destination port is one of the port(s)
1100 specified as argument.
1101 .It Cm established
1102 Matches TCP packets that have the RST or ACK bits set.
1103 .It Cm ext6hdr Ar header
1104 Matches IPv6 packets containing the extended header given by
1105 .Ar header .
1106 Supported headers are:
1107 .Pp
1108 Fragment,
1109 .Pq Cm frag ,
1110 Hop-to-hop options
1111 .Pq Cm hopopt ,
1112 Source routing
1113 .Pq Cm route ,
1114 Destination options
1115 .Pq Cm dstopt ,
1116 IPSec authentication headers
1117 .Pq Cm ah ,
1118 and IPSec encapsulated security payload headers
1119 .Pq Cm esp .
1120 .It Cm flow-id Ar labels
1121 Matches IPv6 packets containing any of the flow labels given in
1122 .Ar labels .
1123 .Ar labels
1124 is a comma seperate list of numeric flow labels.
1125 .It Cm frag
1126 Matches packets that are fragments and not the first
1127 fragment of an IP datagram.
1128 Note that these packets will not have
1129 the next protocol header (e.g.\& TCP, UDP) so options that look into
1130 these headers cannot match.
1131 .It Cm gid Ar group
1132 Matches all TCP or UDP packets sent by or received for a
1133 .Ar group .
1134 A
1135 .Ar group
1136 may be specified by name or number.
1137 This option should be used only if debug.mpsafenet=0 to avoid possible
1138 deadlocks due to layering violations in its implementation.
1139 .It Cm jail Ar prisonID
1140 Matches all TCP or UDP packets sent by or received for the
1141 jail whos prison ID is
1142 .Ar prisonID .
1143 This option should be used only if debug.mpsafenet=0 to avoid possible
1144 deadlocks due to layering violations in its implementation.
1145 .It Cm icmptypes Ar types
1146 Matches ICMP packets whose ICMP type is in the list
1147 .Ar types .
1148 The list may be specified as any combination of
1149 individual types (numeric) separated by commas.
1150 .Em Ranges are not allowed.
1151 The supported ICMP types are:
1152 .Pp
1153 echo reply
1154 .Pq Cm 0 ,
1155 destination unreachable
1156 .Pq Cm 3 ,
1157 source quench
1158 .Pq Cm 4 ,
1159 redirect
1160 .Pq Cm 5 ,
1161 echo request
1162 .Pq Cm 8 ,
1163 router advertisement
1164 .Pq Cm 9 ,
1165 router solicitation
1166 .Pq Cm 10 ,
1167 time-to-live exceeded
1168 .Pq Cm 11 ,
1169 IP header bad
1170 .Pq Cm 12 ,
1171 timestamp request
1172 .Pq Cm 13 ,
1173 timestamp reply
1174 .Pq Cm 14 ,
1175 information request
1176 .Pq Cm 15 ,
1177 information reply
1178 .Pq Cm 16 ,
1179 address mask request
1180 .Pq Cm 17
1181 and address mask reply
1182 .Pq Cm 18 .
1183 .It Cm icmp6types Ar types
1184 Matches ICMP6 packets whose ICMP6 type is in the list of
1185 .Ar types .
1186 The list may be specified as any combination of
1187 individual types (numeric) separated by commas.
1188 .Em Ranges are not allowed.
1189 .It Cm in | out
1190 Matches incoming or outgoing packets, respectively.
1191 .Cm in
1192 and
1193 .Cm out
1194 are mutually exclusive (in fact,
1195 .Cm out
1196 is implemented as
1197 .Cm not in Ns No ).
1198 .It Cm ipid Ar id-list
1199 Matches IPv4 packets whose
1200 .Cm ip_id
1201 field has value included in
1202 .Ar id-list ,
1203 which is either a single value or a list of values or ranges
1204 specified in the same way as
1205 .Ar ports .
1206 .It Cm iplen Ar len-list
1207 Matches IP packets whose total length, including header and data, is
1208 in the set
1209 .Ar len-list ,
1210 which is either a single value or a list of values or ranges
1211 specified in the same way as
1212 .Ar ports .
1213 .It Cm ipoptions Ar spec
1214 Matches packets whose IPv4 header contains the comma separated list of
1215 options specified in
1216 .Ar spec .
1217 The supported IP options are:
1218 .Pp
1219 .Cm ssrr
1220 (strict source route),
1221 .Cm lsrr
1222 (loose source route),
1223 .Cm rr
1224 (record packet route) and
1225 .Cm ts
1226 (timestamp).
1227 The absence of a particular option may be denoted
1228 with a
1229 .Ql \&! .
1230 .It Cm ipprecedence Ar precedence
1231 Matches IPv4 packets whose precedence field is equal to
1232 .Ar precedence .
1233 .It Cm ipsec
1234 Matches packets that have IPSEC history associated with them
1235 (i.e., the packet comes encapsulated in IPSEC, the kernel
1236 has IPSEC support and IPSEC_FILTERGIF option, and can correctly
1237 decapsulate it).
1238 .Pp
1239 Note that specifying
1240 .Cm ipsec
1241 is different from specifying
1242 .Cm proto Ar ipsec
1243 as the latter will only look at the specific IP protocol field,
1244 irrespective of IPSEC kernel support and the validity of the IPSEC data.
1245 .Pp
1246 Further note that this flag is silently ignored in kernels without
1247 IPSEC support.
1248 It does not affect rule processing when given and the
1249 rules are handled as if with no
1250 .Cm ipsec
1251 flag.
1252 .It Cm iptos Ar spec
1253 Matches IPv4 packets whose
1254 .Cm tos
1255 field contains the comma separated list of
1256 service types specified in
1257 .Ar spec .
1258 The supported IP types of service are:
1259 .Pp
1260 .Cm lowdelay
1261 .Pq Dv IPTOS_LOWDELAY ,
1262 .Cm throughput
1263 .Pq Dv IPTOS_THROUGHPUT ,
1264 .Cm reliability
1265 .Pq Dv IPTOS_RELIABILITY ,
1266 .Cm mincost
1267 .Pq Dv IPTOS_MINCOST ,
1268 .Cm congestion
1269 .Pq Dv IPTOS_CE .
1270 The absence of a particular type may be denoted
1271 with a
1272 .Ql \&! .
1273 .It Cm ipttl Ar ttl-list
1274 Matches IPv4 packets whose time to live is included in
1275 .Ar ttl-list ,
1276 which is either a single value or a list of values or ranges
1277 specified in the same way as
1278 .Ar ports .
1279 .It Cm ipversion Ar ver
1280 Matches IP packets whose IP version field is
1281 .Ar ver .
1282 .It Cm keep-state
1283 Upon a match, the firewall will create a dynamic rule, whose
1284 default behaviour is to match bidirectional traffic between
1285 source and destination IP/port using the same protocol.
1286 The rule has a limited lifetime (controlled by a set of
1287 .Xr sysctl 8
1288 variables), and the lifetime is refreshed every time a matching
1289 packet is found.
1290 .It Cm layer2
1291 Matches only layer2 packets, i.e., those passed to
1292 .Nm
1293 from ether_demux() and ether_output_frame().
1294 .It Cm limit Bro Cm src-addr | src-port | dst-addr | dst-port Brc Ar N
1295 The firewall will only allow
1296 .Ar N
1297 connections with the same
1298 set of parameters as specified in the rule.
1299 One or more
1300 of source and destination addresses and ports can be
1301 specified.
1302 Currently,
1303 only IPv4 flows are supported.
1304 .It Cm { MAC | mac } Ar dst-mac src-mac
1305 Match packets with a given
1306 .Ar dst-mac
1307 and
1308 .Ar src-mac
1309 addresses, specified as the
1310 .Cm any
1311 keyword (matching any MAC address), or six groups of hex digits
1312 separated by colons,
1313 and optionally followed by a mask indicating the significant bits.
1314 The mask may be specified using either of the following methods:
1315 .Bl -enum -width indent
1316 .It
1317 A slash
1318 .Pq /
1319 followed by the number of significant bits.
1320 For example, an address with 33 significant bits could be specified as:
1321 .Pp
1322 .Dl "MAC 10:20:30:40:50:60/33 any"
1323 .Pp
1324 .It
1325 An ampersand
1326 .Pq &
1327 followed by a bitmask specified as six groups of hex digits separated
1328 by colons.
1329 For example, an address in which the last 16 bits are significant could
1330 be specified as:
1331 .Pp
1332 .Dl "MAC 10:20:30:40:50:60&00:00:00:00:ff:ff any"
1333 .Pp
1334 Note that the ampersand character has a special meaning in many shells
1335 and should generally be escaped.
1336 .Pp
1337 .El
1338 Note that the order of MAC addresses (destination first,
1339 source second) is
1340 the same as on the wire, but the opposite of the one used for
1341 IP addresses.
1342 .It Cm mac-type Ar mac-type
1343 Matches packets whose Ethernet Type field
1344 corresponds to one of those specified as argument.
1345 .Ar mac-type
1346 is specified in the same way as
1347 .Cm port numbers
1348 (i.e., one or more comma-separated single values or ranges).
1349 You can use symbolic names for known values such as
1350 .Em vlan , ipv4, ipv6 .
1351 Values can be entered as decimal or hexadecimal (if prefixed by 0x),
1352 and they are always printed as hexadecimal (unless the
1353 .Cm -N
1354 option is used, in which case symbolic resolution will be attempted).
1355 .It Cm proto Ar protocol
1356 Matches packets with the corresponding IP protocol.
1357 .It Cm recv | xmit | via Brq Ar ifX | Ar if Ns Cm * | Ar ipno | Ar any
1358 Matches packets received, transmitted or going through,
1359 respectively, the interface specified by exact name
1360 .Ns No ( Ar ifX Ns No ),
1361 by device name
1362 .Ns No ( Ar if Ns Ar * Ns No ),
1363 by IP address, or through some interface.
1364 .Pp
1365 The
1366 .Cm via
1367 keyword causes the interface to always be checked.
1368 If
1369 .Cm recv
1370 or
1371 .Cm xmit
1372 is used instead of
1373 .Cm via ,
1374 then only the receive or transmit interface (respectively)
1375 is checked.
1376 By specifying both, it is possible to match packets based on
1377 both receive and transmit interface, e.g.:
1378 .Pp
1379 .Dl "ipfw add deny ip from any to any out recv ed0 xmit ed1"
1380 .Pp
1381 The
1382 .Cm recv
1383 interface can be tested on either incoming or outgoing packets,
1384 while the
1385 .Cm xmit
1386 interface can only be tested on outgoing packets.
1387 So
1388 .Cm out
1389 is required (and
1390 .Cm in
1391 is invalid) whenever
1392 .Cm xmit
1393 is used.
1394 .Pp
1395 A packet may not have a receive or transmit interface: packets
1396 originating from the local host have no receive interface,
1397 while packets destined for the local host have no transmit
1398 interface.
1399 .It Cm setup
1400 Matches TCP packets that have the SYN bit set but no ACK bit.
1401 This is the short form of
1402 .Dq Li tcpflags\ syn,!ack .
1403 .It Cm src-ip Ar ip-address
1404 Matches IPv4 packets whose source IP is one of the address(es)
1405 specified as an argument.
1406 .It Cm src-ip6 Ar ip6-address
1407 Matches IPv6 packets whose source IP is one of the address(es)
1408 specified as an argument.
1409 .It Cm src-port Ar ports
1410 Matches IP packets whose source port is one of the port(s)
1411 specified as argument.
1412 .It Cm tagged Ar tag-list
1413 Matches packets whose tags are included in
1414 .Ar tag-list ,
1415 which is either a single value or a list of values or ranges
1416 specified in the same way as
1417 .Ar ports .
1418 Tags can be applied to the packet using
1419 .Cm tag
1420 rule action parameter (see it's description for details on tags).
1421 .It Cm tcpack Ar ack
1422 TCP packets only.
1423 Match if the TCP header acknowledgment number field is set to
1424 .Ar ack .
1425 .It Cm tcpdatalen Ar tcpdatalen-list
1426 Matches TCP packets whose length of TCP data is
1427 .Ar tcpdatalen-list ,
1428 which is either a single value or a list of values or ranges
1429 specified in the same way as
1430 .Ar ports .
1431 .It Cm tcpflags Ar spec
1432 TCP packets only.
1433 Match if the TCP header contains the comma separated list of
1434 flags specified in
1435 .Ar spec .
1436 The supported TCP flags are:
1437 .Pp
1438 .Cm fin ,
1439 .Cm syn ,
1440 .Cm rst ,
1441 .Cm psh ,
1442 .Cm ack
1443 and
1444 .Cm urg .
1445 The absence of a particular flag may be denoted
1446 with a
1447 .Ql \&! .
1448 A rule which contains a
1449 .Cm tcpflags
1450 specification can never match a fragmented packet which has
1451 a non-zero offset.
1452 See the
1453 .Cm frag
1454 option for details on matching fragmented packets.
1455 .It Cm tcpseq Ar seq
1456 TCP packets only.
1457 Match if the TCP header sequence number field is set to
1458 .Ar seq .
1459 .It Cm tcpwin Ar win
1460 TCP packets only.
1461 Match if the TCP header window field is set to
1462 .Ar win .
1463 .It Cm tcpoptions Ar spec
1464 TCP packets only.
1465 Match if the TCP header contains the comma separated list of
1466 options specified in
1467 .Ar spec .
1468 The supported TCP options are:
1469 .Pp
1470 .Cm mss
1471 (maximum segment size),
1472 .Cm window
1473 (tcp window advertisement),
1474 .Cm sack
1475 (selective ack),
1476 .Cm ts
1477 (rfc1323 timestamp) and
1478 .Cm cc
1479 (rfc1644 t/tcp connection count).
1480 The absence of a particular option may be denoted
1481 with a
1482 .Ql \&! .
1483 .It Cm uid Ar user
1484 Match all TCP or UDP packets sent by or received for a
1485 .Ar user .
1486 A
1487 .Ar user
1488 may be matched by name or identification number.
1489 This option should be used only if debug.mpsafenet=0 to avoid possible
1490 deadlocks due to layering violations in its implementation.
1491 .It Cm verrevpath
1492 For incoming packets,
1493 a routing table lookup is done on the packet's source address.
1494 If the interface on which the packet entered the system matches the
1495 outgoing interface for the route,
1496 the packet matches.
1497 If the interfaces do not match up,
1498 the packet does not match.
1499 All outgoing packets or packets with no incoming interface match.
1500 .Pp
1501 The name and functionality of the option is intentionally similar to
1502 the Cisco IOS command:
1503 .Pp
1504 .Dl ip verify unicast reverse-path
1505 .Pp
1506 This option can be used to make anti-spoofing rules to reject all
1507 packets with source addresses not from this interface.
1508 See also the option
1509 .Cm antispoof .
1510 .It Cm versrcreach
1511 For incoming packets,
1512 a routing table lookup is done on the packet's source address.
1513 If a route to the source address exists, but not the default route
1514 or a blackhole/reject route, the packet matches.
1515 Otherwise, the packet does not match.
1516 All outgoing packets match.
1517 .Pp
1518 The name and functionality of the option is intentionally similar to
1519 the Cisco IOS command:
1520 .Pp
1521 .Dl ip verify unicast source reachable-via any
1522 .Pp
1523 This option can be used to make anti-spoofing rules to reject all
1524 packets whose source address is unreachable.
1525 .It Cm antispoof
1526 For incoming packets, the packet's source address is checked if it
1527 belongs to a directly connected network.
1528 If the network is directly connected, then the interface the packet
1529 came on in is compared to the interface the network is connected to.
1530 When incoming interface and directly connected interface are not the
1531 same, the packet does not match.
1532 Otherwise, the packet does match.
1533 All outgoing packets match.
1534 .Pp
1535 This option can be used to make anti-spoofing rules to reject all
1536 packets that pretend to be from a directly connected network but do
1537 not come in through that interface.
1538 This option is similar to but more restricted than
1539 .Cm verrevpath
1540 because it engages only on packets with source addresses of directly
1541 connected networks instead of all source addresses.
1542 .El
1543 .Sh LOOKUP TABLES
1544 Lookup tables are useful to handle large sparse address sets,
1545 typically from a hundred to several thousands of entries.
1546 There may be up to 128 different lookup tables, numbered 0 to 127.
1547 .Pp
1548 Each entry is represented by an
1549 .Ar addr Ns Op / Ns Ar masklen
1550 and will match all addresses with base
1551 .Ar addr
1552 (specified as an IP address or a hostname)
1553 and mask width of
1554 .Ar masklen
1555 bits.
1556 If
1557 .Ar masklen
1558 is not specified, it defaults to 32.
1559 When looking up an IP address in a table, the most specific
1560 entry will match.
1561 Associated with each entry is a 32-bit unsigned
1562 .Ar value ,
1563 which can optionally be checked by a rule matching code.
1564 When adding an entry, if
1565 .Ar value
1566 is not specified, it defaults to 0.
1567 .Pp
1568 An entry can be added to a table
1569 .Pq Cm add ,
1570 removed from a table
1571 .Pq Cm delete ,
1572 a table can be examined
1573 .Pq Cm list
1574 or flushed
1575 .Pq Cm flush .
1576 .Pp
1577 Internally, each table is stored in a Radix tree, the same way as
1578 the routing table (see
1579 .Xr route 4 ) .
1580 .Pp
1581 Lookup tables currently support IPv4 addresses only.
1582 .Pp
1583 The
1584 .Cm tablearg
1585 feature provides the ability to use a value, looked up in the table, as
1586 the argument for a rule action, action parameter or rule option.
1587 This can significantly reduce number of rules in some configurations.
1588 The
1589 .Cm tablearg
1590 argument can be used with the following actions:
1591 .Cm pipe , queue, divert, tee, netgraph, ngtee, fwd
1592 action parameters:
1593 .Cm tag, untag,
1594 rule options:
1595 .Cm limit, tagged.
1596 .Pp
1597 When used with
1598 .Cm fwd
1599 it is possible to supply table entries with values
1600 that are in the form of IP addresses or hostnames.
1601 See the
1602 .Sx EXAMPLES
1603 Section for example usage of tables and the tablearg keyword.
1604 .Sh SETS OF RULES
1605 Each rule belongs to one of 32 different
1606 .Em sets
1607 , numbered 0 to 31.
1608 Set 31 is reserved for the default rule.
1609 .Pp
1610 By default, rules are put in set 0, unless you use the
1611 .Cm set N
1612 attribute when entering a new rule.
1613 Sets can be individually and atomically enabled or disabled,
1614 so this mechanism permits an easy way to store multiple configurations
1615 of the firewall and quickly (and atomically) switch between them.
1616 The command to enable/disable sets is
1617 .Bd -ragged -offset indent
1618 .Nm
1619 .Cm set Oo Cm disable Ar number ... Oc Op Cm enable Ar number ...
1620 .Ed
1621 .Pp
1622 where multiple
1623 .Cm enable
1624 or
1625 .Cm disable
1626 sections can be specified.
1627 Command execution is atomic on all the sets specified in the command.
1628 By default, all sets are enabled.
1629 .Pp
1630 When you disable a set, its rules behave as if they do not exist
1631 in the firewall configuration, with only one exception:
1632 .Bd -ragged -offset indent
1633 dynamic rules created from a rule before it had been disabled
1634 will still be active until they expire.
1635 In order to delete
1636 dynamic rules you have to explicitly delete the parent rule
1637 which generated them.
1638 .Ed
1639 .Pp
1640 The set number of rules can be changed with the command
1641 .Bd -ragged -offset indent
1642 .Nm
1643 .Cm set move
1644 .Brq Cm rule Ar rule-number | old-set
1645 .Cm to Ar new-set
1646 .Ed
1647 .Pp
1648 Also, you can atomically swap two rulesets with the command
1649 .Bd -ragged -offset indent
1650 .Nm
1651 .Cm set swap Ar first-set second-set
1652 .Ed
1653 .Pp
1654 See the
1655 .Sx EXAMPLES
1656 Section on some possible uses of sets of rules.
1657 .Sh STATEFUL FIREWALL
1658 Stateful operation is a way for the firewall to dynamically
1659 create rules for specific flows when packets that
1660 match a given pattern are detected.
1661 Support for stateful
1662 operation comes through the
1663 .Cm check-state , keep-state
1664 and
1665 .Cm limit
1666 options of
1667 .Nm rules .
1668 .Pp
1669 Dynamic rules are created when a packet matches a
1670 .Cm keep-state
1671 or
1672 .Cm limit
1673 rule, causing the creation of a
1674 .Em dynamic
1675 rule which will match all and only packets with
1676 a given
1677 .Em protocol
1678 between a
1679 .Em src-ip/src-port dst-ip/dst-port
1680 pair of addresses
1681 .Em ( src
1682 and
1683 .Em dst
1684 are used here only to denote the initial match addresses, but they
1685 are completely equivalent afterwards).
1686 Dynamic rules will be checked at the first
1687 .Cm check-state, keep-state
1688 or
1689 .Cm limit
1690 occurrence, and the action performed upon a match will be the same
1691 as in the parent rule.
1692 .Pp
1693 Note that no additional attributes other than protocol and IP addresses
1694 and ports are checked on dynamic rules.
1695 .Pp
1696 The typical use of dynamic rules is to keep a closed firewall configuration,
1697 but let the first TCP SYN packet from the inside network install a
1698 dynamic rule for the flow so that packets belonging to that session
1699 will be allowed through the firewall:
1700 .Pp
1701 .Dl "ipfw add check-state"
1702 .Dl "ipfw add allow tcp from my-subnet to any setup keep-state"
1703 .Dl "ipfw add deny tcp from any to any"
1704 .Pp
1705 A similar approach can be used for UDP, where an UDP packet coming
1706 from the inside will install a dynamic rule to let the response through
1707 the firewall:
1708 .Pp
1709 .Dl "ipfw add check-state"
1710 .Dl "ipfw add allow udp from my-subnet to any keep-state"
1711 .Dl "ipfw add deny udp from any to any"
1712 .Pp
1713 Dynamic rules expire after some time, which depends on the status
1714 of the flow and the setting of some
1715 .Cm sysctl
1716 variables.
1717 See Section
1718 .Sx SYSCTL VARIABLES
1719 for more details.
1720 For TCP sessions, dynamic rules can be instructed to periodically
1721 send keepalive packets to refresh the state of the rule when it is
1722 about to expire.
1723 .Pp
1724 See Section
1725 .Sx EXAMPLES
1726 for more examples on how to use dynamic rules.
1727 .Sh TRAFFIC SHAPER (DUMMYNET) CONFIGURATION
1728 .Nm
1729 is also the user interface for the
1730 .Xr dummynet 4
1731 traffic shaper.
1732 .Pp
1733 .Nm dummynet
1734 operates by first using the firewall to classify packets and divide them into
1735 .Em flows ,
1736 using any match pattern that can be used in
1737 .Nm
1738 rules.
1739 Depending on local policies, a flow can contain packets for a single
1740 TCP connection, or from/to a given host, or entire subnet, or a
1741 protocol type, etc.
1742 .Pp
1743 Packets belonging to the same flow are then passed to either of two
1744 different objects, which implement the traffic regulation:
1745 .Bl -hang -offset XXXX
1746 .It Em pipe
1747 A pipe emulates a link with given bandwidth, propagation delay,
1748 queue size and packet loss rate.
1749 Packets are queued in front of the pipe as they come out from the classifier,
1750 and then transferred to the pipe according to the pipe's parameters.
1751 .Pp
1752 .It Em queue
1753 A queue
1754 is an abstraction used to implement the WF2Q+
1755 (Worst-case Fair Weighted Fair Queueing) policy, which is
1756 an efficient variant of the WFQ policy.
1757 .br
1758 The queue associates a
1759 .Em weight
1760 and a reference pipe to each flow, and then all backlogged (i.e.,
1761 with packets queued) flows linked to the same pipe share the pipe's
1762 bandwidth proportionally to their weights.
1763 Note that weights are not priorities; a flow with a lower weight
1764 is still guaranteed to get its fraction of the bandwidth even if a
1765 flow with a higher weight is permanently backlogged.
1766 .Pp
1767 .El
1768 In practice,
1769 .Em pipes
1770 can be used to set hard limits to the bandwidth that a flow can use, whereas
1771 .Em queues
1772 can be used to determine how different flow share the available bandwidth.
1773 .Pp
1774 The
1775 .Em pipe
1776 and
1777 .Em queue
1778 configuration commands are the following:
1779 .Bd -ragged -offset indent
1780 .Cm pipe Ar number Cm config Ar pipe-configuration
1781 .Pp
1782 .Cm queue Ar number Cm config Ar queue-configuration
1783 .Ed
1784 .Pp
1785 The following parameters can be configured for a pipe:
1786 .Pp
1787 .Bl -tag -width indent -compact
1788 .It Cm bw Ar bandwidth | device
1789 Bandwidth, measured in
1790 .Sm off
1791 .Op Cm K | M
1792 .Brq Cm bit/s | Byte/s .
1793 .Sm on
1794 .Pp
1795 A value of 0 (default) means unlimited bandwidth.
1796 The unit must immediately follow the number, as in
1797 .Pp
1798 .Dl "ipfw pipe 1 config bw 300Kbit/s"
1799 .Pp
1800 If a device name is specified instead of a numeric value, as in
1801 .Pp
1802 .Dl "ipfw pipe 1 config bw tun0"
1803 .Pp
1804 then the transmit clock is supplied by the specified device.
1805 At the moment only the
1806 .Xr tun 4
1807 device supports this
1808 functionality, for use in conjunction with
1809 .Xr ppp 8 .
1810 .Pp
1811 .It Cm delay Ar ms-delay
1812 Propagation delay, measured in milliseconds.
1813 The value is rounded to the next multiple of the clock tick
1814 (typically 10ms, but it is a good practice to run kernels
1815 with
1816 .Dq "options HZ=1000"
1817 to reduce
1818 the granularity to 1ms or less).
1819 Default value is 0, meaning no delay.
1820 .El
1821 .Pp
1822 The following parameters can be configured for a queue:
1823 .Pp
1824 .Bl -tag -width indent -compact
1825 .It Cm pipe Ar pipe_nr
1826 Connects a queue to the specified pipe.
1827 Multiple queues (with the same or different weights) can be connected to
1828 the same pipe, which specifies the aggregate rate for the set of queues.
1829 .Pp
1830 .It Cm weight Ar weight
1831 Specifies the weight to be used for flows matching this queue.
1832 The weight must be in the range 1..100, and defaults to 1.
1833 .El
1834 .Pp
1835 Finally, the following parameters can be configured for both
1836 pipes and queues:
1837 .Pp
1838 .Bl -tag -width XXXX -compact
1839 .Pp
1840 .It Cm buckets Ar hash-table-size
1841 Specifies the size of the hash table used for storing the
1842 various queues.
1843 Default value is 64 controlled by the
1844 .Xr sysctl 8
1845 variable
1846 .Em net.inet.ip.dummynet.hash_size ,
1847 allowed range is 16 to 65536.
1848 .Pp
1849 .It Cm mask Ar mask-specifier
1850 Packets sent to a given pipe or queue by an
1851 .Nm
1852 rule can be further classified into multiple flows, each of which is then
1853 sent to a different
1854 .Em dynamic
1855 pipe or queue.
1856 A flow identifier is constructed by masking the IP addresses,
1857 ports and protocol types as specified with the
1858 .Cm mask
1859 options in the configuration of the pipe or queue.
1860 For each different flow identifier, a new pipe or queue is created
1861 with the same parameters as the original object, and matching packets
1862 are sent to it.
1863 .Pp
1864 Thus, when
1865 .Em dynamic pipes
1866 are used, each flow will get the same bandwidth as defined by the pipe,
1867 whereas when
1868 .Em dynamic queues
1869 are used, each flow will share the parent's pipe bandwidth evenly
1870 with other flows generated by the same queue (note that other queues
1871 with different weights might be connected to the same pipe).
1872 .br
1873 Available mask specifiers are a combination of one or more of the following:
1874 .Pp
1875 .Cm dst-ip Ar mask ,
1876 .Cm dst-ip6 Ar mask ,
1877 .Cm src-ip Ar mask ,
1878 .Cm src-ip6 Ar mask ,
1879 .Cm dst-port Ar mask ,
1880 .Cm src-port Ar mask ,
1881 .Cm flow-id Ar mask ,
1882 .Cm proto Ar mask
1883 or
1884 .Cm all ,
1885 .Pp
1886 where the latter means all bits in all fields are significant.
1887 .Pp
1888 .It Cm noerror
1889 When a packet is dropped by a dummynet queue or pipe, the error
1890 is normally reported to the caller routine in the kernel, in the
1891 same way as it happens when a device queue fills up.
1892 Setting this
1893 option reports the packet as successfully delivered, which can be
1894 needed for some experimental setups where you want to simulate
1895 loss or congestion at a remote router.
1896 .Pp
1897 .It Cm plr Ar packet-loss-rate
1898 Packet loss rate.
1899 Argument
1900 .Ar packet-loss-rate
1901 is a floating-point number between 0 and 1, with 0 meaning no
1902 loss, 1 meaning 100% loss.
1903 The loss rate is internally represented on 31 bits.
1904 .Pp
1905 .It Cm queue Brq Ar slots | size Ns Cm Kbytes
1906 Queue size, in
1907 .Ar slots
1908 or
1909 .Cm KBytes .
1910 Default value is 50 slots, which
1911 is the typical queue size for Ethernet devices.
1912 Note that for slow speed links you should keep the queue
1913 size short or your traffic might be affected by a significant
1914 queueing delay.
1915 E.g., 50 max-sized ethernet packets (1500 bytes) mean 600Kbit
1916 or 20s of queue on a 30Kbit/s pipe.
1917 Even worse effects can result if you get packets from an
1918 interface with a much larger MTU, e.g.\& the loopback interface
1919 with its 16KB packets.
1920 .Pp
1921 .It Cm red | gred Ar w_q Ns / Ns Ar min_th Ns / Ns Ar max_th Ns / Ns Ar max_p
1922 Make use of the RED (Random Early Detection) queue management algorithm.
1923 .Ar w_q
1924 and
1925 .Ar max_p
1926 are floating
1927 point numbers between 0 and 1 (0 not included), while
1928 .Ar min_th
1929 and
1930 .Ar max_th
1931 are integer numbers specifying thresholds for queue management
1932 (thresholds are computed in bytes if the queue has been defined
1933 in bytes, in slots otherwise).
1934 The
1935 .Xr dummynet 4
1936 also supports the gentle RED variant (gred).
1937 Three
1938 .Xr sysctl 8
1939 variables can be used to control the RED behaviour:
1940 .Bl -tag -width indent
1941 .It Em net.inet.ip.dummynet.red_lookup_depth
1942 specifies the accuracy in computing the average queue
1943 when the link is idle (defaults to 256, must be greater than zero)
1944 .It Em net.inet.ip.dummynet.red_avg_pkt_size
1945 specifies the expected average packet size (defaults to 512, must be
1946 greater than zero)
1947 .It Em net.inet.ip.dummynet.red_max_pkt_size
1948 specifies the expected maximum packet size, only used when queue
1949 thresholds are in bytes (defaults to 1500, must be greater than zero).
1950 .El
1951 .El
1952 .Pp
1953 When used with IPv6 data, dummynet currently has several limitations.
1954 First, debug.mpsafenet=0 must be set.
1955 Second, the information necessicary to route link-local packets to an
1956 interface is not avalable after processing by dummynet so those packets
1957 are dropped in the output path.
1958 Care should be taken to insure that link-local packets are not passed to
1959 dummynet.
1960 .Sh CHECKLIST
1961 Here are some important points to consider when designing your
1962 rules:
1963 .Bl -bullet
1964 .It
1965 Remember that you filter both packets going
1966 .Cm in
1967 and
1968 .Cm out .
1969 Most connections need packets going in both directions.
1970 .It
1971 Remember to test very carefully.
1972 It is a good idea to be near the console when doing this.
1973 If you cannot be near the console,
1974 use an auto-recovery script such as the one in
1975 .Pa /usr/share/examples/ipfw/change_rules.sh .
1976 .It
1977 Do not forget the loopback interface.
1978 .El
1979 .Sh FINE POINTS
1980 .Bl -bullet
1981 .It
1982 There are circumstances where fragmented datagrams are unconditionally
1983 dropped.
1984 TCP packets are dropped if they do not contain at least 20 bytes of
1985 TCP header, UDP packets are dropped if they do not contain a full 8
1986 byte UDP header, and ICMP packets are dropped if they do not contain
1987 4 bytes of ICMP header, enough to specify the ICMP type, code, and
1988 checksum.
1989 These packets are simply logged as
1990 .Dq pullup failed
1991 since there may not be enough good data in the packet to produce a
1992 meaningful log entry.
1993 .It
1994 Another type of packet is unconditionally dropped, a TCP packet with a
1995 fragment offset of one.
1996 This is a valid packet, but it only has one use, to try
1997 to circumvent firewalls.
1998 When logging is enabled, these packets are
1999 reported as being dropped by rule -1.
2000 .It
2001 If you are logged in over a network, loading the
2002 .Xr kld 4
2003 version of
2004 .Nm
2005 is probably not as straightforward as you would think.
2006 I recommend the following command line:
2007 .Bd -literal -offset indent
2008 kldload ipfw && \e
2009 ipfw add 32000 allow ip from any to any
2010 .Ed
2011 .Pp
2012 Along the same lines, doing an
2013 .Bd -literal -offset indent
2014 ipfw flush
2015 .Ed
2016 .Pp
2017 in similar surroundings is also a bad idea.
2018 .It
2019 The
2020 .Nm
2021 filter list may not be modified if the system security level
2022 is set to 3 or higher
2023 (see
2024 .Xr init 8
2025 for information on system security levels).
2026 .El
2027 .Sh PACKET DIVERSION
2028 A
2029 .Xr divert 4
2030 socket bound to the specified port will receive all packets
2031 diverted to that port.
2032 If no socket is bound to the destination port, or if the divert module is
2033 not loaded, or if the kernel was not compiled with divert socket support,
2034 the packets are dropped.
2035 .Sh SYSCTL VARIABLES
2036 A set of
2037 .Xr sysctl 8
2038 variables controls the behaviour of the firewall and
2039 associated modules
2040 .Pq Nm dummynet , bridge .
2041 These are shown below together with their default value
2042 (but always check with the
2043 .Xr sysctl 8
2044 command what value is actually in use) and meaning:
2045 .Bl -tag -width indent
2046 .It Em net.inet.ip.dummynet.expire : No 1
2047 Lazily delete dynamic pipes/queue once they have no pending traffic.
2048 You can disable this by setting the variable to 0, in which case
2049 the pipes/queues will only be deleted when the threshold is reached.
2050 .It Em net.inet.ip.dummynet.hash_size : No 64
2051 Default size of the hash table used for dynamic pipes/queues.
2052 This value is used when no
2053 .Cm buckets
2054 option is specified when configuring a pipe/queue.
2055 .It Em net.inet.ip.dummynet.max_chain_len : No 16
2056 Target value for the maximum number of pipes/queues in a hash bucket.
2057 The product
2058 .Cm max_chain_len*hash_size
2059 is used to determine the threshold over which empty pipes/queues
2060 will be expired even when
2061 .Cm net.inet.ip.dummynet.expire=0 .
2062 .It Em net.inet.ip.dummynet.red_lookup_depth : No 256
2063 .It Em net.inet.ip.dummynet.red_avg_pkt_size : No 512
2064 .It Em net.inet.ip.dummynet.red_max_pkt_size : No 1500
2065 Parameters used in the computations of the drop probability
2066 for the RED algorithm.
2067 .It Em net.inet.ip.fw.autoinc_step : No 100
2068 Delta between rule numbers when auto-generating them.
2069 The value must be in the range 1..1000.
2070 .It Em net.inet.ip.fw.curr_dyn_buckets : Em net.inet.ip.fw.dyn_buckets
2071 The current number of buckets in the hash table for dynamic rules
2072 (readonly).
2073 .It Em net.inet.ip.fw.debug : No 1
2074 Controls debugging messages produced by
2075 .Nm .
2076 .It Em net.inet.ip.fw.dyn_buckets : No 256
2077 The number of buckets in the hash table for dynamic rules.
2078 Must be a power of 2, up to 65536.
2079 It only takes effect when all dynamic rules have expired, so you
2080 are advised to use a
2081 .Cm flush
2082 command to make sure that the hash table is resized.
2083 .It Em net.inet.ip.fw.dyn_count : No 3
2084 Current number of dynamic rules
2085 (read-only).
2086 .It Em net.inet.ip.fw.dyn_keepalive : No 1
2087 Enables generation of keepalive packets for
2088 .Cm keep-state
2089 rules on TCP sessions.
2090 A keepalive is generated to both
2091 sides of the connection every 5 seconds for the last 20
2092 seconds of the lifetime of the rule.
2093 .It Em net.inet.ip.fw.dyn_max : No 8192
2094 Maximum number of dynamic rules.
2095 When you hit this limit, no more dynamic rules can be
2096 installed until old ones expire.
2097 .It Em net.inet.ip.fw.dyn_ack_lifetime : No 300
2098 .It Em net.inet.ip.fw.dyn_syn_lifetime : No 20
2099 .It Em net.inet.ip.fw.dyn_fin_lifetime : No 1
2100 .It Em net.inet.ip.fw.dyn_rst_lifetime : No 1
2101 .It Em net.inet.ip.fw.dyn_udp_lifetime : No 5
2102 .It Em net.inet.ip.fw.dyn_short_lifetime : No 30
2103 These variables control the lifetime, in seconds, of dynamic
2104 rules.
2105 Upon the initial SYN exchange the lifetime is kept short,
2106 then increased after both SYN have been seen, then decreased
2107 again during the final FIN exchange or when a RST is received.
2108 Both
2109 .Em dyn_fin_lifetime
2110 and
2111 .Em dyn_rst_lifetime
2112 must be strictly lower than 5 seconds, the period of
2113 repetition of keepalives.
2114 The firewall enforces that.
2115 .It Em net.inet.ip.fw.enable : No 1
2116 Enables the firewall.
2117 Setting this variable to 0 lets you run your machine without
2118 firewall even if compiled in.
2119 .It Em net.inet6.ip6.fw.enable : No 1
2120 provides the same functionality as above for the IPv6 case.
2121 .It Em net.inet.ip.fw.one_pass : No 1
2122 When set, the packet exiting from the
2123 .Xr dummynet 4
2124 pipe or from
2125 .Xr ng_ipfw 4
2126 node is not passed though the firewall again.
2127 Otherwise, after an action, the packet is
2128 reinjected into the firewall at the next rule.
2129 .It Em net.inet.ip.fw.verbose : No 1
2130 Enables verbose messages.
2131 .It Em net.inet.ip.fw.verbose_limit : No 0
2132 Limits the number of messages produced by a verbose firewall.
2133 .It Em net.inet6.ip6.fw.deny_unknown_exthdrs : No 1
2134 If enabled packets with unknown IPv6 Extension Headers will be denied.
2135 .It Em net.link.ether.ipfw : No 0
2136 Controls whether layer-2 packets are passed to
2137 .Nm .
2138 Default is no.
2139 .It Em net.link.bridge.ipfw : No 0
2140 Controls whether bridged packets are passed to
2141 .Nm .
2142 Default is no.
2143 .El
2144 .Pp
2145 .Sh EXAMPLES
2146 There are far too many possible uses of
2147 .Nm
2148 so this Section will only give a small set of examples.
2149 .Pp
2150 .Ss BASIC PACKET FILTERING
2151 This command adds an entry which denies all tcp packets from
2152 .Em cracker.evil.org
2153 to the telnet port of
2154 .Em wolf.tambov.su
2155 from being forwarded by the host:
2156 .Pp
2157 .Dl "ipfw add deny tcp from cracker.evil.org to wolf.tambov.su telnet"
2158 .Pp
2159 This one disallows any connection from the entire cracker's
2160 network to my host:
2161 .Pp
2162 .Dl "ipfw add deny ip from 123.45.67.0/24 to my.host.org"
2163 .Pp
2164 A first and efficient way to limit access (not using dynamic rules)
2165 is the use of the following rules:
2166 .Pp
2167 .Dl "ipfw add allow tcp from any to any established"
2168 .Dl "ipfw add allow tcp from net1 portlist1 to net2 portlist2 setup"
2169 .Dl "ipfw add allow tcp from net3 portlist3 to net3 portlist3 setup"
2170 .Dl "..."
2171 .Dl "ipfw add deny tcp from any to any"
2172 .Pp
2173 The first rule will be a quick match for normal TCP packets,
2174 but it will not match the initial SYN packet, which will be
2175 matched by the
2176 .Cm setup
2177 rules only for selected source/destination pairs.
2178 All other SYN packets will be rejected by the final
2179 .Cm deny
2180 rule.
2181 .Pp
2182 If you administer one or more subnets, you can take advantage
2183 of the address sets and or-blocks and write extremely
2184 compact rulesets which selectively enable services to blocks
2185 of clients, as below:
2186 .Pp
2187 .Dl "goodguys=\*q{ 10.1.2.0/24{20,35,66,18} or 10.2.3.0/28{6,3,11} }\*q"
2188 .Dl "badguys=\*q10.1.2.0/24{8,38,60}\*q"
2189 .Dl ""
2190 .Dl "ipfw add allow ip from ${goodguys} to any"
2191 .Dl "ipfw add deny ip from ${badguys} to any"
2192 .Dl "... normal policies ..."
2193 .Pp
2194 The
2195 .Cm verrevpath
2196 option could be used to do automated anti-spoofing by adding the
2197 following to the top of a ruleset:
2198 .Pp
2199 .Dl "ipfw add deny ip from any to any not verrevpath in"
2200 .Pp
2201 This rule drops all incoming packets that appear to be coming to the
2202 system on the wrong interface.
2203 For example, a packet with a source
2204 address belonging to a host on a protected internal network would be
2205 dropped if it tried to enter the system from an external interface.
2206 .Pp
2207 The
2208 .Cm antispoof
2209 option could be used to do similar but more restricted anti-spoofing
2210 by adding the following to the top of a ruleset:
2211 .Pp
2212 .Dl "ipfw add deny ip from any to any not antispoof in"
2213 .Pp
2214 This rule drops all incoming packets that appear to be coming from another
2215 directly connected system but on the wrong interface.
2216 For example, a packet with a source address of
2217 .Li 192.168.0.0/24
2218 , configured on
2219 .Li fxp0
2220 , but coming in on
2221 .Li fxp1
2222 would be dropped.
2223 .Ss DYNAMIC RULES
2224 In order to protect a site from flood attacks involving fake
2225 TCP packets, it is safer to use dynamic rules:
2226 .Pp
2227 .Dl "ipfw add check-state"
2228 .Dl "ipfw add deny tcp from any to any established"
2229 .Dl "ipfw add allow tcp from my-net to any setup keep-state"
2230 .Pp
2231 This will let the firewall install dynamic rules only for
2232 those connection which start with a regular SYN packet coming
2233 from the inside of our network.
2234 Dynamic rules are checked when encountering the first
2235 .Cm check-state
2236 or
2237 .Cm keep-state
2238 rule.
2239 A
2240 .Cm check-state
2241 rule should usually be placed near the beginning of the
2242 ruleset to minimize the amount of work scanning the ruleset.
2243 Your mileage may vary.
2244 .Pp
2245 To limit the number of connections a user can open
2246 you can use the following type of rules:
2247 .Pp
2248 .Dl "ipfw add allow tcp from my-net/24 to any setup limit src-addr 10"
2249 .Dl "ipfw add allow tcp from any to me setup limit src-addr 4"
2250 .Pp
2251 The former (assuming it runs on a gateway) will allow each host
2252 on a /24 network to open at most 10 TCP connections.
2253 The latter can be placed on a server to make sure that a single
2254 client does not use more than 4 simultaneous connections.
2255 .Pp
2256 .Em BEWARE :
2257 stateful rules can be subject to denial-of-service attacks
2258 by a SYN-flood which opens a huge number of dynamic rules.
2259 The effects of such attacks can be partially limited by
2260 acting on a set of
2261 .Xr sysctl 8
2262 variables which control the operation of the firewall.
2263 .Pp
2264 Here is a good usage of the
2265 .Cm list
2266 command to see accounting records and timestamp information:
2267 .Pp
2268 .Dl ipfw -at list
2269 .Pp
2270 or in short form without timestamps:
2271 .Pp
2272 .Dl ipfw -a list
2273 .Pp
2274 which is equivalent to:
2275 .Pp
2276 .Dl ipfw show
2277 .Pp
2278 Next rule diverts all incoming packets from 192.168.2.0/24
2279 to divert port 5000:
2280 .Pp
2281 .Dl ipfw divert 5000 ip from 192.168.2.0/24 to any in
2282 .Pp
2283 .Ss TRAFFIC SHAPING
2284 The following rules show some of the applications of
2285 .Nm
2286 and
2287 .Xr dummynet 4
2288 for simulations and the like.
2289 .Pp
2290 This rule drops random incoming packets with a probability
2291 of 5%:
2292 .Pp
2293 .Dl "ipfw add prob 0.05 deny ip from any to any in"
2294 .Pp
2295 A similar effect can be achieved making use of dummynet pipes:
2296 .Pp
2297 .Dl "ipfw add pipe 10 ip from any to any"
2298 .Dl "ipfw pipe 10 config plr 0.05"
2299 .Pp
2300 We can use pipes to artificially limit bandwidth, e.g.\& on a
2301 machine acting as a router, if we want to limit traffic from
2302 local clients on 192.168.2.0/24 we do:
2303 .Pp
2304 .Dl "ipfw add pipe 1 ip from 192.168.2.0/24 to any out"
2305 .Dl "ipfw pipe 1 config bw 300Kbit/s queue 50KBytes"
2306 .Pp
2307 note that we use the
2308 .Cm out
2309 modifier so that the rule is not used twice.
2310 Remember in fact that
2311 .Nm
2312 rules are checked both on incoming and outgoing packets.
2313 .Pp
2314 Should we want to simulate a bidirectional link with bandwidth
2315 limitations, the correct way is the following:
2316 .Pp
2317 .Dl "ipfw add pipe 1 ip from any to any out"
2318 .Dl "ipfw add pipe 2 ip from any to any in"
2319 .Dl "ipfw pipe 1 config bw 64Kbit/s queue 10Kbytes"
2320 .Dl "ipfw pipe 2 config bw 64Kbit/s queue 10Kbytes"
2321 .Pp
2322 The above can be very useful, e.g.\& if you want to see how
2323 your fancy Web page will look for a residential user who
2324 is connected only through a slow link.
2325 You should not use only one pipe for both directions, unless
2326 you want to simulate a half-duplex medium (e.g.\& AppleTalk,
2327 Ethernet, IRDA).
2328 It is not necessary that both pipes have the same configuration,
2329 so we can also simulate asymmetric links.
2330 .Pp
2331 Should we want to verify network performance with the RED queue
2332 management algorithm:
2333 .Pp
2334 .Dl "ipfw add pipe 1 ip from any to any"
2335 .Dl "ipfw pipe 1 config bw 500Kbit/s queue 100 red 0.002/30/80/0.1"
2336 .Pp
2337 Another typical application of the traffic shaper is to
2338 introduce some delay in the communication.
2339 This can significantly affect applications which do a lot of Remote
2340 Procedure Calls, and where the round-trip-time of the
2341 connection often becomes a limiting factor much more than
2342 bandwidth:
2343 .Pp
2344 .Dl "ipfw add pipe 1 ip from any to any out"
2345 .Dl "ipfw add pipe 2 ip from any to any in"
2346 .Dl "ipfw pipe 1 config delay 250ms bw 1Mbit/s"
2347 .Dl "ipfw pipe 2 config delay 250ms bw 1Mbit/s"
2348 .Pp
2349 Per-flow queueing can be useful for a variety of purposes.
2350 A very simple one is counting traffic:
2351 .Pp
2352 .Dl "ipfw add pipe 1 tcp from any to any"
2353 .Dl "ipfw add pipe 1 udp from any to any"
2354 .Dl "ipfw add pipe 1 ip from any to any"
2355 .Dl "ipfw pipe 1 config mask all"
2356 .Pp
2357 The above set of rules will create queues (and collect
2358 statistics) for all traffic.
2359 Because the pipes have no limitations, the only effect is
2360 collecting statistics.
2361 Note that we need 3 rules, not just the last one, because
2362 when
2363 .Nm
2364 tries to match IP packets it will not consider ports, so we
2365 would not see connections on separate ports as different
2366 ones.
2367 .Pp
2368 A more sophisticated example is limiting the outbound traffic
2369 on a net with per-host limits, rather than per-network limits:
2370 .Pp
2371 .Dl "ipfw add pipe 1 ip from 192.168.2.0/24 to any out"
2372 .Dl "ipfw add pipe 2 ip from any to 192.168.2.0/24 in"
2373 .Dl "ipfw pipe 1 config mask src-ip 0x000000ff bw 200Kbit/s queue 20Kbytes"
2374 .Dl "ipfw pipe 2 config mask dst-ip 0x000000ff bw 200Kbit/s queue 20Kbytes"
2375 .Ss LOOKUP TABLES
2376 In the following example, we need to create several traffic bandwidth
2377 classes and we need different hosts/networks to fall into different classes.
2378 We create one pipe for each class and configure them accordingly.
2379 Then we create a single table and fill it with IP subnets and addresses.
2380 For each subnet/host we set the argument equal to the number of the pipe
2381 that it should use.
2382 Then we classify traffic using a single rule:
2383 .Pp
2384 .Dl "ipfw pipe 1 config bw 1000Kbyte/s"
2385 .Dl "ipfw pipe 4 config bw 4000Kbyte/s"
2386 .Dl "..."
2387 .Dl "ipfw table 1 add 192.168.2.0/24 1"
2388 .Dl "ipfw table 1 add 192.168.0.0/27 4"
2389 .Dl "ipfw table 1 add 192.168.0.2 1"
2390 .Dl "..."
2391 .Dl "ipfw pipe tablearg ip from table(1) to any"
2392 .Pp
2393 Using the
2394 .Cm fwd
2395 action, the table entries may include hostnames and IP addresses.
2396 .Pp
2397 .Dl "ipfw table 1 add 192.168.2.0/24 10.23.2.1"
2398 .Dl "ipfw table 1 add 192.168.0.0/27 router1.dmz"
2399 .Dl "..."
2400 .Dl "ipfw add 100 fwd tablearg ip from any to table(1)"
2401 .Ss SETS OF RULES
2402 To add a set of rules atomically, e.g.\& set 18:
2403 .Pp
2404 .Dl "ipfw set disable 18"
2405 .Dl "ipfw add NN set 18 ...         # repeat as needed"
2406 .Dl "ipfw set enable 18"
2407 .Pp
2408 To delete a set of rules atomically the command is simply:
2409 .Pp
2410 .Dl "ipfw delete set 18"
2411 .Pp
2412 To test a ruleset and disable it and regain control if something goes wrong:
2413 .Pp
2414 .Dl "ipfw set disable 18"
2415 .Dl "ipfw add NN set 18 ...         # repeat as needed"
2416 .Dl "ipfw set enable 18; echo done; sleep 30 && ipfw set disable 18"
2417 .Pp
2418 Here if everything goes well, you press control-C before the "sleep"
2419 terminates, and your ruleset will be left active.
2420 Otherwise, e.g.\& if
2421 you cannot access your box, the ruleset will be disabled after
2422 the sleep terminates thus restoring the previous situation.
2423 .Sh SEE ALSO
2424 .Xr cpp 1 ,
2425 .Xr m4 1 ,
2426 .Xr altq 4 ,
2427 .Xr divert 4 ,
2428 .Xr dummynet 4 ,
2429 .Xr if_bridge 4 ,
2430 .Xr ip 4 ,
2431 .Xr ipfirewall 4 ,
2432 .Xr ng_ipfw 4 ,
2433 .Xr protocols 5 ,
2434 .Xr services 5 ,
2435 .Xr init 8 ,
2436 .Xr kldload 8 ,
2437 .Xr reboot 8 ,
2438 .Xr sysctl 8 ,
2439 .Xr syslogd 8
2440 .Sh HISTORY
2441 The
2442 .Nm
2443 utility first appeared in
2444 .Fx 2.0 .
2445 .Xr dummynet 4
2446 was introduced in
2447 .Fx 2.2.8 .
2448 Stateful extensions were introduced in
2449 .Fx 4.0 .
2450 .Nm ipfw2
2451 was introduced in Summer 2002.
2452 .Sh AUTHORS
2453 .An Ugen J. S. Antsilevich ,
2454 .An Poul-Henning Kamp ,
2455 .An Alex Nash ,
2456 .An Archie Cobbs ,
2457 .An Luigi Rizzo .
2458 .Pp
2459 .An -nosplit
2460 API based upon code written by
2461 .An Daniel Boulet
2462 for BSDI.
2463 .Pp
2464 Work on
2465 .Xr dummynet 4
2466 traffic shaper supported by Akamba Corp.
2467 .Sh BUGS
2468 Use of dummynet with IPv6 requires that debug.mpsafenet be set to 0.
2469 .Pp
2470 The syntax has grown over the years and sometimes it might be confusing.
2471 Unfortunately, backward compatibility prevents cleaning up mistakes
2472 made in the definition of the syntax.
2473 .Pp
2474 .Em !!! WARNING !!!
2475 .Pp
2476 Misconfiguring the firewall can put your computer in an unusable state,
2477 possibly shutting down network services and requiring console access to
2478 regain control of it.
2479 .Pp
2480 Incoming packet fragments diverted by
2481 .Cm divert
2482 are reassembled before delivery to the socket.
2483 The action used on those packet is the one from the
2484 rule which matches the first fragment of the packet.
2485 .Pp
2486 Packets diverted to userland, and then reinserted by a userland process
2487 may lose various packet attributes.
2488 The packet source interface name
2489 will be preserved if it is shorter than 8 bytes and the userland process
2490 saves and reuses the sockaddr_in
2491 (as does
2492 .Xr natd 8 ) ;
2493 otherwise, it may be lost.
2494 If a packet is reinserted in this manner, later rules may be incorrectly
2495 applied, making the order of
2496 .Cm divert
2497 rules in the rule sequence very important.
2498 .Pp
2499 Dummynet drops all packets with IPv6 link-local addresses.
2500 .Pp
2501 Rules using
2502 .Cm uid
2503 or
2504 .Cm gid
2505 may not behave as expected.
2506 In particular, incoming SYN packets may
2507 have no uid or gid associated with them since they do not yet belong
2508 to a TCP connection, and the uid/gid associated with a packet may not
2509 be as expected if the associated process calls
2510 .Xr setuid 2
2511 or similar system calls.
2512 .Pp
2513 Rules which use uid, gid or jail based matching should be used only
2514 if debug.mpsafenet=0 to avoid possible deadlocks due to layering
2515 violations in its implementation.