2015-11-25 18:23:25 +00:00
|
|
|
Performance Tests
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
### Test setup
|
|
|
|
|
2015-11-25 22:05:17 +00:00
|
|
|
Sender node:
|
|
|
|
* Intel(R) Core(TM) i5-2540M CPU @ 2.60GHz
|
|
|
|
* 8 GiB Ram
|
|
|
|
* Intel 82579LM Gigabit Network
|
|
|
|
* Ubuntu 14.04 (Kernel 3.13.0-65-generic)
|
|
|
|
|
|
|
|
Receiver node:
|
|
|
|
* Intel(R) Core(TM) i5-3450 CPU @ 3.10GHz
|
2015-11-25 18:23:25 +00:00
|
|
|
* 16 GiB Ram
|
2015-11-25 22:05:17 +00:00
|
|
|
* Realtek RTL8111/8168/8411 Gigabit Network
|
|
|
|
* Ubuntu 14.04 (Kernel 3.13.0-63-generic)
|
2015-11-25 18:23:25 +00:00
|
|
|
|
2015-12-03 20:56:23 +00:00
|
|
|
VpnCloud version: `VpnCloud v0.3.1, protocol version 1, libsodium 1.0.7 (AES256: true)`
|
2015-11-25 18:23:25 +00:00
|
|
|
|
2015-11-26 21:16:51 +00:00
|
|
|
The sender runs the following command:
|
2015-11-25 18:23:25 +00:00
|
|
|
|
|
|
|
```
|
2015-11-26 21:16:51 +00:00
|
|
|
$> ./vpncloud -t tap -l SENDER:3210 -c RECEIVER:3210 \
|
2015-11-25 18:23:25 +00:00
|
|
|
--ifup 'ifconfig $IFNAME 10.2.1.1/24 mtu 1400 up' &
|
|
|
|
```
|
|
|
|
|
2015-11-26 21:16:51 +00:00
|
|
|
and the receiver runs:
|
2015-11-25 18:23:25 +00:00
|
|
|
|
|
|
|
```
|
2015-11-26 21:16:51 +00:00
|
|
|
$> ./vpncloud -t tap -l RECEIVER:3210 -c SENDER:3210 \
|
|
|
|
--ifup 'ifconfig $IFNAME 10.2.1.2/24 mtu 1400 up' &
|
|
|
|
$> iperf -s &
|
|
|
|
$> top
|
2015-11-25 18:23:25 +00:00
|
|
|
```
|
|
|
|
|
2015-11-30 21:11:37 +00:00
|
|
|
For encrypted tests, `--shared-key test --crypto METHOD` is appended.
|
2015-11-25 22:05:17 +00:00
|
|
|
|
|
|
|
|
2015-11-26 21:16:51 +00:00
|
|
|
### Throughput
|
2015-11-25 22:05:17 +00:00
|
|
|
|
2015-11-26 21:16:51 +00:00
|
|
|
The throughput is measured with the following command:
|
2015-11-25 22:05:17 +00:00
|
|
|
|
|
|
|
```
|
2015-11-26 21:16:51 +00:00
|
|
|
$> iperf -c DST -t 60
|
2015-11-25 22:05:17 +00:00
|
|
|
```
|
|
|
|
|
2015-11-26 21:16:51 +00:00
|
|
|
The test is run in 3 steps:
|
|
|
|
* Native throughput without VpnCloud (`DST` is the native address of the receiver)
|
|
|
|
* Throughput via VpnCloud (`DST` is `10.2.1.2`)
|
|
|
|
* Encrypted throughput via VpnCloud (`DST` is `10.2.1.2`)
|
2015-11-25 22:05:17 +00:00
|
|
|
|
|
|
|
|
2015-11-30 16:27:50 +00:00
|
|
|
| Throughput test | Bandwidth | CPU usage (one core) |
|
|
|
|
| ----------------------------- | ------------- | -------------------- |
|
|
|
|
| Without VpnCloud | 926 Mbits/sec | - |
|
2015-12-03 20:56:23 +00:00
|
|
|
| Unencrypted VpnCloud | 875 Mbits/sec | 80% / 95% |
|
|
|
|
| Encrypted VpnCloud (ChaCha20) | 799 Mbits/sec | 100% |
|
|
|
|
| Encrypted VpnCloud (AES256) | 837 Mbits/sec | 90% / 100% |
|
2015-11-25 22:05:17 +00:00
|
|
|
|
|
|
|
|
2015-11-26 21:16:51 +00:00
|
|
|
### Latency
|
2015-11-25 22:05:17 +00:00
|
|
|
|
2015-11-26 21:16:51 +00:00
|
|
|
The latency is measured with the following command:
|
2015-11-25 22:05:17 +00:00
|
|
|
```
|
2015-11-30 21:11:37 +00:00
|
|
|
$> ping DST -c 100000 -i 0.001 -s SIZE -U -q
|
2015-11-25 22:05:17 +00:00
|
|
|
```
|
|
|
|
|
2015-12-03 20:56:23 +00:00
|
|
|
For all the test, the best average RTT out of 3 runs is selected. The latency is
|
2015-11-26 21:16:51 +00:00
|
|
|
assumed to be half of the RTT.
|
2015-11-25 18:23:25 +00:00
|
|
|
|
|
|
|
|
2015-11-30 16:27:50 +00:00
|
|
|
| Payload size | 100 bytes | 500 bytes | 1000 bytes |
|
|
|
|
| ----------------------------- | --------- | --------- | ---------- |
|
2015-11-30 21:11:37 +00:00
|
|
|
| Without VpnCloud | 158 µs | 164 µs | 171 µs |
|
2015-12-03 20:56:23 +00:00
|
|
|
| Unencrypted VpnCloud | 208 µs | 225 µs | 236 µs |
|
|
|
|
| Difference | +50 µs | +61 µs | +65 µs |
|
|
|
|
| Encrypted VpnCloud (ChaCha20) | 229 µs | 242 µs | 259 µs |
|
|
|
|
| Difference | +21 µs | +17 µs | +23 µs |
|
|
|
|
| Encrypted VpnCloud (AES256) | 223 µs | 232 µs | 249 µs |
|
|
|
|
| Difference | +15 µs | +7 µs | +13 µs |
|
2015-11-25 18:23:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
### Conclusion
|
|
|
|
|
2015-11-26 21:16:51 +00:00
|
|
|
* VpnCloud achieves over 850 MBit/s with default MTU settings.
|
2015-11-30 21:11:37 +00:00
|
|
|
* In encrypted mode, VpnCloud reaches over 800 MBit/s with default MTU settings.
|
|
|
|
* VpnCloud adds about 70µs to the latency.
|
2015-12-03 20:56:23 +00:00
|
|
|
* Encryption adds an additional latency up to 20µs.
|