Advertisement
Guest User

Untitled

a guest
Feb 12th, 2022
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. /etc/nftables.conf
  2. #!/usr/sbin/nft -f
  3. flush ruleset
  4. table inet filter {
  5. chain input {
  6. type filter hook input priority 0;
  7. }
  8. chain forward {
  9. type filter hook forward priority 0;
  10. }
  11. chain output {
  12. type filter hook output priority 0;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement