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