7 lines
105 B
Text
7 lines
105 B
Text
|
|
#!/usr/sbin/nft -f
|
||
|
|
|
||
|
|
table inet filter {
|
||
|
|
chain input {
|
||
|
|
tcp dport 3389 accept comment "accept RDP"
|
||
|
|
}
|
||
|
|
}
|