manpages: do not include v4-only modules in ip6tables manpage
[jleu-iptables.git] / iptables.8.in
blob10dcb73407805ac999ab6bdf63f5c7634c55987f
1 .TH IPTABLES 8 "" "@PACKAGE_AND_VERSION@" "@PACKAGE_AND_VERSION@"
2 .\"
3 .\" Man page written by Herve Eychenne <rv@wallfire.org> (May 1999)
4 .\" It is based on ipchains page.
5 .\" TODO: add a word for protocol helpers (FTP, IRC, SNMP-ALG)
6 .\"
7 .\" ipchains page by Paul ``Rusty'' Russell March 1997
8 .\" Based on the original ipfwadm man page by Jos Vos <jos@xos.nl>
9 .\"
10 .\"     This program is free software; you can redistribute it and/or modify
11 .\"     it under the terms of the GNU General Public License as published by
12 .\"     the Free Software Foundation; either version 2 of the License, or
13 .\"     (at your option) any later version.
14 .\"
15 .\"     This program is distributed in the hope that it will be useful,
16 .\"     but WITHOUT ANY WARRANTY; without even the implied warranty of
17 .\"     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 .\"     GNU General Public License for more details.
19 .\"
20 .\"     You should have received a copy of the GNU General Public License
21 .\"     along with this program; if not, write to the Free Software
22 .\"     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 .\"
24 .\"
25 .SH NAME
26 iptables - administration tool for IPv4 packet filtering and NAT
27 .SH SYNOPSIS
28 \fBiptables\fP [\fB\-t\fP \fItable\fP] {\fB\-A\fP|\fB\-D\fP} \fIchain\fP \fIrule-specification\fP
29 .PP
30 \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-I\fP \fIchain\fP [\fIrulenum\fP] \fIrule-specification\fP
31 .PP
32 \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-R\fP \fIchain rulenum rule-specification\fP
33 .PP
34 \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-D\fP \fIchain rulenum\fP
35 .PP
36 \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-S\fP [\fIchain\fP [\fIrulenum\fP]]
37 .PP
38 \fBiptables\fP [\fB\-t\fP \fItable\fP] {\fB\-F\fP|\fB\-L\fP|\fB\-Z\fP} [\fIchain\fP] [\fIoptions...\fP]
39 .PP
40 \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-N\fP \fIchain\fP
41 .PP
42 \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-X\fP [\fIchain\fP]
43 .PP
44 \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-P\fP \fIchain target\fP
45 .PP
46 \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-E\fP \fIold-chain-name new-chain-name\fP
47 .PP
48 rule-specification = [\fImatches...\fP] [\fItarget\fP]
49 .PP
50 match = \fB\-m\fP \fImatchname\fP [\fIper-match-options\fP]
51 .PP
52 target = \fB\-j\fP \fItargetname\fP [\fIper\-target\-options\fP]
53 .SH DESCRIPTION
54 \fBIptables\fP is used to set up, maintain, and inspect the
55 tables of IPv4 packet
56 filter rules in the Linux kernel.  Several different tables
57 may be defined.  Each table contains a number of built-in
58 chains and may also contain user-defined chains.
59 .PP
60 Each chain is a list of rules which can match a set of packets.  Each
61 rule specifies what to do with a packet that matches.  This is called
62 a `target', which may be a jump to a user-defined chain in the same
63 table.
64 .SH TARGETS
65 A firewall rule specifies criteria for a packet and a target.  If the
66 packet does not match, the next rule in the chain is the examined; if
67 it does match, then the next rule is specified by the value of the
68 target, which can be the name of a user-defined chain or one of the
69 special values \fBACCEPT\fP, \fBDROP\fP, \fBQUEUE\fP or \fBRETURN\fP.
70 .PP
71 \fBACCEPT\fP means to let the packet through.
72 \fBDROP\fP means to drop the packet on the floor.
73 \fBQUEUE\fP means to pass the packet to userspace.
74 (How the packet can be received
75 by a userspace process differs by the particular queue handler.  2.4.x
76 and 2.6.x kernels up to 2.6.13 include the \fBip_queue\fP
77 queue handler.  Kernels 2.6.14 and later additionally include the
78 \fBnfnetlink_queue\fP queue handler.  Packets with a target of QUEUE will be
79 sent to queue number '0' in this case. Please also see the \fBNFQUEUE\fP
80 target as described later in this man page.)
81 \fBRETURN\fP means stop traversing this chain and resume at the next
82 rule in the
83 previous (calling) chain.  If the end of a built-in chain is reached
84 or a rule in a built-in chain with target \fBRETURN\fP
85 is matched, the target specified by the chain policy determines the
86 fate of the packet.
87 .SH TABLES
88 There are currently three independent tables (which tables are present
89 at any time depends on the kernel configuration options and which
90 modules are present).
91 .TP
92 \fB\-t\fP, \fB\-\-table\fP \fItable\fP
93 This option specifies the packet matching table which the command
94 should operate on.  If the kernel is configured with automatic module
95 loading, an attempt will be made to load the appropriate module for
96 that table if it is not already there.
98 The tables are as follows:
99 .RS
100 .TP .4i
101 \fBfilter\fP:
102 This is the default table (if no \-t option is passed). It contains
103 the built-in chains \fBINPUT\fP (for packets destined to local sockets),
104 \fBFORWARD\fP (for packets being routed through the box), and
105 \fBOUTPUT\fP (for locally-generated packets).
107 \fBnat\fP:
108 This table is consulted when a packet that creates a new
109 connection is encountered.  It consists of three built-ins: \fBPREROUTING\fP
110 (for altering packets as soon as they come in), \fBOUTPUT\fP
111 (for altering locally-generated packets before routing), and \fBPOSTROUTING\fP
112 (for altering packets as they are about to go out).
114 \fBmangle\fP:
115 This table is used for specialized packet alteration.  Until kernel
116 2.4.17 it had two built-in chains: \fBPREROUTING\fP
117 (for altering incoming packets before routing) and \fBOUTPUT\fP
118 (for altering locally-generated packets before routing).
119 Since kernel 2.4.18, three other built-in chains are also supported:
120 \fBINPUT\fP (for packets coming into the box itself), \fBFORWARD\fP
121 (for altering packets being routed through the box), and \fBPOSTROUTING\fP
122 (for altering packets as they are about to go out).
124 \fBraw\fP:
125 This table is used mainly for configuring exemptions from connection
126 tracking in combination with the NOTRACK target.  It registers at the netfilter
127 hooks with higher priority and is thus called before ip_conntrack, or any other
128 IP tables.  It provides the following built-in chains: \fBPREROUTING\fP
129 (for packets arriving via any network interface) \fBOUTPUT\fP
130 (for packets generated by local processes)
132 .SH OPTIONS
133 The options that are recognized by
134 \fBiptables\fP can be divided into several different groups.
135 .SS COMMANDS
136 These options specify the desired action to perform. Only one of them
137 can be specified on the command line unless otherwise stated
138 below. For long versions of the command and option names, you
139 need to use only enough letters to ensure that
140 \fBiptables\fP can differentiate it from all other options.
142 \fB\-A\fP, \fB\-\-append\fP \fIchain rule-specification\fP
143 Append one or more rules to the end of the selected chain.
144 When the source and/or destination names resolve to more than one
145 address, a rule will be added for each possible address combination.
147 \fB\-D\fP, \fB\-\-delete\fP \fIchain rule-specification\fP
150 \fB\-D\fP, \fB\-\-delete\fP \fIchain rulenum\fP
151 Delete one or more rules from the selected chain.  There are two
152 versions of this command: the rule can be specified as a number in the
153 chain (starting at 1 for the first rule) or a rule to match.
155 \fB\-I\fP, \fB\-\-insert\fP \fIchain\fP [\fIrulenum\fP] \fIrule-specification\fP
156 Insert one or more rules in the selected chain as the given rule
157 number.  So, if the rule number is 1, the rule or rules are inserted
158 at the head of the chain.  This is also the default if no rule number
159 is specified.
161 \fB\-R\fP, \fB\-\-replace\fP \fIchain rulenum rule-specification\fP
162 Replace a rule in the selected chain.  If the source and/or
163 destination names resolve to multiple addresses, the command will
164 fail.  Rules are numbered starting at 1.
166 \fB\-L\fP, \fB\-\-list\fP [\fIchain\fP]
167 List all rules in the selected chain.  If no chain is selected, all
168 chains are listed. Like every other iptables command, it applies to the
169 specified table (filter is the default), so NAT rules get listed by
171  iptables \-t nat \-n \-L
173 Please note that it is often used with the \fB\-n\fP
174 option, in order to avoid long reverse DNS lookups.
175 It is legal to specify the \fB\-Z\fP
176 (zero) option as well, in which case the chain(s) will be atomically
177 listed and zeroed.  The exact output is affected by the other
178 arguments given. The exact rules are suppressed until you use
180  iptables \-L \-v
183 \fB\-S\fP, \fB\-\-list\-rules\fP [\fIchain\fP]
184 Print all rules in the selected chain.  If no chain is selected, all
185 chains are printed like iptables\-save. Like every other iptables command,
186 it applies to the specified table (filter is the default).
188 \fB\-F\fP, \fB\-\-flush\fP [\fIchain\fP]
189 Flush the selected chain (all the chains in the table if none is given).
190 This is equivalent to deleting all the rules one by one.
192 \fB\-Z\fP, \fB\-\-zero\fP [\fIchain\fP]
193 Zero the packet and byte counters in all chains.  It is legal to
194 specify the
195 \fB\-L\fP, \fB\-\-list\fP
196 (list) option as well, to see the counters immediately before they are
197 cleared. (See above.)
199 \fB\-N\fP, \fB\-\-new\-chain\fP \fIchain\fP
200 Create a new user-defined chain by the given name.  There must be no
201 target of that name already.
203 \fB\-X\fP, \fB\-\-delete\-chain\fP [\fIchain\fP]
204 Delete the optional user-defined chain specified.  There must be no references
205 to the chain.  If there are, you must delete or replace the referring rules
206 before the chain can be deleted.  The chain must be empty, i.e. not contain
207 any rules.  If no argument is given, it will attempt to delete every
208 non-builtin chain in the table.
210 \fB\-P\fP, \fB\-\-policy\fP \fIchain target\fP
211 Set the policy for the chain to the given target.  See the section \fBTARGETS\fP
212 for the legal targets.  Only built-in (non-user-defined) chains can have
213 policies, and neither built-in nor user-defined chains can be policy
214 targets.
216 \fB\-E\fP, \fB\-\-rename\-chain\fP \fIold\-chain new\-chain\fP
217 Rename the user specified chain to the user supplied name.  This is
218 cosmetic, and has no effect on the structure of the table.
220 \fB\-\h\fP
221 Help.
222 Give a (currently very brief) description of the command syntax.
223 .SS PARAMETERS
224 The following parameters make up a rule specification (as used in the
225 add, delete, insert, replace and append commands).
227 [\fB!\fP] \fB\-p\fP, \fB\-\-protocol\fP \fIprotocol\fP
228 The protocol of the rule or of the packet to check.
229 The specified protocol can be one of \fBtcp\fP, \fBudp\fP, \fBudplite\fP,
230 \fBicmp\fP, \fBesp\fP, \fBah\fP, \fBsctp\fP or \fBall\fP,
231 or it can be a numeric value, representing one of these protocols or a
232 different one.  A protocol name from /etc/protocols is also allowed.
233 A "!" argument before the protocol inverts the
234 test.  The number zero is equivalent to \fBall\fP.
235 Protocol \fBall\fP
236 will match with all protocols and is taken as default when this
237 option is omitted.
239 [\fB!\fP] \fB\-s\fP, \fB\-\-source\fP \fIaddress\fP[\fB/\fP\fImask\fP]
240 Source specification. \fIAddress\fP
241 can be either a network name, a hostname (please note that specifying
242 any name to be resolved with a remote query such as DNS is a really bad idea),
243 a network IP address (with \fB/\fP\fImask\fP), or a plain IP address.
244 The \fImask\fP
245 can be either a network mask or a plain number,
246 specifying the number of 1's at the left side of the network mask.
247 Thus, a mask of \fI24\fP is equivalent to \fI255.255.255.0\fP.
248 A "!" argument before the address specification inverts the sense of
249 the address. The flag \fB\-\-src\fP is an alias for this option.
251 [\fB!\fP] \fB\-d\fP, \fB\-\-destination\fP \fIaddress\fP[\fB/\fP\fImask\fP]
252 Destination specification. 
253 See the description of the \fB\-s\fP
254 (source) flag for a detailed description of the syntax.  The flag
255 \fB\-\-dst\fP is an alias for this option.
257 \fB\-j\fP, \fB\-\-jump\fP \fItarget\fP
258 This specifies the target of the rule; i.e., what to do if the packet
259 matches it.  The target can be a user-defined chain (other than the
260 one this rule is in), one of the special builtin targets which decide
261 the fate of the packet immediately, or an extension (see \fBEXTENSIONS\fP
262 below).  If this
263 option is omitted in a rule (and \fB\-g\fP
264 is not used), then matching the rule will have no
265 effect on the packet's fate, but the counters on the rule will be
266 incremented.
268 \fB\-g\fP, \fB\-\-goto\fP \fIchain\fP
269 This specifies that the processing should continue in a user
270 specified chain. Unlike the \-\-jump option return will not continue
271 processing in this chain but instead in the chain that called us via
272 \-\-jump.
274 [\fB!\fP] \fB\-i\fP, \fB\-\-in\-interface\fP \fIname\fP
275 Name of an interface via which a packet was received (only for
276 packets entering the \fBINPUT\fP, \fBFORWARD\fP and \fBPREROUTING\fP
277 chains).  When the "!" argument is used before the interface name, the
278 sense is inverted.  If the interface name ends in a "+", then any
279 interface which begins with this name will match.  If this option is
280 omitted, any interface name will match.
282 [\fB!\fP] \fB\-o\fP, \fB\-\-out\-interface\fP \fIname\fP
283 Name of an interface via which a packet is going to be sent (for packets
284 entering the \fBFORWARD\fP, \fBOUTPUT\fP and \fBPOSTROUTING\fP
285 chains).  When the "!" argument is used before the interface name, the
286 sense is inverted.  If the interface name ends in a "+", then any
287 interface which begins with this name will match.  If this option is
288 omitted, any interface name will match.
290 [\fB!\fP] \fB\-f\fP, \fB\-\-fragment\fP
291 This means that the rule only refers to second and further fragments
292 of fragmented packets.  Since there is no way to tell the source or
293 destination ports of such a packet (or ICMP type), such a packet will
294 not match any rules which specify them.  When the "!" argument
295 precedes the "\-f" flag, the rule will only match head fragments, or
296 unfragmented packets.
298 \fB\-c\fP, \fB\-\-set\-counters\fP \fIpackets bytes\fP
299 This enables the administrator to initialize the packet and byte
300 counters of a rule (during \fBINSERT\fP, \fBAPPEND\fP, \fBREPLACE\fP
301 operations).
302 .SS "OTHER OPTIONS"
303 The following additional options can be specified:
305 \fB\-v\fP, \fB\-\-verbose\fP
306 Verbose output.  This option makes the list command show the interface
307 name, the rule options (if any), and the TOS masks.  The packet and
308 byte counters are also listed, with the suffix 'K', 'M' or 'G' for
309 1000, 1,000,000 and 1,000,000,000 multipliers respectively (but see
310 the \fB\-x\fP flag to change this).
311 For appending, insertion, deletion and replacement, this causes
312 detailed information on the rule or rules to be printed.
314 \fB\-n\fP, \fB\-\-numeric\fP
315 Numeric output.
316 IP addresses and port numbers will be printed in numeric format.
317 By default, the program will try to display them as host names,
318 network names, or services (whenever applicable).
320 \fB\-x\fP, \fB\-\-exact\fP
321 Expand numbers.
322 Display the exact value of the packet and byte counters,
323 instead of only the rounded number in K's (multiples of 1000)
324 M's (multiples of 1000K) or G's (multiples of 1000M).  This option is
325 only relevant for the \fB\-L\fP command.
327 \fB\-\-line\-numbers\fP
328 When listing rules, add line numbers to the beginning of each rule,
329 corresponding to that rule's position in the chain.
331 \fB\-\-modprobe=\fP\fIcommand\fP
332 When adding or inserting rules into a chain, use \fIcommand\fP
333 to load any necessary modules (targets, match extensions, etc).
334 .SH MATCH EXTENSIONS
335 iptables can use extended packet matching modules.  These are loaded
336 in two ways: implicitly, when \fB\-p\fP or \fB\-\-protocol\fP
337 is specified, or with the \fB\-m\fP or \fB\-\-match\fP
338 options, followed by the matching module name; after these, various
339 extra command line options become available, depending on the specific
340 module.  You can specify multiple extended match modules in one line,
341 and you can use the \fB\-h\fP or \fB\-\-help\fP
342 options after the module has been specified to receive help specific
343 to that module.
345 The following are included in the base package, and most of these can
346 be preceded by a "\fB!\fP" to invert the sense of the match.
347 .\" @MATCH@
348 .SH TARGET EXTENSIONS
349 iptables can use extended target modules: the following are included
350 in the standard distribution.
351 .\" @TARGET@
352 .SH DIAGNOSTICS
353 Various error messages are printed to standard error.  The exit code
354 is 0 for correct functioning.  Errors which appear to be caused by
355 invalid or abused command line parameters cause an exit code of 2, and
356 other errors cause an exit code of 1.
357 .SH BUGS
358 Bugs?  What's this? ;-)
359 Well, you might want to have a look at http://bugzilla.netfilter.org/
360 .SH COMPATIBILITY WITH IPCHAINS
361 This \fBiptables\fP
362 is very similar to ipchains by Rusty Russell.  The main difference is
363 that the chains \fBINPUT\fP and \fBOUTPUT\fP
364 are only traversed for packets coming into the local host and
365 originating from the local host respectively.  Hence every packet only
366 passes through one of the three chains (except loopback traffic, which
367 involves both INPUT and OUTPUT chains); previously a forwarded packet
368 would pass through all three.
370 The other main difference is that \fB\-i\fP refers to the input interface;
371 \fB\-o\fP refers to the output interface, and both are available for packets
372 entering the \fBFORWARD\fP chain.
374 The various forms of NAT have been separated out; \fBiptables\fP
375 is a pure packet filter when using the default `filter' table, with
376 optional extension modules.  This should simplify much of the previous
377 confusion over the combination of IP masquerading and packet filtering
378 seen previously.  So the following options are handled differently:
380  \-j MASQ
381  \-M \-S
382  \-M \-L
384 There are several other changes in iptables.
385 .SH SEE ALSO
386 \fBiptables\-save\fP(8),
387 \fBiptables\-restore\fP(8),
388 \fBip6tables\fP(8),
389 \fBip6tables\-save\fP(8),
390 \fBip6tables\-restore\fP(8),
391 \fBlibipq\fP(3).
393 The packet-filtering-HOWTO details iptables usage for
394 packet filtering, the NAT-HOWTO details NAT,
395 the netfilter-extensions-HOWTO details the extensions that are
396 not in the standard distribution,
397 and the netfilter-hacking-HOWTO details the netfilter internals.
400 .BR "http://www.netfilter.org/" .
401 .SH AUTHORS
402 Rusty Russell originally wrote iptables, in early consultation with Michael
403 Neuling.
405 Marc Boucher made Rusty abandon ipnatctl by lobbying for a generic packet
406 selection framework in iptables, then wrote the mangle table, the owner match,
407 the mark stuff, and ran around doing cool stuff everywhere.
409 James Morris wrote the TOS target, and tos match.
411 Jozsef Kadlecsik wrote the REJECT target.
413 Harald Welte wrote the ULOG and NFQUEUE target, the new libiptc, as well as the TTL, DSCP, ECN matches and targets.
415 The Netfilter Core Team is: Marc Boucher, Martin Josefsson, Yasuyuki Kozakai,
416 Jozsef Kadlecsik, Patrick McHardy, James Morris, Pablo Neira Ayuso,
417 Harald Welte and Rusty Russell.
419 Man page originally written by Herve Eychenne <rv@wallfire.org>.
420 .\" .. and did I mention that we are incredibly cool people?
421 .\" .. sexy, too ..
422 .\" .. witty, charming, powerful ..
423 .\" .. and most of all, modest ..