From 14d717c5e279fc7bf29e1fe00f5b4d3934dda86d Mon Sep 17 00:00:00 2001 From: netaskd Date: Thu, 23 Apr 2020 19:50:49 +0300 Subject: [PATCH] turn: add ports that need to open additionally --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index b60b962e04..296678024b 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,9 @@ The following external ports must be opened on a firweall: * 443/tcp for Web UI HTTPS * 4443/tcp for RTP media over TCP * 10000/udp for RTP media over UDP +* 5349/tcp for TURN data over TCP +* 5349/udp for TURN data over UDP +* 16000-17000/udp for TURN RTP media over UDP Also 20000-20050/udp for jigasi, in case you choose to deploy that to facilitate SIP acces. @@ -85,6 +88,9 @@ E.g. on a CentOS/Fedora server this would be done like this (without SIP access) $ sudo firewall-cmd --permanent --add-port=443/tcp $ sudo firewall-cmd --permanent --add-port=4443/tcp $ sudo firewall-cmd --permanent --add-port=10000/udp + $ sudo firewall-cmd --permanent --add-port=5349/tcp + $ sudo firewall-cmd --permanent --add-port=5349/udp + $ sudo firewall-cmd --permanent --add-port=16000-17000/udp $ sudo firewall-cmd --reload ```