blob: 49fb5896d526fbad36e2a816f934c6b1750d4c99 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<p><a href="https://www.wireguard.com/">WireGuard</a> VPN. Endpoint: <code>vpn.gumx.cc:51820</code>. Access is by invitation.</p>
<h2>setup</h2>
<ol>
<li>Generate a keypair: <code>wg genkey | tee private.key | wg pubkey > public.key</code></li>
<li>Send your public key to <a href="mailto:hi@gumx.cc">hi@gumx.cc</a></li>
<li>Receive your assigned IP (<code>10.0.0.x/32</code>) and the server public key</li>
<li>Create <code>/etc/wireguard/wg0.conf</code> and bring it up with <code>wg-quick up wg0</code></li>
</ol>
<h2>example client config</h2>
<pre><code>[Interface]
PrivateKey = <your private key>
Address = 10.0.0.x/32
DNS = 1.1.1.1
[Peer]
PublicKey = <server public key>
Endpoint = vpn.gumx.cc:51820
AllowedIPs = 0.0.0.0/0
PersistentKeepalive = 25</code></pre>
|