From: Steve Horsley <steve.horsley@gmail.com>
To: netfilter@vger.kernel.org
Subject: nftables segv while trying to use nat redirection with map
Date: Sun, 18 Oct 2015 13:32:09 +0100 [thread overview]
Message-ID: <56239149.2010805@gmail.com> (raw)
I would like to do host redirection using nftables, and using maps for
efficient host address lookup (thousands of entries).
As a first step, I tried just natting the output from my laptop but the
real use will be on the prerouting chain:
172.16.0.1 -> 8.8.8.8.
The following works as intended:
nft add table nat
nft add chain nat output { type nat hook output priority 0 \; }
nft add rule nat output ip daddr 172.16.1.1 dnat 8.8.8.8
ping 172.16.1.1
But I can't get it to work using maps - this causes a segmentation error:
nft flush ruleset
nft add table nat
nft add chain nat output { type nat hook output priority 0 \; }
nft add rule ip nat output dnat ip daddr map { 172.16.1.1 : 8.8.8.8 }
nft list ruleset
I don't know if I just have the wrong syntax, if it's a bug in nft, or
if it's just something I shouldn't be trying to do in the first place. I
am using nftables 0.4 (ubuntu 15.10 beta) but had the same result on
ubuntu 15.04.
next reply other threads:[~2015-10-18 12:32 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-18 12:32 Steve Horsley [this message]
2015-10-18 18:00 ` nftables segv while trying to use nat redirection with map Pablo Neira Ayuso
2015-11-02 23:27 ` Steve Horsley
2015-11-03 12:08 ` Pablo Neira Ayuso
2015-11-03 18:24 ` Steve Horsley
2015-11-03 19:39 ` Arturo Borrero Gonzalez
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=56239149.2010805@gmail.com \
--to=steve.horsley@gmail.com \
--cc=netfilter@vger.kernel.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 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.