You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
228 B
Plaintext
16 lines
228 B
Plaintext
2 years ago
|
#!/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;
|
||
|
}
|
||
|
}
|