2013-05-14 16:04:19 +04:00
##openvpn-install
2015-02-11 21:51:19 +03:00
OpenVPN [road warrior ](http://en.wikipedia.org/wiki/Road_warrior_%28computing%29 ) installer for Debian, Ubuntu and CentOS.
2013-05-14 16:04:19 +04:00
2015-02-11 21:51:19 +03:00
This script will let you setup your own VPN server in no more than a minute, even if you haven't used OpenVPN before. It isn't bulletproof but has been designed to be as unobtrusive and universal as possible.
2013-05-14 16:04:19 +04:00
2016-03-13 17:41:05 +03:00
##Fork
2016-03-09 01:16:52 +03:00
This fork includes :
- no logs
- TLS 1.2 only
2016-03-10 01:01:25 +03:00
- AES-128-GCM encryption (instead of BF-CBC)
2016-03-09 23:13:12 +03:00
- 4096 bits DH (instead of 2048 bits)
2016-03-09 01:51:02 +03:00
- [FDN's DNS Servers ](http://www.fdn.fr/actions/dns/ )
2016-03-09 18:46:56 +03:00
- Every feature of the [original script ](https://github.com/Nyr/openvpn-install ) (I check periodically to sync the latest commits from source)
2016-03-09 01:16:52 +03:00
2016-03-13 17:41:05 +03:00
##Installation
To check your OpenVPN version, use `openvpn --version`
If your server **and** your client have OpenVPN 2.3.x or higher, use *latest* . If your server **or** your client have OpenVPN 2.2.x or lower, use *legacy* .
2016-03-13 17:53:09 +03:00
I made two versions to make sure you can get the best encryption possible, but also to support most devices as possible.
2016-03-13 17:53:43 +03:00
###Latest (OpenVPN 2.3.x)
2016-03-13 17:41:05 +03:00
It will work for :
- Debian 8
- Ubuntu 14.04 LTS
- Ubuntu 15.10
2016-03-13 20:48:13 +03:00
- CentOS 6
2016-03-13 17:41:05 +03:00
2013-05-14 16:04:19 +04:00
Run the script and follow the assistant:
2015-12-26 00:20:59 +03:00
```
2016-03-13 17:41:05 +03:00
wget --no-check-certificate https://raw.githubusercontent.com/Angristan/OpenVPN-install-nyr/master/openvpn-install.sh
2015-12-26 00:20:59 +03:00
chmod +x openvpn-install.sh
2015-12-26 00:21:31 +03:00
./openvpn-install.sh
```
2013-05-14 16:04:19 +04:00
2016-03-13 17:53:43 +03:00
###Legacy (OpenVPN 2.2.x)
2016-03-13 17:41:05 +03:00
2016-03-13 17:53:09 +03:00
It's the same script as *latest* , but with TLS 1.0 instead of TLS 1.2 and AES-256-CBC instead of AES-128-GCM. (OpenVPN 2.2.x doesn't support `tls-min` and `tls-cipher` )
Other features are still included.
2016-03-13 17:41:05 +03:00
It will work for :
- Debian 7
- Ubuntu 12.04 LTS
Run the script and follow the assistant:
```
wget --no-check-certificate https://raw.githubusercontent.com/Angristan/OpenVPN-install-nyr/master/openvpn-install-legacy.sh
chmod +x openvpn-install-legacy.sh
./openvpn-install-legacy.sh
```
2014-12-11 01:31:04 +03:00
Once it ends, you can run it again to add more users, remove some of them or even completely uninstall OpenVPN.
2016-01-01 15:53:28 +03:00
2016-03-13 19:54:12 +03:00
You can get a little VPS for just 1.49€/month at [PulseHeberg ](http://manager.pulseheberg.com/aff.php?aff=1204 ).
2016-01-01 15:53:28 +03:00
## Licence
2016-03-13 17:41:05 +03:00
Based on the work of [Nyr ](https://github.com/Nyr/openvpn-install )
2016-01-01 15:53:46 +03:00
[MIT Licence ](https://raw.githubusercontent.com/Angristan/openvpn-install-nyr/master/LICENSE )