Hi Robert,
To run on port 80, the correct command will be sudo turnserver -a -o -v -n -p 80 -u councilbox:tkZVdkW8 -r "someRealm"
You have given -p 80 after -u without specifying username and password, so it is not listening on port 80.
There is no special configuration required to run turnserver on port 80 or port 443. You need to ensure that no other service is running on those port( netstat -nap | grep 80) and they are not blocked by the firewall.
Thanks,
Shakeeb
On Tuesday, May 2, 2017 at 10:34:08 PM UTC+8, Robert Hole wrote:
Hi, I have a TURN server, which was launched successfully with the following command
sudo turnserver -a -o -v -n -u councilbox:tkZVdkW8 -r "someRealm"
Instead, when I use the command sudo turnserver -a -o -v -n -u -p 80 councilbox:tkZVdkW8 -r "someRealm", which indicates the port 80, in this case I do not get the same response but one that I get a "Not reachable"
What can I do to properly enable port 80 and even 443?
Thanks.