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