aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2021-04-24 10:14:03 +0200
committerJonas Smedegaard <dr@jones.dk>2021-04-24 10:14:03 +0200
commit1183a6e710cf4d0807262c5d0b2d998dde574973 (patch)
treedf3a58ea5672f61daf701d1ba09714a9f2f86d61
parent1553330617e28159489264adae73caeae0ebaf15 (diff)
add preliminary ADMIN docs, with notes on testing STUN/TURN service
-rw-r--r--ADMIN.md38
1 files changed, 38 insertions, 0 deletions
diff --git a/ADMIN.md b/ADMIN.md
new file mode 100644
index 0000000..b26b7db
--- /dev/null
+++ b/ADMIN.md
@@ -0,0 +1,38 @@
+## TURN service validation
+
+Install package coturn (and stop and disable the service if unneeded).
+
+Simple test anonymous insecure STUN service:
+
+turnutils_stunclient -f turn1.debian.net
+
+(seems that if it hangs, it is the server offering a bogus secondary IP)
+
+Test anonymous insecure STUN service (udp and tcp:
+
+turnutils_uclient turn1.debian.net -y
+turnutils_uclient turn1.debian.net -t -y
+
+(check for packet loss)
+
+
+
+Alternatives STUN/TURN validation:
+<https://stackoverflow.com/questions/28772212/stun-turn-server-connectivity-test>
+
+STUN/TURN validation service:
+<https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/>
+
+<https://ip8.com/webrtc-test>
+<https://testrtc.com/>
+<https://networktest.twilio.com/>
+
+Public STUN/TURN services:
+https://github.com/DamonOehlman/freeice#current-list-of-servers
+
+Nice explanation of turnutils_stunclient:
+<https://gist.github.com/cameron-elliott/be1e581cb7b28f748e04bcabc249e6b6>
+
+## TURN service REST interface
+
+<https://stackoverflow.com/questions/35766382/coturn-how-to-use-turn-rest-api>