From 0edec285e2ac4b549523fc03e5d0b2333da6095f Mon Sep 17 00:00:00 2001 From: Zack Dai <45176371+DaiZack@users.noreply.github.com> Date: Wed, 7 Sep 2022 20:59:44 -0400 Subject: [PATCH] add more infomation to help set up the client side This is a simple setting but I do spend massive time figuring it out. To save more time in the future for everyone. --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/README.md b/README.md index 838c8c2..a2c2dae 100644 --- a/README.md +++ b/README.md @@ -18,3 +18,36 @@ You can get a VPS from just 2€/month at [AlphaVPS](https://alphavps.com/client ### Donations If you want to show your appreciation, you can donate via [PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=VBAYDL34Z7J6L) or [cryptocurrency](https://pastebin.com/raw/M2JJpQpC). Thanks! + + +### Create/disable another user + +`bash openvpn-install.sh` + +### Install client on ubuntu server +``` +sudo apt update +sudo apt install openvpn +``` + +Copy .ovpn to the target machine + +``` sudo cp .ovpn /etc/openvpn/client.conf +sudo service openvpn@client start +``` + +### Some note + +partial routing (if do not want redirect all traffic to the vpn server. If you have a machine that host public app e.g. website server, you will need this setting.) + +in the client side edit .ovpn +add + +``` +route-nopull +route 10.8.0.0 255.255.255.0 +``` + +or on the vpn server side +remove + ``` redirect-gateway def1```