summaryrefslogtreecommitdiffstats
path: root/extensions/libxt_set.man
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2010-06-25 14:50:53 +0200
committerPatrick McHardy <kaber@trash.net>2010-06-25 14:50:53 +0200
commit78514bc3a9b1b724c9fc904941c5854644865673 (patch)
tree699d5858891356952376a37077ea3f5f3355eb8a /extensions/libxt_set.man
parente6d0d94139e826f7b5d8446ce174155c04963b07 (diff)
parentd40f1628c3717daebc437a398a285e371b5b6f7f (diff)
Merge branch 'master' of vishnu.netfilter.org:/data/git/iptables
Diffstat (limited to 'extensions/libxt_set.man')
-rw-r--r--extensions/libxt_set.man23
1 files changed, 23 insertions, 0 deletions
diff --git a/extensions/libxt_set.man b/extensions/libxt_set.man
new file mode 100644
index 00000000..aca1bfce
--- /dev/null
+++ b/extensions/libxt_set.man
@@ -0,0 +1,23 @@
+This module matches IP sets which can be defined by ipset(8).
+.TP
+[\fB!\fP] \fB\-\-match\-set\fP \fIsetname\fP \fIflag\fP[\fB,\fP\fIflag\fP]...
+where flags are the comma separated list of
+.BR "src"
+and/or
+.BR "dst"
+specifications and there can be no more than six of them. Hence the command
+.IP
+ iptables \-A FORWARD \-m set \-\-match\-set test src,dst
+.IP
+will match packets, for which (if the set type is ipportmap) the source
+address and destination port pair can be found in the specified set. If
+the set type of the specified set is single dimension (for example ipmap),
+then the command will match packets for which the source address can be
+found in the specified set.
+.PP
+The option \fB\-\-match\-set\fR can be replaced by \fB\-\-set\fR if that does
+not clash with an option of other extensions.
+.PP
+Use of -m set requires that ipset kernel support is provided. As standard
+kernels do not ship this currently, the ipset or Xtables-addons package needs
+to be installed.