summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/dumps/0041chain_binding_0.nft
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shell/testcases/chains/dumps/0041chain_binding_0.nft')
-rw-r--r--tests/shell/testcases/chains/dumps/0041chain_binding_0.nft12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/shell/testcases/chains/dumps/0041chain_binding_0.nft b/tests/shell/testcases/chains/dumps/0041chain_binding_0.nft
new file mode 100644
index 00000000..520203d8
--- /dev/null
+++ b/tests/shell/testcases/chains/dumps/0041chain_binding_0.nft
@@ -0,0 +1,12 @@
+table inet x {
+ chain y {
+ type filter hook input priority filter; policy accept;
+ meta l4proto { tcp, udp } th dport 53 jump {
+ ip saddr { 127.0.0.0/8, 172.23.0.0/16, 192.168.13.0/24 } counter packets 0 bytes 0 accept
+ ip6 saddr ::1 counter packets 0 bytes 0 accept
+ }
+ meta l4proto ipv6-icmp jump {
+ counter packets 0 bytes 0 accept
+ }
+ }
+}