From: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
To: netfilter-devel@vger.kernel.org
Cc: anarey@gmail.com, pablo@netfilter.org
Subject: [nft PATCH] tests: add tests for masquerade
Date: Wed, 15 Oct 2014 12:01:27 +0200 [thread overview]
Message-ID: <20141015100127.26222.55158.stgit@nfdev.cica.es> (raw)
Let's test the new masquerade option in nftables.
Signed-off-by: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
---
tests/regression/ip/masquerade.t | 25 +++++++++++++++++++++++++
tests/regression/ip6/masquerade.t | 25 +++++++++++++++++++++++++
2 files changed, 50 insertions(+)
create mode 100644 tests/regression/ip/masquerade.t
create mode 100644 tests/regression/ip6/masquerade.t
diff --git a/tests/regression/ip/masquerade.t b/tests/regression/ip/masquerade.t
new file mode 100644
index 0000000..c1371b5
--- /dev/null
+++ b/tests/regression/ip/masquerade.t
@@ -0,0 +1,25 @@
+*ip;test-ip4
+:output;type nat hook output priority 0
+
+# nf_nat flags combination
+udp dport 53 masquerade ;ok
+udp dport 53 masquerade random ;ok
+udp dport 53 masquerade random,persistent ;ok
+udp dport 53 masquerade random,persistent,random-fully ;ok ;udp dport 53 masquerade random,random-fully,persistent
+udp dport 53 masquerade random,random-fully ;ok
+udp dport 53 masquerade random,random-fully,persistent ;ok
+udp dport 53 masquerade persistent ;ok
+udp dport 53 masquerade persistent,random ;ok ;udp dport 53 masquerade random,persistent
+udp dport 53 masquerade persistent,random,random-fully ;ok ;udp dport 53 masquerade random,random-fully,persistent
+udp dport 53 masquerade persistent,random-fully ;ok ;udp dport 53 masquerade random-fully,persistent
+udp dport 53 masquerade persistent,random-fully,random;ok ;udp dport 53 masquerade random,random-fully,persistent
+
+# masquerade is a terminal statement
+tcp dport 22 masquerade counter packets 0 bytes 0 accept ;nok
+tcp sport 22 masquerade accept ;nok
+ip saddr 10.1.1.1 masquerade drop ;nok
+
+# masquerade with sets
+tcp dport {1,2,3,4,5,6,7,8,101,202,303,1001,2002,3003} masquerade ;ok
+ip daddr 10.0.0.0-10.2.3.4 udp dport 53 counter packets 0 bytes 0 masquerade ;ok ;ip daddr >= 10.0.0.0 ip daddr <= 10.2.3.4 udp dport 53 counter packets 0 bytes 0 masquerade
+iifname eth0 ct state new,established tcp dport vmap {22 : drop, 222 : drop } masquerade ;ok
diff --git a/tests/regression/ip6/masquerade.t b/tests/regression/ip6/masquerade.t
new file mode 100644
index 0000000..edbf317
--- /dev/null
+++ b/tests/regression/ip6/masquerade.t
@@ -0,0 +1,25 @@
+*ip6;test-ip6
+:output;type nat hook output priority 0
+
+# nf_nat flags combination
+udp dport 53 masquerade ;ok
+udp dport 53 masquerade random ;ok
+udp dport 53 masquerade random,persistent ;ok
+udp dport 53 masquerade random,persistent,random-fully ;ok ;udp dport 53 masquerade random,random-fully,persistent
+udp dport 53 masquerade random,random-fully ;ok
+udp dport 53 masquerade random,random-fully,persistent ;ok
+udp dport 53 masquerade persistent ;ok
+udp dport 53 masquerade persistent,random ;ok ;udp dport 53 masquerade random,persistent
+udp dport 53 masquerade persistent,random,random-fully ;ok ;udp dport 53 masquerade random,random-fully,persistent
+udp dport 53 masquerade persistent,random-fully ;ok ;udp dport 53 masquerade random-fully,persistent
+udp dport 53 masquerade persistent,random-fully,random;ok ;udp dport 53 masquerade random,random-fully,persistent
+
+# masquerade is a terminal statement
+tcp dport 22 masquerade counter packets 0 bytes 0 accept ;nok
+tcp sport 22 masquerade accept ;nok
+ip6 saddr ::1 masquerade drop ;nok
+
+# masquerade with sets
+tcp dport {1,2,3,4,5,6,7,8,101,202,303,1001,2002,3003} masquerade ;ok
+ip6 daddr fe00::1-fe00::200 udp dport 53 counter packets 0 bytes 0 masquerade ;ok ;ip6 daddr >= fe00::1 ip6 daddr <= fe00::200 udp dport 53 counter packets 0 bytes 0 masquerade
+iifname eth0 ct state new,established tcp dport vmap {22 : drop, 222 : drop } masquerade ;ok
next reply other threads:[~2014-10-15 10:01 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-15 10:01 Arturo Borrero Gonzalez [this message]
2014-10-17 13:54 ` [nft PATCH] tests: add tests for masquerade 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=20141015100127.26222.55158.stgit@nfdev.cica.es \
--to=arturo.borrero.glez@gmail.com \
--cc=anarey@gmail.com \
--cc=netfilter-devel@vger.kernel.org \
--cc=pablo@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;
as well as URLs for NNTP newsgroup(s).