Scripts automate the installation and use of Wireguard on AWS with Ubuntu Server 18.04
git clone https://github.com/pprometey/wireguard_aws.git wireguard_aws
cd wireguard_aws
sudo ./initial.sh
The initial.sh
script removes the previous Wireguard installation (if any) using the remove.sh
script. It then installs and configures the Wireguard service using the install.sh
script. And then creates a client using the add-client.sh
script.
add-client.sh
- Script to add a new VPN client. As a result of the execution, it creates a configuration file ($CLIENT_NAME.conf) on the path ./clients/$CLIENT_NAME/, displays a QR code with the configuration.
sudo ./add-client.sh
#OR
sudo ./add-client.sh $CLIENT_NAME
reset.sh
- script that removes information about clients. And stopping the VPN server Winguard
sudo ./reset.sh
sudo ./remove.sh
- Alexey Chernyavskiy