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.

learn more… | top users | synonyms

0
votes
0answers
27 views

NAT Traversal library

I need some libraries which implement NAT Traversal. I heard about STUN as a try to implement a NAT Traversal standard. Now I am looking for a library which is implemented in C/C++, because one client ...
0
votes
0answers
29 views

Looking for .NET SCTP/UDT implementation (ideally with STUN)

tl;dr: Need UDT or SCTP or any other UDP-based stream transfer protocol implementation in pure .NET. I need to transfer large amounts of data between .NET clients located after NAT. The latency is ...
2
votes
1answer
349 views

why doesn't “onicecandidate” work?

I'm having trouble understanding webRTC with it's PeerConnection and 'onicecandidate' event. As far as I understand it you must initiate a peerconnection using a STUN (or TURN) server, because it ...
2
votes
1answer
638 views

Can we use google stun server (default for nodejs webrtc.io-client) for commercial apps?

https://npmjs.org/package/webrtc.io-client says: Usage rtc.createStream({"video": true, "audio":true}, function(stream){ // get local stream for manipulation } ...
0
votes
0answers
33 views

stun protocol : why multiple requests & why port number changes in subsequent response

in a sip call, before the actual data transfer, there are lot of stun flows over udp. i understand why stun is required. But even after the client gets the binding response message, it keeps on ...
0
votes
1answer
151 views

How does webRTC implement synchronization of the their audio and video streams from remote?

webRTC is implemented PeerConnection as per https://apprtc.appspot.com/ How does webRTC implement synchronization of the their audio and video streams from remote?
1
vote
1answer
444 views

What is STUN and does it need a port-forwarded server?

I've done some research on p2p communication without a base server, and came over STUN. From what I've read, STUN is a way of NAT "Hole Punching" that would not require a peer to be port-forwarded to ...
0
votes
0answers
209 views

how ICE (Interactive Connectivity Establishment) works?

I am reading documents regarding ICE and feel puzzled in one place. Step 1. Caller gathers transport candidates (i.e., host, STUN and TURN). Step 2. Caller sends a SIP INVITE to callee. The detail ...
0
votes
0answers
23 views

STUN CLient for getting the IP address of Window 7 Phone [duplicate]

Possible Duplicate: How to get Public IP Address from Window Phone 7 using STUN Protocol? I want to get the public ip address from Window Mobile. I need a STUN client by using which i hit ...
1
vote
1answer
979 views

Android P2P Video chat using SIPDROID

My plan is, to create a instant video chat App for Android. I've found Sipdroid wich gives me the opportunity to make video and voice calls using the SIP. The user should just open the App and be ...
0
votes
0answers
112 views

The Outgoing and Reply port of STUN message?

I'm trying to implement something with STUN (with PJSIP) as following flow: [IE] <--TCP/UDP trans.--> [agentC] <----STUN-----> [agentS] <--UDP/TCP trans.--> [Apache] And the [TCP/UDP ...
0
votes
2answers
460 views

HTTP Server behind NATs

I'm trying to make an (apache) server behind multi-layered NAT to be accessible from Internet. Restrictions: Avoid relay. There is a public server (we call him the OldMan) for login / stun, but its ...
0
votes
2answers
162 views

TURN server XOR-RELAYED-ADDRESS IP different from its own public IP

Suppose I am running a TURN server bound to a public IP (say 100.0.0.1). When the server creates a relay port for a create allocation request, is it ever the case that the server would send back an IP ...
1
vote
1answer
315 views

TURN server behind firewall - how to handle XOR-RELAYED-ADDRESS

I am running a TURN server (http://tools.ietf.org/html/rfc5766) on a server that is behind a firewall. The machine has a public IP address where incoming and outgoing network packets are sent to/from ...
0
votes
3answers
974 views

NAT traversal techniques and idea

So I was in a middle of making NAT traversal. The scenario is next: I got two Android phones and I want to connect them(sockets) using HTTP server(both devices are behind NAT). So far so good, both ...
1
vote
3answers
447 views

How to get started writing SIP / VoIP based software

I need to add some SIP based functionality to my company's Windows based software, allowing the user to call extensions and receive calls from extensions registered with a SIP server. Essentially ...
0
votes
1answer
883 views

Java UDP STUN Hole Punching with DatagramSocket

I'm trying to to send a udp packet to a client across a NAT, both of us belong to a different NAT, we are familiar with the theory of STUN therefore the way to achieve this is to 'hole punch' our way ...
0
votes
1answer
744 views

Program execution freezes on datagramSocket.receive method if device in standby mode

I implemented STUN client which sends requests to STUN server with specified period and during this period listens for requests from STUN server: try { byte[] respData = new byte[1024]; ...
26
votes
4answers
5k views

Java UDP hole punching example - connecting through firewall

Lets say I have two computers. They know each others public and private IPs via ice4j. One client listening and the other one sending some string. I'd like to see this happen via UPD hole ...
1
vote
1answer
679 views

STUN protocol: How to detect twice or double NAT firewalls?

RFC 5780 for STUN defines a Response-Origin attribute for STUN messages responses sent by the server back to the requesting client. It describes it as: The RESPONSE-ORIGIN attribute is inserted ...
2
votes
1answer
519 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 ...
1
vote
2answers
458 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
3k 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 ...
4
votes
1answer
824 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
1answer
1k 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 ...
3
votes
1answer
2k 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 ...
4
votes
3answers
1k 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
1answer
409 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
469 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 ...
1
vote
1answer
422 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
913 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, ...
6
votes
4answers
5k 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 ...
1
vote
1answer
438 views

testing TLV protocols

I need to test STUN protocol. Is there any framework to test this protocol? Any other test protocol framework that tests TLV based protocol would also be helpful. Thanks in advance. update: Adding ...
1
vote
1answer
427 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