Skip to content

A simple VPN that crates a UDP tunnel and encrypts packets

License

Notifications You must be signed in to change notification settings

tyler569/tunnel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tunnel

A simple VPN built using a Linux TUN adapter

Usage

Deploy the same binary to the client and server, then run these commands:

Server: ./tunnel --server --addr <server cidr>

Client: ./tunnel --addr <client cidr> --remote <remote ip>

Examples -

./tunnel --server --addr 10.200.0.1/24

./tunnel --addr 10.200.0.10/24 --remote 1.2.3.4

In that example, any traffic sent to 10.200.0.10 on the server will go to the client and any traffic on the client to 10.200.0.1 will go to the server. You can then bind servers to those IPs or permit IP forwarding in the linux kernel to use one end as a router. In the same vein, you can use the linux routing table to send traffic through the tunnel.

Options

--server : sets this instance as the server (listens for a connection instead of connecting out)

--addr <cidr> : sets the address and mask of the TUN adapter for this side of the tunnel

--remote : tells the client what to connect to

--port : sets the port for the server to listen on or the client to connect to.

About

A simple VPN that crates a UDP tunnel and encrypts packets

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages