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