pmaports/main/postmarketos-config-nftables/rules/51_moshserver.nft
2021-12-05 22:34:07 -08:00

10 lines
130 B
Text

#!/usr/sbin/nft -f
table inet filter {
chain input {
# allow mosh
udp dport 60000-60010 accept comment "accept mosh"
}
}