summaryrefslogtreecommitdiffstats
path: root/files/nftables/ipv4-filter
diff options
context:
space:
mode:
Diffstat (limited to 'files/nftables/ipv4-filter')
-rw-r--r--files/nftables/ipv4-filter6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/nftables/ipv4-filter b/files/nftables/ipv4-filter
index 3f962143..3174e7a9 100644
--- a/files/nftables/ipv4-filter
+++ b/files/nftables/ipv4-filter
@@ -1,7 +1,7 @@
#! nft -f
table filter {
- chain input { hook NF_INET_LOCAL_IN 0; }
- chain forward { hook NF_INET_FORWARD 0; }
- chain output { hook NF_INET_LOCAL_OUT 0; }
+ chain input { type filter hook input priority 0; }
+ chain forward { type filter hook forward priority 0; }
+ chain output { type filter hook output priority 0; }
}