From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Tom <tom@foscore.com>
Cc: netfilter@vger.kernel.org
Subject: Re: Fwd: proper ICMPv6 syntax for specific daddr
Date: Thu, 8 Sep 2022 17:13:08 +0200 [thread overview]
Message-ID: <YxoGhE3IGFzehyo0@salvia> (raw)
In-Reply-To: <22a53086-4479-c142-6415-06e1e42ebeca@foscore.com>
On Wed, Sep 07, 2022 at 11:57:16AM -0400, Tom wrote:
> On 2022-09-07 11:25, Pablo Neira Ayuso wrote:
> > On Wed, Sep 07, 2022 at 11:22:24AM -0400, Tom wrote:
> > > table ip6 filter {
> > > set ping6 {
> > > typeof ip6 daddr . meta l4proto
> > > limit rate 5/second
> > > elements = { xxxx:43:a:83::2 . ipv6-icmp limit rate 5/second,
> > > xxxx:43:a:83::3 . ipv6-icmp limit rate 5/second,
> > > xxxx:43:a:83::4 . ipv6-icmp limit rate 5/second }
> > > }
> > > chain input {
> > > type filter hook input priority filter; policy drop;
> > > ip6 daddr . meta l4proto @ping6 accept
> > > }
> > >
> > > Is this OK?
> >
> > My recommendation is to use concatenations and sets, not to ratelimit
> > _all_ icmpv6 traffic ;-)
>
> Now I'm confused. I'd like to avoid ping floods if possible, but I can't seem to get the syntax right, so:
> table ip6 filter {
> set ping6 {
> typeof ip6 daddr . meta l4proto
you removed the limit line in the set declaration ?
> elements = { xxxx:43:a:83::2 . ipv6-icmp,
> xxxx:43:a:83::3 . ipv6-icmp,
> xxxx:43:a:83::4 . ipv6-icmp }
> }
> chain input {
> type filter hook input priority filter; policy drop;
> ip6 daddr . meta l4proto @ping6 accept
> }
> }
If you would like to throttle icmpv6 echo-request, the::
table ip6 filter {
set ping6 {
typeof ip6 daddr . icmpv6 type
limit rate 5/second
elements = { aaaa:43:a:83::2 . echo-request,
aaaa:43:a:83::3 . echo-request,
aaaa:43:a:83::4 . echo-request }
}
chain input {
type filter hook input priority filter; policy drop;
ip6 daddr . icmpv6 type @ping6 accept
}
}
Please, see the wiki for more examples on concatenations and sets/maps.
next prev parent reply other threads:[~2022-09-08 15:13 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <dea61421-4ce1-bb68-2a74-88b6f42c299e@foscore.com>
2022-09-07 15:57 ` Fwd: proper ICMPv6 syntax for specific daddr Tom
2022-09-08 8:46 ` Reindl Harald
2022-09-08 13:31 ` Tom
2022-09-08 14:23 ` Reindl Harald
2022-09-08 15:13 ` Pablo Neira Ayuso [this message]
2022-09-08 15:43 ` Fwd: " Tom
2022-09-08 15:54 ` Pablo Neira Ayuso
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=YxoGhE3IGFzehyo0@salvia \
--to=pablo@netfilter.org \
--cc=netfilter@vger.kernel.org \
--cc=tom@foscore.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.