8

我有自己的 ubuntu 19 服务器。

注意:我需要一个用于视频聊天 Web 应用程序的 stun/turn 服务器。如果两个设备都在同一个网络中,它已经可以工作了。

我已经成功安装并配置了coturn。turnserver我可以通过运行:或nohup turnserver &在终端中成功启动turnserver 。

注意:我SSH连接到我的服务器。

我还确保打开了必要的端口并使用netstat -tulpn.

我在测试时也重新启动了几次 coturn sudo service coturn restart

我在以下配置中使用这些配置turnserver.conf

# Also tried 80
listening-port=3478
# Also tried 443
tls-listening-port=5349
listening-ip=<MY-IP4>
listening-ip=<MY-IP6>
relay-ip=<MY-IP4>
external-ip=<MY-IP4>
oauth
user=root:<password>
userdb=/var/lib/turn/turndb
no-stdout-log

这是我在 js 中的 iceServers 配置,我认为它应该可以工作(我已经完成了很多其他组合)。

var pcConfig = {
  'iceServers': [
    {
      'urls': 'stun:<MY-IP4>:80'
    },
    {
      'urls': 'turn:<MY-IP4>:80',
      'credential': '<PASSWORD>',
      'username': 'root'
    }
  ]
};

我已经完成了大量不同的眩晕/转弯服务器组合,例如:

  • 我使用了 google 的 stun 服务器:stun.l.google.com:19302、stun2.l.google.com:19302 等。

  • 我尝试了端口 3478 和 5349(当然是在重启 coturn 之后)

  • 我尝试使用 stun 服务器的凭据,但我确信它不需要它们

  • 我尝试使用 IP6 地址

我也一直在我的网络项目和这里进行测试: https ://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/

基本上上面的测试 URL 总是给我:

Note: errors from onicecandidateerror above are not neccessarily fatal. For example an IPv6 DNS lookup may fail but relay candidates can still be gathered via IPv4.
The server stun:<MY-IP4>:80 returned an error with code=701:
STUN server address is incompatible.
The server stun:<MY-IP4>:80 returned an error with code=701:
STUN server address is incompatible.

不管我用google的stun服务器还是我自己的,错误都是一样的。

如果我使用相同的网络,我的 webproject 和视频聊天工作得很好,但我相信 stun 和 turn 服务器不在同一个网络中使用。

此外,当我更新我的 JS 文件时,我总是删除缓存,所以使用了新的 JS 文件。所以这也不是问题。

编辑

这种组合不会出错,只有:

Note: errors from onicecandidateerror above are not 
neccessarily fatal. For example an IPv6 DNS 
lookup may fail but relay candidates can still be gathered via IPv4.

在https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/上测试

{
  'urls': 'stun:<MY-IP6>:80'
},
{
  'urls': 'turn:<MY-IP4>:80',
  'credential': '<PASSWORD>',
  'username': 'root'
}

我只是使用 IP6 进行眩晕,使用 IP4 进行转身。不同网络中的视频聊天仍然无法正常工作,找不到其他错误。

编辑:

今天注意到https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/ 不起作用。我在 Firefox 上没有错误。但是你可以在那里输入一些废话,它也不会显示任何错误......

编辑:

我现在还添加了有效证书:

cert=/usr/local/etc/turn.pem                                                                                    
pkey=/usr/local/etc/turn.key.pem

似乎工作。我重新启动了 coturn,状态告诉我一切都在正常运行。

视频聊天在不同的网络中仍然不起作用。

4

1 回答 1

1

好的。我从错误的角度看整个事情。TURN/STUN 服务器设置正确。

问题在于客户端/服务器代码。信号不起作用。

我关注了这篇文章,但我在设置信令服务时遇到了问题。我认为这必须在一个新问题中提出。

于 2020-04-03T09:19:02.883 回答