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