Go to file
Dennis Schwerdel 8652f0ca79 New measurements 2016-04-05 22:07:25 +02:00
deb Renamed default.net to example.net 2016-04-05 15:48:28 +02:00
libsodium@fce6852d64 Updated libsodium, updated depdendencies 2016-04-05 15:27:47 +02:00
src Using slice operations instead of loops 2016-03-29 14:26:59 +02:00
.gitignore Updated libsodium, updated depdendencies 2016-04-05 15:27:47 +02:00
.gitmodules Updated dependencies and docs 2015-12-08 22:03:49 +01:00
.travis.yml Include libsodium in builds 2015-11-30 17:27:50 +01:00
CHANGELOG.md New measurements 2016-04-05 22:07:25 +02:00
Cargo.lock Renamed default.net to example.net 2016-04-05 15:48:28 +02:00
Cargo.toml Ready to release 0.5.0 2016-04-05 15:36:06 +02:00
LICENSE.md Added license and copyright information 2016-02-05 16:58:32 +01:00
README.md Updated libsodium, updated depdendencies 2016-04-05 15:27:47 +02:00
build.rs Include libsodium in builds 2015-11-30 17:27:50 +01:00
gpl-3.txt Added license and copyright information 2016-02-05 16:58:32 +01:00
perf.sh New measurements 2016-02-02 22:05:54 +01:00
performance.md New measurements 2016-04-05 22:07:25 +02:00
vpncloud.md Added license and copyright information 2016-02-05 16:58:32 +01:00

README.md

VpnCloud - Peer-to-Peer VPN

Build Status Coverage Status Latest Version

VpnCloud is a simple VPN over UDP. It creates a virtual network interface on the host and forwards all received data via UDP to the destination. VpnCloud establishes a fully-meshed VPN network in a peer-to-peer manner. It can work on TUN devices (IP based) and TAP devices (Ethernet based). Tunneling traffic between two nodes can be as easy as:

vpncloud -c REMOTE_HOST:PORT --ifup 'ifconfig $IFNAME 10.0.0.1/24 mtu 1400 up'

More details can be found in the manpage. Some performance measurements can be found here.

Project Status

This project is still under development but has reached a somewhat stable state. VpnCloud features the following functionality:

  • Setting up tunnels between two networks via Ethernet (TAP) and IP (TUN)
  • Connecting multiple networks with multiple forwarding behaviors (Hub, Switch, Router)
  • Encrypted connections using libsodium
  • Automatic peer-to-peer meshing, no central servers
  • NAT and (limited) firewall traversal using hole punching
  • Automatic reconnecting when connections are lost
  • Non-native forwarding modes, e.g. IP based learning switch and prefix routed Ethernet networks.
  • High throughput and low additional latency (see performance page)
  • Support for tunneled VLans (TAP device)

However there are some open issues:

  • Encryption has not been formally reviewed, use with care.
  • The tests might be missing some corner cases and more field tests would be nice.

Please feel free to help and contribute code.

Semantic Versioning

This project uses semantic versioning. Currently that means that everything can change between versions before 1.0 is finally released. However I am considering to release 1.0 soon.