~ubuntu-branches/ubuntu/lucid/iptables/lucid

« back to all changes in this revision

Viewing changes to extensions/libipt_connlimit.man

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen, Iain Lane, Soren Hansen
  • Date: 2008-11-15 01:27:37 UTC
  • mfrom: (5.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20081115012737-o3kdn2z1o9ercq10
Tags: 1.4.1.1-4ubuntu1
[ Iain Lane ]
* Merge from debian unstable (LP: #294220), remaining changes:
  - debian/patches/0901-build-libipq_pic.a.patch - Build libipq_pic.a with
    -fPIC. Upstream changed build system and patch modified accordingly.

[ Soren Hansen ]
* Revert changes between 1.4.1.1-3 and 1.4.1.1-4, thus bringing back
  the howtos.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Allows you to restrict the number of parallel connections to a server per
2
 
client IP address (or client address block).
3
 
.TP
4
 
[\fB!\fR] \fB--connlimit-above \fIn\fR
5
 
Match if the number of existing connections is (not) above \fIn\fR.
6
 
.TP
7
 
\fB--connlimit-mask\fR \fIprefix_length\fR
8
 
Group hosts using the prefix length. For IPv4, this must be a number between
9
 
(including) 0 and 32. For IPv6, between 0 and 128.
10
 
.P
11
 
Examples:
12
 
.TP
13
 
# allow 2 telnet connections per client host
14
 
iptables -A INPUT -p tcp --syn --dport 23 -m connlimit --connlimit-above 2 -j REJECT
15
 
.TP
16
 
# you can also match the other way around:
17
 
iptables -A INPUT -p tcp --syn --dport 23 -m connlimit ! --connlimit-above 2 -j ACCEPT
18
 
.TP
19
 
# limit the number of parallel HTTP requests to 16 per class C sized \
20
 
network (24 bit netmask)
21
 
iptables -p tcp --syn --dport 80 -m connlimit --connlimit-above 16
22
 
--connlimit-mask 24 -j REJECT
23
 
.TP
24
 
# limit the number of parallel HTTP requests to 16 for the link local network \
25
 
(ipv6)
26
 
ip6tables -p tcp --syn --dport 80 -s fe80::/64 -m connlimit --connlimit-above
27
 
16 --connlimit-mask 64 -j REJECT