malaybhavsar.290@gmail.com
@leo-malay
@leo-malay-bhavsar

I Love
Wireguard VPN

I can help you and your team deploy and configure WireGuard VPN for secure and efficient networking. Reach out via the links in the header for assistance.

What is Wireguard?

WireGuard is a modern, open-source Virtual Private Network (VPN) protocol designed for simplicity, security, and high performance. It provides a secure and efficient way to create private networks over the internet, enabling encrypted communications between devices. Unlike traditional VPN protocols like OpenVPN or IPSec, WireGuard uses state-of-the-art cryptography and a lean codebase for faster, more reliable connections. Please visit https://www.wireguard.com/ for more details.

Why use Wireguard?

A VPN encrypts your internet traffic, protecting your data from hackers and third parties while masking your IP address for enhanced privacy. It’s crucial for secure browsing on public Wi-Fi and accessing restricted content. WireGuard stands out as a VPN solution due to its modern cryptography, high performance, and minimal codebase. It’s faster, more efficient, and simpler to configure than older VPN protocols like OpenVPN or IPSec. With strong security and ease of use, WireGuard provides a reliable, high-performance VPN experience.

Installation

Visit the official WireGuard installation page through the provided link, where you can select your operating system and follow the specific instructions to install WireGuard accordingly. Please visit https://www.wireguard.com/install/. Elase if you are on debian based system you can use the following command,

$ sudo apt install wireguard

Key Generation

To generate the necessary keys for WireGuard, start by creating a private key with the command,

$ wg genkey > private.key

This will generate a file named private.key containing your private key. Next, generate the corresponding public key by running,

$ cat private.key | wg pubkey > public.key

which will output your public key into a file called public.key. If you'd like to add an extra layer of security, generate a preshared key with

$ wg genpsk > preshared.key

which creates a file named preshared.key. You can view your generated keys by using the following commands in the terminal. Once these keys are generated, you're ready to proceed with your WireGuard configuration.

$ cat private.key
$ cat public.key
$ cat preshared.key

Interface Up/Down

To bring up a WireGuard interface using wg-quick, first ensure you have the required keys generated (privatekey, publickey, and optionally preshared.key). Once the keys are in place, you can start the WireGuard interface by running

$ sudo wg-quick up wg0

wg0 is the name of your interface configuration file (e.g., /etc/wireguard/wg0.conf). After bringing the interface up, you can check its status using the following command,

$ sudo wg show

The above command will display details about the connection. When you're ready to disconnect or shut down the interface, simply run the following command,

$ sudo wg-quick down wg0

Additionally use wg show again to verify the interface is no longer active.

I highly recommend using "Preshared Key", It adds extra layer of security!!!
Always keep your "Private Key" and "Preshared Key" secure and hidden.

Sample Configurations

Server's Configurations
[Interface]
Address = /* Address used for peer e.g. 10.100.10.1/24 */
ListenPort = /* Listening port */
PrivateKey = /* Private Key of server */

[Peer]
PublicKey = /* Public key of the client */
AllowedIPs = /* Address for peer e.g. 10.100.10.x/32 */
PresharedKey = /* Preshared key with client */
Client's Configurations
[Interface]
PrivateKey = /* Client's Private Key */
Address = /* Assinged IP by server eg 10.100.0.x/24 */
DNS = /* DNS to be used e.g. 1.1.1.1, 8.8.8.8 */

[Peer]
PublicKey = /* Server's public key */
PresharedKey = /* Preshared key with server */
AllowedIPs = 0.0.0.0/0, ::/0
Endpoint = /* Server's IP and Port */

All content is original and up-to-date as of December 25, 2024. If you notice any errors or something seems off, please don’t hesitate to reach out! I’ll fix it as soon as I can. Your feedback means a lot!