summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/dumps/0043chain_ingress.nft
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shell/testcases/chains/dumps/0043chain_ingress.nft')
-rw-r--r--tests/shell/testcases/chains/dumps/0043chain_ingress.nft11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/shell/testcases/chains/dumps/0043chain_ingress.nft b/tests/shell/testcases/chains/dumps/0043chain_ingress.nft
new file mode 100644
index 00000000..74670423
--- /dev/null
+++ b/tests/shell/testcases/chains/dumps/0043chain_ingress.nft
@@ -0,0 +1,11 @@
+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;
+ }
+}