Created
September 18, 2012 08:05
-
-
Save zziuni/3741933 to your computer and use it in GitHub Desktop.
STUN server list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
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();
})
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To test servers in batch visit https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/
and paste this