2024-10-16 21:13:17 +02:00
|
|
|
#!/bin/sh
|
2025-07-14 18:30:42 +02:00
|
|
|
# DO NOT MODIFY: this file is written by ansible
|
2024-10-16 21:13:17 +02:00
|
|
|
# Firewall to allow mosh sessions
|
|
|
|
|
|
|
|
|
|
ip6tables -A INPUT -p udp --match multiport --dports 60001:60020 -j ACCEPT
|
|
|
|
|
iptables -A INPUT -p udp --match multiport --dports 60001:60020 -j ACCEPT
|