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