* [nft PATCH] tests: add tests for masquerade
@ 2014-10-15 10:01 Arturo Borrero Gonzalez
2014-10-17 13:54 ` Pablo Neira Ayuso
0 siblings, 1 reply; 2+ messages in thread
From: Arturo Borrero Gonzalez @ 2014-10-15 10:01 UTC (permalink / raw)
To: netfilter-devel; +Cc: anarey, pablo
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
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-10-17 13:53 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-15 10:01 [nft PATCH] tests: add tests for masquerade Arturo Borrero Gonzalez
2014-10-17 13:54 ` Pablo Neira Ayuso
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).