[netfilter-cvslog] r6623 - trunk/iptables/extensions

kaber at netfilter.org kaber at netfilter.org
Tue May 30 00:59:16 CEST 2006


Author: kaber at netfilter.org
Date: 2006-05-30 00:59:13 +0200 (Tue, 30 May 2006)
New Revision: 6623

Modified:
   trunk/iptables/extensions/libipt_connlimit.man
Log:
[PATCH] trivial connlimit manpage fix (Phil Oester <kernel at linuxace.com>)


Modified: trunk/iptables/extensions/libipt_connlimit.man
===================================================================
--- trunk/iptables/extensions/libipt_connlimit.man	2006-05-24 16:25:09 UTC (rev 6622)
+++ trunk/iptables/extensions/libipt_connlimit.man	2006-05-29 22:59:13 UTC (rev 6623)
@@ -10,10 +10,10 @@
 Examples:
 .TP
 # allow 2 telnet connections per client host
-iptables -p tcp --syn --dport 23 -m connlimit --connlimit-above 2 -j REJECT
+iptables -A INPUT -p tcp --syn --dport 23 -m connlimit --connlimit-above 2 -j REJECT
 .TP
 # you can also match the other way around:
-iptables -p tcp --syn --dport 23 -m connlimit ! --connlimit-above 2 -j ACCEPT
+iptables -A INPUT -p tcp --syn --dport 23 -m connlimit ! --connlimit-above 2 -j ACCEPT
 .TP
 # limit the nr of parallel http requests to 16 per class C sized \
 network (24 bit netmask)




More information about the netfilter-cvslog mailing list