0

我在Ubuntu中从 URL https://www.webrtc-experiment.com/docs/TURN-server-installation-guide.html#coturn设置了 Coturn 服务器。

Turnserver 使用 local-ip 工作正常,但是当我尝试使用 exernal-ip 涓涓细流时,我收到错误 Not reachable?

如果我从浏览器 url 访问 turnserver,我可以使用 external-ip 访问它。我得到消息。

TURN 服务器 https 管理员连接

要使用 HTTPS 管理员连接,您必须使用管理员用户帐户设置数据库表_admin_user_ 。

我的turnserver.conf看起来像:

user=test:test123    
listening-port=3478     
tls-listening-port=5349

listening-ip=192.168.22.101    
relay-ip=192.168.22.101    
external-ip=202.137.12.10

realm=yourdomain.com    
server-name=yourdomain.com

lt-cred-mech    
userdb=/etc/turnuserdb.conf

cert=/etc/ssl/my-certificate.pem
pkey=/etc/ssl/my-private.key

no-stdout-log

我正在使用命令启动服务器:

sudo turnserver -a

我尝试使用以下格式涓涓细流:

turn:202.137.12.10:3478[test:test123]

涓流https ://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/

请告诉我哪里出错了。

4

1 回答 1

0

我搞错了,原来是 UDP 端口 3478 被阻止了。如果我使用 TCP 协议,我也能得到涓涓细流(转:?transport=tcp[username:password])

于 2018-02-26T12:17:31.723 回答