Skip to content
Riz Panjwani edited this page Feb 20, 2015 · 21 revisions

2/20/2015 - TURN server (which also inherently provides STUN functionality).

We have access to a SAVI cloud vm, so we tried setting up a few open-source TURN servers:

  1. Tried reTurn: Installation was fine, but could not connect to it even locally as it kept dropping the connection.

  2. Tried rfc5766, but it was too complicated to setup. Maybe later...

  3. Trying restund now, which involves manually making and installing the old school ways!

2/8/2015 - Basic Front-end & Back-end (local)

We created a basic front-end for our site. We also got a signalling server running locally using socket.io. Right now we can locally video conference by using the signalling server to do the initial handshake and then use web-rtc to take over after that.

2/7/2015 - Investigation

We investigated how Web-RTC works and tried out a few libraries to make our jobs easier: peerJs, Simple Web RTC, and MeetingJs. Web RTC requires signalling servers for the initial handshake. In addition, it requires STUN and TURN servers to deal with NATs. STUN servers extract external IP address for each peer thereby making communication possible. TURN servers take on the task of relaying traffic themselves in case STUN servers are not able to facilitate communication due to NAT issues.

Clone this wiki locally