[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
howtos:misc:openvpn [2013/01/14 20:49 (UTC)] – [Wikipedia about OpenVPN] comfreehowtos:security:openvpn [2013/01/14 21:43 (UTC)] – [Sources] comfree
Line 7: Line 7:
 ===== How to use OpenVPN ===== ===== How to use OpenVPN =====
  
-It's barely simple if you already got a ready-to-go config by any openvpn provider. 
  
 +It's very simple if you already got a ready-to-go config by any openvpn provider.
 <code> <code>
-openvpn --config yourconfig.ovpn+openvpn --config yourconfig.ovpn
 </code> </code>
  
 +If you don't have a config that you can use you should have a look in /etc/openvpn. Slackware has a example config with some good hints in there.
  
 +===== Using OpenVPN with a password file =====
 +Since I wanted my openvpn connection to start automatically when I connect my Thinkpad to the dock I thought it would be usefull to add the 'password safe' feature. ('password safe' setting allows you to store your username and password in a file for scripting) This feature is not installed by default. You have to add it to the slackbuild and recompile the package.
  
 +Start by grabbing the source and slackbuild from one of the Slackware mirrors.
  
-If you don't get a config that you can use you should have a look at /etc/openvpn. +[[http://mirrors.slackware.com/slackware/slackware64-14.0/source/n/openvpn/]]
-Slackware got a example config with some good hints in there.+
  
-===== Using OpenVPN with automatic password input =====+Change the mirror for your needs, for example -current.
  
-Since I wanted to use my openvpn connection to start automatically when I put my Thinkpad into the dock I thought it would be usefull to add the 'password safe' feature. +In the next step we will change the openvpn.SlackBuild file.
-That feature is not added by default on Slackwares package. You have to add it to the slackbuild and recompile the package.+
  
-Start with grabbing the source and slackbuild from one of the Slackware mirrors.+Open the slackbuild file with you editor of choice.
  
-[[http://mirrors.slackware.com/slackware/slackware64-14.0/source/n/openvpn/]]+For vim do:
  
-Change the mirror for your needs, for example -current. +<code>vim openvpn.SlackBuild</code>
- +
-In the next step we will change the openvpn.Slackbuild file. +
- +
-<code> +
-vim openvpn.Slackbuild +
-</code>+
  
 Now look for this block of code: Now look for this block of code:
Line 63: Line 59:
 </code> </code>
  
-Save the file and rebuild the package with+Save the file, make it executable and rebuild the package with
  
-<code>./openvpn.Slackbuild</code>+<code>$ chmod +x openvpn.SlackBuild && ./openvpn.SlackBuild</code>
  
 The new package should be in the /tmp directory. The new package should be in the /tmp directory.
Line 71: Line 67:
 Install it with: Install it with:
  
-<code>upgradepkg --install-new /tmp/yourpackage.tgz</code>+<code>upgradepkg --install-new /tmp/yourpackage.tgz</code>
  
 Now you are able to load your login and password from a file. Now you are able to load your login and password from a file.
Line 81: Line 77:
 </code> </code>
  
-Safe the file. And make it only readable for the owner 
  
-<code>chmod 700 yourfile</code>+Save the file and make it only readable for the owner. 
 +<code>chmod 700 yourfile</code>
  
-At last add +Lastly add the line below to your openvpn config.
 <code>auth-user-pass /path/to/your/passwordfile</code> <code>auth-user-pass /path/to/your/passwordfile</code>
-to your openvpn config and you should be able to login without typing your password everytime.+Now you should be able to login without typing your password everytime.
  
  
Line 99: Line 95:
 <!-- * Originally written by [[wiki:user:xxx | User X]] --> <!-- * Originally written by [[wiki:user:xxx | User X]] -->
 <!-- * Contributions by [[wiki:user:yyy | User Y]] --> <!-- * Contributions by [[wiki:user:yyy | User Y]] -->
 +  * Wikipedia: [[http://en.wikipedia.org/wiki/Openvpn]] 
 +  * Originally written by [[wiki:user:comfree | comfree]]
 <!-- Please do not modify anything below, except adding new tags.--> <!-- Please do not modify anything below, except adding new tags.-->
 <!-- You must remove the tag-word "template" below before saving your new page --> <!-- You must remove the tag-word "template" below before saving your new page -->
-{{tag>howtos template}}+{{tag>howtos openvpn slackbuild security}} 
 howtos:security:openvpn ()