summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/0043chain_ingress_0
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shell/testcases/chains/0043chain_ingress_0')
-rwxr-xr-xtests/shell/testcases/chains/0043chain_ingress_018
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/shell/testcases/chains/0043chain_ingress_0 b/tests/shell/testcases/chains/0043chain_ingress_0
new file mode 100755
index 00000000..86dc075d
--- /dev/null
+++ b/tests/shell/testcases/chains/0043chain_ingress_0
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+set -e
+
+RULESET="table inet filter {
+ chain ingress {
+ type filter hook ingress device \"lo\" priority filter; policy accept;
+ }
+ chain input {
+ type filter hook input priority filter; policy accept;
+ }
+ chain forward {
+ type filter hook forward priority filter; policy accept;
+ }
+}"
+
+$NFT -f - <<< "$RULESET" && exit 0
+exit 1