Tagged Questions

Network Address Translation

learn more… | top users | synonyms

17
votes
4answers
4k views

C# TCP Hole Punch (NAT Traversal) Library or something?

I want to do TCP Hole Punching (NAT Traversal) in C#. It can be done with a rendevouzs server if needed. I found http://sharpstunt.codeplex.com/ but can not get this to work. Ideally i need some ...
12
votes
5answers
723 views

How to make two android devices to communicate through TCP

We want to establish TCP/IP connection between two android devices. For now we thought that it would be simpler if we make the connection device to device. So there is no server that is between the ...
11
votes
2answers
3k views

NAT Traversal with Java

I'm trying to find a way to communicate between two NAT-ed nodes using Java. My requirements pretty much align with the ICE-specification; i.e. I want to try STUN first and then fall back to relaying ...
8
votes
2answers
3k views

Python UPnP/IGD Client Implementation?

I am searching for an open-source implementation of an UPnP client in Python, and more specifically of its Internet Gateway Device (IGD) part. For now, I have only been able to find UPnP Media Server ...
6
votes
6answers
3k views

Transparent Proxy for IPv6 traffic under Linux

When maintaining networks, it is often an expedient thing to do to run a transparent proxy. By transparent proxy I mean a proxy that 'hijacks' outgoing connections and runs them through a local ...
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 ...
4
votes
3answers
613 views

Are there any open source cross platform NAT punch throughs?

Are there any open source cross platform NAT punch throughs?
4
votes
2answers
1k views

What are the best options for NAT port forwarding?

I'd like to make it easy for users to forward a port on their NAT to their local machine for my C++ app. I'd like to make this work on OSX & Windows. Linux would be a great bonus, but Linux ...
3
votes
3answers
192 views

NAT Network is merging sessions

I'm developing something for a bunch of users, and when I was testing it, NAT users was merging their information as it was only one session. How can I split it to show the right information to the ...
3
votes
3answers
1k views

NAT traversal with Java

I want to connect to computers, each one of them behind a NAT router. I read that STUN only works with one computer behind a NAT router. Is that true? If so, how can I solve that double-NAT problem? ...
3
votes
6answers
1k views

How do two computers connect to same external address through NAT?

If I have two internal computers connecting to the same external IP address through a NAT router, how is the router able to get the traffic to the correct internal computer? It is my understanding ...
3
votes
3answers
1k views

How do I make a TCP server work behind a router (NAT) without any redirection configuration needed

The scenario is the following. I have two machines A and B: A: Client (behind NAT) B: Server (behind NAT) I want B to be able to listen on any given port, so that A can send packets to B through that ...
3
votes
7answers
2k views

NAT Traversal

I am trying to build a peer to peer application. I would like to know how I can accomplish nat traversal in c++. Is there any good library in c++ for this. Or any coding examples, books, links.... ...
3
votes
4answers
3k views

Trying to get NAT's external IPAddress with INATExternalIPAddressCallback in C#

How do I get the external IP Address of a NAT using the windows library? I am trying to find any information on INATExternalIPAddressCallback, but have only found one example in C++ using unavailable ...
3
votes
1answer
534 views

How do I write code to get through NAT in a similar way to Skype?

Does anyone knows, how skype redirect NAT and FireWalls?
3
votes
3answers
2k views

UDP, NAT and setting up “connections”

I know the word "connection" isn't really appropriate when talking about UDP, but... How does a server (the one with the known IP) get its UDP packets through the Internet to a client that is behind ...
2
votes
3answers
106 views

Port Forwarding

I have a simple requirement of a software level port forwarding/tunnelling of socket based communication. I have a source server and port using Sockets. This is a java program which works both in ...
2
votes
1answer
48 views

VMs in different NATs [closed]

I want to simulate three computers, everyone behind a different NAT, in order to test hole punching. I want a server that its address is know to the other two VMs, but the two VMs to be in separate ...
2
votes
1answer
283 views

UDP NAT hole punching example [closed]

I try search in google and here but i still cant find simple C\C++ example udp hole punching algorithm. Please help if you know where i can find it. Thanks!
2
votes
1answer
468 views

TCP hole punching on iPhone

I have done a bit of reading, and although I'm new to iPhone networking I was wondering if a TCP hole punch is possible for connecting two iPhones through NAT. I also read some helpful things about ...
2
votes
0answers
323 views

Best practices for .Net WCF NAT Traversal

I'm looking for suggestions or a solution for peer-to-peer NAT traversal in .Net. Say I have a chat application and two clients need to connect but both are behind NAT: For home scenarios, uPNP is ...
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 ...
2
votes
3answers
211 views

Weird TCP issue with Amazon S3 [closed]

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar ...
2
votes
3answers
144 views

What percentage of users are behind symmetric NATs, such that “p2p” traffic needs to be relayed?

We're implementing a SIP-based solution and have configured the setup to work with RTPProxy. Right now, we're routing everything through RTPProxy as we were having some issues with media transport ...
2
votes
1answer
205 views

NAT Traversal and IPv6

I am curious about the usefulness of NAT and NAT traversal mechanisms once the deployment and usage of IPv6 increases. We have so many NAT traversal mechanisms (including proprietary) which are ...
2
votes
2answers
179 views

Web Application Nat Traversal

We are deploying web applications in java using tomcat on client machines across the country. Once they are installed, we want to allow a remote access to these web applications through a central ...
2
votes
2answers
266 views

Testing NAT Breakthrough Code

I am very interested in at least trying to implement NAT break through for my senior project. (I am doing a networking API). It's not even a requirement of my project, just a interest of mine. I know ...
2
votes
1answer
775 views

method to find my UDP socket's “real” port?

Is there any free service to which I could send a UDP packet and it would respond telling me what is my "real" UDP port? (my application is behind a NAT) This kind of service could allow me to make a ...
2
votes
1answer
25k views

How to fix “a connection attempt failed because the connected party did not properly respond after a period of time …” error?

I'm making a game in C# and I want to display the progress (movements and so on) of opponent. So I send events in game via TCP protocol to opponent. I've already tried my application on localhost and ...
2
votes
1answer
3k views

How to handle ssh host key verification with 2 different hosts on the same (but changing) IP address? [closed]

I have 2 ssh servers behind a nat firewall at a location that changes its wan IP every day. They are always at the same wan IP address on a given time but on different ports. I am connecting to ...
2
votes
1answer
477 views

SNMP payload address translation

I'm using iptables under linux to NAT SNMP traffic. Some of the SNMP packets have VARBINDs that contain the (real) IP addresses of the devices that generated them. This confuses standard management ...
1
vote
2answers
56 views

apache on windows network - can't connect to external ip from in network

I created an AMP web application that was originally going to be served from a traditional 3rd party host. As we finished up, the client decided to host it internally, on a server in their office ...
1
vote
1answer
80 views

file transfer using p2p connection in java

i want transfer files using p2p connection. There will be a server or any common place to share both A and B computers information for establishing the connection. I've created p2p connection using ...
1
vote
0answers
41 views

NAT simulation for P2P data transfer

I am currently implemented a P2P data transfer application based on Libjingle, I want to do following simulations to verify the implementation: Simulate different types of NATs (full cone, port ...
1
vote
2answers
71 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
2answers
80 views

udp hole punch and port restricted cone NAT

I would like to understand how udp hole punching works when two hosts each behind the port restricted cone NAT establish connection. As I understood, it happens in several stages and involves three ...
1
vote
1answer
62 views

Will XMPP work in a NAT environment?

An XMMP server sends push notifications to a client behind a NAT using a public endpoint( IP + Port) supplied by NAT to client. But how long this endpoint is assigned to this specific client by NAT, ...
1
vote
1answer
173 views

PHP and Java for UDP NAT hole punching…?

I want to use NAT hole-punching in one of my java applications, but I don't know where to start. I'd like some sample code to start off with.... (I have access to a PHP server with sockets, cURL, and ...
1
vote
1answer
62 views

NAT punching Implementation

I am trying to run a file sharing software behind NAT. As I am going through the papers on NAT Punching, i found it very difficult to implement since there are nearly 27 different implementation of ...
1
vote
1answer
61 views

Some question about NAT Penetration with UPnP

I'm implementing a protection system for household network. There are several digital devices in the home, and they all have web services running on them in order that they can visit each other ...
1
vote
1answer
81 views

Apache JAMES behind NAT

I am having problems getting my mail server to work. It used to work fine when I was connected directly to the Internet but I had to move the machine and it is now behind a NAT router. I have setup ...
1
vote
1answer
71 views

Nat punch, MasterServer/Server/Client. Client can't talk to Server on known public ip and port

I have 3 applications: a MasterServer, a Server and a Client. The MasterServer is running on: 70.105.155.5:15555 (port forwarded with UPnP) I create a server and let the MasterServer know I exist. ...
1
vote
2answers
56 views

Message from the cloud to a machine behind NAT / Firewall

I want a cloud machine to send a message to a machine behind a corporate NAT / Firewall. My idea is to install on the corporate machine a client which sends a long HTTP request to the cloud machine ...
1
vote
1answer
253 views

how can i do NAT tunnel UDP hole punching in java?

how can i do NAT tunnel UDP hole punching in java? because of this, the A and B computer behind the different NAT can not receice the UDP packs which they send to each other..... how can i solve ...
1
vote
1answer
100 views

Android: Is it possible to connect to a server without configuring router's NAT?

I'm trying to find a way to establish a TCP connection (socket) between an Android device and a server without having to setup server's router NAT. ANDROID DEVICE -> INTERNET -> ROUTER (with fixed ...
1
vote
1answer
38 views

Application-level IP masquerading?

On Windows XP, we would like an application to be able to send UDP packets "from" arbitrary IP4 addresses onto a [private] network that's connected to one of the computer's network cards. The ...
1
vote
1answer
94 views

How to find out port (nat assigned) from which a connection to a web server is made

Basically I have access to a Apache server and I want to make a NAT traversal application. I have thought about randomly trying ports on both sides but, quickly discarded that idea. I don't have the ...
1
vote
2answers
141 views

Skype protocol and supernodes

I have a question about the skype protocol. Supposedly, according to wiki, the supernodes in Skype are used in UDP hole punching. The supernodes are nodes without firewalls/NATs. My question is, how ...
1
vote
1answer
120 views

DNS Hosts behind the same IP

Recently, I bought a domain name at www.active-domain.com I use it for my home network, so we're talking about NAT and dynamic IP. As my IP is dynamic, i can't create a delegation to use my own DNS ...
1
vote
1answer
173 views

NAT translation not working from inside the network (hairpin condition)

I'm writing a P2P application. Peers regularly ping a main server to update their current IP/port, so when a peer wants to reach another one it can ask the server for that information. For now peers ...

1 2 3