-
Star
(713)
You must be signed in to star a gist -
Fork
(151)
You must be signed in to fork a gist
-
-
Save zziuni/3741933 to your computer and use it in GitHub Desktop.
# source : http://code.google.com/p/natvpn/source/browse/trunk/stun_server_list | |
# A list of available STUN server. | |
stun.l.google.com:19302 | |
stun1.l.google.com:19302 | |
stun2.l.google.com:19302 | |
stun3.l.google.com:19302 | |
stun4.l.google.com:19302 | |
stun01.sipphone.com | |
stun.ekiga.net | |
stun.fwdnet.net | |
stun.ideasip.com | |
stun.iptel.org | |
stun.rixtelecom.se | |
stun.schlund.de | |
stunserver.org | |
stun.softjoys.com | |
stun.voiparound.com | |
stun.voipbuster.com | |
stun.voipstunt.com | |
stun.voxgratia.org | |
stun.xten.com |
Hi bud, how you test these server address? Just paste them in the web browser address?@sburlappp
You can test a STUN server using the tools on this webpage:
https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/
Ok so I don't understand - what are the benefits of using a STUN server vs connecting P2P?
Ok so I don't understand - what are the benefits of using a STUN server vs connecting P2P?
in P2P no necessary use STUN Server, but behind Firewall this connection is stable with this type server, for me STUN Server works is great solution for virtualization behind Firewall Perimetral
is this list still available yet??
is this list still available yet??
yes
ആശനെ ചൂമ്മാ കിട്ടും ആയിരിക്കും ഇല്ലേ ...
machanee
stun1.cht.com.net
(Taiwan ChungHwa)
stun.f.haeder.net
- Normally only for my XMPP server for Jingle.
stunserver.org
is domain-parked, no service I would expect there.
NAT is still an issue with voip.
I maintain a reguarly updated list of STUN servers. You can check it out here: https://github.com/pradt2/always-online-stun
Try this tool for STUN Testing.
https://icetest.atec-systems.com/
New free STUN server.
You can get and use list of public STUN servers from Emercoin: https://github.com/emercoin/emercoin/blob/master/src/gen-stun-list.c
you can also try Open Relay Project for free STUN and TURN servers
STUN:stun.f.haeder.net:3478
is also available. Since I maintain this (including all services, too) in my free-time, please be kind.
stun.cloudflare.com:3478
My udp/tcp/v4/v6 stun server: stun.flashdance.cx:3478
New service https://fastturn.net
To test servers in batch visit https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/
and paste this
// for testing servers connection batch
var list = `paste lists here`;
list.split('\n').forEach((test) => {url.value = "stun:" + test; addServer()})
var stunlist = `list without prefix stun:`;
const checkUrl = document.getElementById("add-new-stun");
const addBtn = document.querySelector(".btn.btn-outline-primary.btn-block")
stunlist.split('\n').forEach((stun) => {
checkUrl.value = "stun:" + stun;
addBtn.click();
})
Google apparently provides a pool, but you'll need to reference each individually:
stun.l.google.com has address 74.125.192.127
stun1.l.google.com has address 172.217.192.127
stun2.l.google.com has address 142.250.15.127
stun3.l.google.com has address 108.177.15.127
stun4.l.google.com has address 108.177.119.127
Note: I can successfully ping them all right now.