Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /etc/nftables.conf
- #!/usr/sbin/nft -f
- flush ruleset
- table inet filter {
- chain input {
- type filter hook input priority 0;
- }
- chain forward {
- type filter hook forward priority 0;
- }
- chain output {
- type filter hook output priority 0;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement