Projet

Général

Profil

Wireguard » Historique » Version 22

Baptiste Jonglez, 26/06/2022 23:43
Suppression infos redondantes avec le wiki bénévoles

1 10 Matthieu Herrb
{{>toc}}
2 10 Matthieu Herrb
3 1 Matthieu Herrb
h1. Wireguard
4 1 Matthieu Herrb
5 20 Fabien ADAM
Cette page donne les infos générales sur la configuration du serveur Wireguard utilisé à Tetaneutral.
6 13 Matthieu Herrb
7 13 Matthieu Herrb
h2. Configuration serveur sur h10
8 13 Matthieu Herrb
9 13 Matthieu Herrb
h3. Routage
10 13 Matthieu Herrb
11 13 Matthieu Herrb
Sur h7: router les IP via h10:
12 13 Matthieu Herrb
13 13 Matthieu Herrb
Exemple:
14 13 Matthieu Herrb
<pre>
15 13 Matthieu Herrb
ip r add 185.119.170.3/32 via 91.224.148.143 dev eth3.3131
16 13 Matthieu Herrb
ip -6 r add 2a03:7220:8087:300::/56 via fe80::80:8f dev eth3.3131
17 13 Matthieu Herrb
</pre>
18 13 Matthieu Herrb
19 13 Matthieu Herrb
C'est fait automatiquement en indiquant @wireguard@ dans @ip_ttnn.txt@ comme route pour une IPv4
20 13 Matthieu Herrb
21 22 Baptiste Jonglez
h3. Config sur h10
22 13 Matthieu Herrb
23 22 Baptiste Jonglez
C'est semi-automatisé à partir du SI, voir https://wiki.tetaneutral.net/adminsys/wireguard
24 13 Matthieu Herrb
25 13 Matthieu Herrb
26 13 Matthieu Herrb
h2. Old tests VPN tetaneutral sur h9
27 1 Matthieu Herrb
28 9 Matthieu Herrb
h3. Configuration
29 10 Matthieu Herrb
30 11 Matthieu Herrb
Sur h7: router les IP via h9:
31 1 Matthieu Herrb
<pre>
32 11 Matthieu Herrb
ip r add 185.119.170.3/32 via 91.224.148.143 dev eth3.3131
33 11 Matthieu Herrb
ip -6 r add 2a03:7220:8087:300::/56 via fe80::80:8f dev eth3.3131
34 11 Matthieu Herrb
</pre>
35 11 Matthieu Herrb
36 11 Matthieu Herrb
Sur h9 config globale:
37 11 Matthieu Herrb
38 11 Matthieu Herrb
<pre>
39 1 Matthieu Herrb
# modprobe wireguard
40 1 Matthieu Herrb
# umask 077
41 1 Matthieu Herrb
# wg genkey > /etc/wireguard/private
42 1 Matthieu Herrb
# wg pubkey < /etc/wireguard/private > /etc/wireguard/public
43 1 Matthieu Herrb
# ip link add dev wg0 type wireguard
44 1 Matthieu Herrb
# ip a add dev wg0 10.99.0.1/32
45 1 Matthieu Herrb
# ip -6 a add dev wg0 fe80::31/128
46 6 Matthieu Herrb
# wg set wg0 private-key ./private listen-port 55769
47 1 Matthieu Herrb
# ip link set wg0 up
48 1 Matthieu Herrb
</pre>
49 1 Matthieu Herrb
50 11 Matthieu Herrb
51 1 Matthieu Herrb
Pour chaque client, sur h9:
52 1 Matthieu Herrb
53 1 Matthieu Herrb
<pre>
54 1 Matthieu Herrb
# wg set wg0 peer <clé publique du client> allowed-ips 185.119.170.3/32,2a03:7220:8087:300::/56
55 1 Matthieu Herrb
# ip r add 185.119.170.3/32 dev wg0
56 2 Matthieu Herrb
# ip -6 r add 2a03:7220:8087:300::/56 dev wg0
57 1 Matthieu Herrb
</pre>
58 1 Matthieu Herrb
59 11 Matthieu Herrb
h4. Config client openwrt
60 11 Matthieu Herrb
61 11 Matthieu Herrb
Dans @/etc/config/network@
62 11 Matthieu Herrb
63 1 Matthieu Herrb
<pre>
64 1 Matthieu Herrb
config interface 'vpn0'
65 1 Matthieu Herrb
        option proto 'wireguard'
66 5 Matthieu Herrb
        option private_key '<clé privée>'
67 1 Matthieu Herrb
        list addresses '185.119.170.3/32'
68 5 Matthieu Herrb
        list addresses '2a03:7220:8087:300::1/56'
69 1 Matthieu Herrb
70 1 Matthieu Herrb
config wireguard_vpn0
71 1 Matthieu Herrb
        option public_key 'DsIeOCRs/5uYdi8rLiBzRNmN4zUzKCQRqY3Sbl8NS0A=' # La clé publique de h9
72 1 Matthieu Herrb
        option route_allowed_ips '1'
73 1 Matthieu Herrb
        option endpoint_host '91.224.148.143'
74 1 Matthieu Herrb
        option endpoint_port '55769'
75 4 Matthieu Herrb
        option persistent_keepalive '25'
76 2 Matthieu Herrb
        list allowed_ips '0.0.0.0/0'
77 3 Matthieu Herrb
        list allowed_ips '::/0'
78 1 Matthieu Herrb
</pre>
79 1 Matthieu Herrb
80 12 Matthieu Herrb
h4. Config client debian 
81 11 Matthieu Herrb
82 11 Matthieu Herrb
Dans @/etc/rc.local@ pas de route par défaut configurée
83 11 Matthieu Herrb
84 1 Matthieu Herrb
<pre>
85 11 Matthieu Herrb
# wireguard
86 11 Matthieu Herrb
# route vers h9 
87 11 Matthieu Herrb
/bin/ip route add 91.224.148.143/32 via 192.168.31.200 dev eth0
88 11 Matthieu Herrb
89 11 Matthieu Herrb
/sbin/modprobe wireguard
90 11 Matthieu Herrb
/bin/ip link add dev wg0 type wireguard
91 11 Matthieu Herrb
/bin/ip a add dev wg0 185.119.170.2
92 11 Matthieu Herrb
/bin/ip -6 a add dev wg0 2a03:7220:8087:200::1/56
93 11 Matthieu Herrb
/usr/bin/wg set wg0 private-key /etc/wireguard/private 
94 11 Matthieu Herrb
/usr/bin/wg set wg0 peer DsIeOCRs/5uYdi8rLiBzRNmN4zUzKCQRqY3Sbl8NS0A= \
95 11 Matthieu Herrb
        endpoint  91.224.148.143:55769 \
96 11 Matthieu Herrb
        allowed-ips 0.0.0.0/0,::/0 \
97 11 Matthieu Herrb
        persistent-keepalive 25
98 11 Matthieu Herrb
/bin/ip link set wg0 up
99 11 Matthieu Herrb
100 11 Matthieu Herrb
/bin/ip route add 10.99.0.1 dev wg0
101 11 Matthieu Herrb
/bin/ip route add default via 10.99.0.1 dev wg0
102 11 Matthieu Herrb
/bin/ip -6 route add default via fe80::31 dev wg0
103 9 Matthieu Herrb
</pre>
104 9 Matthieu Herrb
105 9 Matthieu Herrb
h3. Status
106 9 Matthieu Herrb
107 9 Matthieu Herrb
<pre>
108 9 Matthieu Herrb
root@h9:~# wg show
109 9 Matthieu Herrb
interface: wg0
110 9 Matthieu Herrb
  public key: DsIeOCRs/5uYdi8rLiBzRNmN4zUzKCQRqY3Sbl8NS0A=
111 9 Matthieu Herrb
  private key: (hidden)
112 9 Matthieu Herrb
  listening port: 55769
113 9 Matthieu Herrb
114 9 Matthieu Herrb
peer: y4ydCem0bUQpryyiTxS2eMPtoHLD5iOGqth1f9xkfww=
115 9 Matthieu Herrb
  endpoint: 176.158.4.203:57103
116 9 Matthieu Herrb
  allowed ips: 185.119.170.3/32, 2a03:7220:8087:300::/56
117 9 Matthieu Herrb
  latest handshake: 1 minute, 27 seconds ago
118 9 Matthieu Herrb
  transfer: 1.08 MiB received, 1.92 MiB sent
119 9 Matthieu Herrb
120 9 Matthieu Herrb
peer: hUT6WhmUw6yRpwLX3R9Rh/8x1lZDk9JeX56We7zVvWc=
121 9 Matthieu Herrb
  endpoint: 176.158.4.203:57658
122 9 Matthieu Herrb
  allowed ips: 185.119.170.2/32, 2a03:7220:8087:200::/56
123 3 Matthieu Herrb
  latest handshake: 1 minute, 38 seconds ago
124 7 Matthieu Herrb
  transfer: 107.09 KiB received, 208.19 KiB sent
125 7 Matthieu Herrb
</pre>
126 7 Matthieu Herrb
127 8 Matthieu Herrb
h3. Déploiement
128 8 Matthieu Herrb
129 8 Matthieu Herrb
Remarque: clé privée des clients à garder privée...
130 8 Matthieu Herrb
131 8 Matthieu Herrb
Deux modes possibles :
132 8 Matthieu Herrb
133 8 Matthieu Herrb
# sur un PC de l'adhérent·e
134 8 Matthieu Herrb
135 8 Matthieu Herrb
 * iel installe wireguard
136 8 Matthieu Herrb
 * iel génère la clé privé et envoie à ttnn la clé publique
137 8 Matthieu Herrb
 * ttnn envoie la config à l'adhérent·e
138 8 Matthieu Herrb
 * Avantages :
139 8 Matthieu Herrb
140 8 Matthieu Herrb
  * performance
141 8 Matthieu Herrb
  * utilisable en mobilité
142 8 Matthieu Herrb
 * Inconvénients :
143 8 Matthieu Herrb
144 8 Matthieu Herrb
  * difficulté assistance installation initiale / dépannage
145 8 Matthieu Herrb
# Sur un routeur fourni par l'association
146 8 Matthieu Herrb
147 8 Matthieu Herrb
 * routeur un peu costaud (ZBT ou Archer C7)
148 8 Matthieu Herrb
 * on génère un firmware avec la config en dur
149 8 Matthieu Herrb
 * on fournit le routeur à l'adhérent·e (comme pour un accès radio)
150 8 Matthieu Herrb
 * Avantages :
151 8 Matthieu Herrb
152 8 Matthieu Herrb
  * simplicité pour l'adhérent·e
153 8 Matthieu Herrb
  * assistance
154 8 Matthieu Herrb
 * Inconvénients :
155 8 Matthieu Herrb
156 8 Matthieu Herrb
  * performances (à confirmer)
157 1 Matthieu Herrb
  * moins mobile