vpncloud/vpncloud.md

352 lines
14 KiB
Markdown
Raw Permalink Normal View History

2015-11-23 10:55:37 +00:00
vpncloud(1) -- Peer-to-peer VPN
===============================
2015-11-19 21:45:20 +00:00
## SYNOPSIS
2015-11-23 19:53:58 +00:00
`vpncloud [options] [-t <type>] [-d <name>] [-l <addr>] [-c <addr>...]`
2015-11-23 10:55:37 +00:00
## OPTIONS
* `-t <type>`, `--type <type>`:
Set the type of network. There are two options: **tap** devices process
2015-11-23 19:56:37 +00:00
Ethernet frames **tun** devices process IP packets. [default: `tap`]
2015-11-23 10:55:37 +00:00
2015-11-23 19:53:58 +00:00
* `-d <name>`, `--device <name>`:
2015-11-23 10:55:37 +00:00
2015-11-23 19:56:37 +00:00
Name of the virtual device. Any `%d` will be filled with a free number.
[default: `vpncloud%d`]
2015-11-23 10:55:37 +00:00
* `-m <mode>`, `--mode <mode>`:
The mode of the VPN. The VPN can like a router, a switch or a hub. A **hub**
will send all data always to all peers. A **switch** will learn addresses
from incoming data and only send data to all peers when the address is
unknown. A **router** will send data according to known subnets of the
peers and ignore them otherwise. The **normal** mode is switch for tap
2015-11-23 19:56:37 +00:00
devices and router for tun devices. [default: `normal`]
2015-11-23 10:55:37 +00:00
2015-11-23 16:10:42 +00:00
* `-l <addr>`, `--listen <addr>`:
2015-11-23 10:55:37 +00:00
2015-11-23 19:56:37 +00:00
The address to listen for data. [default: `0.0.0.0:3210`]
2015-11-23 10:55:37 +00:00
* `-c <addr>`, `--connect <addr>`:
Address of a peer to connect to. The address should be in the form
`addr:port`. If the node is not started, the connection will be retried
periodically. This parameter can be repeated to connect to multiple peers.
* `--subnet <subnet>`:
The local subnets to use. This parameter should be in the form
`address/prefixlen` where address is an IPv4 address, an IPv6 address, or a
MAC address. The prefix length is the number of significant front bits that
distinguish the subnet from other subnets. Example: `10.1.1.0/24`.
2015-11-23 19:53:58 +00:00
* `--shared-key <key>`:
2015-11-23 14:40:04 +00:00
An optional shared key to encrypt the VPN data. If this option is not set,
the traffic will be sent unencrypted.
2015-11-30 16:27:50 +00:00
* `--crypto <method>`:
The encryption method to use ("aes256", or "chacha20"). Most current CPUs
have special support for AES256 so this should be faster. For older
2015-11-30 22:04:24 +00:00
computers lacking this support, only CHACHA20 is supported.
[default: `chacha20`]
2015-11-30 16:27:50 +00:00
2015-11-23 19:53:58 +00:00
* `--network-id <id>`:
2015-11-23 10:55:37 +00:00
An optional token that identifies the network and helps to distinguish it
from other networks.
2015-11-23 19:53:58 +00:00
* `--peer-timeout <secs>`:
2015-11-23 10:55:37 +00:00
Peer timeout in seconds. The peers will exchange information periodically
2015-11-23 19:56:37 +00:00
and drop peers that are silent for this period of time. [default: `1800`]
2015-11-23 10:55:37 +00:00
2015-11-23 19:53:58 +00:00
* `--dst-timeout <secs>`:
2015-11-23 10:55:37 +00:00
Switch table entry timeout in seconds. This parameter is only used in switch
mode. Addresses that have not been seen for the given period of time will
2015-11-23 19:56:37 +00:00
be forgot. [default: `300`]
2015-11-23 10:55:37 +00:00
2015-11-23 18:06:25 +00:00
* `--ifup <command>`:
A command to setup the network interface. The command will be run (as
parameter to `sh -c`) when the device has been created to configure it.
The name of the allocated device will be available via the environment
variable `IFNAME`.
* `--ifdown <command>`:
A command to bring down the network interface. The command will be run (as
parameter to `sh -c`) to remove any configuration from the device.
The name of the allocated device will be available via the environment
variable `IFNAME`.
2015-11-23 10:55:37 +00:00
* `-v`, `--verbose`:
Print debug information, including information for data being received and
sent.
* `-q`, `--quiet`:
Only print errors and warnings.
* `-h`, `--help`:
Display the help.
2015-11-19 21:45:20 +00:00
## DESCRIPTION
2015-11-23 10:55:37 +00:00
**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. It can work
in 3 different modes:
* **Switch mode**: In this mode, the VPN will dynamically learn addresses
as they are used as source addresses and use them to forward data to its
destination. Addresses that have not been seen for some time
(option `dst_timeout`) will be forgot. Data for unknown addresses will be
broadcast to all peers. This mode is the default mode for TAP devices that
process Ethernet frames but it can also be used with TUN devices and IP
packets.
* **Hub mode**: In this mode, all data will always be broadcast to all peers.
This mode uses lots of bandwidth and should only be used in special cases.
* **Router mode**: In this mode, data will be forwarded based on preconfigured
address ranges ("subnets"). Data for unknown nodes will be silently ignored.
This mode is the default mode for TUN devices that work with IP packets but
it can also be used with TAP devices and Ethernet frames.
2015-11-23 20:05:07 +00:00
All connected VpnCloud nodes will form a peer-to-peer network and cross-connect
2015-11-23 10:55:37 +00:00
automatically until the network is fully connected. The nodes will periodically
exchange information with the other nodes to signal that they are still active
and to allow the automatic cross-connect behavior. There are some important
things to note:
- To avoid that different networks that reuse each others addresses merge due
to the cross-connect behavior, the `network_id` option can be used and set
to any unique string to identify the network. The `network_id` must be the
same on all nodes of the same VPN network.
- The cross-connect behavior can be able to connect nodes that are behind
firewalls or NATs as it can function as hole-punching.
2015-11-19 21:45:20 +00:00
2015-11-23 10:55:37 +00:00
- The management traffic will increase with the peer number quadratically.
It should still be reasonably small for high node numbers (below 10 KiB/s
for 10.000 nodes). A longer `peer_timeout` can be used to reduce the traffic
further. For high node numbers, router mode should be used as it never
broadcasts data.
2015-11-19 21:45:20 +00:00
2015-11-23 10:55:37 +00:00
VpnCloud does not implement any loop-avoidance. Since data received on the UDP
socket will only be sent to the local network interface and vice versa, VpnCloud
cannot produce loops on its own. On the TAP device, however STP data can be
transported to avoid loops caused by other network components.
2015-11-19 21:45:20 +00:00
2015-11-23 10:55:37 +00:00
For TAP devices, IEEE 802.1q frames (VLAN tagged) are detected and forwarded
based on separate MAC tables. Any nested tags (Q-in-Q) will be ignored.
2015-11-19 21:45:20 +00:00
2015-11-23 10:55:37 +00:00
## EXAMPLES
2015-11-23 12:22:08 +00:00
### Switched TAP scenario
In the example scenario, a simple layer 2 network tunnel is established. Most
likely those commands need to be run as **root** using `sudo`.
First, VpnCloud need to be started on both nodes (the address after `-c` is the
2015-11-23 18:06:25 +00:00
address of the remote node and the the `X` in the interface address must be
unique among all nodes, e.g. 0, 1, 2, ...):
2015-11-23 19:53:58 +00:00
2015-11-23 12:22:08 +00:00
```
2015-11-23 20:05:07 +00:00
vpncloud -c REMOTE_HOST:PORT --ifup 'ifconfig $IFNAME 10.0.0.X/24 mtu 1400 up'
2015-11-23 12:22:08 +00:00
```
Afterwards, the interface can be used to communicate.
### Routed TUN example
In this example, 4 nodes should communicate using IP. First, VpnCloud need to
be started on both nodes:
2015-11-23 19:53:58 +00:00
2015-11-23 12:22:08 +00:00
```
2015-11-23 20:05:07 +00:00
vpncloud -t tun -c REMOTE_HOST:PORT --subnet 10.0.0.X/32 --ifup 'ifconfig $IFNAME 10.0.0.0/24 mtu 1400 up'
2015-11-23 12:22:08 +00:00
```
### Important notes
- It is important to configure the interface in a way that all addresses on the
2015-12-04 10:25:14 +00:00
VPN can be reached directly. E.g. if addresses 10.0.0.1, 10.0.0.2 and so on
are used, the interface needs to be configured as /24.
2015-11-23 12:22:08 +00:00
For TUN devices, this means that the prefix length of the subnets must be
different than the prefix length that the interface is configured with.
- VpnCloud can be used to connect two separate networks. TAP networks can be
bridged using `brctl` and TUN networks must be routed. It is very important
to be careful when setting up such a scenario in order to avoid network loops,
security issues, DHCP issues and many more problems.
- TAP devices will forward DHCP data. If done intentionally, this can be used
to assign unique addresses to all participants. If this happens accidentally,
it can conflict with DHCP servers of the local network and can have severe
side effects.
2015-11-23 14:40:04 +00:00
- VpnCloud is not designed for high security use cases. Although the used crypto
primitives are expected to be very secure, their application has not been
reviewed.
The shared key is hashed using *ScryptSalsa208Sha256* to derive a key,
2015-12-04 10:25:14 +00:00
which is used to encrypt the payload of messages using *ChaCha20Poly1305* or
*AES256-GCM*. The encryption includes an authentication that also protects the
header and all additional headers.
2015-11-24 22:47:38 +00:00
This method does only protect against attacks on single messages but not
2015-12-04 10:25:14 +00:00
against attacks that manipulate the message series itself (i.e. suppress
messages, reorder them, or duplicate them).
2015-11-20 12:58:11 +00:00
2015-11-19 21:45:20 +00:00
## NETWORK PROTOCOL
2015-11-23 10:55:37 +00:00
The protocol of VpnCloud is kept as simple as possible to allow other
2015-11-19 21:45:20 +00:00
implementations and to maximize the performance.
2015-11-23 10:55:37 +00:00
Every packet sent over UDP contains the following header (in order):
2015-11-23 19:56:37 +00:00
* 3 bytes `magic constant` = `[0x76, 0x70, 0x6e]` ("vpn")
2015-11-23 10:55:37 +00:00
This field is used to identify the packet and to sort out packets that do
not belong.
* 1 byte `version number` = 1 (currently)
This field specifies the version and helps nodes to parse the rest of the
header and the packet.
2015-11-24 22:47:38 +00:00
* 1 byte `crypto method`
This field specifies the method that must be used to decrypt the rest of the
data (additional headers and message contents). The currently supported
methods are:
- Method `0`, **No encryption**: Rest of the data can be read without
decrypting it.
- Method `1`, **ChaCha20**: The header is followed by a 12 byte
2015-11-24 22:47:38 +00:00
*nonce*. The rest of the data is encrypted with the
`libsodium::crypto_aead_chacha20poly1305_ietf` method, using the 8 byte
header as additional data.
2015-11-24 22:47:38 +00:00
- Method `2`, **AES256**: The header is followed by a 12 byte *nonce*.
2015-11-30 16:27:50 +00:00
The rest of the data is encrypted with the
`libsodium::crypto_aead_aes256gcm` method, using the 8 byte header
as additional data.
2015-11-24 22:47:38 +00:00
* 1 `reserved byte` that is currently unused
2015-11-19 21:45:20 +00:00
2015-11-23 10:55:37 +00:00
* 1 byte for `flags`
2015-11-19 21:45:20 +00:00
2015-11-23 10:55:37 +00:00
This byte contains flags that specify the presence of additional headers.
The flags are enumerated from bit 1 (least significant bit) to bit 8
(most significant bit). The additional headers must be present in this same
order. Currently the following additional headers are supported:
2015-11-19 21:45:20 +00:00
2015-11-23 10:55:37 +00:00
- Bit 1: Network ID
* 1 byte for the `message type`
This byte specifies the type of message that follows after all additional
headers. Currently the following message types are supported:
- Type 0: Data packet
- Type 1: Peer list
- Type 2: Initial message
- Type 3: Closing message
2015-11-24 22:47:38 +00:00
After this 8 byte header, the rest of the message follows. It is encrypted using
the method specified in the header.
In the decrypted data, the additional headers as specified in the `flags` field
will follow in the order of their respective flag bits.
2015-11-23 10:55:37 +00:00
* **Network ID**:
The network id is encoded as 8 bytes.
2015-11-24 22:47:38 +00:00
After the additional headers, the message as specified in the `message type`
field will follow:
2015-11-23 10:55:37 +00:00
* **Data packet** (message type 0):
This packet contains payload. The format of the data depends on the device
type. For TUN devices, this data contains an IP packet. For TAP devices it
contains an Ethernet frame. The data starts right after all additional
headers and ends at the end of the packet.
If it is an Ethernet frame, it will start with the destination MAC and end
with the payload. It does not contain the preamble, SFD, padding, and CRC
fields.
* **Peer list** (message type 1):
2015-11-19 21:45:20 +00:00
This packet contains the peer list of the sender. The first byte after the
switch byte contains the number of IPv4 addresses that follow.
After that, the specified number of addresses follow, where each address
is encoded in 6 bytes. The first 4 bytes are the IPv4 address and the later
2 bytes are port number (both in network byte order).
After those addresses, the next byte contains the number of IPv6 addresses
that follow. After that, the specified number of addresses follow, where
each address is encoded in 18 bytes. The first 16 bytes are the IPv6 address
and the later 2 bytes are port number (both in network byte order).
2015-11-23 10:55:37 +00:00
* **Initial message** (message type 2):
2015-12-04 10:25:14 +00:00
This packet contains the following information:
2015-12-08 21:03:49 +00:00
- The stage of the initialization process
2015-12-04 10:25:14 +00:00
- A random node id to distinguish different nodes
- All the local subnets claimed by the nodes
2015-12-08 21:03:49 +00:00
2015-12-04 10:25:14 +00:00
Its first byte marks the stage of the initial handshake process.
The next 16 bytes contain the unique node id. After that,
2015-11-26 21:16:51 +00:00
the list of local subnets follows.
The subnet list is encoded in the following way: Its first byte of data
2015-11-23 10:55:37 +00:00
contains the number of encoded subnets that follow. After that, the given
number of encoded subnets follow.
For each subnet, the first byte is the length of bytes in the base address
and is followed by the given number of base address bytes and one additional
byte that is the prefix length of the subnet.
The addresses for the subnet will be encoded like they are encoded in their
native protocol (4 bytes for IPv4, 16 bytes for IPv6, and 6 bytes for a MAC
address) with the exception of MAC addresses in a VLan which will be encoded
in 8 bytes where the first 2 bytes are the VLan number in network byte order
and the later 6 bytes are the MAC address.
* **Closing message** (message type 3):
2015-12-08 21:03:49 +00:00
This packet does not contain any more data.
2015-11-23 10:55:37 +00:00
Nodes are expected to send an **initial message** whenever they connect to a
node they were not connected to before. As a reply to this message, another
2015-12-08 21:03:49 +00:00
initial should be sent with stage 2. Also a **peer list** message should be
sent as a reply.
2015-11-23 10:55:37 +00:00
When connected, nodes should periodically send their **peer list** to all
2015-11-19 21:45:20 +00:00
of their peers to spread this information and to avoid peer timeouts.
2015-11-20 12:58:11 +00:00
To avoid the cubic growth of management traffic, nodes should at a certain
network size start sending partial peer lists instead of the full list.
A reasonable number would be the square root of the number of peers.
2015-12-04 10:25:14 +00:00
The subsets should be selected randomly.
2015-11-19 21:45:20 +00:00
Nodes should remove peers from their peer list after a certain period of
2015-11-23 10:55:37 +00:00
inactivity or when receiving a **closing message**. Before shutting down, nodes
should send the closing message to all of their peers in order to avoid
2015-11-19 21:45:20 +00:00
receiving further data until the timeout is reached.
2015-11-23 10:55:37 +00:00
Nodes should only add nodes to their peer list after receiving an initial
message from them instead of adding them right from the peer list of another
peer. This is necessary to avoid the case of a large network keeping dead nodes
alive.
2015-11-19 21:45:20 +00:00
## COPYRIGHT
Copyright (C) 2015 Dennis Schwerdel