This commit is contained in:
Your Name 2024-09-10 18:20:33 -06:00
parent f62333e93d
commit f07059538b
2 changed files with 10 additions and 0 deletions

5
ipv4-filter.nft Normal file
View File

@ -0,0 +1,5 @@
table filter {
chain input { type filter hook input priority 0;policy drop;}
chain forward { type filter hook forward priority 0; }
chain output { type filter hook output priority 0; }
}

5
ipv6-filter.nft Normal file
View File

@ -0,0 +1,5 @@
table ip6 filter {
chain input { type filter hook input priority 0; drop;}
chain forward { type filter hook forward priority 0; drop;}
chain output { type filter hook output priority 0; drop; }
}