wireguard-install/README.md

71 lines
3.0 KiB
Markdown
Raw Permalink Normal View History

# WireGuard installer
2019-05-05 10:42:53 +00:00
2020-10-19 10:06:13 +00:00
![Lint](https://github.com/angristan/wireguard-install/workflows/Lint/badge.svg)
2022-01-31 00:40:29 +00:00
[![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/angristan)
2020-10-02 19:30:30 +00:00
2020-03-27 21:21:57 +00:00
**This project is a bash script that aims to setup a [WireGuard](https://www.wireguard.com/) VPN on a Linux server, as easily as possible!**
2023-01-22 09:15:58 +00:00
WireGuard is a point-to-point VPN that can be used in different ways. Here, we mean a VPN as in: the client will forward all its traffic through an encrypted tunnel to the server.
2020-03-27 21:21:57 +00:00
The server will apply NAT to the client's traffic so it will appear as if the client is browsing the web with the server's IP.
2023-01-22 11:39:09 +00:00
The script supports both IPv4 and IPv6. Please check the [issues](https://github.com/angristan/wireguard-install/issues) for ongoing development, bugs and planned features! You might also want to check the [discussions](https://github.com/angristan/wireguard-install/discussions) for help.
2020-03-27 21:21:57 +00:00
2023-01-22 11:39:09 +00:00
WireGuard does not fit your environment? Check out [openvpn-install](https://github.com/angristan/openvpn-install).
## Requirements
Supported distributions:
- AlmaLinux >= 8
- Arch Linux
- CentOS Stream >= 8
- Debian >= 10
- Fedora >= 32
2021-11-12 16:33:29 +00:00
- Oracle Linux
- Rocky Linux >= 8
- Ubuntu >= 18.04
2019-05-12 15:17:21 +00:00
## Usage
2020-03-27 21:21:57 +00:00
Download and execute the script. Answer the questions asked by the script and it will take care of the rest.
2019-05-12 15:17:21 +00:00
```bash
curl -O https://raw.githubusercontent.com/angristan/wireguard-install/master/wireguard-install.sh
chmod +x wireguard-install.sh
./wireguard-install.sh
```
2020-04-08 12:19:32 +00:00
It will install WireGuard (kernel module and tools) on the server, configure it, create a systemd service and a client configuration file.
2020-08-03 14:30:00 +00:00
Run the script again to add or remove clients!
2020-08-03 14:30:00 +00:00
## Providers
I recommend these cheap cloud providers for your VPN server:
2023-01-22 00:55:45 +00:00
- [Vultr](https://www.vultr.com/?ref=8948982-8H): Worldwide locations, IPv6 support, starting at \$5/month
- [Hetzner](https://hetzner.cloud/?ref=ywtlvZsjgeDq): Germany, Finland and USA. IPv6, 20 TB of traffic, starting at 4.5€/month
- [Digital Ocean](https://m.do.co/c/ed0ba143fe53): Worldwide locations, IPv6 support, starting at \$4/month
2023-01-21 22:12:52 +00:00
## Contributing
## Discuss changes
Please open an issue before submitting a PR if you want to discuss a change, especially if it's a big one.
### Code formatting
We use [shellcheck](https://github.com/koalaman/shellcheck) and [shfmt](https://github.com/mvdan/sh) to enforce bash styling guidelines and good practices. They are executed for each commit / PR with GitHub Actions, so you can check the configuration [here](https://github.com/angristan/wireguard-install/blob/master/.github/workflows/lint.yml).
## Say thanks
You can [say thanks](https://saythanks.io/to/angristan) if you want!
## Credits & Licence
This project is under the [MIT Licence](https://raw.githubusercontent.com/angristan/wireguard-install/master/LICENSE)
2023-01-22 15:42:08 +00:00
## Star History
[![Star History Chart](https://api.star-history.com/svg?repos=angristan/wireguard-install&type=Date)](https://star-history.com/#angristan/wireguard-install&Date)