summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-04-27 09:06:55 +0300
committerLars Wirzenius <liw@liw.fi>2020-04-27 09:06:55 +0300
commit048b2c99cf728eda66a6b584ea719b616e89246f (patch)
tree4ea881d93c72e2e4e4c8a97648d8da0143f65995
parentff67c8faa10248034e8876be41a3b67abc149444 (diff)
downloadansibleness-048b2c99cf728eda66a6b584ea719b616e89246f.tar.gz
Change: open UDP port for mosh on atuin and guests
-rw-r--r--ansible/roles/ferm-firewalled/templates/ferm.conf.j24
1 files changed, 2 insertions, 2 deletions
diff --git a/ansible/roles/ferm-firewalled/templates/ferm.conf.j2 b/ansible/roles/ferm-firewalled/templates/ferm.conf.j2
index e666bfe..e469c94 100644
--- a/ansible/roles/ferm-firewalled/templates/ferm.conf.j2
+++ b/ansible/roles/ferm-firewalled/templates/ferm.conf.j2
@@ -9,7 +9,7 @@ table filter {
mod state state (RELATED ESTABLISHED) ACCEPT;
proto icmp ACCEPT;
- proto udp dport (53) ACCEPT;
+ proto udp dport (53 60583) ACCEPT;
proto tcp dport (ssh) ACCEPT;
@@ -29,7 +29,7 @@ table filter {
mod state state (RELATED ESTABLISHED) ACCEPT;
proto icmp ACCEPT;
- proto udp dport (53) ACCEPT;
+ proto udp dport (53 60583) ACCEPT;
proto tcp dport (ssh http https) ACCEPT;
}
}