A Virtual Private Network (VPN) allows users to send and receive data through shared or public networks as if their computing devices were directly connected to the private network. Thus, applications running on an end-system (PC, smartphone, etc.) over a VPN may benefit from individual network features, protection, and management. Encryption is a standard aspect of a VPN connection but not an intrinsic one.
WireGuard is a straightforward yet fast and modern VPN that utilizes state-of-the-art cryptography. It aims to be faster, simpler, leaner, and more useful than IPsec while avoiding the massive headache. It intends to be considerably more performant than OpenVPN. WireGuard is designed as a general-purpose VPN for running on embedded interfaces and super computers alike, fit for many circumstances. Initially released for the Linux kernel, it is now cross-platform (Windows, macOS, BSD, iOS, Android) and widely deployable. It is currently under a massive development, but it already might be regarded as the most secure, most comfortable to use, and the simplest VPN solution in the industry.
- robust and modern security by default
- minimal config and critical management
- fast, both low-latency and high-bandwidth
- simple internals and small protocol surface area
- simple CLI and seamless integration with system networking
- CentOS, Debian, Ubuntu, Arch, Fedora, Redhat, Raspbian, PopOS, Manjaro, Kali, Alpine, Mint, FreeBSD, Neon
- Linux
Kernel 3.1or newer - You will need superuser access or a user account with
sudoprivilege. - Docker
Kernel 5.6or newer
Lets first use curl and save the file in /usr/local/bin/
curl https://raw.githubusercontent.com/complexorganizations/wireguard-manager/main/wireguard-manager.sh --create-dirs -o /usr/local/bin/wireguard-manager.sh
Then let's make the script user executable (Optional)
chmod +x /usr/local/bin/wireguard-manager.sh
It's finally time to execute the script
bash /usr/local/bin/wireguard-manager.sh
In your /etc/wireguard/clients directory, you will have .conf files. These are the peer configuration files. Download them from your WireGuard Interface and connect using your favorite WireGuard Peer.
Let's download the docker file and construct it from there.
docker build -t wireguard-manager https://raw.githubusercontent.com/complexorganizations/wireguard-manager/main/Dockerfile
Let's start by constructing the docker container and then connecting to it.
docker run -it --name wireguard-manager-running wireguard-manager
- Show WireGuard Interface
- Start WireGuard Interface
- Stop WireGuard Interface
- Restart WireGuard Interface
- Add WireGuard Peer
- Remove WireGuard Peer
- Uninstall WireGuard Interface
- Update this script
- Encrypt & Backup Configs
- Restore WireGuard Configs
usage: ./wireguard-manager.sh <command>
--install Install WireGuard Interface
--start Start WireGuard Interface
--stop Stop WireGuard Interface
--restart Restart WireGuard Interface
--list Show WireGuard Peers
--add Add WireGuard Peer
--remove Remove WireGuard Peer
--reinstall Reinstall WireGuard Interface
--uninstall Uninstall WireGuard Interface
--update Update WireGuard Script
--backup Backup WireGuard Configs
--restore Restore WireGuard Configs
--help Show Usage Guide
- Install & Configure WireGuard Interface
- Backup & Restore WireGuard
- (IPv4|IPv6) Supported, Leak Protection
- Variety of Public DNS to be pushed to the peers
- Choice to use a self-hosted resolver with Unbound Prevent DNS Leaks, DNSSEC Supported
- Iptables rules and forwarding managed in a seamless way
- Remove & Uninstall WireGuard Interface
- Preshared-key for an extra layer of security. Required
- Many other little things!
PRIVATE_SUBNET_V4- By default, the private IPv4 subnet configuration is10.8.0.0/24.PRIVATE_SUBNET_V6-fd42:42:42::0/64is the default private IPv6 subnet.SERVER_HOST_V4- Curl detects a public IPv4 address by default.SERVER_HOST_V6- Curl by default finds a public IPv6 address.SERVER_PUB_NIC- Using the ip command, to find the local public network interface.SERVER_PORT-51820is the default public port for the wireguard interface.DISABLE_HOST- Determine whether or not IPv4 or IPv6 should be disabled.CLIENT_ALLOWED_IP- Using an IP range, choose what should be sent to the VPN.NAT_CHOICE- Determine whether or not to use the vpn tunnel's keep alive feature.INSTALL_UNBOUND- Whether or not to install unbound is up to you.UNINSTALL_UNBOUND- If you need to remove Unbound for whatever reason, you can do so.REMOVE_WIREGUARD- It is entirely up to you whether or not to remove wireguard altogether.DNS_CHOICE- You'll have to utilize another DNS if you don't have Unbound.CLIENT_NAME- The wireguard peer's name.MTU_CHOICE- The wireguard peers will utilize this MTU.
| OS | i386 | amd64 | armhf | arm64 |
|---|---|---|---|---|
| Ubuntu 14 ≤ | ❌ | ❌ | ❌ | ❌ |
| Ubuntu 16 ≥ | ✔️ | ✔️ | ✔️ | ✔️ |
| Debian 7 ≤ | ❌ | ❌ | ❌ | ❌ |
| Debian 8 ≥ | ✔️ | ✔️ | ✔️ | ✔️ |
| CentOS 6 ≤ | ❌ | ❌ | ❌ | ❌ |
| CentOS 7 ≥ | ✔️ | ✔️ | ✔️ | ✔️ |
| Fedora 29 ≤ | ❌ | ❌ | ❌ | ❌ |
| Fedora 30 ≥ | ✔️ | ✔️ | ✔️ | ✔️ |
| RedHat 6 ≤ | ❌ | ❌ | ❌ | ❌ |
| RedHat 7 ≥ | ✔️ | ✔️ | ✔️ | ✔️ |
| Kali 1.0 ≤ | ❌ | ❌ | ❌ | ❌ |
| Kali 1.1 ≥ | ✔️ | ✔️ | ✔️ | ✔️ |
| Arch | ✔️ | ✔️ | ✔️ | ✔️ |
| Raspbian | ✔️ | ✔️ | ✔️ | ✔️ |
| PopOS | ✔️ | ✔️ | ✔️ | ✔️ |
| Manjaro | ✔️ | ✔️ | ✔️ | ✔️ |
| Mint | ✔️ | ✔️ | ✔️ | ✔️ |
| Cloud | Supported |
|---|---|
| AWS | ✔️ |
| Google Cloud | ✔️ |
| Linode | ✔️ |
| Digital Ocean | ✔️ |
| Vultr | ✔️ |
| Microsoft Azure | ✔️ |
| OpenStack | ✔️ |
| Rackspace | ✔️ |
| Scaleway | ✔️ |
| EuroVPS | ✔️ |
| Hetzner Cloud | ❌ |
| Strato | ❌ |
| Virtualization | Supported |
|---|---|
| KVM | ✔️ |
| LXC | ❌ |
| OpenVZ | ❌ |
| Docker | ✔️ |
| Kernel | Supported |
|---|---|
| Linux Kernel 3.0 ≤ | ❌ |
| Linux Kernel 3.1 ≥ | ✔️ |
| Docker Kernel 5.5 ≤ | ❌ |
| Docker Kernel 5.6 ≥ | ✔️ |
Which hosting provider do you recommend?
- Google Cloud: Worldwide locations, starting at $10/month
- Vultr: Worldwide locations, IPv6 support, starting at $3.50/month
- Digital Ocean: Worldwide locations, IPv6 support, starting at $5/month
- Linode: Worldwide locations, IPv6 support, starting at $5/month
Which WireGuard client do you recommend?
Is there WireGuard documentation?
- Yes, please head to the WireGuard Manual, which references all the options.
How do I install a wireguard without the questions? (Headless Install)
./wireguard-manager.sh --install
Is there any alternative to wireguard?
Are there any good alternative to self-hosting vpn?
Why is all the code in one place?
- Consider a remote control, you can have thirty different remotes each doing a different job, or you may have a single remote that does everything.
What is the best way to connect to a running docker container?
docker exec -it wireguard-manager-running /bin/bash
Why is kernel 5.6 or above only required for Docker?
- Wireguard requires kernel 5.6 or above to install due to linux headers, and we can't install kernel headers on the host OS using the script.
Which port do I need to forward for wireguard, and which protocol should I use?
- On the udp protocol, either the port of your choice or the default port of
51820must be forwarded.
For unbound, which ports do I need to forward?
- Because all DNS traffic is routed through the vpn, you don't need to forward those ports
53.
What is blocked if I enable the content blocker?
- Advertisement, Tracking, malware, and phishing are all prohibited.
Official Links
- Homepage: https://www.wireguard.com
- Install: https://www.wireguard.com/install/
- QuickStart: https://www.wireguard.com/quickstart/
- Compiling: https://www.wireguard.com/compilation/
- Whitepaper: https://www.wireguard.com/papers/wireguard.pdf
no-content-blocker-vs-content-blocker.mp4
Developing the code without having to clone the repository
After cloning the repo, Then start debugging the code.
git clone https://github.com/complexorganizations/wireguard-manager /usr/local/bin/
bash -x /usr/local/bin/wireguard-manager.sh >> /usr/local/bin/wireguard-manager.log
- Name: Prajwal Koirala
- Website: prajwalkoirala.com
- Github: @prajwal-koirala
- LinkedIn: @prajwal-koirala
- Twitter: @Prajwal_K23
- Reddit: @prajwalkoirala23
- Twitch: @prajwalkoirala23
Give a ⭐️ and 🍴 if this project helped you!
- BCH :
qzq9ae4jlewtz7v7mn4tv7kav3dc9rvjwsg5f36099 - BSV : ``
- BTC :
3QgnfTBaW4gn4y8QPEdXNJY6Y74nBwRXfR - DAI :
0x8DAd9f838d5F2Ab6B14795d47dD1Fa4ED7D1AcaB - ETC :
0xd42D20D7E1fC0adb98B67d36691754E3F944478A - ETH :
0xe000C5094398dd83A3ef8228613CF4aD134eB0EA - LTC :
MVwkmnnaLDq7UccDeudcpQYwFnnDwDxxmq - XRP :
rw2ciyaNshpHe7bCHo4bRWq6pqqynnWKQg (1790476900)
Open Source Community
|
Copyright © 2020 Prajwal
This project is unlicensed
