Projet

Général

Profil

Wireguard » Historique » Version 11

louis.leveque, 09/10/2018 18:23

1 1 sacha
# Wireguard
2
3 7 sacha
Le VPN Kiss, utilisant les dernières règles de l'art, construit pour être audité & performant ! au revoir IPSec & OpenVPN ?
4 1 sacha
5
## Installation
6
7
https://www.wireguard.com/install/
8
9
## Configuration
10
11
### Serveur
12
13
~~~
14
umask 077
15
wg genkey > /etc/wireguard/private
16
wg genkey | tee /etc/wireguard/private | wg pubkey > /etc/wireguard/publickey
17
wg set wg0 private-key /etc/wireguard/private
18
ip link set wg0 up
19
20
cat << EOF > /etc/wireguard/wireguard.conf
21
[Interface]
22
ListenPort = 50000 
23
PrivateKey = `cat /etc/wireguard/private`
24
25
[Peer]
26
PublicKey = Va0X1zOpRc9471Aa3DEUUy7UkAv5aq5SojtIPqOSqwg=
27
AllowedIPs = 10.33.33.0/24
28
Endpoint = 185.233.100.19:50000
29
EOF
30
31
~~~
32
33
### Client
34
35
~~~
36
umask 077
37
wg genkey | tee /etc/wireguard/private | wg pubkey > /etc/wireguard/publickey
38
wg set wg0 private-key /etc/wireguard/private
39
ip link set wg0 up
40
~~~
41 2 sacha
42 4 sacha
### 1er test: @Sacha's Home (Fibre Bouygues) --> @Hypnos (VM Aquilenet)
43 3 sacha
44 2 sacha
~~~
45
46
root@hypnos:/etc/wireguard# iperf3 -s
47
-----------------------------------------------------------
48
Server listening on 5201
49
-----------------------------------------------------------
50
Accepted connection from 10.33.33.2, port 60038
51
[  5] local 10.33.33.1 port 5201 connected to 10.33.33.2 port 60040
52
[ ID] Interval           Transfer     Bandwidth
53
[  5]   0.00-1.00   sec  15.1 MBytes   127 Mbits/sec                  
54
[  5]   1.00-2.00   sec  19.9 MBytes   167 Mbits/sec                  
55
[  5]   2.00-3.00   sec  20.1 MBytes   169 Mbits/sec                  
56
[  5]   3.00-4.00   sec  20.1 MBytes   169 Mbits/sec                  
57
[  5]   4.00-5.00   sec  19.7 MBytes   166 Mbits/sec                  
58
[  5]   5.00-6.00   sec  20.0 MBytes   168 Mbits/sec                  
59
[  5]   6.00-7.00   sec  20.2 MBytes   169 Mbits/sec                  
60
[  5]   7.00-8.00   sec  20.2 MBytes   170 Mbits/sec                  
61
[  5]   8.00-9.00   sec  20.1 MBytes   169 Mbits/sec                  
62
[  5]   9.00-10.00  sec  20.2 MBytes   169 Mbits/sec                  
63
[  5]  10.00-10.03  sec   566 KBytes   165 Mbits/sec                  
64
- - - - - - - - - - - - - - - - - - - - - - - - -
65
[ ID] Interval           Transfer     Bandwidth
66
[  5]   0.00-10.03  sec  0.00 Bytes  0.00 bits/sec                  sender
67
[  5]   0.00-10.03  sec   196 MBytes   164 Mbits/sec                  receiver
68
-----------------------------------------------------------
69
Server listening on 5201
70
-----------------------------------------------------------
71
~~~
72
73
74
~~~
75
root@hypnos:/etc/wireguard# wg
76
interface: wg0
77
  public key: Va0X1zOpRc9471Aa3DEUUy7UkAv5aq5SojtIPqOSqwg=
78
  private key: (hidden)
79
  listening port: 50000
80
81
peer: VEfmgnq/aXPX3qBB7Q2fgxAawQdfUYZDRKEQSPC8tnA=
82
  endpoint: 5.51.0.155:3418
83
  allowed ips: 10.33.33.0/24
84
  latest handshake: 4 minutes, 30 seconds ago
85
  transfer: 208.75 MiB received, 6.68 MiB sent
86
~~~
87 5 sacha
88
## InstallDebian sur Apu2
89
90
https://blog.pgeiser.com/posts/2017/04/installing-debian-stretch-on-a-machine-without-a-graphic-card/
91 6 sacha
92
aptitude install dhcpd tmux whois aptitude dnsutils curl htop
93 8 sacha
94
95
~~~
96
#!/bin/bash
97
gw=`ip  route | awk '/default/ { print $3 }'`
98 9 sacha
sysctl -w net.ipv4.ip_forward=1
99 8 sacha
ip link add dev wg0 type wireguard
100
ip address add dev wg0 10.33.33.2/24
101
ip link set up dev wg0
102
ip route add 185.233.100.19/32 via $gw dev enp1s0
103
ip route del default
104
ip route add default dev wg0
105
wg setconf wg0 /etc/wireguard/wg0.conf
106
~~~
107 10 sacha
108
https://git.zx2c4.com/WireGuard/about/src/tools/man/wg-quick.8
109
https://git.zx2c4.com/WireGuard/about/src/tools/wg.8