summaryrefslogtreecommitdiffstats
path: root/tests/shell/features/prerouting_reject.nft
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shell/features/prerouting_reject.nft')
-rw-r--r--tests/shell/features/prerouting_reject.nft8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/shell/features/prerouting_reject.nft b/tests/shell/features/prerouting_reject.nft
new file mode 100644
index 00000000..3dcfb40e
--- /dev/null
+++ b/tests/shell/features/prerouting_reject.nft
@@ -0,0 +1,8 @@
+# f53b9b0bdc59 netfilter: introduce support for reject at prerouting stage
+# v5.9-rc1~133^2~302^2~11
+table inet t {
+ chain nat_filter {
+ type filter hook prerouting priority 0; policy accept;
+ reject with icmpx type host-unreachable
+ }
+}