Hole punching is the process of taking advantage of the standard way of implementing NAT to allow direct connection between computers in private networks.
0
votes
2answers
54 views
+150
TCP Holepunch implementation
I'm working on an idea of mine which is comparable to a home automation system.
The layout of network devices would be like this:
What I want is for my Mobile Phone App to be able to communicate ...
0
votes
0answers
27 views
Can I open a Netty Client Channel on a local port binded by a Netty server in order to perform hole punching?
Here is the problem: I'm trying to send a message from a Netty Server binded port to perform hole punching. I have read many things about it, especially that on unix it is not possible. This would ...
1
vote
1answer
37 views
find out/predict the router is/will be using for a given connection
I know that ipchicken.com will tell you your router's ip address and the port it is using for your connection. But can this information be obtained "locally"? (Without relying on a website).
What I ...
2
votes
2answers
94 views
Choosing port number for UDP hole-punching
I have a weird problem. I have a successfully working C++ (boost asio) P2P application which works on most of the NAT. The problem is when I give the initial start port number as 1000 it checks if ...
2
votes
1answer
190 views
When to use TCP hole punching technique and why to use it?
I am studying the TCP hole punching technique and have got some knowledge from this article: TCP_hole_punching. But I don't understand below part:
Network Drawing
Peer A ←→ Gateway A ← .. ...
5
votes
2answers
202 views
UDP hole punching timeout
I need to implement a UDP protocol. The PC has to listen at a dedicated UDP port for incoming packets. It also sends packet (answers). The application runs on Windows XP, 7, 8, ....
The Windows ...
0
votes
1answer
154 views
TCP hole punching, can't reuse address on android
I have an android device hosting an HTTP server and is NATed(behind router). I want to access it from a public server which is not NATed.
I run a HTTP server on android device at port 8080 in a thread ...
1
vote
1answer
124 views
P2P Networking under the each NAT
I'm doing some mobile project, that need to P2P communication with two devices.
And I faced with problem. (cause it's rare that smartphone have public ip)
I found some answers. It is 'UDP Hole ...
0
votes
0answers
102 views
NAT HOLE PUNCHING over 3G weird behaviour [closed]
I have a wireless carrier that allows p2p communications...
After checking the connection with a NAT anazyler, it appears that the NAT is endpoint independent, meaning that it will use the same ...
2
votes
2answers
74 views
Running Java EE application on web-server
Following is a thread which has a SOCKET listening at port 15445.
Whenever a Datagram packet is sent to it, it forwards back to the sender's address after adding a String(Reply from SERVER) in it. I ...
2
votes
1answer
97 views
Advanced hole punching with Tinybrick's Lightspeed
I have a situation that Tinybrick has referred to as "advanced hole punching" and I can't seem to get it to work. We recently installed the Subscriptions and Recurring Payments extension from ...
1
vote
1answer
493 views
UDP Hole Punching (c++/winsock)
stackoverflow users!
I have an app that has to deal with p2p, and that's how I get to UDP Hole punching. But I ran into troubles with implementation. Hope, you can give me some tips.
I've got ...
0
votes
0answers
62 views
when local and public port of computer gets changed, peer to peer communication is not working
Here is my observation...
ClientA
Local IP : 192.168.1.2:11111
Public IP : 202.202.202.202:11111
ClientB
Local IP : 192.172.1.2:6845
Public IP : 102.102.102.102:6845
In this scenario peer to peer ...
1
vote
0answers
93 views
IP Spoofing for peer to peer connections over Cellular ISP
For Voip purpose, I'm looking to ways to create a peer to peer connection.
I already use a STUN-like server in order to connect 2 peers together. It works great for most NAT, but as expected, this ...
3
votes
1answer
350 views
Connect Biometric Device output to Open ERP 6.1
Is it possible to Connect Biometric Device output directly to openERP?
Our company has a Biometric FingerPrint Machine and at the end of day, we have an excel sheet which contains all the attendance ...
2
votes
1answer
232 views
How to control socket on peer[TCP Hole Punching]
I have a server-client program that use TCP connection to communicate. More than one client can connect to the server at the same time. I want to implement the tcp hole punching on this system.
On ...
1
vote
0answers
301 views
VOIP over 3G network
I have created a STUN-like + rendez-vous server.
I have tried the whole thing over WIFI (behind a domestic NAT), and everything works fine.
I have two mobile ISPs, one allowing everything (VOIP + P2P ...
0
votes
0answers
175 views
UDP Hole Punching with C# - architecture
I am trying to implement UDP hole punching into my application. I have a tcp ip server to which I send username of the user which I want to view. Server sends me back his broadcasting port and IP ...
1
vote
0answers
258 views
TCP/UDP Hole Punching and Hybrid P2P + Client/Server Architecture
I have a hybrid architecture where A is a client trying to request content from B, which is a server that is potentially behind a NAT (though not necessarily). S is a server acting as the go between ...
0
votes
1answer
209 views
Force a router to keep a an IDLE UDP port open
A client opens a UDP connection to my server , after some time (10 minutes-24 hours) the server needs to send data back to the client but it finds that the UDP port of the client is closed !.
After ...
0
votes
1answer
80 views
UDP hole punching on 1 port?
I want to use UDP to send PUSH notifications for users of our system , but i wonder if it will work ?
Assuming i have one server which have port let's say UDP:8888 open and waiting for connections . ...
8
votes
1answer
1k views
UDP hole punching not going through on 3G
I'm trying to implement in a software a hole punching feature.
The thing is, I'm implementing this with an already made TCP Server to communicate with Users.
Here's what I have so far :
"A" sends ...
10
votes
4answers
2k views
UDP hole punching. Have server talk to client
I been reading a lot on how to implement UDP hole punching but fore some reason I cannot make it work.
For those that are not familiar of what udp hole punching is here is my own definition:
The ...
7
votes
1answer
291 views
How to simulate different NAT behaviours
I am working on Holepunching using UDP and UDT. For the final testing I need to test the application on different NAT types (Symmetric,full cone,restricted cone, port restricted NATs).
Is there any ...
0
votes
1answer
249 views
How to do UDP hole punching in Qt?
I have a server on Internet that can send and receive datagrams.
What should I do on the client side in order to punch a hole so that I can receive datagrams from the server?
1
vote
0answers
223 views
UDP Hole punching: one Symmitric and another non-symmetric NAT
I am trying to implement P2P with Hole Punching. Here is the flow:
Both Peers(P1,P2) will send 1 packet to server(S).
Server(S) replies back to both telling others IP:PORT
P1 and P2 receive this UDP ...
0
votes
1answer
428 views
Simple PHP NAT Punch Through Server Script
I am trying to write a PHP script that can serve as a "master server" and facilitate a P2P connection between two Java game clients. I am using a shared web host that allows port access for the master ...
1
vote
1answer
485 views
Error while compiling libjingle on windows 7
I followed the README included in libjingle download. Installed all the 3rd party packages and ran this command:
hammer.bat --jobs=6 --verbose --mode=all all_programs
I get this error:
cl ...
3
votes
1answer
388 views
Hole punching with boost::asio
I tried to make a server client with hole-punching protocole .
So I send to my server my client IP and client Port,
And when a second User is connected the server send to both client the Ip and port ...
2
votes
3answers
346 views
Cannot connect via local port after closing connection
I am trying to prototype TCP hole punching of a NAT as described in this paper http://www.brynosaurus.com/pub/net/p2pnat/.
I have this simple piece of code that tries to open a connection to a ...
1
vote
0answers
161 views
c# being done with a remote computer sending and receiving data using stunserver
I can not send data stunserver remote computer using the two. Data comes from local computers, but data on remote computers is not going to come.
I'm using my program, stunserver
public void run()
...
2
votes
4answers
438 views
How do games handle NAT router problems?
For the past few days I've been working on an online game, a 2-player game where one starts a server (listens on a certain port) and another one connects to him by entering his IP. There are two ...
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
3answers
824 views
UDP hole punching host-specific failure
I wrote a program that sets-up peer-to-peer links. The programm, which can be found at http://basyl.co.uk/code/punch/doc/files/Readme-txt.html, is in two parts: a server that runs on a public host; ...
1
vote
1answer
220 views
If possible--how to use an irc server (like gmail chat or facebook) to establish ssh connection between two hosts behind firewalls
I have been looking around for a solution that implements this, but google always gives me tutorials on establishing a live chat over an ssh tunnel--not the other way around.
I suspect this can be ...
1
vote
0answers
605 views
Java implementation of NAT Traversal / HolePunching TPC
I've been browsing and searching for implementation of a Peer-to-Peer TCP Connection with both clients behind routers, but everything I got was "get more confused"!
My case is "a little bit ...
11
votes
3answers
3k views
UDP hole punching implementation
I am trying to accomplish UDP hole punching. I am basing my theory on this article and this WIKI page, but I am facing some issues with the C# coding of it. Here is my problem:
Using the code that ...
0
votes
1answer
148 views
PHP, Java Servlet, or C# WebService as NAT Intermediary Server
Instead of renting a server on Amazon and other hosting companies (which would cost many dollars / month), is it possible to setup a Java Servlet, C# WebService, or a simple PHP website (with socket ...
3
votes
2answers
2k views
UDP Hole Punching Algorithm
Can anyone give an example of a UDP Hole Punching ?
Actually, I want to write a chat program with which people can chat when they know each other's IP. But both the machines will be behind a ...
9
votes
4answers
2k views
TCP Hole Punching
I'm trying to implement TCP hole punching with windows socket using mingw toolchain. I think the process is right but the hole doesn't seems to take. I used this as reference.
A and B connect to the ...
7
votes
1answer
3k views
Trying get dynamic content hole-punched through Magento's Full Page Cache
I am using Magento Enterprise 1.10.1.1 and need to get some dynamic content on our product pages. I am inserting the current time in a block to quickly see if it is working, but can't seem to get ...
2
votes
2answers
891 views
C# UDP cannot listen on a port that has already been used to send data?
I am new to UDP/networking programming, and I am trying to create a chat board via UDP.
My ultimate aim is to do UDP hole-punching (something of a similar concept to Skype), so I need to listen on ...
2
votes
3answers
835 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 ...
2
votes
1answer
110 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 ...
3
votes
1answer
1k 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
570 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
201 views
Hole punching over http
How can I do the hole punching over http,like I have a server in godaddy
Its port access for tcp listeners is closed,so can I get the client's port
number from its request to an aspx page?
1
vote
5answers
1k views
Communication between two computers without opening ports, using a third computer to set up the connection
Let's say I have a server, and two clients connected to it. (via TCP, but it doesn't matter)
My goal is to allow a direct connection between those two clients. This is to allow direct voice contact ...
0
votes
2answers
465 views
Difference between UdpClient.Send method and UdpClient.Client.Send method
I can either send data throughout the udp protocol with the UdpClient.Send(byte array) or the UdpClient.Client.Send(stream) method. both methods work. the only differences are that on one method I ...
4
votes
1answer
1k views
UDP Hole Punching help
I'm trying to add networking over the internet to my game, using Peer to Peer.
I have already implemented a LAN only version, which uses .NET's peer to peer classes to connect within the local ...
