Skip to content
Snippets Groups Projects

firewall: add mosh config

Merged Imported Administrator requested to merge moshfirewall into master
All threads resolved!
2 files
+ 23
2
Compare changes
  • Side-by-side
  • Inline
Files
2
#!/usr/sbin/nft -f
table inet filter {
chain input {
# allow mosh
udp dport 60000-60010 accept comment "accept mosh"
}
}
Loading