iptables.8.in 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  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 \(em administration tool for IPv4 packet filtering and NAT
  27. .SH SYNOPSIS
  28. \fBiptables\fP [\fB\-t\fP \fItable\fP] {\fB\-A\fP|\fB\-C\fP|\fB\-D\fP}
  29. \fIchain\fP \fIrule-specification\fP
  30. .PP
  31. \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-I\fP \fIchain\fP [\fIrulenum\fP] \fIrule-specification\fP
  32. .PP
  33. \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-R\fP \fIchain rulenum rule-specification\fP
  34. .PP
  35. \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-D\fP \fIchain rulenum\fP
  36. .PP
  37. \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-S\fP [\fIchain\fP [\fIrulenum\fP]]
  38. .PP
  39. \fBiptables\fP [\fB\-t\fP \fItable\fP] {\fB\-F\fP|\fB\-L\fP|\fB\-Z\fP} [\fIchain\fP [\fIrulenum\fP]] [\fIoptions...\fP]
  40. .PP
  41. \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-N\fP \fIchain\fP
  42. .PP
  43. \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-X\fP [\fIchain\fP]
  44. .PP
  45. \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-P\fP \fIchain target\fP
  46. .PP
  47. \fBiptables\fP [\fB\-t\fP \fItable\fP] \fB\-E\fP \fIold-chain-name new-chain-name\fP
  48. .PP
  49. rule-specification = [\fImatches...\fP] [\fItarget\fP]
  50. .PP
  51. match = \fB\-m\fP \fImatchname\fP [\fIper-match-options\fP]
  52. .PP
  53. target = \fB\-j\fP \fItargetname\fP [\fIper\-target\-options\fP]
  54. .SH DESCRIPTION
  55. \fBIptables\fP is used to set up, maintain, and inspect the
  56. tables of IPv4 packet
  57. filter rules in the Linux kernel. Several different tables
  58. may be defined. Each table contains a number of built-in
  59. chains and may also contain user-defined chains.
  60. .PP
  61. Each chain is a list of rules which can match a set of packets. Each
  62. rule specifies what to do with a packet that matches. This is called
  63. a `target', which may be a jump to a user-defined chain in the same
  64. table.
  65. .SH TARGETS
  66. A firewall rule specifies criteria for a packet and a target. If the
  67. packet does not match, the next rule in the chain is the examined; if
  68. it does match, then the next rule is specified by the value of the
  69. target, which can be the name of a user-defined chain or one of the
  70. special values \fBACCEPT\fP, \fBDROP\fP, \fBQUEUE\fP or \fBRETURN\fP.
  71. .PP
  72. \fBACCEPT\fP means to let the packet through.
  73. \fBDROP\fP means to drop the packet on the floor.
  74. \fBQUEUE\fP means to pass the packet to userspace.
  75. (How the packet can be received
  76. by a userspace process differs by the particular queue handler. 2.4.x
  77. and 2.6.x kernels up to 2.6.13 include the \fBip_queue\fP
  78. queue handler. Kernels 2.6.14 and later additionally include the
  79. \fBnfnetlink_queue\fP queue handler. Packets with a target of QUEUE will be
  80. sent to queue number '0' in this case. Please also see the \fBNFQUEUE\fP
  81. target as described later in this man page.)
  82. \fBRETURN\fP means stop traversing this chain and resume at the next
  83. rule in the
  84. previous (calling) chain. If the end of a built-in chain is reached
  85. or a rule in a built-in chain with target \fBRETURN\fP
  86. is matched, the target specified by the chain policy determines the
  87. fate of the packet.
  88. .SH TABLES
  89. There are currently five independent tables (which tables are present
  90. at any time depends on the kernel configuration options and which
  91. modules are present).
  92. .TP
  93. \fB\-t\fP, \fB\-\-table\fP \fItable\fP
  94. This option specifies the packet matching table which the command
  95. should operate on. If the kernel is configured with automatic module
  96. loading, an attempt will be made to load the appropriate module for
  97. 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).
  106. .TP
  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).
  113. .TP
  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).
  123. .TP
  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)
  131. .TP
  132. \fBsecurity\fP:
  133. This table is used for Mandatory Access Control (MAC) networking rules, such
  134. as those enabled by the \fBSECMARK\fP and \fBCONNSECMARK\fP targets.
  135. Mandatory Access Control is implemented by Linux Security Modules such as
  136. SELinux. The security table is called after the filter table, allowing any
  137. Discretionary Access Control (DAC) rules in the filter table to take effect
  138. before MAC rules. This table provides the following built-in chains:
  139. \fBINPUT\fP (for packets coming into the box itself),
  140. \fBOUTPUT\fP (for altering locally-generated packets before routing), and
  141. \fBFORWARD\fP (for altering packets being routed through the box).
  142. .RE
  143. .SH OPTIONS
  144. The options that are recognized by
  145. \fBiptables\fP can be divided into several different groups.
  146. .SS COMMANDS
  147. These options specify the desired action to perform. Only one of them
  148. can be specified on the command line unless otherwise stated
  149. below. For long versions of the command and option names, you
  150. need to use only enough letters to ensure that
  151. \fBiptables\fP can differentiate it from all other options.
  152. .TP
  153. \fB\-A\fP, \fB\-\-append\fP \fIchain rule-specification\fP
  154. Append one or more rules to the end of the selected chain.
  155. When the source and/or destination names resolve to more than one
  156. address, a rule will be added for each possible address combination.
  157. .TP
  158. \fB\-C\fP, \fB\-\-check\fP \fIchain rule-specification\fP
  159. Check whether a rule matching the specification does exist in the
  160. selected chain. This command uses the same logic as \fB\-D\fP to
  161. find a matching entry, but does not alter the existing iptables
  162. configuration and uses its exit code to indicate success or failure.
  163. .TP
  164. \fB\-D\fP, \fB\-\-delete\fP \fIchain rule-specification\fP
  165. .ns
  166. .TP
  167. \fB\-D\fP, \fB\-\-delete\fP \fIchain rulenum\fP
  168. Delete one or more rules from the selected chain. There are two
  169. versions of this command: the rule can be specified as a number in the
  170. chain (starting at 1 for the first rule) or a rule to match.
  171. .TP
  172. \fB\-I\fP, \fB\-\-insert\fP \fIchain\fP [\fIrulenum\fP] \fIrule-specification\fP
  173. Insert one or more rules in the selected chain as the given rule
  174. number. So, if the rule number is 1, the rule or rules are inserted
  175. at the head of the chain. This is also the default if no rule number
  176. is specified.
  177. .TP
  178. \fB\-R\fP, \fB\-\-replace\fP \fIchain rulenum rule-specification\fP
  179. Replace a rule in the selected chain. If the source and/or
  180. destination names resolve to multiple addresses, the command will
  181. fail. Rules are numbered starting at 1.
  182. .TP
  183. \fB\-L\fP, \fB\-\-list\fP [\fIchain\fP]
  184. List all rules in the selected chain. If no chain is selected, all
  185. chains are listed. Like every other iptables command, it applies to the
  186. specified table (filter is the default), so NAT rules get listed by
  187. .nf
  188. iptables \-t nat \-n \-L
  189. .fi
  190. Please note that it is often used with the \fB\-n\fP
  191. option, in order to avoid long reverse DNS lookups.
  192. It is legal to specify the \fB\-Z\fP
  193. (zero) option as well, in which case the chain(s) will be atomically
  194. listed and zeroed. The exact output is affected by the other
  195. arguments given. The exact rules are suppressed until you use
  196. .nf
  197. iptables \-L \-v
  198. .fi
  199. .TP
  200. \fB\-S\fP, \fB\-\-list\-rules\fP [\fIchain\fP]
  201. Print all rules in the selected chain. If no chain is selected, all
  202. chains are printed like iptables-save. Like every other iptables command,
  203. it applies to the specified table (filter is the default).
  204. .TP
  205. \fB\-F\fP, \fB\-\-flush\fP [\fIchain\fP]
  206. Flush the selected chain (all the chains in the table if none is given).
  207. This is equivalent to deleting all the rules one by one.
  208. .TP
  209. \fB\-Z\fP, \fB\-\-zero\fP [\fIchain\fP [\fIrulenum\fP]]
  210. Zero the packet and byte counters in all chains, or only the given chain,
  211. or only the given rule in a chain. It is legal to
  212. specify the
  213. \fB\-L\fP, \fB\-\-list\fP
  214. (list) option as well, to see the counters immediately before they are
  215. cleared. (See above.)
  216. .TP
  217. \fB\-N\fP, \fB\-\-new\-chain\fP \fIchain\fP
  218. Create a new user-defined chain by the given name. There must be no
  219. target of that name already.
  220. .TP
  221. \fB\-X\fP, \fB\-\-delete\-chain\fP [\fIchain\fP]
  222. Delete the optional user-defined chain specified. There must be no references
  223. to the chain. If there are, you must delete or replace the referring rules
  224. before the chain can be deleted. The chain must be empty, i.e. not contain
  225. any rules. If no argument is given, it will attempt to delete every
  226. non-builtin chain in the table.
  227. .TP
  228. \fB\-P\fP, \fB\-\-policy\fP \fIchain target\fP
  229. Set the policy for the chain to the given target. See the section \fBTARGETS\fP
  230. for the legal targets. Only built-in (non-user-defined) chains can have
  231. policies, and neither built-in nor user-defined chains can be policy
  232. targets.
  233. .TP
  234. \fB\-E\fP, \fB\-\-rename\-chain\fP \fIold\-chain new\-chain\fP
  235. Rename the user specified chain to the user supplied name. This is
  236. cosmetic, and has no effect on the structure of the table.
  237. .TP
  238. \fB\-h\fP
  239. Help.
  240. Give a (currently very brief) description of the command syntax.
  241. .SS PARAMETERS
  242. The following parameters make up a rule specification (as used in the
  243. add, delete, insert, replace and append commands).
  244. .TP
  245. \fB\-4\fP, \fB\-\-ipv4\fP
  246. This option has no effect in iptables and iptables-restore.
  247. .TP
  248. \fB\-6\fP, \fB\-\-ipv6\fP
  249. If a rule using the \fB\-6\fP option is inserted with (and only with)
  250. iptables-restore, it will be silently ignored. Any other uses will throw an
  251. error. This option allows to put both IPv4 and IPv6 rules in a single rule file
  252. for use with both iptables-restore and ip6tables-restore.
  253. .TP
  254. [\fB!\fP] \fB\-p\fP, \fB\-\-protocol\fP \fIprotocol\fP
  255. The protocol of the rule or of the packet to check.
  256. The specified protocol can be one of \fBtcp\fP, \fBudp\fP, \fBudplite\fP,
  257. \fBicmp\fP, \fBesp\fP, \fBah\fP, \fBsctp\fP or the special keyword "\fBall\fP",
  258. or it can be a numeric value, representing one of these protocols or a
  259. different one. A protocol name from /etc/protocols is also allowed.
  260. A "!" argument before the protocol inverts the
  261. test. The number zero is equivalent to \fBall\fP. "\fBall\fP"
  262. will match with all protocols and is taken as default when this
  263. option is omitted.
  264. .TP
  265. [\fB!\fP] \fB\-s\fP, \fB\-\-source\fP \fIaddress\fP[\fB/\fP\fImask\fP][\fB,\fP\fI...\fP]
  266. Source specification. \fIAddress\fP
  267. can be either a network name, a hostname, a network IP address (with
  268. \fB/\fP\fImask\fP), or a plain IP address. Hostnames will
  269. be resolved once only, before the rule is submitted to the kernel.
  270. Please note that specifying any name to be resolved with a remote query such as
  271. DNS is a really bad idea.
  272. The \fImask\fP
  273. can be either a network mask or a plain number,
  274. specifying the number of 1's at the left side of the network mask.
  275. Thus, a mask of \fI24\fP is equivalent to \fI255.255.255.0\fP.
  276. A "!" argument before the address specification inverts the sense of
  277. the address. The flag \fB\-\-src\fP is an alias for this option.
  278. Multiple addresses can be specified, but this will \fBexpand to multiple
  279. rules\fP (when adding with \-A), or will cause multiple rules to be
  280. deleted (with \-D).
  281. .TP
  282. [\fB!\fP] \fB\-d\fP, \fB\-\-destination\fP \fIaddress\fP[\fB/\fP\fImask\fP][\fB,\fP\fI...\fP]
  283. Destination specification.
  284. See the description of the \fB\-s\fP
  285. (source) flag for a detailed description of the syntax. The flag
  286. \fB\-\-dst\fP is an alias for this option.
  287. .TP
  288. \fB\-m\fP, \fB\-\-match\fP \fImatch\fP
  289. Specifies a match to use, that is, an extension module that tests for a
  290. specific property. The set of matches make up the condition under which a
  291. target is invoked. Matches are evaluated first to last as specified on the
  292. command line and work in short-circuit fashion, i.e. if one extension yields
  293. false, evaluation will stop.
  294. .TP
  295. \fB\-j\fP, \fB\-\-jump\fP \fItarget\fP
  296. This specifies the target of the rule; i.e., what to do if the packet
  297. matches it. The target can be a user-defined chain (other than the
  298. one this rule is in), one of the special builtin targets which decide
  299. the fate of the packet immediately, or an extension (see \fBEXTENSIONS\fP
  300. below). If this
  301. option is omitted in a rule (and \fB\-g\fP
  302. is not used), then matching the rule will have no
  303. effect on the packet's fate, but the counters on the rule will be
  304. incremented.
  305. .TP
  306. \fB\-g\fP, \fB\-\-goto\fP \fIchain\fP
  307. This specifies that the processing should continue in a user
  308. specified chain. Unlike the \-\-jump option return will not continue
  309. processing in this chain but instead in the chain that called us via
  310. \-\-jump.
  311. .TP
  312. [\fB!\fP] \fB\-i\fP, \fB\-\-in\-interface\fP \fIname\fP
  313. Name of an interface via which a packet was received (only for
  314. packets entering the \fBINPUT\fP, \fBFORWARD\fP and \fBPREROUTING\fP
  315. chains). When the "!" argument is used before the interface name, the
  316. sense is inverted. If the interface name ends in a "+", then any
  317. interface which begins with this name will match. If this option is
  318. omitted, any interface name will match.
  319. .TP
  320. [\fB!\fP] \fB\-o\fP, \fB\-\-out\-interface\fP \fIname\fP
  321. Name of an interface via which a packet is going to be sent (for packets
  322. entering the \fBFORWARD\fP, \fBOUTPUT\fP and \fBPOSTROUTING\fP
  323. chains). When the "!" argument is used before the interface name, the
  324. sense is inverted. If the interface name ends in a "+", then any
  325. interface which begins with this name will match. If this option is
  326. omitted, any interface name will match.
  327. .TP
  328. [\fB!\fP] \fB\-f\fP, \fB\-\-fragment\fP
  329. This means that the rule only refers to second and further fragments
  330. of fragmented packets. Since there is no way to tell the source or
  331. destination ports of such a packet (or ICMP type), such a packet will
  332. not match any rules which specify them. When the "!" argument
  333. precedes the "\-f" flag, the rule will only match head fragments, or
  334. unfragmented packets.
  335. .TP
  336. \fB\-c\fP, \fB\-\-set\-counters\fP \fIpackets bytes\fP
  337. This enables the administrator to initialize the packet and byte
  338. counters of a rule (during \fBINSERT\fP, \fBAPPEND\fP, \fBREPLACE\fP
  339. operations).
  340. .SS "OTHER OPTIONS"
  341. The following additional options can be specified:
  342. .TP
  343. \fB\-v\fP, \fB\-\-verbose\fP
  344. Verbose output. This option makes the list command show the interface
  345. name, the rule options (if any), and the TOS masks. The packet and
  346. byte counters are also listed, with the suffix 'K', 'M' or 'G' for
  347. 1000, 1,000,000 and 1,000,000,000 multipliers respectively (but see
  348. the \fB\-x\fP flag to change this).
  349. For appending, insertion, deletion and replacement, this causes
  350. detailed information on the rule or rules to be printed. \fB\-v\fP may be
  351. specified multiple times to possibly emit more detailed debug statements.
  352. .TP
  353. \fB\-n\fP, \fB\-\-numeric\fP
  354. Numeric output.
  355. IP addresses and port numbers will be printed in numeric format.
  356. By default, the program will try to display them as host names,
  357. network names, or services (whenever applicable).
  358. .TP
  359. \fB\-x\fP, \fB\-\-exact\fP
  360. Expand numbers.
  361. Display the exact value of the packet and byte counters,
  362. instead of only the rounded number in K's (multiples of 1000)
  363. M's (multiples of 1000K) or G's (multiples of 1000M). This option is
  364. only relevant for the \fB\-L\fP command.
  365. .TP
  366. \fB\-\-line\-numbers\fP
  367. When listing rules, add line numbers to the beginning of each rule,
  368. corresponding to that rule's position in the chain.
  369. .TP
  370. \fB\-\-modprobe=\fP\fIcommand\fP
  371. When adding or inserting rules into a chain, use \fIcommand\fP
  372. to load any necessary modules (targets, match extensions, etc).
  373. .SH MATCH AND TARGET EXTENSIONS
  374. .PP
  375. iptables can use extended packet matching and target modules.
  376. A list of these is available in the \fBiptables\-extensions\fP(8) manpage.
  377. .SH DIAGNOSTICS
  378. Various error messages are printed to standard error. The exit code
  379. is 0 for correct functioning. Errors which appear to be caused by
  380. invalid or abused command line parameters cause an exit code of 2, and
  381. other errors cause an exit code of 1.
  382. .SH BUGS
  383. Bugs? What's this? ;-)
  384. Well, you might want to have a look at http://bugzilla.netfilter.org/
  385. .SH COMPATIBILITY WITH IPCHAINS
  386. This \fBiptables\fP
  387. is very similar to ipchains by Rusty Russell. The main difference is
  388. that the chains \fBINPUT\fP and \fBOUTPUT\fP
  389. are only traversed for packets coming into the local host and
  390. originating from the local host respectively. Hence every packet only
  391. passes through one of the three chains (except loopback traffic, which
  392. involves both INPUT and OUTPUT chains); previously a forwarded packet
  393. would pass through all three.
  394. .PP
  395. The other main difference is that \fB\-i\fP refers to the input interface;
  396. \fB\-o\fP refers to the output interface, and both are available for packets
  397. entering the \fBFORWARD\fP chain.
  398. .PP
  399. The various forms of NAT have been separated out; \fBiptables\fP
  400. is a pure packet filter when using the default `filter' table, with
  401. optional extension modules. This should simplify much of the previous
  402. confusion over the combination of IP masquerading and packet filtering
  403. seen previously. So the following options are handled differently:
  404. .nf
  405. \-j MASQ
  406. \-M \-S
  407. \-M \-L
  408. .fi
  409. There are several other changes in iptables.
  410. .SH SEE ALSO
  411. \fBiptables\-apply\fP(8),
  412. \fBiptables\-save\fP(8),
  413. \fBiptables\-restore\fP(8),
  414. \fBiptables\-extensions\fP(8),
  415. \fBip6tables\fP(8),
  416. \fBip6tables\-save\fP(8),
  417. \fBip6tables\-restore\fP(8),
  418. \fBlibipq\fP(3).
  419. .PP
  420. The packet-filtering-HOWTO details iptables usage for
  421. packet filtering, the NAT-HOWTO details NAT,
  422. the netfilter-extensions-HOWTO details the extensions that are
  423. not in the standard distribution,
  424. and the netfilter-hacking-HOWTO details the netfilter internals.
  425. .br
  426. See
  427. .BR "http://www.netfilter.org/" .
  428. .SH AUTHORS
  429. Rusty Russell originally wrote iptables, in early consultation with Michael
  430. Neuling.
  431. .PP
  432. Marc Boucher made Rusty abandon ipnatctl by lobbying for a generic packet
  433. selection framework in iptables, then wrote the mangle table, the owner match,
  434. the mark stuff, and ran around doing cool stuff everywhere.
  435. .PP
  436. James Morris wrote the TOS target, and tos match.
  437. .PP
  438. Jozsef Kadlecsik wrote the REJECT target.
  439. .PP
  440. Harald Welte wrote the ULOG and NFQUEUE target, the new libiptc, as well as the TTL, DSCP, ECN matches and targets.
  441. .PP
  442. The Netfilter Core Team is: Marc Boucher, Martin Josefsson, Yasuyuki Kozakai,
  443. Jozsef Kadlecsik, Patrick McHardy, James Morris, Pablo Neira Ayuso,
  444. Harald Welte and Rusty Russell.
  445. .PP
  446. Man page originally written by Herve Eychenne <rv@wallfire.org>.
  447. .\" .. and did I mention that we are incredibly cool people?
  448. .\" .. sexy, too ..
  449. .\" .. witty, charming, powerful ..
  450. .\" .. and most of all, modest ..
  451. .SH VERSION
  452. .PP
  453. This manual page applies to iptables @PACKAGE_VERSION@.