diff --git a/roles/xmpp_server/files/ferm_xmpp.conf b/roles/xmpp_server/files/ferm_xmpp.conf new file mode 100644 index 0000000000000000000000000000000000000000..2804a84a246632355ad12ab66c75ed19723e8f40 --- /dev/null +++ b/roles/xmpp_server/files/ferm_xmpp.conf @@ -0,0 +1,11 @@ +table filter { + chain INPUT { + # XMPP client connections. + proto tcp dport 5222 ACCEPT; + proto tcp dport 5223 ACCEPT; + # File proxying. + proto tcp dport 5000 ACCEPT; + # XMPP server connections. + proto tcp dport 5269 ACCEPT; + } +} \ No newline at end of file