Linux Netfilter discussions
 help / color / mirror / Atom feed
From: Michael Hissler <mhis38@freenet.de>
To: netfilter@lists.netfilter.org
Subject: Re: Rate Limiting After a Threshold
Date: Fri, 06 Jul 2007 12:22:33 +0200	[thread overview]
Message-ID: <468E17E9.7030902@freenet.de> (raw)
In-Reply-To: <468D63F2.7060402@siemens.com>

John Jung wrote:

[...]

>   I think hashlimit is the key, but it really just doesn't want to work
> for me.  For example, I've tried:
> 
>     iptables -A INPUT -p tcp --dport 23 -m hashlimit --hashlimit 1/hour
>       --hashlimit-mode srcip --hashlimit-burst 1 --hashlimit-name test
>       -j REJECT


The hashlimit match works the other way round. Try '-j ACCEPT' and
append a rule to drop/reject connections to this port.
You should also use the state match, as you want to filter connections,
not packets.

So try this:

iptables -A INPUT -m state --state ESTABLISHED -j ACCEPT
iptables -A INPUT -p tcp --dport 23 -m state --state NEW -m hashlimit
--hashlimit 1/hour --hashlimit-mode srcip --hashlimit-burst 1
--hashlimit-name test -j ACCEPT
iptables -A INPUT -p tcp --dport 23 -m state --state NEW -j REJECT

(If you enter the rules in this order, you can omit the '-m state
--state NEW' in the last rule, but OTOH it doesn't hurt.)


michael



  parent reply	other threads:[~2007-07-06 10:22 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-07-05 21:34 Rate Limiting After a Threshold John Jung
2007-07-06  5:25 ` Ray Leach
2007-07-06 10:22 ` Michael Hissler [this message]
2007-07-06 15:39   ` John Jung
2007-07-06 17:56     ` Michael Hissler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=468E17E9.7030902@freenet.de \
    --to=mhis38@freenet.de \
    --cc=netfilter@lists.netfilter.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox