Giter Site home page Giter Site logo

praveenmunagapati / udp-hole-punching Goto Github PK

View Code? Open in Web Editor NEW

This project forked from wilfreddenton/udp-hole-punching

0.0 1.0 0.0 40 KB

An experimental P2P encrypted chat app created to show UDP hole punching in action

Go 51.84% JavaScript 31.39% HTML 0.32% Vue 16.45%

udp-hole-punching's Introduction

๐Ÿ‘Š UDP Hole Punching ๐Ÿ‘Š

Yusuke punches a hole right through your NAT

udp-hole-punching

Disclaimer: This is not a production ready chat application. While it does create AES encrypted connections client <-> client and client <-> server, this code has not been audited or tested by any security specialists. This is simply an exercise for me to learn more about P2P networking and technologies as well as provide some examples of the technologies in use for others who are interested in learning. Additionally, the udp client does not implement a protocol that ensures the successful delivery of messages and so some will be lost over spotty connections.

Preview

preview

Click the above image to watch a youtube video of the chat app in action. The terminal in the top right hand corner is SSHed into a VPS which runs the rendezvous server. The terminal in the bottom right is the terminal UI. The web app on the left is the GUI.

Install

go get github.com/wilfreddenton/udp-hole-punching

Usage

1. Setup rendezvous server

The main package is the rendezvous server. Find a VPS or something to host it on. You can run everything locally but it won't really be testing whether or not hole punching works because it's on the same machine. Make sure that the server has TCP and UDP ports open to incoming traffic from 0-65535.

To run it:

  1. go install
  2. udp-hole-punching

2. Adjust UI settings

There are two UIs that you can use gui which is a web UI and term-ui which is a terminal UI. You can use any combination of UIs.

Before you use one you should open the main.go file and switch the serverTCPIP and serverUDPIP constants to the IP address of your rendezvous server (no port).

To run the web UI

  1. cd gui/ui
  2. npm install
  3. npm run build
  4. cd ..
  5. go install
  6. gui if your rendezvous server is running on locally or gui -serverIP=<server IP here>
  7. point your browser to localhost:8000

To disconnect and start a new chat simply refresh.

To run the terminal UI

  1. cd term-ui
  2. go install
  3. term-ui if your rendezvouse server is running locally term-ui -serverIP=<server IP here>

To disconnect and start a new chat ctrl-c to exit the program and run it again.

3. Find a friend

If not a friend then get access to a computer behind a different router and set up a client on there.

4. Test it out

Run the clients and provide the PeerID of one client to the other client and if the network topology permits hole punching then you will establish an encrypted connection between the clients.

Architecture

udp-hole-punching architecture

  1. Both clients register themselves using their ID with the rendezvous server
  2. Client A makes an "establish" request to the rendezvous server sending the ID of the peer it would like to being communicating with
  3. Upon receiving the "establish" request from client A and verifying that both client A and the requested peer, client B, have registered, the server sends an "establish" response back to client A as well as client B informing the peers of each other's information.
  4. The peers can now send requests directly to each other with the information they've received from the rendezvous server. They create this connection using the hole-punching algorithm described in reference 1.

Simplification of the algorithm

To make the implementation of hole punching a little simpler, the clients to not attempt to connect to each other's private IP addresses. Clients that are behind the same NAT will still be able to connect but they will do so with public IP addresses and not private ones. The routers I have tested seemed to understand that the peers were on it's local network and facilitated the connection without going to the outside internet.

References

  1. Peer-to-Peer Communication Across Network Address Translators
  2. Diffie-Hellman Key Exchange: A Non-mathematicianโ€™s explanation
  3. powered by Curve25519

udp-hole-punching's People

Contributors

wilfreddenton avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.