summaryrefslogtreecommitdiffstats
path: root/extensions/libxt_string.man
diff options
context:
space:
mode:
authorYasuyuki KOZAKAI <yasuyuki@netfilter.org>2007-11-29 04:42:05 +0000
committerYasuyuki KOZAKAI <yasuyuki@netfilter.org>2007-11-29 04:42:05 +0000
commitec642db62a28be7e13a6ab5b3f800376bb7a8dff (patch)
treee04d68cd825bc89269624e26130d175550dd8a84 /extensions/libxt_string.man
parentc03962bebfcf5ee9a9097aa564d16836903b57ea (diff)
Move libipt_string.man to libxt_string.man for ip6tables.8
Diffstat (limited to 'extensions/libxt_string.man')
-rw-r--r--extensions/libxt_string.man15
1 files changed, 15 insertions, 0 deletions
diff --git a/extensions/libxt_string.man b/extensions/libxt_string.man
new file mode 100644
index 00000000..3f3e5b79
--- /dev/null
+++ b/extensions/libxt_string.man
@@ -0,0 +1,15 @@
+This modules matches a given string by using some pattern matching strategy. It requires a linux kernel >= 2.6.14.
+.TP
+.BI "--algo " "bm|kmp"
+Select the pattern matching strategy. (bm = Boyer-Moore, kmp = Knuth-Pratt-Morris)
+.TP
+.BI "--from " "offset"
+Set the offset from which it starts looking for any matching. If not passed, default is 0.
+.TP
+.BI "--to " "offset"
+Set the offset from which it starts looking for any matching. If not passed, default is the packet size.
+.TP
+.BI "--string " "pattern"
+Matches the given pattern.
+.BI "--hex-string " "pattern"
+Matches the given pattern in hex notation.