Tagged Questions
STUN stands for Session Traversal Utilities for NAT. It helps peers located behind NATs communicate with each other when they only have private IP addresses.
4
votes
4answers
2k views
STUN, TURN, ICE library for Java
I need to establish a P2P UDP and TCP Connection between two Users. Both of them are behind a NAT.
A little research leads me to STUN, TURN and ICE.
Is there any Java solution (library) except jSTUN ...
3
votes
0answers
309 views
JSTUN vs PJNATH
I'm going to be writing my own STUN implementation in JavaScript (server-side with NodeJS), and I'm looking for a library to base my code on.
I have found both JSTUN and PJNATH, and both seem to be ...
2
votes
2answers
417 views
ICE, STUN, TURN library for iOS iPhone
I need to establish a P2P UDP and TCP Connection between two Users. Both of them are behind a NAT. A little research leads me to STUN, TURN and ICE.
Is there any open source iOS (library) which ...
1
vote
2answers
69 views
how to get NAT's external port when create connection to external host and how to implement STUN in Java
I'm studying about NAT and STUN protocol, but I haven't comprehended them, so I tried to implement STUN in Java.
Let's say I have 2 computers which are connected to Internet by 2 respective full-cone ...
1
vote
3answers
264 views
Why a STUN Server Needs Two Different Public IP addresses
I have took a look to STUN Server settings in openfire, and this statement from there:
"In order to act as a STUN server, two different public IP addresses on the same machine are required, as well ...
1
vote
1answer
408 views
How does Android 2.3 SIP API handle NATs?
For a while now I've been playing around with the SipDemo in the Android 2.3
SDK.
The documentation on Android's developer page is nicely written, but it's
not a lot. It does not explain anything ...
1
vote
1answer
487 views
Java and Which Stun libraries i should use?
Java, i was trying to write my own STUN client, but it seems like i was making mistake and therefore, most of the time it gets freezed. So i would like to know what STUN Client libraries are available ...
1
vote
1answer
196 views
Client/server cross platform peer-to-peer library?
I am looking for a cross-platform implementation of a peer-to-peer NAT traversal library for a client server application. I expect to implement a centralized server that'll allow clients to connect to ...
1
vote
0answers
273 views
Any STUN/TURN/ICE client library in PHP?
I am trying to establish P2P between two PHP daemon deployed on machines in different network (both behind NAT). I searched around for NAT traversal using PHP on Google and seems like their is no ...
0
votes
1answer
60 views
Programmatically determine the Router NAT type
I need to programmatically determine the Router NAT type in my program. I did look at some of the STUN related answers and UPnP related information on SO. But did not get any definitive answers.
I ...
0
votes
0answers
223 views
ICE STUN, TURN API in iOS SDK
We are in process of developing an app which requires NAT travesals for iPhone
Does iPhone SDK provides/expose ICE, STUN, TURN) API's ? Apple is already using these open standards in FaceTime, the ...
0
votes
1answer
271 views
Makeing a Proxy connection (both client / server behint NAT)
I want to get a PROXY Server getting to run behind NAT. (Ok I can configure the Port forwarding in the router, but I want it instantly!).
So lets say A wants use Bs running proxy server. A / B are ...
0
votes
1answer
361 views
UDP malformed packets
I use C# program for client UDP application. Application listens for a connection, and then communicates.
Socket udpClient = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ...
0
votes
1answer
100 views
What is test1, test2 and test3 in case of STUN?
I didn't understood importance of three tests in case of STUN ? STUN server is used for knowing external port and ip address so why three requests?
Thanks
-1
votes
0answers
18 views
A simple explanation of NAT Traversal? [closed]
I (loosely) know about Network Address Translation (NAT) in that the NAT device stores a mapping of external ports to internal ports. However, I started reading about it and got really confused by all ...