====== Our VPN server in Amsterdam ====== === Connection to our vpn === - This vpn is using our own server in Amsterdam. The provided configuration uses vpn only for blocked websites. - Install [[https://www.wireguard.com/install/|Wireguard]] and check that it works: modinfo wireguard - Generate your encryption keys: sudo mkdir -p /etc/wireguard/keys; wg genkey | sudo tee /etc/wireguard/keys/server.key | wg pubkey | sudo tee /etc/wireguard/keys/server.key.pub - Send generated key appeared on screen to DA and ask him for configuration file, e.g. **my_wg0.conf**. - Insert your private key from /etc/wireguard/keys/server.key into **my_wg0.conf** (on second line) - Put configuration file to **/etc/wireguard/** - To turn on vpn run: sudo wg-quick up my_wg0 - To turn of vpn run: sudo wg-quick down my_wg0