9 lines
117 B
Text
9 lines
117 B
Text
|
#!/usr/sbin/nft -f
|
||
|
|
||
|
table inet filter {
|
||
|
chain input {
|
||
|
# allow ssh
|
||
|
tcp dport 22 accept comment "accept SSH"
|
||
|
}
|
||
|
}
|