]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - sbin/ipfw/ipfw.8
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / sbin / ipfw / ipfw.8
1 .\"
2 .\" $FreeBSD$
3 .\"
4 .Dd October 25, 2012
5 .Dt IPFW 8
6 .Os
7 .Sh NAME
8 .Nm ipfw
9 .Nd User interface for firewall, traffic shaper, packet scheduler,
10 in-kernel NAT.
11 .Sh SYNOPSIS
12 .Ss FIREWALL CONFIGURATION
13 .Nm
14 .Op Fl cq
15 .Cm add
16 .Ar rule
17 .Nm
18 .Op Fl acdefnNStT
19 .Op Cm set Ar N
20 .Brq Cm list | show
21 .Op Ar rule | first-last ...
22 .Nm
23 .Op Fl f | q
24 .Op Cm set Ar N
25 .Cm flush
26 .Nm
27 .Op Fl q
28 .Op Cm set Ar N
29 .Brq Cm delete | zero | resetlog
30 .Op Ar number ...
31 .Pp
32 .Nm
33 .Cm set Oo Cm disable Ar number ... Oc Op Cm enable Ar number ...
34 .Nm
35 .Cm set move
36 .Op Cm rule
37 .Ar number Cm to Ar number
38 .Nm
39 .Cm set swap Ar number number
40 .Nm
41 .Cm set show
42 .Ss SYSCTL SHORTCUTS
43 .Nm
44 .Cm enable
45 .Brq Cm firewall | altq | one_pass | debug | verbose | dyn_keepalive
46 .Nm
47 .Cm disable
48 .Brq Cm firewall | altq | one_pass | debug | verbose | dyn_keepalive
49 .Ss LOOKUP TABLES
50 .Nm
51 .Cm table Ar number Cm add Ar addr Ns Oo / Ns Ar masklen Oc Op Ar value
52 .Nm
53 .Cm table Ar number Cm delete Ar addr Ns Op / Ns Ar masklen
54 .Nm
55 .Cm table
56 .Brq Ar number | all
57 .Cm flush
58 .Nm
59 .Cm table
60 .Brq Ar number | all
61 .Cm list
62 .Ss DUMMYNET CONFIGURATION (TRAFFIC SHAPER AND PACKET SCHEDULER)
63 .Nm
64 .Brq Cm pipe | queue | sched
65 .Ar number
66 .Cm config
67 .Ar config-options
68 .Nm
69 .Op Fl s Op Ar field
70 .Brq Cm pipe | queue | sched
71 .Brq Cm delete | list | show
72 .Op Ar number ...
73 .Ss IN-KERNEL NAT
74 .Nm
75 .Op Fl q
76 .Cm nat
77 .Ar number
78 .Cm config
79 .Ar config-options
80 .Pp
81 .Nm
82 .Op Fl cfnNqS
83 .Oo
84 .Fl p Ar preproc
85 .Oo
86 .Ar preproc-flags
87 .Oc
88 .Oc
89 .Ar pathname
90 .Sh DESCRIPTION
91 The
92 .Nm
93 utility is the user interface for controlling the
94 .Xr ipfw 4
95 firewall, the
96 .Xr dummynet 4
97 traffic shaper/packet scheduler, and the
98 in-kernel NAT services.
99 .Pp
100 A firewall configuration, or
101 .Em ruleset ,
102 is made of a list of
103 .Em rules
104 numbered from 1 to 65535.
105 Packets are passed to the firewall
106 from a number of different places in the protocol stack
107 (depending on the source and destination of the packet,
108 it is possible for the firewall to be
109 invoked multiple times on the same packet).
110 The packet passed to the firewall is compared
111 against each of the rules in the
112 .Em ruleset ,
113 in rule-number order
114 (multiple rules with the same number are permitted, in which case
115 they are processed in order of insertion).
116 When a match is found, the action corresponding to the
117 matching rule is performed.
118 .Pp
119 Depending on the action and certain system settings, packets
120 can be reinjected into the firewall at some rule after the
121 matching one for further processing.
122 .Pp
123 A ruleset always includes a
124 .Em default
125 rule (numbered 65535) which cannot be modified or deleted,
126 and matches all packets.
127 The action associated with the
128 .Em default
129 rule can be either
130 .Cm deny
131 or
132 .Cm allow
133 depending on how the kernel is configured.
134 .Pp
135 If the ruleset includes one or more rules with the
136 .Cm keep-state
137 or
138 .Cm limit
139 option,
140 the firewall will have a
141 .Em stateful
142 behaviour, i.e., upon a match it will create
143 .Em dynamic rules ,
144 i.e., rules that match packets with the same 5-tuple
145 (protocol, source and destination addresses and ports)
146 as the packet which caused their creation.
147 Dynamic rules, which have a limited lifetime, are checked
148 at the first occurrence of a
149 .Cm check-state ,
150 .Cm keep-state
151 or
152 .Cm limit
153 rule, and are typically used to open the firewall on-demand to
154 legitimate traffic only.
155 See the
156 .Sx STATEFUL FIREWALL
157 and
158 .Sx EXAMPLES
159 Sections below for more information on the stateful behaviour of
160 .Nm .
161 .Pp
162 All rules (including dynamic ones) have a few associated counters:
163 a packet count, a byte count, a log count and a timestamp
164 indicating the time of the last match.
165 Counters can be displayed or reset with
166 .Nm
167 commands.
168 .Pp
169 Each rule belongs to one of 32 different
170 .Em sets
171 , and there are
172 .Nm
173 commands to atomically manipulate sets, such as enable,
174 disable, swap sets, move all rules in a set to another
175 one, delete all rules in a set.
176 These can be useful to
177 install temporary configurations, or to test them.
178 See Section
179 .Sx SETS OF RULES
180 for more information on
181 .Em sets .
182 .Pp
183 Rules can be added with the
184 .Cm add
185 command; deleted individually or in groups with the
186 .Cm delete
187 command, and globally (except those in set 31) with the
188 .Cm flush
189 command; displayed, optionally with the content of the
190 counters, using the
191 .Cm show
192 and
193 .Cm list
194 commands.
195 Finally, counters can be reset with the
196 .Cm zero
197 and
198 .Cm resetlog
199 commands.
200 .Pp
201 .Ss COMMAND OPTIONS
202 The following general options are available when invoking
203 .Nm :
204 .Bl -tag -width indent
205 .It Fl a
206 Show counter values when listing rules.
207 The
208 .Cm show
209 command implies this option.
210 .It Fl b
211 Only show the action and the comment, not the body of a rule.
212 Implies
213 .Fl c .
214 .It Fl c
215 When entering or showing rules, print them in compact form,
216 i.e., omitting the "ip from any to any" string
217 when this does not carry any additional information.
218 .It Fl d
219 When listing, show dynamic rules in addition to static ones.
220 .It Fl e
221 When listing and
222 .Fl d
223 is specified, also show expired dynamic rules.
224 .It Fl f
225 Do not ask for confirmation for commands that can cause problems
226 if misused, i.e.,
227 .Cm flush .
228 If there is no tty associated with the process, this is implied.
229 .It Fl i
230 When listing a table (see the
231 .Sx LOOKUP TABLES
232 section below for more information on lookup tables), format values
233 as IP addresses.
234 By default, values are shown as integers.
235 .It Fl n
236 Only check syntax of the command strings, without actually passing
237 them to the kernel.
238 .It Fl N
239 Try to resolve addresses and service names in output.
240 .It Fl q
241 Be quiet when executing the
242 .Cm add ,
243 .Cm nat ,
244 .Cm zero ,
245 .Cm resetlog
246 or
247 .Cm flush
248 commands;
249 (implies
250 .Fl f ) .
251 This is useful when updating rulesets by executing multiple
252 .Nm
253 commands in a script
254 (e.g.,
255 .Ql sh\ /etc/rc.firewall ) ,
256 or by processing a file with many
257 .Nm
258 rules across a remote login session.
259 It also stops a table add or delete
260 from failing if the entry already exists or is not present.
261 .Pp
262 The reason why this option may be important is that
263 for some of these actions,
264 .Nm
265 may print a message; if the action results in blocking the
266 traffic to the remote client,
267 the remote login session will be closed
268 and the rest of the ruleset will not be processed.
269 Access to the console would then be required to recover.
270 .It Fl S
271 When listing rules, show the
272 .Em set
273 each rule belongs to.
274 If this flag is not specified, disabled rules will not be
275 listed.
276 .It Fl s Op Ar field
277 When listing pipes, sort according to one of the four
278 counters (total or current packets or bytes).
279 .It Fl t
280 When listing, show last match timestamp converted with ctime().
281 .It Fl T
282 When listing, show last match timestamp as seconds from the epoch.
283 This form can be more convenient for postprocessing by scripts.
284 .El
285 .Ss LIST OF RULES AND PREPROCESSING
286 To ease configuration, rules can be put into a file which is
287 processed using
288 .Nm
289 as shown in the last synopsis line.
290 An absolute
291 .Ar pathname
292 must be used.
293 The file will be read line by line and applied as arguments to the
294 .Nm
295 utility.
296 .Pp
297 Optionally, a preprocessor can be specified using
298 .Fl p Ar preproc
299 where
300 .Ar pathname
301 is to be piped through.
302 Useful preprocessors include
303 .Xr cpp 1
304 and
305 .Xr m4 1 .
306 If
307 .Ar preproc
308 does not start with a slash
309 .Pq Ql /
310 as its first character, the usual
311 .Ev PATH
312 name search is performed.
313 Care should be taken with this in environments where not all
314 file systems are mounted (yet) by the time
315 .Nm
316 is being run (e.g.\& when they are mounted over NFS).
317 Once
318 .Fl p
319 has been specified, any additional arguments are passed on to the preprocessor
320 for interpretation.
321 This allows for flexible configuration files (like conditionalizing
322 them on the local hostname) and the use of macros to centralize
323 frequently required arguments like IP addresses.
324 .Ss TRAFFIC SHAPER CONFIGURATION
325 The
326 .Nm
327 .Cm pipe , queue
328 and
329 .Cm sched
330 commands are used to configure the traffic shaper and packet scheduler.
331 See the
332 .Sx TRAFFIC SHAPER (DUMMYNET) CONFIGURATION
333 Section below for details.
334 .Pp
335 If the world and the kernel get out of sync the
336 .Nm
337 ABI may break, preventing you from being able to add any rules.
338 This can
339 adversely effect the booting process.
340 You can use
341 .Nm
342 .Cm disable
343 .Cm firewall
344 to temporarily disable the firewall to regain access to the network,
345 allowing you to fix the problem.
346 .Sh PACKET FLOW
347 A packet is checked against the active ruleset in multiple places
348 in the protocol stack, under control of several sysctl variables.
349 These places and variables are shown below, and it is important to
350 have this picture in mind in order to design a correct ruleset.
351 .Bd -literal -offset indent
352        ^    to upper layers    V
353        |                       |
354        +----------->-----------+
355        ^                       V
356  [ip(6)_input]           [ip(6)_output]     net.inet(6).ip(6).fw.enable=1
357        |                       |
358        ^                       V
359  [ether_demux]        [ether_output_frame]  net.link.ether.ipfw=1
360        |                       |
361        +-->--[bdg_forward]-->--+            net.link.bridge.ipfw=1
362        ^                       V
363        |      to devices       |
364 .Ed
365 .Pp
366 The number of
367 times the same packet goes through the firewall can
368 vary between 0 and 4 depending on packet source and
369 destination, and system configuration.
370 .Pp
371 Note that as packets flow through the stack, headers can be
372 stripped or added to it, and so they may or may not be available
373 for inspection.
374 E.g., incoming packets will include the MAC header when
375 .Nm
376 is invoked from
377 .Cm ether_demux() ,
378 but the same packets will have the MAC header stripped off when
379 .Nm
380 is invoked from
381 .Cm ip_input()
382 or
383 .Cm ip6_input() .
384 .Pp
385 Also note that each packet is always checked against the complete ruleset,
386 irrespective of the place where the check occurs, or the source of the packet.
387 If a rule contains some match patterns or actions which are not valid
388 for the place of invocation (e.g.\& trying to match a MAC header within
389 .Cm ip_input
390 or
391 .Cm ip6_input ),
392 the match pattern will not match, but a
393 .Cm not
394 operator in front of such patterns
395 .Em will
396 cause the pattern to
397 .Em always
398 match on those packets.
399 It is thus the responsibility of
400 the programmer, if necessary, to write a suitable ruleset to
401 differentiate among the possible places.
402 .Cm skipto
403 rules can be useful here, as an example:
404 .Bd -literal -offset indent
405 # packets from ether_demux or bdg_forward
406 ipfw add 10 skipto 1000 all from any to any layer2 in
407 # packets from ip_input
408 ipfw add 10 skipto 2000 all from any to any not layer2 in
409 # packets from ip_output
410 ipfw add 10 skipto 3000 all from any to any not layer2 out
411 # packets from ether_output_frame
412 ipfw add 10 skipto 4000 all from any to any layer2 out
413 .Ed
414 .Pp
415 (yes, at the moment there is no way to differentiate between
416 ether_demux and bdg_forward).
417 .Sh SYNTAX
418 In general, each keyword or argument must be provided as
419 a separate command line argument, with no leading or trailing
420 spaces.
421 Keywords are case-sensitive, whereas arguments may
422 or may not be case-sensitive depending on their nature
423 (e.g.\& uid's are, hostnames are not).
424 .Pp
425 Some arguments (e.g., port or address lists) are comma-separated
426 lists of values.
427 In this case, spaces after commas ',' are allowed to make
428 the line more readable.
429 You can also put the entire
430 command (including flags) into a single argument.
431 E.g., the following forms are equivalent:
432 .Bd -literal -offset indent
433 ipfw -q add deny src-ip 10.0.0.0/24,127.0.0.1/8
434 ipfw -q add deny src-ip 10.0.0.0/24, 127.0.0.1/8
435 ipfw "-q add deny src-ip 10.0.0.0/24, 127.0.0.1/8"
436 .Ed
437 .Sh RULE FORMAT
438 The format of firewall rules is the following:
439 .Bd -ragged -offset indent
440 .Bk -words
441 .Op Ar rule_number
442 .Op Cm set Ar set_number
443 .Op Cm prob Ar match_probability
444 .Ar action
445 .Op Cm log Op Cm logamount Ar number
446 .Op Cm altq Ar queue
447 .Oo
448 .Bro Cm tag | untag
449 .Brc Ar number
450 .Oc
451 .Ar body
452 .Ek
453 .Ed
454 .Pp
455 where the body of the rule specifies which information is used
456 for filtering packets, among the following:
457 .Pp
458 .Bl -tag -width "Source and dest. addresses and ports" -offset XXX -compact
459 .It Layer-2 header fields
460 When available
461 .It IPv4 and IPv6 Protocol
462 TCP, UDP, ICMP, etc.
463 .It Source and dest. addresses and ports
464 .It Direction
465 See Section
466 .Sx PACKET FLOW
467 .It Transmit and receive interface
468 By name or address
469 .It Misc. IP header fields
470 Version, type of service, datagram length, identification,
471 fragment flag (non-zero IP offset),
472 Time To Live
473 .It IP options
474 .It IPv6 Extension headers
475 Fragmentation, Hop-by-Hop options,
476 Routing Headers, Source routing rthdr0, Mobile IPv6 rthdr2, IPSec options.
477 .It IPv6 Flow-ID
478 .It Misc. TCP header fields
479 TCP flags (SYN, FIN, ACK, RST, etc.),
480 sequence number, acknowledgment number,
481 window
482 .It TCP options
483 .It ICMP types
484 for ICMP packets
485 .It ICMP6 types
486 for ICMP6 packets
487 .It User/group ID
488 When the packet can be associated with a local socket.
489 .It Divert status
490 Whether a packet came from a divert socket (e.g.,
491 .Xr natd 8 ) .
492 .It Fib annotation state
493 Whether a packet has been tagged for using a specific FIB (routing table)
494 in future forwarding decisions.
495 .El
496 .Pp
497 Note that some of the above information, e.g.\& source MAC or IP addresses and
498 TCP/UDP ports, can be easily spoofed, so filtering on those fields
499 alone might not guarantee the desired results.
500 .Bl -tag -width indent
501 .It Ar rule_number
502 Each rule is associated with a
503 .Ar rule_number
504 in the range 1..65535, with the latter reserved for the
505 .Em default
506 rule.
507 Rules are checked sequentially by rule number.
508 Multiple rules can have the same number, in which case they are
509 checked (and listed) according to the order in which they have
510 been added.
511 If a rule is entered without specifying a number, the kernel will
512 assign one in such a way that the rule becomes the last one
513 before the
514 .Em default
515 rule.
516 Automatic rule numbers are assigned by incrementing the last
517 non-default rule number by the value of the sysctl variable
518 .Ar net.inet.ip.fw.autoinc_step
519 which defaults to 100.
520 If this is not possible (e.g.\& because we would go beyond the
521 maximum allowed rule number), the number of the last
522 non-default value is used instead.
523 .It Cm set Ar set_number
524 Each rule is associated with a
525 .Ar set_number
526 in the range 0..31.
527 Sets can be individually disabled and enabled, so this parameter
528 is of fundamental importance for atomic ruleset manipulation.
529 It can be also used to simplify deletion of groups of rules.
530 If a rule is entered without specifying a set number,
531 set 0 will be used.
532 .br
533 Set 31 is special in that it cannot be disabled,
534 and rules in set 31 are not deleted by the
535 .Nm ipfw flush
536 command (but you can delete them with the
537 .Nm ipfw delete set 31
538 command).
539 Set 31 is also used for the
540 .Em default
541 rule.
542 .It Cm prob Ar match_probability
543 A match is only declared with the specified probability
544 (floating point number between 0 and 1).
545 This can be useful for a number of applications such as
546 random packet drop or
547 (in conjunction with
548 .Nm dummynet )
549 to simulate the effect of multiple paths leading to out-of-order
550 packet delivery.
551 .Pp
552 Note: this condition is checked before any other condition, including
553 ones such as keep-state or check-state which might have side effects.
554 .It Cm log Op Cm logamount Ar number
555 Packets matching a rule with the
556 .Cm log
557 keyword will be made available for logging in two ways:
558 if the sysctl variable
559 .Va net.inet.ip.fw.verbose
560 is set to 0 (default), one can use
561 .Xr bpf 4
562 attached to the
563 .Li ipfw0
564 pseudo interface.
565 This pseudo interface can be created after a boot
566 manually by using the following command:
567 .Bd -literal -offset indent
568 # ifconfig ipfw0 create
569 .Ed
570 .Pp
571 Or, automatically at boot time by adding the following
572 line to the
573 .Xr rc.conf 5
574 file:
575 .Bd -literal -offset indent
576 firewall_logif="YES"
577 .Ed
578 .Pp
579 There is no overhead if no
580 .Xr bpf 4
581 is attached to the pseudo interface.
582 .Pp
583 If
584 .Va net.inet.ip.fw.verbose
585 is set to 1, packets will be logged to
586 .Xr syslogd 8
587 with a
588 .Dv LOG_SECURITY
589 facility up to a maximum of
590 .Cm logamount
591 packets.
592 If no
593 .Cm logamount
594 is specified, the limit is taken from the sysctl variable
595 .Va net.inet.ip.fw.verbose_limit .
596 In both cases, a value of 0 means unlimited logging.
597 .Pp
598 Once the limit is reached, logging can be re-enabled by
599 clearing the logging counter or the packet counter for that entry, see the
600 .Cm resetlog
601 command.
602 .Pp
603 Note: logging is done after all other packet matching conditions
604 have been successfully verified, and before performing the final
605 action (accept, deny, etc.) on the packet.
606 .It Cm tag Ar number
607 When a packet matches a rule with the
608 .Cm tag
609 keyword, the numeric tag for the given
610 .Ar number
611 in the range 1..65534 will be attached to the packet.
612 The tag acts as an internal marker (it is not sent out over
613 the wire) that can be used to identify these packets later on.
614 This can be used, for example, to provide trust between interfaces
615 and to start doing policy-based filtering.
616 A packet can have multiple tags at the same time.
617 Tags are "sticky", meaning once a tag is applied to a packet by a
618 matching rule it exists until explicit removal.
619 Tags are kept with the packet everywhere within the kernel, but are
620 lost when packet leaves the kernel, for example, on transmitting
621 packet out to the network or sending packet to a
622 .Xr divert 4
623 socket.
624 .Pp
625 To check for previously applied tags, use the
626 .Cm tagged
627 rule option.
628 To delete previously applied tag, use the
629 .Cm untag
630 keyword.
631 .Pp
632 Note: since tags are kept with the packet everywhere in kernelspace,
633 they can be set and unset anywhere in the kernel network subsystem
634 (using the
635 .Xr mbuf_tags 9
636 facility), not only by means of the
637 .Xr ipfw 4
638 .Cm tag
639 and
640 .Cm untag
641 keywords.
642 For example, there can be a specialized
643 .Xr netgraph 4
644 node doing traffic analyzing and tagging for later inspecting
645 in firewall.
646 .It Cm untag Ar number
647 When a packet matches a rule with the
648 .Cm untag
649 keyword, the tag with the number
650 .Ar number
651 is searched among the tags attached to this packet and,
652 if found, removed from it.
653 Other tags bound to packet, if present, are left untouched.
654 .It Cm altq Ar queue
655 When a packet matches a rule with the
656 .Cm altq
657 keyword, the ALTQ identifier for the given
658 .Ar queue
659 (see
660 .Xr altq 4 )
661 will be attached.
662 Note that this ALTQ tag is only meaningful for packets going "out" of IPFW,
663 and not being rejected or going to divert sockets.
664 Note that if there is insufficient memory at the time the packet is
665 processed, it will not be tagged, so it is wise to make your ALTQ
666 "default" queue policy account for this.
667 If multiple
668 .Cm altq
669 rules match a single packet, only the first one adds the ALTQ classification
670 tag.
671 In doing so, traffic may be shaped by using
672 .Cm count Cm altq Ar queue
673 rules for classification early in the ruleset, then later applying
674 the filtering decision.
675 For example,
676 .Cm check-state
677 and
678 .Cm keep-state
679 rules may come later and provide the actual filtering decisions in
680 addition to the fallback ALTQ tag.
681 .Pp
682 You must run
683 .Xr pfctl 8
684 to set up the queues before IPFW will be able to look them up by name,
685 and if the ALTQ disciplines are rearranged, the rules in containing the
686 queue identifiers in the kernel will likely have gone stale and need
687 to be reloaded.
688 Stale queue identifiers will probably result in misclassification.
689 .Pp
690 All system ALTQ processing can be turned on or off via
691 .Nm
692 .Cm enable Ar altq
693 and
694 .Nm
695 .Cm disable Ar altq .
696 The usage of
697 .Va net.inet.ip.fw.one_pass
698 is irrelevant to ALTQ traffic shaping, as the actual rule action is followed
699 always after adding an ALTQ tag.
700 .El
701 .Ss RULE ACTIONS
702 A rule can be associated with one of the following actions, which
703 will be executed when the packet matches the body of the rule.
704 .Bl -tag -width indent
705 .It Cm allow | accept | pass | permit
706 Allow packets that match rule.
707 The search terminates.
708 .It Cm check-state
709 Checks the packet against the dynamic ruleset.
710 If a match is found, execute the action associated with
711 the rule which generated this dynamic rule, otherwise
712 move to the next rule.
713 .br
714 .Cm Check-state
715 rules do not have a body.
716 If no
717 .Cm check-state
718 rule is found, the dynamic ruleset is checked at the first
719 .Cm keep-state
720 or
721 .Cm limit
722 rule.
723 .It Cm count
724 Update counters for all packets that match rule.
725 The search continues with the next rule.
726 .It Cm deny | drop
727 Discard packets that match this rule.
728 The search terminates.
729 .It Cm divert Ar port
730 Divert packets that match this rule to the
731 .Xr divert 4
732 socket bound to port
733 .Ar port .
734 The search terminates.
735 .It Cm fwd | forward Ar ipaddr | tablearg Ns Op , Ns Ar port
736 Change the next-hop on matching packets to
737 .Ar ipaddr ,
738 which can be an IP address or a host name.
739 For IPv4, the next hop can also be supplied by the last table
740 looked up for the packet by using the
741 .Cm tablearg
742 keyword instead of an explicit address.
743 The search terminates if this rule matches.
744 .Pp
745 If
746 .Ar ipaddr
747 is a local address, then matching packets will be forwarded to
748 .Ar port
749 (or the port number in the packet if one is not specified in the rule)
750 on the local machine.
751 .br
752 If
753 .Ar ipaddr
754 is not a local address, then the port number
755 (if specified) is ignored, and the packet will be
756 forwarded to the remote address, using the route as found in
757 the local routing table for that IP.
758 .br
759 A
760 .Ar fwd
761 rule will not match layer-2 packets (those received
762 on ether_input, ether_output, or bridged).
763 .br
764 The
765 .Cm fwd
766 action does not change the contents of the packet at all.
767 In particular, the destination address remains unmodified, so
768 packets forwarded to another system will usually be rejected by that system
769 unless there is a matching rule on that system to capture them.
770 For packets forwarded locally,
771 the local address of the socket will be
772 set to the original destination address of the packet.
773 This makes the
774 .Xr netstat 1
775 entry look rather weird but is intended for
776 use with transparent proxy servers.
777 .It Cm nat Ar nat_nr | tablearg
778 Pass packet to a
779 nat instance
780 (for network address translation, address redirect, etc.):
781 see the
782 .Sx NETWORK ADDRESS TRANSLATION (NAT)
783 Section for further information.
784 .It Cm pipe Ar pipe_nr
785 Pass packet to a
786 .Nm dummynet
787 .Dq pipe
788 (for bandwidth limitation, delay, etc.).
789 See the
790 .Sx TRAFFIC SHAPER (DUMMYNET) CONFIGURATION
791 Section for further information.
792 The search terminates; however, on exit from the pipe and if
793 the
794 .Xr sysctl 8
795 variable
796 .Va net.inet.ip.fw.one_pass
797 is not set, the packet is passed again to the firewall code
798 starting from the next rule.
799 .It Cm queue Ar queue_nr
800 Pass packet to a
801 .Nm dummynet
802 .Dq queue
803 (for bandwidth limitation using WF2Q+).
804 .It Cm reject
805 (Deprecated).
806 Synonym for
807 .Cm unreach host .
808 .It Cm reset
809 Discard packets that match this rule, and if the
810 packet is a TCP packet, try to send a TCP reset (RST) notice.
811 The search terminates.
812 .It Cm reset6
813 Discard packets that match this rule, and if the
814 packet is a TCP packet, try to send a TCP reset (RST) notice.
815 The search terminates.
816 .It Cm skipto Ar number | tablearg
817 Skip all subsequent rules numbered less than
818 .Ar number .
819 The search continues with the first rule numbered
820 .Ar number
821 or higher.
822 It is possible to use the
823 .Cm tablearg
824 keyword with a skipto for a
825 .Em computed
826 skipto, but care should be used, as no destination caching
827 is possible in this case so the rules are always walked to find it,
828 starting from the
829 .Cm skipto .
830 .It Cm call Ar number | tablearg
831 The current rule number is saved in the internal stack and
832 ruleset processing continues with the first rule numbered
833 .Ar number
834 or higher.
835 If later a rule with the
836 .Cm return
837 action is encountered, the processing returns to the first rule
838 with number of this
839 .Cm call
840 rule plus one or higher
841 (the same behaviour as with packets returning from
842 .Xr divert 4
843 socket after a
844 .Cm divert
845 action).
846 This could be used to make somewhat like an assembly language
847 .Dq subroutine
848 calls to rules with common checks for different interfaces, etc.
849 .Pp
850 Rule with any number could be called, not just forward jumps as with
851 .Cm skipto .
852 So, to prevent endless loops in case of mistakes, both
853 .Cm call
854 and
855 .Cm return
856 actions don't do any jumps and simply go to the next rule if memory
857 cannot be allocated or stack overflowed/underflowed.
858 .Pp
859 Internally stack for rule numbers is implemented using
860 .Xr mbuf_tags 9
861 facility and currently has size of 16 entries.
862 As mbuf tags are lost when packet leaves the kernel,
863 .Cm divert
864 should not be used in subroutines to avoid endless loops
865 and other undesired effects.
866 .It Cm return
867 Takes rule number saved to internal stack by the last
868 .Cm call
869 action and returns ruleset processing to the first rule
870 with number greater than number of corresponding
871 .Cm call
872 rule.
873 See description of the
874 .Cm call
875 action for more details.
876 .Pp
877 Note that
878 .Cm return
879 rules usually end a
880 .Dq subroutine
881 and thus are unconditional, but
882 .Nm
883 command-line utility currently requires every action except
884 .Cm check-state
885 to have body.
886 While it is sometimes useful to return only on some packets,
887 usually you want to print just
888 .Dq return
889 for readability.
890 A workaround for this is to use new syntax and
891 .Fl c
892 switch:
893 .Bd -literal -offset indent
894 # Add a rule without actual body
895 ipfw add 2999 return via any
896
897 # List rules without "from any to any" part
898 ipfw -c list
899 .Ed
900 .Pp
901 This cosmetic annoyance may be fixed in future releases.
902 .It Cm tee Ar port
903 Send a copy of packets matching this rule to the
904 .Xr divert 4
905 socket bound to port
906 .Ar port .
907 The search continues with the next rule.
908 .It Cm unreach Ar code
909 Discard packets that match this rule, and try to send an ICMP
910 unreachable notice with code
911 .Ar code ,
912 where
913 .Ar code
914 is a number from 0 to 255, or one of these aliases:
915 .Cm net , host , protocol , port ,
916 .Cm needfrag , srcfail , net-unknown , host-unknown ,
917 .Cm isolated , net-prohib , host-prohib , tosnet ,
918 .Cm toshost , filter-prohib , host-precedence
919 or
920 .Cm precedence-cutoff .
921 The search terminates.
922 .It Cm unreach6 Ar code
923 Discard packets that match this rule, and try to send an ICMPv6
924 unreachable notice with code
925 .Ar code ,
926 where
927 .Ar code
928 is a number from 0, 1, 3 or 4, or one of these aliases:
929 .Cm no-route, admin-prohib, address
930 or
931 .Cm port .
932 The search terminates.
933 .It Cm netgraph Ar cookie
934 Divert packet into netgraph with given
935 .Ar cookie .
936 The search terminates.
937 If packet is later returned from netgraph it is either
938 accepted or continues with the next rule, depending on
939 .Va net.inet.ip.fw.one_pass
940 sysctl variable.
941 .It Cm ngtee Ar cookie
942 A copy of packet is diverted into netgraph, original
943 packet continues with the next rule.
944 See
945 .Xr ng_ipfw 4
946 for more information on
947 .Cm netgraph
948 and
949 .Cm ngtee
950 actions.
951 .It Cm setfib Ar fibnum | tablearg
952 The packet is tagged so as to use the FIB (routing table)
953 .Ar fibnum
954 in any subsequent forwarding decisions.
955 In the current implementation, this is limited to the values 0 through 15, see
956 .Xr setfib 2 .
957 Processing continues at the next rule.
958 It is possible to use the
959 .Cm tablearg
960 keyword with setfib.
961 If the tablearg value is not within the compiled range of fibs,
962 the packet's fib is set to 0.
963 .It Cm setdscp Ar DSCP | number | tablearg
964 Set specified DiffServ codepoint for an IPv4/IPv6 packet.
965 Processing continues at the next rule.
966 Supported values are:
967 .Pp
968 .Cm CS0
969 .Pq Dv 000000 ,
970 .Cm CS1
971 .Pq Dv 001000 ,
972 .Cm CS2
973 .Pq Dv 010000 ,
974 .Cm CS3
975 .Pq Dv 011000 ,
976 .Cm CS4
977 .Pq Dv 100000 ,
978 .Cm CS5
979 .Pq Dv 101000 ,
980 .Cm CS6
981 .Pq Dv 110000 ,
982 .Cm CS7
983 .Pq Dv 111000 ,
984 .Cm AF11
985 .Pq Dv 001010 ,
986 .Cm AF12
987 .Pq Dv 001100 ,
988 .Cm AF13
989 .Pq Dv 001110 ,
990 .Cm AF21
991 .Pq Dv 010010 ,
992 .Cm AF22
993 .Pq Dv 010100 ,
994 .Cm AF23
995 .Pq Dv 010110 ,
996 .Cm AF31
997 .Pq Dv 011010 ,
998 .Cm AF32
999 .Pq Dv 011100 ,
1000 .Cm AF33
1001 .Pq Dv 011110 ,
1002 .Cm AF41
1003 .Pq Dv 100010 ,
1004 .Cm AF42
1005 .Pq Dv 100100 ,
1006 .Cm AF43
1007 .Pq Dv 100110 ,
1008 .Cm EF
1009 .Pq Dv 101110 ,
1010 .Cm BE
1011 .Pq Dv 000000 .
1012 Additionally, DSCP value can be specified by number (0..64).
1013 It is also possible to use the
1014 .Cm tablearg
1015 keyword with setdscp.
1016 If the tablearg value is not within the 0..64 range, lower 6 bits of supplied
1017 value are used.
1018 .It Cm reass
1019 Queue and reassemble IP fragments.
1020 If the packet is not fragmented, counters are updated and
1021 processing continues with the next rule.
1022 If the packet is the last logical fragment, the packet is reassembled and, if
1023 .Va net.inet.ip.fw.one_pass
1024 is set to 0, processing continues with the next rule.
1025 Otherwise, the packet is allowed to pass and the search terminates.
1026 If the packet is a fragment in the middle of a logical group of fragments,
1027 it is consumed and
1028 processing stops immediately.
1029 .Pp
1030 Fragment handling can be tuned via
1031 .Va net.inet.ip.maxfragpackets
1032 and
1033 .Va net.inet.ip.maxfragsperpacket
1034 which limit, respectively, the maximum number of processable
1035 fragments (default: 800) and
1036 the maximum number of fragments per packet (default: 16).
1037 .Pp
1038 NOTA BENE: since fragments do not contain port numbers,
1039 they should be avoided with the
1040 .Nm reass
1041 rule.
1042 Alternatively, direction-based (like
1043 .Nm in
1044 /
1045 .Nm out
1046 ) and source-based (like
1047 .Nm via
1048 ) match patterns can be used to select fragments.
1049 .Pp
1050 Usually a simple rule like:
1051 .Bd -literal -offset indent
1052 # reassemble incoming fragments
1053 ipfw add reass all from any to any in
1054 .Ed
1055 .Pp
1056 is all you need at the beginning of your ruleset.
1057 .El
1058 .Ss RULE BODY
1059 The body of a rule contains zero or more patterns (such as
1060 specific source and destination addresses or ports,
1061 protocol options, incoming or outgoing interfaces, etc.)
1062 that the packet must match in order to be recognised.
1063 In general, the patterns are connected by (implicit)
1064 .Cm and
1065 operators -- i.e., all must match in order for the
1066 rule to match.
1067 Individual patterns can be prefixed by the
1068 .Cm not
1069 operator to reverse the result of the match, as in
1070 .Pp
1071 .Dl "ipfw add 100 allow ip from not 1.2.3.4 to any"
1072 .Pp
1073 Additionally, sets of alternative match patterns
1074 .Pq Em or-blocks
1075 can be constructed by putting the patterns in
1076 lists enclosed between parentheses ( ) or braces { }, and
1077 using the
1078 .Cm or
1079 operator as follows:
1080 .Pp
1081 .Dl "ipfw add 100 allow ip from { x or not y or z } to any"
1082 .Pp
1083 Only one level of parentheses is allowed.
1084 Beware that most shells have special meanings for parentheses
1085 or braces, so it is advisable to put a backslash \\ in front of them
1086 to prevent such interpretations.
1087 .Pp
1088 The body of a rule must in general include a source and destination
1089 address specifier.
1090 The keyword
1091 .Ar any
1092 can be used in various places to specify that the content of
1093 a required field is irrelevant.
1094 .Pp
1095 The rule body has the following format:
1096 .Bd -ragged -offset indent
1097 .Op Ar proto Cm from Ar src Cm to Ar dst
1098 .Op Ar options
1099 .Ed
1100 .Pp
1101 The first part (proto from src to dst) is for backward
1102 compatibility with earlier versions of
1103 .Fx .
1104 In modern
1105 .Fx
1106 any match pattern (including MAC headers, IP protocols,
1107 addresses and ports) can be specified in the
1108 .Ar options
1109 section.
1110 .Pp
1111 Rule fields have the following meaning:
1112 .Bl -tag -width indent
1113 .It Ar proto : protocol | Cm { Ar protocol Cm or ... }
1114 .It Ar protocol : Oo Cm not Oc Ar protocol-name | protocol-number
1115 An IP protocol specified by number or name
1116 (for a complete list see
1117 .Pa /etc/protocols ) ,
1118 or one of the following keywords:
1119 .Bl -tag -width indent
1120 .It Cm ip4 | ipv4
1121 Matches IPv4 packets.
1122 .It Cm ip6 | ipv6
1123 Matches IPv6 packets.
1124 .It Cm ip | all
1125 Matches any packet.
1126 .El
1127 .Pp
1128 The
1129 .Cm ipv6
1130 in
1131 .Cm proto
1132 option will be treated as inner protocol.
1133 And, the
1134 .Cm ipv4
1135 is not available in
1136 .Cm proto
1137 option.
1138 .Pp
1139 The
1140 .Cm { Ar protocol Cm or ... }
1141 format (an
1142 .Em or-block )
1143 is provided for convenience only but its use is deprecated.
1144 .It Ar src No and Ar dst : Bro Cm addr | Cm { Ar addr Cm or ... } Brc Op Oo Cm not Oc Ar ports
1145 An address (or a list, see below)
1146 optionally followed by
1147 .Ar ports
1148 specifiers.
1149 .Pp
1150 The second format
1151 .Em ( or-block
1152 with multiple addresses) is provided for convenience only and
1153 its use is discouraged.
1154 .It Ar addr : Oo Cm not Oc Bro
1155 .Cm any | me | me6 |
1156 .Cm table Ns Pq Ar number Ns Op , Ns Ar value
1157 .Ar | addr-list | addr-set
1158 .Brc
1159 .Bl -tag -width indent
1160 .It Cm any
1161 matches any IP address.
1162 .It Cm me
1163 matches any IP address configured on an interface in the system.
1164 .It Cm me6
1165 matches any IPv6 address configured on an interface in the system.
1166 The address list is evaluated at the time the packet is
1167 analysed.
1168 .It Cm table Ns Pq Ar number Ns Op , Ns Ar value
1169 Matches any IPv4 address for which an entry exists in the lookup table
1170 .Ar number .
1171 If an optional 32-bit unsigned
1172 .Ar value
1173 is also specified, an entry will match only if it has this value.
1174 See the
1175 .Sx LOOKUP TABLES
1176 section below for more information on lookup tables.
1177 .El
1178 .It Ar addr-list : ip-addr Ns Op Ns , Ns Ar addr-list
1179 .It Ar ip-addr :
1180 A host or subnet address specified in one of the following ways:
1181 .Bl -tag -width indent
1182 .It Ar numeric-ip | hostname
1183 Matches a single IPv4 address, specified as dotted-quad or a hostname.
1184 Hostnames are resolved at the time the rule is added to the firewall list.
1185 .It Ar addr Ns / Ns Ar masklen
1186 Matches all addresses with base
1187 .Ar addr
1188 (specified as an IP address, a network number, or a hostname)
1189 and mask width of
1190 .Cm masklen
1191 bits.
1192 As an example, 1.2.3.4/25 or 1.2.3.0/25 will match
1193 all IP numbers from 1.2.3.0 to 1.2.3.127 .
1194 .It Ar addr Ns : Ns Ar mask
1195 Matches all addresses with base
1196 .Ar addr
1197 (specified as an IP address, a network number, or a hostname)
1198 and the mask of
1199 .Ar mask ,
1200 specified as a dotted quad.
1201 As an example, 1.2.3.4:255.0.255.0 or 1.0.3.0:255.0.255.0 will match
1202 1.*.3.*.
1203 This form is advised only for non-contiguous
1204 masks.
1205 It is better to resort to the
1206 .Ar addr Ns / Ns Ar masklen
1207 format for contiguous masks, which is more compact and less
1208 error-prone.
1209 .El
1210 .It Ar addr-set : addr Ns Oo Ns / Ns Ar masklen Oc Ns Cm { Ns Ar list Ns Cm }
1211 .It Ar list : Bro Ar num | num-num Brc Ns Op Ns , Ns Ar list
1212 Matches all addresses with base address
1213 .Ar addr
1214 (specified as an IP address, a network number, or a hostname)
1215 and whose last byte is in the list between braces { } .
1216 Note that there must be no spaces between braces and
1217 numbers (spaces after commas are allowed).
1218 Elements of the list can be specified as single entries
1219 or ranges.
1220 The
1221 .Ar masklen
1222 field is used to limit the size of the set of addresses,
1223 and can have any value between 24 and 32.
1224 If not specified,
1225 it will be assumed as 24.
1226 .br
1227 This format is particularly useful to handle sparse address sets
1228 within a single rule.
1229 Because the matching occurs using a
1230 bitmask, it takes constant time and dramatically reduces
1231 the complexity of rulesets.
1232 .br
1233 As an example, an address specified as 1.2.3.4/24{128,35-55,89}
1234 or 1.2.3.0/24{128,35-55,89}
1235 will match the following IP addresses:
1236 .br
1237 1.2.3.128, 1.2.3.35 to 1.2.3.55, 1.2.3.89 .
1238 .It Ar addr6-list : ip6-addr Ns Op Ns , Ns Ar addr6-list
1239 .It Ar ip6-addr :
1240 A host or subnet specified one of the following ways:
1241 .Bl -tag -width indent
1242 .It Ar numeric-ip | hostname
1243 Matches a single IPv6 address as allowed by
1244 .Xr inet_pton 3
1245 or a hostname.
1246 Hostnames are resolved at the time the rule is added to the firewall
1247 list.
1248 .It Ar addr Ns / Ns Ar masklen
1249 Matches all IPv6 addresses with base
1250 .Ar addr
1251 (specified as allowed by
1252 .Xr inet_pton
1253 or a hostname)
1254 and mask width of
1255 .Cm masklen
1256 bits.
1257 .El
1258 .Pp
1259 No support for sets of IPv6 addresses is provided because IPv6 addresses
1260 are typically random past the initial prefix.
1261 .It Ar ports : Bro Ar port | port Ns \&- Ns Ar port Ns Brc Ns Op , Ns Ar ports
1262 For protocols which support port numbers (such as TCP and UDP), optional
1263 .Cm ports
1264 may be specified as one or more ports or port ranges, separated
1265 by commas but no spaces, and an optional
1266 .Cm not
1267 operator.
1268 The
1269 .Ql \&-
1270 notation specifies a range of ports (including boundaries).
1271 .Pp
1272 Service names (from
1273 .Pa /etc/services )
1274 may be used instead of numeric port values.
1275 The length of the port list is limited to 30 ports or ranges,
1276 though one can specify larger ranges by using an
1277 .Em or-block
1278 in the
1279 .Cm options
1280 section of the rule.
1281 .Pp
1282 A backslash
1283 .Pq Ql \e
1284 can be used to escape the dash
1285 .Pq Ql -
1286 character in a service name (from a shell, the backslash must be
1287 typed twice to avoid the shell itself interpreting it as an escape
1288 character).
1289 .Pp
1290 .Dl "ipfw add count tcp from any ftp\e\e-data-ftp to any"
1291 .Pp
1292 Fragmented packets which have a non-zero offset (i.e., not the first
1293 fragment) will never match a rule which has one or more port
1294 specifications.
1295 See the
1296 .Cm frag
1297 option for details on matching fragmented packets.
1298 .El
1299 .Ss RULE OPTIONS (MATCH PATTERNS)
1300 Additional match patterns can be used within
1301 rules.
1302 Zero or more of these so-called
1303 .Em options
1304 can be present in a rule, optionally prefixed by the
1305 .Cm not
1306 operand, and possibly grouped into
1307 .Em or-blocks .
1308 .Pp
1309 The following match patterns can be used (listed in alphabetical order):
1310 .Bl -tag -width indent
1311 .It Cm // this is a comment.
1312 Inserts the specified text as a comment in the rule.
1313 Everything following // is considered as a comment and stored in the rule.
1314 You can have comment-only rules, which are listed as having a
1315 .Cm count
1316 action followed by the comment.
1317 .It Cm bridged
1318 Alias for
1319 .Cm layer2 .
1320 .It Cm diverted
1321 Matches only packets generated by a divert socket.
1322 .It Cm diverted-loopback
1323 Matches only packets coming from a divert socket back into the IP stack
1324 input for delivery.
1325 .It Cm diverted-output
1326 Matches only packets going from a divert socket back outward to the IP
1327 stack output for delivery.
1328 .It Cm dst-ip Ar ip-address
1329 Matches IPv4 packets whose destination IP is one of the address(es)
1330 specified as argument.
1331 .It Bro Cm dst-ip6 | dst-ipv6 Brc Ar ip6-address
1332 Matches IPv6 packets whose destination IP is one of the address(es)
1333 specified as argument.
1334 .It Cm dst-port Ar ports
1335 Matches IP packets whose destination port is one of the port(s)
1336 specified as argument.
1337 .It Cm established
1338 Matches TCP packets that have the RST or ACK bits set.
1339 .It Cm ext6hdr Ar header
1340 Matches IPv6 packets containing the extended header given by
1341 .Ar header .
1342 Supported headers are:
1343 .Pp
1344 Fragment,
1345 .Pq Cm frag ,
1346 Hop-to-hop options
1347 .Pq Cm hopopt ,
1348 any type of Routing Header
1349 .Pq Cm route ,
1350 Source routing Routing Header Type 0
1351 .Pq Cm rthdr0 ,
1352 Mobile IPv6 Routing Header Type 2
1353 .Pq Cm rthdr2 ,
1354 Destination options
1355 .Pq Cm dstopt ,
1356 IPSec authentication headers
1357 .Pq Cm ah ,
1358 and IPsec encapsulated security payload headers
1359 .Pq Cm esp .
1360 .It Cm fib Ar fibnum
1361 Matches a packet that has been tagged to use
1362 the given FIB (routing table) number.
1363 .It Cm flow-id Ar labels
1364 Matches IPv6 packets containing any of the flow labels given in
1365 .Ar labels .
1366 .Ar labels
1367 is a comma separated list of numeric flow labels.
1368 .It Cm frag
1369 Matches packets that are fragments and not the first
1370 fragment of an IP datagram.
1371 Note that these packets will not have
1372 the next protocol header (e.g.\& TCP, UDP) so options that look into
1373 these headers cannot match.
1374 .It Cm gid Ar group
1375 Matches all TCP or UDP packets sent by or received for a
1376 .Ar group .
1377 A
1378 .Ar group
1379 may be specified by name or number.
1380 .It Cm jail Ar prisonID
1381 Matches all TCP or UDP packets sent by or received for the
1382 jail whos prison ID is
1383 .Ar prisonID .
1384 .It Cm icmptypes Ar types
1385 Matches ICMP packets whose ICMP type is in the list
1386 .Ar types .
1387 The list may be specified as any combination of
1388 individual types (numeric) separated by commas.
1389 .Em Ranges are not allowed .
1390 The supported ICMP types are:
1391 .Pp
1392 echo reply
1393 .Pq Cm 0 ,
1394 destination unreachable
1395 .Pq Cm 3 ,
1396 source quench
1397 .Pq Cm 4 ,
1398 redirect
1399 .Pq Cm 5 ,
1400 echo request
1401 .Pq Cm 8 ,
1402 router advertisement
1403 .Pq Cm 9 ,
1404 router solicitation
1405 .Pq Cm 10 ,
1406 time-to-live exceeded
1407 .Pq Cm 11 ,
1408 IP header bad
1409 .Pq Cm 12 ,
1410 timestamp request
1411 .Pq Cm 13 ,
1412 timestamp reply
1413 .Pq Cm 14 ,
1414 information request
1415 .Pq Cm 15 ,
1416 information reply
1417 .Pq Cm 16 ,
1418 address mask request
1419 .Pq Cm 17
1420 and address mask reply
1421 .Pq Cm 18 .
1422 .It Cm icmp6types Ar types
1423 Matches ICMP6 packets whose ICMP6 type is in the list of
1424 .Ar types .
1425 The list may be specified as any combination of
1426 individual types (numeric) separated by commas.
1427 .Em Ranges are not allowed .
1428 .It Cm in | out
1429 Matches incoming or outgoing packets, respectively.
1430 .Cm in
1431 and
1432 .Cm out
1433 are mutually exclusive (in fact,
1434 .Cm out
1435 is implemented as
1436 .Cm not in Ns No ).
1437 .It Cm ipid Ar id-list
1438 Matches IPv4 packets whose
1439 .Cm ip_id
1440 field has value included in
1441 .Ar id-list ,
1442 which is either a single value or a list of values or ranges
1443 specified in the same way as
1444 .Ar ports .
1445 .It Cm iplen Ar len-list
1446 Matches IP packets whose total length, including header and data, is
1447 in the set
1448 .Ar len-list ,
1449 which is either a single value or a list of values or ranges
1450 specified in the same way as
1451 .Ar ports .
1452 .It Cm ipoptions Ar spec
1453 Matches packets whose IPv4 header contains the comma separated list of
1454 options specified in
1455 .Ar spec .
1456 The supported IP options are:
1457 .Pp
1458 .Cm ssrr
1459 (strict source route),
1460 .Cm lsrr
1461 (loose source route),
1462 .Cm rr
1463 (record packet route) and
1464 .Cm ts
1465 (timestamp).
1466 The absence of a particular option may be denoted
1467 with a
1468 .Ql \&! .
1469 .It Cm ipprecedence Ar precedence
1470 Matches IPv4 packets whose precedence field is equal to
1471 .Ar precedence .
1472 .It Cm ipsec
1473 Matches packets that have IPSEC history associated with them
1474 (i.e., the packet comes encapsulated in IPSEC, the kernel
1475 has IPSEC support and IPSEC_FILTERTUNNEL option, and can correctly
1476 decapsulate it).
1477 .Pp
1478 Note that specifying
1479 .Cm ipsec
1480 is different from specifying
1481 .Cm proto Ar ipsec
1482 as the latter will only look at the specific IP protocol field,
1483 irrespective of IPSEC kernel support and the validity of the IPSEC data.
1484 .Pp
1485 Further note that this flag is silently ignored in kernels without
1486 IPSEC support.
1487 It does not affect rule processing when given and the
1488 rules are handled as if with no
1489 .Cm ipsec
1490 flag.
1491 .It Cm iptos Ar spec
1492 Matches IPv4 packets whose
1493 .Cm tos
1494 field contains the comma separated list of
1495 service types specified in
1496 .Ar spec .
1497 The supported IP types of service are:
1498 .Pp
1499 .Cm lowdelay
1500 .Pq Dv IPTOS_LOWDELAY ,
1501 .Cm throughput
1502 .Pq Dv IPTOS_THROUGHPUT ,
1503 .Cm reliability
1504 .Pq Dv IPTOS_RELIABILITY ,
1505 .Cm mincost
1506 .Pq Dv IPTOS_MINCOST ,
1507 .Cm congestion
1508 .Pq Dv IPTOS_ECN_CE .
1509 The absence of a particular type may be denoted
1510 with a
1511 .Ql \&! .
1512 .It Cm dscp spec Ns Op , Ns Ar spec
1513 Matches IPv4/IPv6 packets whose
1514 .Cm DS
1515 field value is contained in
1516 .Ar spec
1517 mask.
1518 Multiple values can be specified via
1519 the comma separated list.
1520 Value can be one of keywords used in
1521 .Cm setdscp
1522 action or exact number.
1523 .It Cm ipttl Ar ttl-list
1524 Matches IPv4 packets whose time to live is included in
1525 .Ar ttl-list ,
1526 which is either a single value or a list of values or ranges
1527 specified in the same way as
1528 .Ar ports .
1529 .It Cm ipversion Ar ver
1530 Matches IP packets whose IP version field is
1531 .Ar ver .
1532 .It Cm keep-state
1533 Upon a match, the firewall will create a dynamic rule, whose
1534 default behaviour is to match bidirectional traffic between
1535 source and destination IP/port using the same protocol.
1536 The rule has a limited lifetime (controlled by a set of
1537 .Xr sysctl 8
1538 variables), and the lifetime is refreshed every time a matching
1539 packet is found.
1540 .It Cm layer2
1541 Matches only layer2 packets, i.e., those passed to
1542 .Nm
1543 from ether_demux() and ether_output_frame().
1544 .It Cm limit Bro Cm src-addr | src-port | dst-addr | dst-port Brc Ar N
1545 The firewall will only allow
1546 .Ar N
1547 connections with the same
1548 set of parameters as specified in the rule.
1549 One or more
1550 of source and destination addresses and ports can be
1551 specified.
1552 Currently,
1553 only IPv4 flows are supported.
1554 .It Cm lookup Bro Cm dst-ip | dst-port | src-ip | src-port | uid | jail Brc Ar N
1555 Search an entry in lookup table
1556 .Ar N
1557 that matches the field specified as argument.
1558 If not found, the match fails.
1559 Otherwise, the match succeeds and
1560 .Cm tablearg
1561 is set to the value extracted from the table.
1562 .Pp
1563 This option can be useful to quickly dispatch traffic based on
1564 certain packet fields.
1565 See the
1566 .Sx LOOKUP TABLES
1567 section below for more information on lookup tables.
1568 .It Cm { MAC | mac } Ar dst-mac src-mac
1569 Match packets with a given
1570 .Ar dst-mac
1571 and
1572 .Ar src-mac
1573 addresses, specified as the
1574 .Cm any
1575 keyword (matching any MAC address), or six groups of hex digits
1576 separated by colons,
1577 and optionally followed by a mask indicating the significant bits.
1578 The mask may be specified using either of the following methods:
1579 .Bl -enum -width indent
1580 .It
1581 A slash
1582 .Pq /
1583 followed by the number of significant bits.
1584 For example, an address with 33 significant bits could be specified as:
1585 .Pp
1586 .Dl "MAC 10:20:30:40:50:60/33 any"
1587 .Pp
1588 .It
1589 An ampersand
1590 .Pq &
1591 followed by a bitmask specified as six groups of hex digits separated
1592 by colons.
1593 For example, an address in which the last 16 bits are significant could
1594 be specified as:
1595 .Pp
1596 .Dl "MAC 10:20:30:40:50:60&00:00:00:00:ff:ff any"
1597 .Pp
1598 Note that the ampersand character has a special meaning in many shells
1599 and should generally be escaped.
1600 .Pp
1601 .El
1602 Note that the order of MAC addresses (destination first,
1603 source second) is
1604 the same as on the wire, but the opposite of the one used for
1605 IP addresses.
1606 .It Cm mac-type Ar mac-type
1607 Matches packets whose Ethernet Type field
1608 corresponds to one of those specified as argument.
1609 .Ar mac-type
1610 is specified in the same way as
1611 .Cm port numbers
1612 (i.e., one or more comma-separated single values or ranges).
1613 You can use symbolic names for known values such as
1614 .Em vlan , ipv4, ipv6 .
1615 Values can be entered as decimal or hexadecimal (if prefixed by 0x),
1616 and they are always printed as hexadecimal (unless the
1617 .Cm -N
1618 option is used, in which case symbolic resolution will be attempted).
1619 .It Cm proto Ar protocol
1620 Matches packets with the corresponding IP protocol.
1621 .It Cm recv | xmit | via Brq Ar ifX | Ar if Ns Cm * | Ar table Ns Pq Ar number Ns Op , Ns Ar value | Ar ipno | Ar any
1622 Matches packets received, transmitted or going through,
1623 respectively, the interface specified by exact name
1624 .Po Ar ifX Pc ,
1625 by device name
1626 .Po Ar if* Pc ,
1627 by IP address, or through some interface.
1628 .Pp
1629 The
1630 .Cm via
1631 keyword causes the interface to always be checked.
1632 If
1633 .Cm recv
1634 or
1635 .Cm xmit
1636 is used instead of
1637 .Cm via ,
1638 then only the receive or transmit interface (respectively)
1639 is checked.
1640 By specifying both, it is possible to match packets based on
1641 both receive and transmit interface, e.g.:
1642 .Pp
1643 .Dl "ipfw add deny ip from any to any out recv ed0 xmit ed1"
1644 .Pp
1645 The
1646 .Cm recv
1647 interface can be tested on either incoming or outgoing packets,
1648 while the
1649 .Cm xmit
1650 interface can only be tested on outgoing packets.
1651 So
1652 .Cm out
1653 is required (and
1654 .Cm in
1655 is invalid) whenever
1656 .Cm xmit
1657 is used.
1658 .Pp
1659 A packet might not have a receive or transmit interface: packets
1660 originating from the local host have no receive interface,
1661 while packets destined for the local host have no transmit
1662 interface.
1663 .It Cm setup
1664 Matches TCP packets that have the SYN bit set but no ACK bit.
1665 This is the short form of
1666 .Dq Li tcpflags\ syn,!ack .
1667 .It Cm sockarg
1668 Matches packets that are associated to a local socket and
1669 for which the SO_USER_COOKIE socket option has been set
1670 to a non-zero value.
1671 As a side effect, the value of the
1672 option is made available as
1673 .Cm tablearg
1674 value, which in turn can be used as
1675 .Cm skipto
1676 or
1677 .Cm pipe
1678 number.
1679 .It Cm src-ip Ar ip-address
1680 Matches IPv4 packets whose source IP is one of the address(es)
1681 specified as an argument.
1682 .It Cm src-ip6 Ar ip6-address
1683 Matches IPv6 packets whose source IP is one of the address(es)
1684 specified as an argument.
1685 .It Cm src-port Ar ports
1686 Matches IP packets whose source port is one of the port(s)
1687 specified as argument.
1688 .It Cm tagged Ar tag-list
1689 Matches packets whose tags are included in
1690 .Ar tag-list ,
1691 which is either a single value or a list of values or ranges
1692 specified in the same way as
1693 .Ar ports .
1694 Tags can be applied to the packet using
1695 .Cm tag
1696 rule action parameter (see it's description for details on tags).
1697 .It Cm tcpack Ar ack
1698 TCP packets only.
1699 Match if the TCP header acknowledgment number field is set to
1700 .Ar ack .
1701 .It Cm tcpdatalen Ar tcpdatalen-list
1702 Matches TCP packets whose length of TCP data is
1703 .Ar tcpdatalen-list ,
1704 which is either a single value or a list of values or ranges
1705 specified in the same way as
1706 .Ar ports .
1707 .It Cm tcpflags Ar spec
1708 TCP packets only.
1709 Match if the TCP header contains the comma separated list of
1710 flags specified in
1711 .Ar spec .
1712 The supported TCP flags are:
1713 .Pp
1714 .Cm fin ,
1715 .Cm syn ,
1716 .Cm rst ,
1717 .Cm psh ,
1718 .Cm ack
1719 and
1720 .Cm urg .
1721 The absence of a particular flag may be denoted
1722 with a
1723 .Ql \&! .
1724 A rule which contains a
1725 .Cm tcpflags
1726 specification can never match a fragmented packet which has
1727 a non-zero offset.
1728 See the
1729 .Cm frag
1730 option for details on matching fragmented packets.
1731 .It Cm tcpseq Ar seq
1732 TCP packets only.
1733 Match if the TCP header sequence number field is set to
1734 .Ar seq .
1735 .It Cm tcpwin Ar tcpwin-list
1736 Matches TCP packets whose  header window field is set to
1737 .Ar tcpwin-list ,
1738 which is either a single value or a list of values or ranges
1739 specified in the same way as
1740 .Ar ports .
1741 .It Cm tcpoptions Ar spec
1742 TCP packets only.
1743 Match if the TCP header contains the comma separated list of
1744 options specified in
1745 .Ar spec .
1746 The supported TCP options are:
1747 .Pp
1748 .Cm mss
1749 (maximum segment size),
1750 .Cm window
1751 (tcp window advertisement),
1752 .Cm sack
1753 (selective ack),
1754 .Cm ts
1755 (rfc1323 timestamp) and
1756 .Cm cc
1757 (rfc1644 t/tcp connection count).
1758 The absence of a particular option may be denoted
1759 with a
1760 .Ql \&! .
1761 .It Cm uid Ar user
1762 Match all TCP or UDP packets sent by or received for a
1763 .Ar user .
1764 A
1765 .Ar user
1766 may be matched by name or identification number.
1767 .It Cm verrevpath
1768 For incoming packets,
1769 a routing table lookup is done on the packet's source address.
1770 If the interface on which the packet entered the system matches the
1771 outgoing interface for the route,
1772 the packet matches.
1773 If the interfaces do not match up,
1774 the packet does not match.
1775 All outgoing packets or packets with no incoming interface match.
1776 .Pp
1777 The name and functionality of the option is intentionally similar to
1778 the Cisco IOS command:
1779 .Pp
1780 .Dl ip verify unicast reverse-path
1781 .Pp
1782 This option can be used to make anti-spoofing rules to reject all
1783 packets with source addresses not from this interface.
1784 See also the option
1785 .Cm antispoof .
1786 .It Cm versrcreach
1787 For incoming packets,
1788 a routing table lookup is done on the packet's source address.
1789 If a route to the source address exists, but not the default route
1790 or a blackhole/reject route, the packet matches.
1791 Otherwise, the packet does not match.
1792 All outgoing packets match.
1793 .Pp
1794 The name and functionality of the option is intentionally similar to
1795 the Cisco IOS command:
1796 .Pp
1797 .Dl ip verify unicast source reachable-via any
1798 .Pp
1799 This option can be used to make anti-spoofing rules to reject all
1800 packets whose source address is unreachable.
1801 .It Cm antispoof
1802 For incoming packets, the packet's source address is checked if it
1803 belongs to a directly connected network.
1804 If the network is directly connected, then the interface the packet
1805 came on in is compared to the interface the network is connected to.
1806 When incoming interface and directly connected interface are not the
1807 same, the packet does not match.
1808 Otherwise, the packet does match.
1809 All outgoing packets match.
1810 .Pp
1811 This option can be used to make anti-spoofing rules to reject all
1812 packets that pretend to be from a directly connected network but do
1813 not come in through that interface.
1814 This option is similar to but more restricted than
1815 .Cm verrevpath
1816 because it engages only on packets with source addresses of directly
1817 connected networks instead of all source addresses.
1818 .El
1819 .Sh LOOKUP TABLES
1820 Lookup tables are useful to handle large sparse sets of
1821 addresses or other search keys (e.g., ports, jail IDs, interface names).
1822 In the rest of this section we will use the term ``address''.
1823 There may be up to 65535 different lookup tables, numbered 0 to 65534.
1824 .Pp
1825 Each entry is represented by an
1826 .Ar addr Ns Op / Ns Ar masklen
1827 and will match all addresses with base
1828 .Ar addr
1829 (specified as an IPv4/IPv6 address, a hostname or an unsigned integer)
1830 and mask width of
1831 .Ar masklen
1832 bits.
1833 If
1834 .Ar masklen
1835 is not specified, it defaults to 32 for IPv4 and 128 for IPv6.
1836 When looking up an IP address in a table, the most specific
1837 entry will match.
1838 Associated with each entry is a 32-bit unsigned
1839 .Ar value ,
1840 which can optionally be checked by a rule matching code.
1841 When adding an entry, if
1842 .Ar value
1843 is not specified, it defaults to 0.
1844 .Pp
1845 An entry can be added to a table
1846 .Pq Cm add ,
1847 or removed from a table
1848 .Pq Cm delete .
1849 A table can be examined
1850 .Pq Cm list
1851 or flushed
1852 .Pq Cm flush .
1853 .Pp
1854 Internally, each table is stored in a Radix tree, the same way as
1855 the routing table (see
1856 .Xr route 4 ) .
1857 .Pp
1858 Lookup tables currently support only ports, jail IDs, IPv4/IPv6  addresses
1859 and interface names.
1860 Wildcards is not supported for interface names.
1861 .Pp
1862 The
1863 .Cm tablearg
1864 feature provides the ability to use a value, looked up in the table, as
1865 the argument for a rule action, action parameter or rule option.
1866 This can significantly reduce number of rules in some configurations.
1867 If two tables are used in a rule, the result of the second (destination)
1868 is used.
1869 The
1870 .Cm tablearg
1871 argument can be used with the following actions:
1872 .Cm nat, pipe , queue, divert, tee, netgraph, ngtee, fwd, skipto, setfib,
1873 action parameters:
1874 .Cm tag, untag,
1875 rule options:
1876 .Cm limit, tagged.
1877 .Pp
1878 When used with
1879 .Cm fwd
1880 it is possible to supply table entries with values
1881 that are in the form of IP addresses or hostnames.
1882 See the
1883 .Sx EXAMPLES
1884 Section for example usage of tables and the tablearg keyword.
1885 .Pp
1886 When used with the
1887 .Cm skipto
1888 action, the user should be aware that the code will walk the ruleset
1889 up to a rule equal to, or past, the given number,
1890 and should therefore try keep the
1891 ruleset compact between the skipto and the target rules.
1892 .Sh SETS OF RULES
1893 Each rule belongs to one of 32 different
1894 .Em sets
1895 , numbered 0 to 31.
1896 Set 31 is reserved for the default rule.
1897 .Pp
1898 By default, rules are put in set 0, unless you use the
1899 .Cm set N
1900 attribute when entering a new rule.
1901 Sets can be individually and atomically enabled or disabled,
1902 so this mechanism permits an easy way to store multiple configurations
1903 of the firewall and quickly (and atomically) switch between them.
1904 The command to enable/disable sets is
1905 .Bd -ragged -offset indent
1906 .Nm
1907 .Cm set Oo Cm disable Ar number ... Oc Op Cm enable Ar number ...
1908 .Ed
1909 .Pp
1910 where multiple
1911 .Cm enable
1912 or
1913 .Cm disable
1914 sections can be specified.
1915 Command execution is atomic on all the sets specified in the command.
1916 By default, all sets are enabled.
1917 .Pp
1918 When you disable a set, its rules behave as if they do not exist
1919 in the firewall configuration, with only one exception:
1920 .Bd -ragged -offset indent
1921 dynamic rules created from a rule before it had been disabled
1922 will still be active until they expire.
1923 In order to delete
1924 dynamic rules you have to explicitly delete the parent rule
1925 which generated them.
1926 .Ed
1927 .Pp
1928 The set number of rules can be changed with the command
1929 .Bd -ragged -offset indent
1930 .Nm
1931 .Cm set move
1932 .Brq Cm rule Ar rule-number | old-set
1933 .Cm to Ar new-set
1934 .Ed
1935 .Pp
1936 Also, you can atomically swap two rulesets with the command
1937 .Bd -ragged -offset indent
1938 .Nm
1939 .Cm set swap Ar first-set second-set
1940 .Ed
1941 .Pp
1942 See the
1943 .Sx EXAMPLES
1944 Section on some possible uses of sets of rules.
1945 .Sh STATEFUL FIREWALL
1946 Stateful operation is a way for the firewall to dynamically
1947 create rules for specific flows when packets that
1948 match a given pattern are detected.
1949 Support for stateful
1950 operation comes through the
1951 .Cm check-state , keep-state
1952 and
1953 .Cm limit
1954 options of
1955 .Nm rules .
1956 .Pp
1957 Dynamic rules are created when a packet matches a
1958 .Cm keep-state
1959 or
1960 .Cm limit
1961 rule, causing the creation of a
1962 .Em dynamic
1963 rule which will match all and only packets with
1964 a given
1965 .Em protocol
1966 between a
1967 .Em src-ip/src-port dst-ip/dst-port
1968 pair of addresses
1969 .Em ( src
1970 and
1971 .Em dst
1972 are used here only to denote the initial match addresses, but they
1973 are completely equivalent afterwards).
1974 Dynamic rules will be checked at the first
1975 .Cm check-state, keep-state
1976 or
1977 .Cm limit
1978 occurrence, and the action performed upon a match will be the same
1979 as in the parent rule.
1980 .Pp
1981 Note that no additional attributes other than protocol and IP addresses
1982 and ports are checked on dynamic rules.
1983 .Pp
1984 The typical use of dynamic rules is to keep a closed firewall configuration,
1985 but let the first TCP SYN packet from the inside network install a
1986 dynamic rule for the flow so that packets belonging to that session
1987 will be allowed through the firewall:
1988 .Pp
1989 .Dl "ipfw add check-state"
1990 .Dl "ipfw add allow tcp from my-subnet to any setup keep-state"
1991 .Dl "ipfw add deny tcp from any to any"
1992 .Pp
1993 A similar approach can be used for UDP, where an UDP packet coming
1994 from the inside will install a dynamic rule to let the response through
1995 the firewall:
1996 .Pp
1997 .Dl "ipfw add check-state"
1998 .Dl "ipfw add allow udp from my-subnet to any keep-state"
1999 .Dl "ipfw add deny udp from any to any"
2000 .Pp
2001 Dynamic rules expire after some time, which depends on the status
2002 of the flow and the setting of some
2003 .Cm sysctl
2004 variables.
2005 See Section
2006 .Sx SYSCTL VARIABLES
2007 for more details.
2008 For TCP sessions, dynamic rules can be instructed to periodically
2009 send keepalive packets to refresh the state of the rule when it is
2010 about to expire.
2011 .Pp
2012 See Section
2013 .Sx EXAMPLES
2014 for more examples on how to use dynamic rules.
2015 .Sh TRAFFIC SHAPER (DUMMYNET) CONFIGURATION
2016 .Nm
2017 is also the user interface for the
2018 .Nm dummynet
2019 traffic shaper, packet scheduler and network emulator, a subsystem that
2020 can artificially queue, delay or drop packets
2021 emulating the behaviour of certain network links
2022 or queueing systems.
2023 .Pp
2024 .Nm dummynet
2025 operates by first using the firewall to select packets
2026 using any match pattern that can be used in
2027 .Nm
2028 rules.
2029 Matching packets are then passed to either of two
2030 different objects, which implement the traffic regulation:
2031 .Bl -hang -offset XXXX
2032 .It Em pipe
2033 A
2034 .Em pipe
2035 emulates a
2036 .Em link
2037 with given bandwidth and propagation delay,
2038 driven by a FIFO scheduler and a single queue with programmable
2039 queue size and packet loss rate.
2040 Packets are appended to the queue as they come out from
2041 .Nm ipfw ,
2042 and then transferred in FIFO order to the link at the desired rate.
2043 .It Em queue
2044 A
2045 .Em queue
2046 is an abstraction used to implement packet scheduling
2047 using one of several packet scheduling algorithms.
2048 Packets sent to a
2049 .Em queue
2050 are first grouped into flows according to a mask on the 5-tuple.
2051 Flows are then passed to the scheduler associated to the
2052 .Em queue ,
2053 and each flow uses scheduling parameters (weight and others)
2054 as configured in the
2055 .Em queue
2056 itself.
2057 A scheduler in turn is connected to an emulated link,
2058 and arbitrates the link's bandwidth among backlogged flows according to
2059 weights and to the features of the scheduling algorithm in use.
2060 .El
2061 .Pp
2062 In practice,
2063 .Em pipes
2064 can be used to set hard limits to the bandwidth that a flow can use, whereas
2065 .Em queues
2066 can be used to determine how different flows share the available bandwidth.
2067 .Pp
2068 A graphical representation of the binding of queues,
2069 flows, schedulers and links is below.
2070 .Bd -literal -offset indent
2071                  (flow_mask|sched_mask)  sched_mask
2072          +---------+   weight Wx  +-------------+
2073          |         |->-[flow]-->--|             |-+
2074     -->--| QUEUE x |   ...        |             | |
2075          |         |->-[flow]-->--| SCHEDuler N | |
2076          +---------+              |             | |
2077              ...                  |             +--[LINK N]-->--
2078          +---------+   weight Wy  |             | +--[LINK N]-->--
2079          |         |->-[flow]-->--|             | |
2080     -->--| QUEUE y |   ...        |             | |
2081          |         |->-[flow]-->--|             | |
2082          +---------+              +-------------+ |
2083                                     +-------------+
2084 .Ed
2085 It is important to understand the role of the SCHED_MASK
2086 and FLOW_MASK, which are configured through the commands
2087 .Dl "ipfw sched N config mask SCHED_MASK ..."
2088 and
2089 .Dl "ipfw queue X config mask FLOW_MASK ..." .
2090 .Pp
2091 The SCHED_MASK is used to assign flows to one or more
2092 scheduler instances, one for each
2093 value of the packet's 5-tuple after applying SCHED_MASK.
2094 As an example, using ``src-ip 0xffffff00'' creates one instance
2095 for each /24 destination subnet.
2096 .Pp
2097 The FLOW_MASK, together with the SCHED_MASK, is used to split
2098 packets into flows.
2099 As an example, using
2100 ``src-ip 0x000000ff''
2101 together with the previous SCHED_MASK makes a flow for
2102 each individual source address.
2103 In turn, flows for each /24
2104 subnet will be sent to the same scheduler instance.
2105 .Pp
2106 The above diagram holds even for the
2107 .Em pipe
2108 case, with the only restriction that a
2109 .Em pipe
2110 only supports a SCHED_MASK, and forces the use of a FIFO
2111 scheduler (these are for backward compatibility reasons;
2112 in fact, internally, a
2113 .Nm dummynet's
2114 pipe is implemented exactly as above).
2115 .Pp
2116 There are two modes of
2117 .Nm dummynet
2118 operation:
2119 .Dq normal
2120 and
2121 .Dq fast .
2122 The
2123 .Dq normal
2124 mode tries to emulate a real link: the
2125 .Nm dummynet
2126 scheduler ensures that the packet will not leave the pipe faster than it
2127 would on the real link with a given bandwidth.
2128 The
2129 .Dq fast
2130 mode allows certain packets to bypass the
2131 .Nm dummynet
2132 scheduler (if packet flow does not exceed pipe's bandwidth).
2133 This is the reason why the
2134 .Dq fast
2135 mode requires less CPU cycles per packet (on average) and packet latency
2136 can be significantly lower in comparison to a real link with the same
2137 bandwidth.
2138 The default mode is
2139 .Dq normal .
2140 The
2141 .Dq fast
2142 mode can be enabled by setting the
2143 .Va net.inet.ip.dummynet.io_fast
2144 .Xr sysctl 8
2145 variable to a non-zero value.
2146 .Pp
2147 .Ss PIPE, QUEUE AND SCHEDULER CONFIGURATION
2148 The
2149 .Em pipe ,
2150 .Em queue
2151 and
2152 .Em scheduler
2153 configuration commands are the following:
2154 .Bd -ragged -offset indent
2155 .Cm pipe Ar number Cm config Ar pipe-configuration
2156 .Pp
2157 .Cm queue Ar number Cm config Ar queue-configuration
2158 .Pp
2159 .Cm sched Ar number Cm config Ar sched-configuration
2160 .Ed
2161 .Pp
2162 The following parameters can be configured for a pipe:
2163 .Pp
2164 .Bl -tag -width indent -compact
2165 .It Cm bw Ar bandwidth | device
2166 Bandwidth, measured in
2167 .Sm off
2168 .Op Cm K | M
2169 .Brq Cm bit/s | Byte/s .
2170 .Sm on
2171 .Pp
2172 A value of 0 (default) means unlimited bandwidth.
2173 The unit must immediately follow the number, as in
2174 .Pp
2175 .Dl "ipfw pipe 1 config bw 300Kbit/s"
2176 .Pp
2177 If a device name is specified instead of a numeric value, as in
2178 .Pp
2179 .Dl "ipfw pipe 1 config bw tun0"
2180 .Pp
2181 then the transmit clock is supplied by the specified device.
2182 At the moment only the
2183 .Xr tun 4
2184 device supports this
2185 functionality, for use in conjunction with
2186 .Xr ppp 8 .
2187 .Pp
2188 .It Cm delay Ar ms-delay
2189 Propagation delay, measured in milliseconds.
2190 The value is rounded to the next multiple of the clock tick
2191 (typically 10ms, but it is a good practice to run kernels
2192 with
2193 .Dq "options HZ=1000"
2194 to reduce
2195 the granularity to 1ms or less).
2196 The default value is 0, meaning no delay.
2197 .Pp
2198 .It Cm burst Ar size
2199 If the data to be sent exceeds the pipe's bandwidth limit
2200 (and the pipe was previously idle), up to
2201 .Ar size
2202 bytes of data are allowed to bypass the
2203 .Nm dummynet
2204 scheduler, and will be sent as fast as the physical link allows.
2205 Any additional data will be transmitted at the rate specified
2206 by the
2207 .Nm pipe
2208 bandwidth.
2209 The burst size depends on how long the pipe has been idle;
2210 the effective burst size is calculated as follows:
2211 MAX(
2212 .Ar size
2213 ,
2214 .Nm bw
2215 * pipe_idle_time).
2216 .Pp
2217 .It Cm profile Ar filename
2218 A file specifying the additional overhead incurred in the transmission
2219 of a packet on the link.
2220 .Pp
2221 Some link types introduce extra delays in the transmission
2222 of a packet, e.g., because of MAC level framing, contention on
2223 the use of the channel, MAC level retransmissions and so on.
2224 From our point of view, the channel is effectively unavailable
2225 for this extra time, which is constant or variable depending
2226 on the link type.
2227 Additionally, packets may be dropped after this
2228 time (e.g., on a wireless link after too many retransmissions).
2229 We can model the additional delay with an empirical curve
2230 that represents its distribution.
2231 .Bd -literal -offset indent
2232       cumulative probability
2233       1.0 ^
2234           |
2235       L   +-- loss-level          x
2236           |                 ******
2237           |                *
2238           |           *****
2239           |          *
2240           |        **
2241           |       *
2242           +-------*------------------->
2243                       delay
2244 .Ed
2245 The empirical curve may have both vertical and horizontal lines.
2246 Vertical lines represent constant delay for a range of
2247 probabilities.
2248 Horizontal lines correspond to a discontinuity in the delay
2249 distribution: the pipe will use the largest delay for a
2250 given probability.
2251 .Pp
2252 The file format is the following, with whitespace acting as
2253 a separator and '#' indicating the beginning a comment:
2254 .Bl -tag -width indent
2255 .It Cm name Ar identifier
2256 optional name (listed by "ipfw pipe show")
2257 to identify the delay distribution;
2258 .It Cm bw Ar value
2259 the bandwidth used for the pipe.
2260 If not specified here, it must be present
2261 explicitly as a configuration parameter for the pipe;
2262 .It Cm loss-level Ar L
2263 the probability above which packets are lost.
2264 (0.0 <= L <= 1.0, default 1.0 i.e., no loss);
2265 .It Cm samples Ar N
2266 the number of samples used in the internal
2267 representation of the curve (2..1024; default 100);
2268 .It Cm "delay prob" | "prob delay"
2269 One of these two lines is mandatory and defines
2270 the format of the following lines with data points.
2271 .It Ar XXX Ar YYY
2272 2 or more lines representing points in the curve,
2273 with either delay or probability first, according
2274 to the chosen format.
2275 The unit for delay is milliseconds.
2276 Data points do not need to be sorted.
2277 Also, the number of actual lines can be different
2278 from the value of the "samples" parameter:
2279 .Nm
2280 utility will sort and interpolate
2281 the curve as needed.
2282 .El
2283 .Pp
2284 Example of a profile file:
2285 .Bd -literal -offset indent
2286 name    bla_bla_bla
2287 samples 100
2288 loss-level    0.86
2289 prob    delay
2290 0       200     # minimum overhead is 200ms
2291 0.5     200
2292 0.5     300
2293 0.8     1000
2294 0.9     1300
2295 1       1300
2296 #configuration file end
2297 .Ed
2298 .El
2299 .Pp
2300 The following parameters can be configured for a queue:
2301 .Pp
2302 .Bl -tag -width indent -compact
2303 .It Cm pipe Ar pipe_nr
2304 Connects a queue to the specified pipe.
2305 Multiple queues (with the same or different weights) can be connected to
2306 the same pipe, which specifies the aggregate rate for the set of queues.
2307 .Pp
2308 .It Cm weight Ar weight
2309 Specifies the weight to be used for flows matching this queue.
2310 The weight must be in the range 1..100, and defaults to 1.
2311 .El
2312 .Pp
2313 The following case-insensitive parameters can be configured for a
2314 scheduler:
2315 .Pp
2316 .Bl -tag -width indent -compact
2317 .It Cm type Ar {fifo | wf2q+ | rr | qfq}
2318 specifies the scheduling algorithm to use.
2319 .Bl -tag -width indent -compact
2320 .It Cm fifo
2321 is just a FIFO scheduler (which means that all packets
2322 are stored in the same queue as they arrive to the scheduler).
2323 FIFO has O(1) per-packet time complexity, with very low
2324 constants (estimate 60-80ns on a 2GHz desktop machine)
2325 but gives no service guarantees.
2326 .It Cm wf2q+
2327 implements the WF2Q+ algorithm, which is a Weighted Fair Queueing
2328 algorithm which permits flows to share bandwidth according to
2329 their weights.
2330 Note that weights are not priorities; even a flow
2331 with a minuscule weight will never starve.
2332 WF2Q+ has O(log N) per-packet processing cost, where N is the number
2333 of flows, and is the default algorithm used by previous versions
2334 dummynet's queues.
2335 .It Cm rr
2336 implements the Deficit Round Robin algorithm, which has O(1) processing
2337 costs (roughly, 100-150ns per packet)
2338 and permits bandwidth allocation according to weights, but
2339 with poor service guarantees.
2340 .It Cm qfq
2341 implements the QFQ algorithm, which is a very fast variant of
2342 WF2Q+, with similar service guarantees and O(1) processing
2343 costs (roughly, 200-250ns per packet).
2344 .El
2345 .El
2346 .Pp
2347 In addition to the type, all parameters allowed for a pipe can also
2348 be specified for a scheduler.
2349 .Pp
2350 Finally, the following parameters can be configured for both
2351 pipes and queues:
2352 .Pp
2353 .Bl -tag -width XXXX -compact
2354 .It Cm buckets Ar hash-table-size
2355 Specifies the size of the hash table used for storing the
2356 various queues.
2357 Default value is 64 controlled by the
2358 .Xr sysctl 8
2359 variable
2360 .Va net.inet.ip.dummynet.hash_size ,
2361 allowed range is 16 to 65536.
2362 .Pp
2363 .It Cm mask Ar mask-specifier
2364 Packets sent to a given pipe or queue by an
2365 .Nm
2366 rule can be further classified into multiple flows, each of which is then
2367 sent to a different
2368 .Em dynamic
2369 pipe or queue.
2370 A flow identifier is constructed by masking the IP addresses,
2371 ports and protocol types as specified with the
2372 .Cm mask
2373 options in the configuration of the pipe or queue.
2374 For each different flow identifier, a new pipe or queue is created
2375 with the same parameters as the original object, and matching packets
2376 are sent to it.
2377 .Pp
2378 Thus, when
2379 .Em dynamic pipes
2380 are used, each flow will get the same bandwidth as defined by the pipe,
2381 whereas when
2382 .Em dynamic queues
2383 are used, each flow will share the parent's pipe bandwidth evenly
2384 with other flows generated by the same queue (note that other queues
2385 with different weights might be connected to the same pipe).
2386 .br
2387 Available mask specifiers are a combination of one or more of the following:
2388 .Pp
2389 .Cm dst-ip Ar mask ,
2390 .Cm dst-ip6 Ar mask ,
2391 .Cm src-ip Ar mask ,
2392 .Cm src-ip6 Ar mask ,
2393 .Cm dst-port Ar mask ,
2394 .Cm src-port Ar mask ,
2395 .Cm flow-id Ar mask ,
2396 .Cm proto Ar mask
2397 or
2398 .Cm all ,
2399 .Pp
2400 where the latter means all bits in all fields are significant.
2401 .Pp
2402 .It Cm noerror
2403 When a packet is dropped by a
2404 .Nm dummynet
2405 queue or pipe, the error
2406 is normally reported to the caller routine in the kernel, in the
2407 same way as it happens when a device queue fills up.
2408 Setting this
2409 option reports the packet as successfully delivered, which can be
2410 needed for some experimental setups where you want to simulate
2411 loss or congestion at a remote router.
2412 .Pp
2413 .It Cm plr Ar packet-loss-rate
2414 Packet loss rate.
2415 Argument
2416 .Ar packet-loss-rate
2417 is a floating-point number between 0 and 1, with 0 meaning no
2418 loss, 1 meaning 100% loss.
2419 The loss rate is internally represented on 31 bits.
2420 .Pp
2421 .It Cm queue Brq Ar slots | size Ns Cm Kbytes
2422 Queue size, in
2423 .Ar slots
2424 or
2425 .Cm KBytes .
2426 Default value is 50 slots, which
2427 is the typical queue size for Ethernet devices.
2428 Note that for slow speed links you should keep the queue
2429 size short or your traffic might be affected by a significant
2430 queueing delay.
2431 E.g., 50 max-sized ethernet packets (1500 bytes) mean 600Kbit
2432 or 20s of queue on a 30Kbit/s pipe.
2433 Even worse effects can result if you get packets from an
2434 interface with a much larger MTU, e.g.\& the loopback interface
2435 with its 16KB packets.
2436 The
2437 .Xr sysctl 8
2438 variables
2439 .Em net.inet.ip.dummynet.pipe_byte_limit
2440 and
2441 .Em net.inet.ip.dummynet.pipe_slot_limit
2442 control the maximum lengths that can be specified.
2443 .Pp
2444 .It Cm red | gred Ar w_q Ns / Ns Ar min_th Ns / Ns Ar max_th Ns / Ns Ar max_p
2445 Make use of the RED (Random Early Detection) queue management algorithm.
2446 .Ar w_q
2447 and
2448 .Ar max_p
2449 are floating
2450 point numbers between 0 and 1 (0 not included), while
2451 .Ar min_th
2452 and
2453 .Ar max_th
2454 are integer numbers specifying thresholds for queue management
2455 (thresholds are computed in bytes if the queue has been defined
2456 in bytes, in slots otherwise).
2457 The
2458 .Nm dummynet
2459 also supports the gentle RED variant (gred).
2460 Three
2461 .Xr sysctl 8
2462 variables can be used to control the RED behaviour:
2463 .Bl -tag -width indent
2464 .It Va net.inet.ip.dummynet.red_lookup_depth
2465 specifies the accuracy in computing the average queue
2466 when the link is idle (defaults to 256, must be greater than zero)
2467 .It Va net.inet.ip.dummynet.red_avg_pkt_size
2468 specifies the expected average packet size (defaults to 512, must be
2469 greater than zero)
2470 .It Va net.inet.ip.dummynet.red_max_pkt_size
2471 specifies the expected maximum packet size, only used when queue
2472 thresholds are in bytes (defaults to 1500, must be greater than zero).
2473 .El
2474 .El
2475 .Pp
2476 When used with IPv6 data,
2477 .Nm dummynet
2478 currently has several limitations.
2479 Information necessary to route link-local packets to an
2480 interface is not available after processing by
2481 .Nm dummynet
2482 so those packets are dropped in the output path.
2483 Care should be taken to ensure that link-local packets are not passed to
2484 .Nm dummynet .
2485 .Sh CHECKLIST
2486 Here are some important points to consider when designing your
2487 rules:
2488 .Bl -bullet
2489 .It
2490 Remember that you filter both packets going
2491 .Cm in
2492 and
2493 .Cm out .
2494 Most connections need packets going in both directions.
2495 .It
2496 Remember to test very carefully.
2497 It is a good idea to be near the console when doing this.
2498 If you cannot be near the console,
2499 use an auto-recovery script such as the one in
2500 .Pa /usr/share/examples/ipfw/change_rules.sh .
2501 .It
2502 Do not forget the loopback interface.
2503 .El
2504 .Sh FINE POINTS
2505 .Bl -bullet
2506 .It
2507 There are circumstances where fragmented datagrams are unconditionally
2508 dropped.
2509 TCP packets are dropped if they do not contain at least 20 bytes of
2510 TCP header, UDP packets are dropped if they do not contain a full 8
2511 byte UDP header, and ICMP packets are dropped if they do not contain
2512 4 bytes of ICMP header, enough to specify the ICMP type, code, and
2513 checksum.
2514 These packets are simply logged as
2515 .Dq pullup failed
2516 since there may not be enough good data in the packet to produce a
2517 meaningful log entry.
2518 .It
2519 Another type of packet is unconditionally dropped, a TCP packet with a
2520 fragment offset of one.
2521 This is a valid packet, but it only has one use, to try
2522 to circumvent firewalls.
2523 When logging is enabled, these packets are
2524 reported as being dropped by rule -1.
2525 .It
2526 If you are logged in over a network, loading the
2527 .Xr kld 4
2528 version of
2529 .Nm
2530 is probably not as straightforward as you would think.
2531 The following command line is recommended:
2532 .Bd -literal -offset indent
2533 kldload ipfw && \e
2534 ipfw add 32000 allow ip from any to any
2535 .Ed
2536 .Pp
2537 Along the same lines, doing an
2538 .Bd -literal -offset indent
2539 ipfw flush
2540 .Ed
2541 .Pp
2542 in similar surroundings is also a bad idea.
2543 .It
2544 The
2545 .Nm
2546 filter list may not be modified if the system security level
2547 is set to 3 or higher
2548 (see
2549 .Xr init 8
2550 for information on system security levels).
2551 .El
2552 .Sh PACKET DIVERSION
2553 A
2554 .Xr divert 4
2555 socket bound to the specified port will receive all packets
2556 diverted to that port.
2557 If no socket is bound to the destination port, or if the divert module is
2558 not loaded, or if the kernel was not compiled with divert socket support,
2559 the packets are dropped.
2560 .Sh NETWORK ADDRESS TRANSLATION (NAT)
2561 .Nm
2562 support in-kernel NAT using the kernel version of
2563 .Xr libalias 3 .
2564 .Pp
2565 The nat configuration command is the following:
2566 .Bd -ragged -offset indent
2567 .Bk -words
2568 .Cm nat
2569 .Ar nat_number
2570 .Cm config
2571 .Ar nat-configuration
2572 .Ek
2573 .Ed
2574 .Pp
2575 The following parameters can be configured:
2576 .Bl -tag -width indent
2577 .It Cm ip Ar ip_address
2578 Define an ip address to use for aliasing.
2579 .It Cm if Ar nic
2580 Use ip address of NIC for aliasing, dynamically changing
2581 it if NIC's ip address changes.
2582 .It Cm log
2583 Enable logging on this nat instance.
2584 .It Cm deny_in
2585 Deny any incoming connection from outside world.
2586 .It Cm same_ports
2587 Try to leave the alias port numbers unchanged from
2588 the actual local port numbers.
2589 .It Cm unreg_only
2590 Traffic on the local network not originating from an
2591 unregistered address spaces will be ignored.
2592 .It Cm reset
2593 Reset table of the packet aliasing engine on address change.
2594 .It Cm reverse
2595 Reverse the way libalias handles aliasing.
2596 .It Cm proxy_only
2597 Obey transparent proxy rules only, packet aliasing is not performed.
2598 .It Cm skip_global
2599 Skip instance in case of global state lookup (see below).
2600 .El
2601 .Pp
2602 Some specials value can be supplied instead of
2603 .Va nat_number:
2604 .Bl -tag -width indent
2605 .It Cm global
2606 Looks up translation state in all configured nat instances.
2607 If an entry is found, packet is aliased according to that entry.
2608 If no entry was found in any of the instances, packet is passed unchanged,
2609 and no new entry will be created.
2610 See section
2611 .Sx MULTIPLE INSTANCES
2612 in
2613 .Xr natd 8
2614 for more information.
2615 .It Cm tablearg
2616 Uses argument supplied in lookup table.
2617 See
2618 .Sx LOOKUP TABLES
2619 section below for more information on lookup tables.
2620 .El
2621 .Pp
2622 To let the packet continue after being (de)aliased, set the sysctl variable
2623 .Va net.inet.ip.fw.one_pass
2624 to 0.
2625 For more information about aliasing modes, refer to
2626 .Xr libalias 3 .
2627 See Section
2628 .Sx EXAMPLES
2629 for some examples about nat usage.
2630 .Ss REDIRECT AND LSNAT SUPPORT IN IPFW
2631 Redirect and LSNAT support follow closely the syntax used in
2632 .Xr natd 8 .
2633 See Section
2634 .Sx EXAMPLES
2635 for some examples on how to do redirect and lsnat.
2636 .Ss SCTP NAT SUPPORT
2637 SCTP nat can be configured in a similar manner to TCP through the
2638 .Nm
2639 command line tool.
2640 The main difference is that
2641 .Nm sctp nat
2642 does not do port translation.
2643 Since the local and global side ports will be the same,
2644 there is no need to specify both.
2645 Ports are redirected as follows:
2646 .Bd -ragged -offset indent
2647 .Bk -words
2648 .Cm nat
2649 .Ar nat_number
2650 .Cm config if
2651 .Ar nic
2652 .Cm redirect_port sctp
2653 .Ar ip_address [,addr_list] {[port | port-port] [,ports]}
2654 .Ek
2655 .Ed
2656 .Pp
2657 Most
2658 .Nm sctp nat
2659 configuration can be done in real-time through the
2660 .Xr sysctl 8
2661 interface.
2662 All may be changed dynamically, though the hash_table size will only
2663 change for new
2664 .Nm nat
2665 instances.
2666 See
2667 .Sx SYSCTL VARIABLES
2668 for more info.
2669 .Sh LOADER TUNABLES
2670 Tunables can be set in
2671 .Xr loader 8
2672 prompt,
2673 .Xr loader.conf 5
2674 or
2675 .Xr kenv 1
2676 before ipfw module gets loaded.
2677 .Bl -tag -width indent
2678 .It Va net.inet.ip.fw.default_to_accept: No 0
2679 Defines ipfw last rule behavior.
2680 This value overrides
2681 .Cd "options IPFW_DEFAULT_TO_(ACCEPT|DENY)"
2682 from kernel configuration file.
2683 .It Va net.inet.ip.fw.tables_max: No 128
2684 Defines number of tables available in ipfw.
2685 Number cannot exceed 65534.
2686 .El
2687 .Sh SYSCTL VARIABLES
2688 A set of
2689 .Xr sysctl 8
2690 variables controls the behaviour of the firewall and
2691 associated modules
2692 .Pq Nm dummynet , bridge , sctp nat .
2693 These are shown below together with their default value
2694 (but always check with the
2695 .Xr sysctl 8
2696 command what value is actually in use) and meaning:
2697 .Bl -tag -width indent
2698 .It Va net.inet.ip.alias.sctp.accept_global_ootb_addip: No 0
2699 Defines how the
2700 .Nm nat
2701 responds to receipt of global OOTB ASCONF-AddIP:
2702 .Bl -tag -width indent
2703 .It Cm 0
2704 No response (unless a partially matching association exists -
2705 ports and vtags match but global address does not)
2706 .It Cm 1
2707 .Nm nat
2708 will accept and process all OOTB global AddIP messages.
2709 .El
2710 .Pp
2711 Option 1 should never be selected as this forms a security risk.
2712 An attacker can
2713 establish multiple fake associations by sending AddIP messages.
2714 .It Va net.inet.ip.alias.sctp.chunk_proc_limit: No 5
2715 Defines the maximum number of chunks in an SCTP packet that will be
2716 parsed for a
2717 packet that matches an existing association.
2718 This value is enforced to be greater or equal than
2719 .Cm net.inet.ip.alias.sctp.initialising_chunk_proc_limit .
2720 A high value is
2721 a DoS risk yet setting too low a value may result in
2722 important control chunks in
2723 the packet not being located and parsed.
2724 .It Va net.inet.ip.alias.sctp.error_on_ootb: No 1
2725 Defines when the
2726 .Nm nat
2727 responds to any Out-of-the-Blue (OOTB) packets with ErrorM packets.
2728 An OOTB packet is a packet that arrives with no existing association
2729 registered in the
2730 .Nm nat
2731 and is not an INIT or ASCONF-AddIP packet:
2732 .Bl -tag -width indent
2733 .It Cm 0
2734 ErrorM is never sent in response to OOTB packets.
2735 .It Cm 1
2736 ErrorM is only sent to OOTB packets received on the local side.
2737 .It Cm 2
2738 ErrorM is sent to the local side and on the global side ONLY if there is a
2739 partial match (ports and vtags match but the source global IP does not).
2740 This value is only useful if the
2741 .Nm nat
2742 is tracking global IP addresses.
2743 .It Cm 3
2744 ErrorM is sent in response to all OOTB packets on both
2745 the local and global side
2746 (DoS risk).
2747 .El
2748 .Pp
2749 At the moment the default is 0, since the ErrorM packet is not yet
2750 supported by most SCTP stacks.
2751 When it is supported, and if not tracking
2752 global addresses, we recommend setting this value to 1 to allow
2753 multi-homed local hosts to function with the
2754 .Nm nat .
2755 To track global addresses, we recommend setting this value to 2 to
2756 allow global hosts to be informed when they need to (re)send an
2757 ASCONF-AddIP.
2758 Value 3 should never be chosen (except for debugging) as the
2759 .Nm nat
2760 will respond to all OOTB global packets (a DoS risk).
2761 .It Va net.inet.ip.alias.sctp.hashtable_size: No 2003
2762 Size of hash tables used for
2763 .Nm nat
2764 lookups (100 < prime_number > 1000001).
2765 This value sets the
2766 .Nm hash table
2767 size for any future created
2768 .Nm nat
2769 instance and therefore must be set prior to creating a
2770 .Nm nat
2771 instance.
2772 The table sizes may be changed to suit specific needs.
2773 If there will be few
2774 concurrent associations, and memory is scarce, you may make these smaller.
2775 If there will be many thousands (or millions) of concurrent associations, you
2776 should make these larger.
2777 A prime number is best for the table size.
2778 The sysctl
2779 update function will adjust your input value to the next highest prime number.
2780 .It Va net.inet.ip.alias.sctp.holddown_time:  No 0
2781 Hold association in table for this many seconds after receiving a
2782 SHUTDOWN-COMPLETE.
2783 This allows endpoints to correct shutdown gracefully if a
2784 shutdown_complete is lost and retransmissions are required.
2785 .It Va net.inet.ip.alias.sctp.init_timer: No 15
2786 Timeout value while waiting for (INIT-ACK|AddIP-ACK).
2787 This value cannot be 0.
2788 .It Va net.inet.ip.alias.sctp.initialising_chunk_proc_limit: No 2
2789 Defines the maximum number of chunks in an SCTP packet that will be parsed when
2790 no existing association exists that matches that packet.
2791 Ideally this packet
2792 will only be an INIT or ASCONF-AddIP packet.
2793 A higher value may become a DoS
2794 risk as malformed packets can consume processing resources.
2795 .It Va net.inet.ip.alias.sctp.param_proc_limit: No 25
2796 Defines the maximum number of parameters within a chunk that will be
2797 parsed in a
2798 packet.
2799 As for other similar sysctl variables, larger values pose a DoS risk.
2800 .It Va net.inet.ip.alias.sctp.log_level: No 0
2801 Level of detail in the system log messages (0 \- minimal, 1 \- event,
2802 2 \- info, 3 \- detail, 4 \- debug, 5 \- max debug).
2803 May be a good
2804 option in high loss environments.
2805 .It Va net.inet.ip.alias.sctp.shutdown_time: No 15
2806 Timeout value while waiting for SHUTDOWN-COMPLETE.
2807 This value cannot be 0.
2808 .It Va net.inet.ip.alias.sctp.track_global_addresses: No 0
2809 Enables/disables global IP address tracking within the
2810 .Nm nat
2811 and places an
2812 upper limit on the number of addresses tracked for each association:
2813 .Bl -tag -width indent
2814 .It Cm 0
2815 Global tracking is disabled
2816 .It Cm >1
2817 Enables tracking, the maximum number of addresses tracked for each
2818 association is limited to this value
2819 .El
2820 .Pp
2821 This variable is fully dynamic, the new value will be adopted for all newly
2822 arriving associations, existing associations are treated
2823 as they were previously.
2824 Global tracking will decrease the number of collisions within the
2825 .Nm nat
2826 at a cost
2827 of increased processing load, memory usage, complexity, and possible
2828 .Nm nat
2829 state
2830 problems in complex networks with multiple
2831 .Nm nats .
2832 We recommend not tracking
2833 global IP addresses, this will still result in a fully functional
2834 .Nm nat .
2835 .It Va net.inet.ip.alias.sctp.up_timer: No 300
2836 Timeout value to keep an association up with no traffic.
2837 This value cannot be 0.
2838 .It Va net.inet.ip.dummynet.expire : No 1
2839 Lazily delete dynamic pipes/queue once they have no pending traffic.
2840 You can disable this by setting the variable to 0, in which case
2841 the pipes/queues will only be deleted when the threshold is reached.
2842 .It Va net.inet.ip.dummynet.hash_size : No 64
2843 Default size of the hash table used for dynamic pipes/queues.
2844 This value is used when no
2845 .Cm buckets
2846 option is specified when configuring a pipe/queue.
2847 .It Va net.inet.ip.dummynet.io_fast : No 0
2848 If set to a non-zero value,
2849 the
2850 .Dq fast
2851 mode of
2852 .Nm dummynet
2853 operation (see above) is enabled.
2854 .It Va net.inet.ip.dummynet.io_pkt
2855 Number of packets passed to
2856 .Nm dummynet .
2857 .It Va net.inet.ip.dummynet.io_pkt_drop
2858 Number of packets dropped by
2859 .Nm dummynet .
2860 .It Va net.inet.ip.dummynet.io_pkt_fast
2861 Number of packets bypassed by the
2862 .Nm dummynet
2863 scheduler.
2864 .It Va net.inet.ip.dummynet.max_chain_len : No 16
2865 Target value for the maximum number of pipes/queues in a hash bucket.
2866 The product
2867 .Cm max_chain_len*hash_size
2868 is used to determine the threshold over which empty pipes/queues
2869 will be expired even when
2870 .Cm net.inet.ip.dummynet.expire=0 .
2871 .It Va net.inet.ip.dummynet.red_lookup_depth : No 256
2872 .It Va net.inet.ip.dummynet.red_avg_pkt_size : No 512
2873 .It Va net.inet.ip.dummynet.red_max_pkt_size : No 1500
2874 Parameters used in the computations of the drop probability
2875 for the RED algorithm.
2876 .It Va net.inet.ip.dummynet.pipe_byte_limit : No 1048576
2877 .It Va net.inet.ip.dummynet.pipe_slot_limit : No 100
2878 The maximum queue size that can be specified in bytes or packets.
2879 These limits prevent accidental exhaustion of resources such as mbufs.
2880 If you raise these limits,
2881 you should make sure the system is configured so that sufficient resources
2882 are available.
2883 .It Va net.inet.ip.fw.autoinc_step : No 100
2884 Delta between rule numbers when auto-generating them.
2885 The value must be in the range 1..1000.
2886 .It Va net.inet.ip.fw.curr_dyn_buckets : Va net.inet.ip.fw.dyn_buckets
2887 The current number of buckets in the hash table for dynamic rules
2888 (readonly).
2889 .It Va net.inet.ip.fw.debug : No 1
2890 Controls debugging messages produced by
2891 .Nm .
2892 .It Va net.inet.ip.fw.default_rule : No 65535
2893 The default rule number (read-only).
2894 By the design of
2895 .Nm , the default rule is the last one, so its number
2896 can also serve as the highest number allowed for a rule.
2897 .It Va net.inet.ip.fw.dyn_buckets : No 256
2898 The number of buckets in the hash table for dynamic rules.
2899 Must be a power of 2, up to 65536.
2900 It only takes effect when all dynamic rules have expired, so you
2901 are advised to use a
2902 .Cm flush
2903 command to make sure that the hash table is resized.
2904 .It Va net.inet.ip.fw.dyn_count : No 3
2905 Current number of dynamic rules
2906 (read-only).
2907 .It Va net.inet.ip.fw.dyn_keepalive : No 1
2908 Enables generation of keepalive packets for
2909 .Cm keep-state
2910 rules on TCP sessions.
2911 A keepalive is generated to both
2912 sides of the connection every 5 seconds for the last 20
2913 seconds of the lifetime of the rule.
2914 .It Va net.inet.ip.fw.dyn_max : No 8192
2915 Maximum number of dynamic rules.
2916 When you hit this limit, no more dynamic rules can be
2917 installed until old ones expire.
2918 .It Va net.inet.ip.fw.dyn_ack_lifetime : No 300
2919 .It Va net.inet.ip.fw.dyn_syn_lifetime : No 20
2920 .It Va net.inet.ip.fw.dyn_fin_lifetime : No 1
2921 .It Va net.inet.ip.fw.dyn_rst_lifetime : No 1
2922 .It Va net.inet.ip.fw.dyn_udp_lifetime : No 5
2923 .It Va net.inet.ip.fw.dyn_short_lifetime : No 30
2924 These variables control the lifetime, in seconds, of dynamic
2925 rules.
2926 Upon the initial SYN exchange the lifetime is kept short,
2927 then increased after both SYN have been seen, then decreased
2928 again during the final FIN exchange or when a RST is received.
2929 Both
2930 .Em dyn_fin_lifetime
2931 and
2932 .Em dyn_rst_lifetime
2933 must be strictly lower than 5 seconds, the period of
2934 repetition of keepalives.
2935 The firewall enforces that.
2936 .It Va net.inet.ip.fw.enable : No 1
2937 Enables the firewall.
2938 Setting this variable to 0 lets you run your machine without
2939 firewall even if compiled in.
2940 .It Va net.inet6.ip6.fw.enable : No 1
2941 provides the same functionality as above for the IPv6 case.
2942 .It Va net.inet.ip.fw.one_pass : No 1
2943 When set, the packet exiting from the
2944 .Nm dummynet
2945 pipe or from
2946 .Xr ng_ipfw 4
2947 node is not passed though the firewall again.
2948 Otherwise, after an action, the packet is
2949 reinjected into the firewall at the next rule.
2950 .It Va net.inet.ip.fw.tables_max : No 128
2951 Maximum number of tables.
2952 .It Va net.inet.ip.fw.verbose : No 1
2953 Enables verbose messages.
2954 .It Va net.inet.ip.fw.verbose_limit : No 0
2955 Limits the number of messages produced by a verbose firewall.
2956 .It Va net.inet6.ip6.fw.deny_unknown_exthdrs : No 1
2957 If enabled packets with unknown IPv6 Extension Headers will be denied.
2958 .It Va net.link.ether.ipfw : No 0
2959 Controls whether layer-2 packets are passed to
2960 .Nm .
2961 Default is no.
2962 .It Va net.link.bridge.ipfw : No 0
2963 Controls whether bridged packets are passed to
2964 .Nm .
2965 Default is no.
2966 .El
2967 .Sh EXAMPLES
2968 There are far too many possible uses of
2969 .Nm
2970 so this Section will only give a small set of examples.
2971 .Pp
2972 .Ss BASIC PACKET FILTERING
2973 This command adds an entry which denies all tcp packets from
2974 .Em cracker.evil.org
2975 to the telnet port of
2976 .Em wolf.tambov.su
2977 from being forwarded by the host:
2978 .Pp
2979 .Dl "ipfw add deny tcp from cracker.evil.org to wolf.tambov.su telnet"
2980 .Pp
2981 This one disallows any connection from the entire cracker's
2982 network to my host:
2983 .Pp
2984 .Dl "ipfw add deny ip from 123.45.67.0/24 to my.host.org"
2985 .Pp
2986 A first and efficient way to limit access (not using dynamic rules)
2987 is the use of the following rules:
2988 .Pp
2989 .Dl "ipfw add allow tcp from any to any established"
2990 .Dl "ipfw add allow tcp from net1 portlist1 to net2 portlist2 setup"
2991 .Dl "ipfw add allow tcp from net3 portlist3 to net3 portlist3 setup"
2992 .Dl "..."
2993 .Dl "ipfw add deny tcp from any to any"
2994 .Pp
2995 The first rule will be a quick match for normal TCP packets,
2996 but it will not match the initial SYN packet, which will be
2997 matched by the
2998 .Cm setup
2999 rules only for selected source/destination pairs.
3000 All other SYN packets will be rejected by the final
3001 .Cm deny
3002 rule.
3003 .Pp
3004 If you administer one or more subnets, you can take advantage
3005 of the address sets and or-blocks and write extremely
3006 compact rulesets which selectively enable services to blocks
3007 of clients, as below:
3008 .Pp
3009 .Dl "goodguys=\*q{ 10.1.2.0/24{20,35,66,18} or 10.2.3.0/28{6,3,11} }\*q"
3010 .Dl "badguys=\*q10.1.2.0/24{8,38,60}\*q"
3011 .Dl ""
3012 .Dl "ipfw add allow ip from ${goodguys} to any"
3013 .Dl "ipfw add deny ip from ${badguys} to any"
3014 .Dl "... normal policies ..."
3015 .Pp
3016 The
3017 .Cm verrevpath
3018 option could be used to do automated anti-spoofing by adding the
3019 following to the top of a ruleset:
3020 .Pp
3021 .Dl "ipfw add deny ip from any to any not verrevpath in"
3022 .Pp
3023 This rule drops all incoming packets that appear to be coming to the
3024 system on the wrong interface.
3025 For example, a packet with a source
3026 address belonging to a host on a protected internal network would be
3027 dropped if it tried to enter the system from an external interface.
3028 .Pp
3029 The
3030 .Cm antispoof
3031 option could be used to do similar but more restricted anti-spoofing
3032 by adding the following to the top of a ruleset:
3033 .Pp
3034 .Dl "ipfw add deny ip from any to any not antispoof in"
3035 .Pp
3036 This rule drops all incoming packets that appear to be coming from another
3037 directly connected system but on the wrong interface.
3038 For example, a packet with a source address of
3039 .Li 192.168.0.0/24 ,
3040 configured on
3041 .Li fxp0 ,
3042 but coming in on
3043 .Li fxp1
3044 would be dropped.
3045 .Pp
3046 The
3047 .Cm setdscp
3048 option could be used to (re)mark user traffic,
3049 by adding the following to the appropriate place in ruleset:
3050 .Pp
3051 .Dl "ipfw add setdscp be ip from any to any dscp af11,af21"
3052 .Ss DYNAMIC RULES
3053 In order to protect a site from flood attacks involving fake
3054 TCP packets, it is safer to use dynamic rules:
3055 .Pp
3056 .Dl "ipfw add check-state"
3057 .Dl "ipfw add deny tcp from any to any established"
3058 .Dl "ipfw add allow tcp from my-net to any setup keep-state"
3059 .Pp
3060 This will let the firewall install dynamic rules only for
3061 those connection which start with a regular SYN packet coming
3062 from the inside of our network.
3063 Dynamic rules are checked when encountering the first
3064 occurrence of a
3065 .Cm check-state ,
3066 .Cm keep-state
3067 or
3068 .Cm limit
3069 rule.
3070 A
3071 .Cm check-state
3072 rule should usually be placed near the beginning of the
3073 ruleset to minimize the amount of work scanning the ruleset.
3074 Your mileage may vary.
3075 .Pp
3076 To limit the number of connections a user can open
3077 you can use the following type of rules:
3078 .Pp
3079 .Dl "ipfw add allow tcp from my-net/24 to any setup limit src-addr 10"
3080 .Dl "ipfw add allow tcp from any to me setup limit src-addr 4"
3081 .Pp
3082 The former (assuming it runs on a gateway) will allow each host
3083 on a /24 network to open at most 10 TCP connections.
3084 The latter can be placed on a server to make sure that a single
3085 client does not use more than 4 simultaneous connections.
3086 .Pp
3087 .Em BEWARE :
3088 stateful rules can be subject to denial-of-service attacks
3089 by a SYN-flood which opens a huge number of dynamic rules.
3090 The effects of such attacks can be partially limited by
3091 acting on a set of
3092 .Xr sysctl 8
3093 variables which control the operation of the firewall.
3094 .Pp
3095 Here is a good usage of the
3096 .Cm list
3097 command to see accounting records and timestamp information:
3098 .Pp
3099 .Dl ipfw -at list
3100 .Pp
3101 or in short form without timestamps:
3102 .Pp
3103 .Dl ipfw -a list
3104 .Pp
3105 which is equivalent to:
3106 .Pp
3107 .Dl ipfw show
3108 .Pp
3109 Next rule diverts all incoming packets from 192.168.2.0/24
3110 to divert port 5000:
3111 .Pp
3112 .Dl ipfw divert 5000 ip from 192.168.2.0/24 to any in
3113 .Ss TRAFFIC SHAPING
3114 The following rules show some of the applications of
3115 .Nm
3116 and
3117 .Nm dummynet
3118 for simulations and the like.
3119 .Pp
3120 This rule drops random incoming packets with a probability
3121 of 5%:
3122 .Pp
3123 .Dl "ipfw add prob 0.05 deny ip from any to any in"
3124 .Pp
3125 A similar effect can be achieved making use of
3126 .Nm dummynet
3127 pipes:
3128 .Pp
3129 .Dl "ipfw add pipe 10 ip from any to any"
3130 .Dl "ipfw pipe 10 config plr 0.05"
3131 .Pp
3132 We can use pipes to artificially limit bandwidth, e.g.\& on a
3133 machine acting as a router, if we want to limit traffic from
3134 local clients on 192.168.2.0/24 we do:
3135 .Pp
3136 .Dl "ipfw add pipe 1 ip from 192.168.2.0/24 to any out"
3137 .Dl "ipfw pipe 1 config bw 300Kbit/s queue 50KBytes"
3138 .Pp
3139 note that we use the
3140 .Cm out
3141 modifier so that the rule is not used twice.
3142 Remember in fact that
3143 .Nm
3144 rules are checked both on incoming and outgoing packets.
3145 .Pp
3146 Should we want to simulate a bidirectional link with bandwidth
3147 limitations, the correct way is the following:
3148 .Pp
3149 .Dl "ipfw add pipe 1 ip from any to any out"
3150 .Dl "ipfw add pipe 2 ip from any to any in"
3151 .Dl "ipfw pipe 1 config bw 64Kbit/s queue 10Kbytes"
3152 .Dl "ipfw pipe 2 config bw 64Kbit/s queue 10Kbytes"
3153 .Pp
3154 The above can be very useful, e.g.\& if you want to see how
3155 your fancy Web page will look for a residential user who
3156 is connected only through a slow link.
3157 You should not use only one pipe for both directions, unless
3158 you want to simulate a half-duplex medium (e.g.\& AppleTalk,
3159 Ethernet, IRDA).
3160 It is not necessary that both pipes have the same configuration,
3161 so we can also simulate asymmetric links.
3162 .Pp
3163 Should we want to verify network performance with the RED queue
3164 management algorithm:
3165 .Pp
3166 .Dl "ipfw add pipe 1 ip from any to any"
3167 .Dl "ipfw pipe 1 config bw 500Kbit/s queue 100 red 0.002/30/80/0.1"
3168 .Pp
3169 Another typical application of the traffic shaper is to
3170 introduce some delay in the communication.
3171 This can significantly affect applications which do a lot of Remote
3172 Procedure Calls, and where the round-trip-time of the
3173 connection often becomes a limiting factor much more than
3174 bandwidth:
3175 .Pp
3176 .Dl "ipfw add pipe 1 ip from any to any out"
3177 .Dl "ipfw add pipe 2 ip from any to any in"
3178 .Dl "ipfw pipe 1 config delay 250ms bw 1Mbit/s"
3179 .Dl "ipfw pipe 2 config delay 250ms bw 1Mbit/s"
3180 .Pp
3181 Per-flow queueing can be useful for a variety of purposes.
3182 A very simple one is counting traffic:
3183 .Pp
3184 .Dl "ipfw add pipe 1 tcp from any to any"
3185 .Dl "ipfw add pipe 1 udp from any to any"
3186 .Dl "ipfw add pipe 1 ip from any to any"
3187 .Dl "ipfw pipe 1 config mask all"
3188 .Pp
3189 The above set of rules will create queues (and collect
3190 statistics) for all traffic.
3191 Because the pipes have no limitations, the only effect is
3192 collecting statistics.
3193 Note that we need 3 rules, not just the last one, because
3194 when
3195 .Nm
3196 tries to match IP packets it will not consider ports, so we
3197 would not see connections on separate ports as different
3198 ones.
3199 .Pp
3200 A more sophisticated example is limiting the outbound traffic
3201 on a net with per-host limits, rather than per-network limits:
3202 .Pp
3203 .Dl "ipfw add pipe 1 ip from 192.168.2.0/24 to any out"
3204 .Dl "ipfw add pipe 2 ip from any to 192.168.2.0/24 in"
3205 .Dl "ipfw pipe 1 config mask src-ip 0x000000ff bw 200Kbit/s queue 20Kbytes"
3206 .Dl "ipfw pipe 2 config mask dst-ip 0x000000ff bw 200Kbit/s queue 20Kbytes"
3207 .Ss LOOKUP TABLES
3208 In the following example, we need to create several traffic bandwidth
3209 classes and we need different hosts/networks to fall into different classes.
3210 We create one pipe for each class and configure them accordingly.
3211 Then we create a single table and fill it with IP subnets and addresses.
3212 For each subnet/host we set the argument equal to the number of the pipe
3213 that it should use.
3214 Then we classify traffic using a single rule:
3215 .Pp
3216 .Dl "ipfw pipe 1 config bw 1000Kbyte/s"
3217 .Dl "ipfw pipe 4 config bw 4000Kbyte/s"
3218 .Dl "..."
3219 .Dl "ipfw table 1 add 192.168.2.0/24 1"
3220 .Dl "ipfw table 1 add 192.168.0.0/27 4"
3221 .Dl "ipfw table 1 add 192.168.0.2 1"
3222 .Dl "..."
3223 .Dl "ipfw add pipe tablearg ip from table(1) to any"
3224 .Pp
3225 Using the
3226 .Cm fwd
3227 action, the table entries may include hostnames and IP addresses.
3228 .Pp
3229 .Dl "ipfw table 1 add 192.168.2.0/24 10.23.2.1"
3230 .Dl "ipfw table 1 add 192.168.0.0/27 router1.dmz"
3231 .Dl "..."
3232 .Dl "ipfw add 100 fwd tablearg ip from any to table(1)"
3233 .Pp
3234 In the following example per-interface firewall is created:
3235 .Pp
3236 .Dl "ipfw table 10 add vlan20 12000"
3237 .Dl "ipfw table 10 add vlan30 13000"
3238 .Dl "ipfw table 20 add vlan20 22000"
3239 .Dl "ipfw table 20 add vlan30 23000"
3240 .Dl ".."
3241 .Dl "ipfw add 100 ipfw skipto tablearg ip from any to any recv 'table(10)' in"
3242 .Dl "ipfw add 200 ipfw skipto tablearg ip from any to any xmit 'table(10)' out"
3243 .Ss SETS OF RULES
3244 To add a set of rules atomically, e.g.\& set 18:
3245 .Pp
3246 .Dl "ipfw set disable 18"
3247 .Dl "ipfw add NN set 18 ...         # repeat as needed"
3248 .Dl "ipfw set enable 18"
3249 .Pp
3250 To delete a set of rules atomically the command is simply:
3251 .Pp
3252 .Dl "ipfw delete set 18"
3253 .Pp
3254 To test a ruleset and disable it and regain control if something goes wrong:
3255 .Pp
3256 .Dl "ipfw set disable 18"
3257 .Dl "ipfw add NN set 18 ...         # repeat as needed"
3258 .Dl "ipfw set enable 18; echo done; sleep 30 && ipfw set disable 18"
3259 .Pp
3260 Here if everything goes well, you press control-C before the "sleep"
3261 terminates, and your ruleset will be left active.
3262 Otherwise, e.g.\& if
3263 you cannot access your box, the ruleset will be disabled after
3264 the sleep terminates thus restoring the previous situation.
3265 .Pp
3266 To show rules of the specific set:
3267 .Pp
3268 .Dl "ipfw set 18 show"
3269 .Pp
3270 To show rules of the disabled set:
3271 .Pp
3272 .Dl "ipfw -S set 18 show"
3273 .Pp
3274 To clear a specific rule counters of the specific set:
3275 .Pp
3276 .Dl "ipfw set 18 zero NN"
3277 .Pp
3278 To delete a specific rule of the specific set:
3279 .Pp
3280 .Dl "ipfw set 18 delete NN"
3281 .Ss NAT, REDIRECT AND LSNAT
3282 First redirect all the traffic to nat instance 123:
3283 .Pp
3284 .Dl "ipfw add nat 123 all from any to any"
3285 .Pp
3286 Then to configure nat instance 123 to alias all the outgoing traffic with ip
3287 192.168.0.123, blocking all incoming connections, trying to keep
3288 same ports on both sides, clearing aliasing table on address change
3289 and keeping a log of traffic/link statistics:
3290 .Pp
3291 .Dl "ipfw nat 123 config ip 192.168.0.123 log deny_in reset same_ports"
3292 .Pp
3293 Or to change address of instance 123, aliasing table will be cleared (see
3294 reset option):
3295 .Pp
3296 .Dl "ipfw nat 123 config ip 10.0.0.1"
3297 .Pp
3298 To see configuration of nat instance 123:
3299 .Pp
3300 .Dl "ipfw nat 123 show config"
3301 .Pp
3302 To show logs of all the instances in range 111-999:
3303 .Pp
3304 .Dl "ipfw nat 111-999 show"
3305 .Pp
3306 To see configurations of all instances:
3307 .Pp
3308 .Dl "ipfw nat show config"
3309 .Pp
3310 Or a redirect rule with mixed modes could looks like:
3311 .Pp
3312 .Dl "ipfw nat 123 config redirect_addr 10.0.0.1 10.0.0.66"
3313 .Dl "                    redirect_port tcp 192.168.0.1:80 500"
3314 .Dl "                    redirect_proto udp 192.168.1.43 192.168.1.1"
3315 .Dl "                    redirect_addr 192.168.0.10,192.168.0.11"
3316 .Dl "                               10.0.0.100  # LSNAT"
3317 .Dl "                    redirect_port tcp 192.168.0.1:80,192.168.0.10:22"
3318 .Dl "                               500         # LSNAT"
3319 .Pp
3320 or it could be split in:
3321 .Pp
3322 .Dl "ipfw nat 1 config redirect_addr 10.0.0.1 10.0.0.66"
3323 .Dl "ipfw nat 2 config redirect_port tcp 192.168.0.1:80 500"
3324 .Dl "ipfw nat 3 config redirect_proto udp 192.168.1.43 192.168.1.1"
3325 .Dl "ipfw nat 4 config redirect_addr 192.168.0.10,192.168.0.11,192.168.0.12"
3326 .Dl "                                    10.0.0.100"
3327 .Dl "ipfw nat 5 config redirect_port tcp"
3328 .Dl "                   192.168.0.1:80,192.168.0.10:22,192.168.0.20:25 500"
3329 .Sh SEE ALSO
3330 .Xr cpp 1 ,
3331 .Xr m4 1 ,
3332 .Xr altq 4 ,
3333 .Xr divert 4 ,
3334 .Xr dummynet 4 ,
3335 .Xr if_bridge 4 ,
3336 .Xr ip 4 ,
3337 .Xr ipfirewall 4 ,
3338 .Xr ng_ipfw 4 ,
3339 .Xr protocols 5 ,
3340 .Xr services 5 ,
3341 .Xr init 8 ,
3342 .Xr kldload 8 ,
3343 .Xr reboot 8 ,
3344 .Xr sysctl 8 ,
3345 .Xr syslogd 8
3346 .Sh HISTORY
3347 The
3348 .Nm
3349 utility first appeared in
3350 .Fx 2.0 .
3351 .Nm dummynet
3352 was introduced in
3353 .Fx 2.2.8 .
3354 Stateful extensions were introduced in
3355 .Fx 4.0 .
3356 .Nm ipfw2
3357 was introduced in Summer 2002.
3358 .Sh AUTHORS
3359 .An Ugen J. S. Antsilevich ,
3360 .An Poul-Henning Kamp ,
3361 .An Alex Nash ,
3362 .An Archie Cobbs ,
3363 .An Luigi Rizzo .
3364 .Pp
3365 .An -nosplit
3366 API based upon code written by
3367 .An Daniel Boulet
3368 for BSDI.
3369 .Pp
3370 Dummynet has been introduced by Luigi Rizzo in 1997-1998.
3371 .Pp
3372 Some early work (1999-2000) on the
3373 .Nm dummynet
3374 traffic shaper supported by Akamba Corp.
3375 .Pp
3376 The ipfw core (ipfw2) has been completely redesigned and
3377 reimplemented by Luigi Rizzo in summer 2002.
3378 Further
3379 actions and
3380 options have been added by various developer over the years.
3381 .Pp
3382 .An -nosplit
3383 In-kernel NAT support written by
3384 .An Paolo Pisati Aq piso@FreeBSD.org
3385 as part of a Summer of Code 2005 project.
3386 .Pp
3387 SCTP
3388 .Nm nat
3389 support has been developed by
3390 .An The Centre for Advanced Internet Architectures (CAIA) Aq http://www.caia.swin.edu.au .
3391 The primary developers and maintainers are David Hayes and Jason But.
3392 For further information visit:
3393 .Aq http://www.caia.swin.edu.au/urp/SONATA
3394 .Pp
3395 Delay profiles have been developed by Alessandro Cerri and
3396 Luigi Rizzo, supported by the
3397 European Commission within Projects Onelab and Onelab2.
3398 .Sh BUGS
3399 The syntax has grown over the years and sometimes it might be confusing.
3400 Unfortunately, backward compatibility prevents cleaning up mistakes
3401 made in the definition of the syntax.
3402 .Pp
3403 .Em !!! WARNING !!!
3404 .Pp
3405 Misconfiguring the firewall can put your computer in an unusable state,
3406 possibly shutting down network services and requiring console access to
3407 regain control of it.
3408 .Pp
3409 Incoming packet fragments diverted by
3410 .Cm divert
3411 are reassembled before delivery to the socket.
3412 The action used on those packet is the one from the
3413 rule which matches the first fragment of the packet.
3414 .Pp
3415 Packets diverted to userland, and then reinserted by a userland process
3416 may lose various packet attributes.
3417 The packet source interface name
3418 will be preserved if it is shorter than 8 bytes and the userland process
3419 saves and reuses the sockaddr_in
3420 (as does
3421 .Xr natd 8 ) ;
3422 otherwise, it may be lost.
3423 If a packet is reinserted in this manner, later rules may be incorrectly
3424 applied, making the order of
3425 .Cm divert
3426 rules in the rule sequence very important.
3427 .Pp
3428 Dummynet drops all packets with IPv6 link-local addresses.
3429 .Pp
3430 Rules using
3431 .Cm uid
3432 or
3433 .Cm gid
3434 may not behave as expected.
3435 In particular, incoming SYN packets may
3436 have no uid or gid associated with them since they do not yet belong
3437 to a TCP connection, and the uid/gid associated with a packet may not
3438 be as expected if the associated process calls
3439 .Xr setuid 2
3440 or similar system calls.
3441 .Pp
3442 Rule syntax is subject to the command line environment and some patterns
3443 may need to be escaped with the backslash character
3444 or quoted appropriately.
3445 .Pp
3446 Due to the architecture of
3447 .Xr libalias 3 ,
3448 ipfw nat is not compatible with the TCP segmentation offloading (TSO).
3449 Thus, to reliably nat your network traffic, please disable TSO
3450 on your NICs using
3451 .Xr ifconfig 8 .
3452 .Pp
3453 ICMP error messages are not implicitly matched by dynamic rules
3454 for the respective conversations.
3455 To avoid failures of network error detection and path MTU discovery,
3456 ICMP error messages may need to be allowed explicitly through static
3457 rules.
3458 .Pp
3459 Rules using
3460 .Cm call
3461 and
3462 .Cm return
3463 actions may lead to confusing behaviour if ruleset has mistakes,
3464 and/or interaction with other subsystems (netgraph, dummynet, etc.) is used.
3465 One possible case for this is packet leaving
3466 .Nm
3467 in subroutine on the input pass, while later on output encountering unpaired
3468 .Cm return
3469 first.
3470 As the call stack is kept intact after input pass, packet will suddenly
3471 return to the rule number used on input pass, not on output one.
3472 Order of processing should be checked carefully to avoid such mistakes.