7 lines
216 B
Text
7 lines
216 B
Text
|
|
#!/bin/sh
|
||
|
|
# {{ansible_managed}}
|
||
|
|
# 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
|