Hi Eric,
Thanks for your reply.
As you mentioned Im trying to create a TURN server. and even I registered in
http://turn.anyfirewall.com/ , but I want to create my own TURN server running on AWS instance.
As part of this setup, I have done
1) created an AWS instance with 2 private IPs
2) Associated 2 Elastic IPs to the private IPs
3) Associated Elastic IPs to eth0 and eth1
4) and used the above 2 IPs to start server using the below command
sudo turnserver -syslog -a -L 10.0.0.xxx -L 10.0.0.xxx -X 54.254.xxx.xxx -f -min-rt=32355 -max-port=65535 -user=username:password -r realm -log-le=stdout -v
And to connect to this TURN server, I have updated my Config.js file in easyRTC with the below lines...
config.externalIceServers = [
{url:"turn:user...@54.254.xxx.xxx", credential:"password"}
];
Still Im seeing the same "black". I think it is not going through TURN server.
is any thing I have missed here? and how to test?
Looking forward for your help
Regards,
Vijay