强制WebRTC使用转发(relay)模式

假如你在企业内使用WebRTC,可能会遇到UDP端口被封的情况,这个时候可以强制WebRTC使用TCP转发模式。

要使用TCP转发,得配合一个 turn server,开源的 coturn 实现了 TCP 转发,我在“Ubuntu Server 14.04下配置coturn for WebRTC”一文中介绍了如何安装配置,可以参考。

配置了 coturn 后,在 Chrome 内建立 PeerConnection 对象时,做个配置,就可以实现转发了,类似下面:

var pcConfig = { 
        "iceServers": [{ "urls": "turn:192.168.40.131?transport=tcp", "username": "anxiaohui", "credential": "foruok", "credentialType": "password"}],
        "iceTransportPolicy": "relay"
    };
var pc = new RTCPeerConnection(pcConfig);

关于RTCPeerConnection的第一个参数,可以参考这里:http://w3c.github.io/webrtc-pc/#rtcconfiguration-dictionary。在我们的配置里,有两个关键点:

  1. turn:192.168.40.131?transport=tcp指定了 turn server 的地址和传输协议。
  2. "iceTransportPolicy": "relay"指定使用转发策略。

做了这两个配置,传递给 RTCPeerConnection,就可以实现 TCP 转发了。

这里再解释一下 TURN URI 的语法。RFC7065 中有明确的定义,摘出来:

The “turn” and “turns” URIs have the following formal ABNF syntax
turnURI = scheme “:” host [ “:” port ]
[ “?transport=” transport ]
scheme = “turn” / “turns”
transport = “udp” / “tcp” / transport-ext
transport-ext = 1*unreserved

我们的 uri 是: turn:192.168.40.131?transport=tcp,如果你想指定用 udp 来转发,可以去掉 [ "?transport=" transport ],或者用 transport=tcp

如果想用 ssl ,就把 turn 修改为 turns 。

如果想指定端口,就这样:turn:192.168.40.131:8080?transport=tcp。当然,你的 coturn 启动时也要指定 8080 端口。

相关阅读:

  • WebRTC学习资料大全
  • Ubuntu 14.04下编译WebRTC
  • WebRTC源码中turnserver的使用方法
  • Ubuntu Server 14.04下配置coturn for WebRTC
  • 打开 WebRTC 的日志(native api)
  • 让WebRTC支持H264编解码
  • WebRTC编译系统之gn和ninja
  • WebRTC编译系统之gn files
  • How to enable TRACE_EVENT in WebRTC codes
  • 让 WebRTC 使用外部的音视频编解码器
  • 开启 Chrome 的日志
  • 确认Chrome WebRTC使用的编解码格式

你可能感兴趣的:(server,chrome,ubuntu,ffmpeg,WebRTC)