User Tools

Site Tools


notes:setup-wireguard-vpn-on-debian9

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
notes:setup-wireguard-vpn-on-debian9 [2018/09/06 11:51] – server conf adminnotes:setup-wireguard-vpn-on-debian9 [2019/02/02 21:48] (current) admin
Line 3: Line 3:
 -- //Tested with **Debian 9** (server side) and **Ubuntu 18.04** (client side) on **September 2018**// -- -- //Tested with **Debian 9** (server side) and **Ubuntu 18.04** (client side) on **September 2018**// --
  
 +===== Server Setup ======
  
-==== Server Setup ===== +==== Install WireGuard on the Server ====
- +
-=== Install WireGuard ===+
  
 Install WireGuard from Debian packages Install WireGuard from Debian packages
Line 18: Line 17:
   sudo modprobe wireguard   sudo modprobe wireguard
  
-=== Generate Server Keys ===+==== Generate Server Keys ====
  
 Generate server private key with Generate server private key with
Line 28: Line 27:
 and note down the generated public key (in our example will be ''SeRvErPUBLICkEySeRvErPUBLICkEySeRvErPUBLICk=''). and note down the generated public key (in our example will be ''SeRvErPUBLICkEySeRvErPUBLICkEySeRvErPUBLICk='').
  
-=== Generate User Keys ===+==== Generate User Keys ====
  
 Generate user private key (one per user!) with Generate user private key (one per user!) with
Line 39: Line 38:
 and note down the generated public key (in our example will be ''UsEr1PUBLICkEyUsEr1PUBLICkEyUsEr1PUBLICkey=''). and note down the generated public key (in our example will be ''UsEr1PUBLICkEyUsEr1PUBLICkEyUsEr1PUBLICkey='').
  
-=== Configure the Server ===+==== Configure the Server ===
 + 
 +Check the name of the network interface with 
 +  ip l 
 + 
 +  1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1 
 +      link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 
 +  2: ens32: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000 
 +      link/ether 00:0c:29:5a:8c:02 brd ff:ff:ff:ff:ff:ff 
 + 
 +In our case the public network interface is ens32. Note down the public IP address of the server associated to the interface. In our example will be 1.2.3.4 (no, I'm not from APNIC) - you can check yours with 
 +  ip a show dev ens32 
 + 
 +Now, create a file for the wireguard interface (''wg0s'' in our example) with 
 +  sudo vim /etc/wireguard/wg0s.conf 
 +and add the following content (replace the sample keys with your actually generated keys and ens32 with your server's public interface):
  
-Now, create a file for the wireguard interface (''wg0'' in our example) with 
-  sudo vim /etc/wireguard/wg0.conf 
-and add the following content (replace the sample keys with your actually generated keys): 
   [Interface]   [Interface]
   Address = 172.16.16.1/24   Address = 172.16.16.1/24
Line 55: Line 66:
   AllowedIPs = 172.16.16.2/32   AllowedIPs = 172.16.16.2/32
      
-You can also change the ListenPort from 5544 to a different, unused port (and open the corresponding port on the firewall).+You can also change the ListenPort from 5544 to a different, unused port (and open the corresponding port on the server'firewall). 
 + 
 +==== Start the server ==== 
 + 
 +Start Wireguard on the server with 
 +  sudo wg-quick up wg0s 
 +and check if the VPN tunnel is up and running with 
 +  wg show 
 + 
 +If needed, you can kill the tunnel with 
 +  sudo wg-quick down wg0s 
 + 
 +===== Client Setup ====== 
 + 
 +==== Install WireGuard on the Client ==== 
 + 
 +Install wireguard on your Ubuntu client with 
 +  sudo add-apt-repository ppa:wireguard/wireguard 
 +  sudo apt-get update 
 +  sudo apt-get install wireguard 
 + 
 +==== Configure the Client ==== 
 + 
 +Now, create a file for the wireguard interface (''wg0c'' in our example) on your Ubuntu client 
 +  sudo vim /etc/wireguard/wg0c.conf 
 +and add the following content (remember replace the IP address of the Endpoint with server public address and the keys). 
 + 
 +  [Interface] 
 +  Address = 172.16.16.2/24 
 +  SaveConfig = true 
 +  ListenPort = 47824 
 +  FwMark = 0x1234 
 +  PrivateKey = UsEr1PRIVATEkEyUsEr1PRIVATEkEyUsEr1PRIVATE 
 +   
 +  [Peer] 
 +  PublicKey = SeRvErPUBLICkEySeRvErPUBLICkEySeRvErPUBLICk 
 +  AllowedIPs = 0.0.0.0/0, ::/0 
 +  Endpoint = 1.2.3.4:5544 
 +  PersistentKeepalive = 10 
 + 
 +==== Start the client ==== 
 + 
 +Start Wireguard on with 
 +  sudo wg-quick up wg0c 
 +and check if the VPN tunnel is up and running with 
 +  wg show 
 + 
 +If needed, you can kill the tunnel with 
 +  sudo wg-quick down wg0c
  
 +===== Throubleshooting =====
  
 +  - Do not mess up the keys - it's quite easy to switch client and server, public and private (and break the tunnel)
 +  - If you have a firewall running on your server, open the corresponding UDP port (5544 in the example above)
 +  - If you are behind the Great Firewall, probably it will not work
notes/setup-wireguard-vpn-on-debian9.1536234684.txt.gz · Last modified: 2018/09/06 11:51 by admin