![]() |
How to setup a Openvpn server on Ubuntu [Simple & Easy] - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Hacking (https://sinister.ly/Forum-Hacking) +--- Forum: Tutorials (https://sinister.ly/Forum-Tutorials) +--- Thread: How to setup a Openvpn server on Ubuntu [Simple & Easy] (/Thread-How-to-setup-a-Openvpn-server-on-Ubuntu-Simple-Easy) |
How to setup a Openvpn server on Ubuntu [Simple & Easy] - Nille - 01-26-2014 The first thing you will have to do is login (Duuh) Step 1 Update the system packages. Code: apt-get update Step 2 Download the installation files from the OpenVPN web site. 32 Bit Code: wget http://swupdate.openvpn.org/as/openvpn-as-1.8.5-Ubuntu12.i386.deb 64 Bit Code: wget http://swupdate.openvpn.org/as/openvpn-as-1.8.5-Ubuntu12.amd_64.deb Step 3 Now we just have to install it. 32 Bit Code: dpkg -i openvpn-as-1.8.5-Ubuntu12.i386.deb 64 Bit Code: dpkg -i openvpn-as-1.8.5-Ubuntu12.amd_64.deb Now you are done, everything you have to do now is make a new password, and login to the admin panel. Login name: openvpn Password: You have to reset it using this command "passwd openvpn" If you have any questions feel free to ask. |