View Single Post
  #7   (View Single Post)  
Old 1st October 2012
libertas libertas is offline
New User
 
Join Date: Jan 2012
Posts: 8
Default

Quote:
Originally Posted by scrummie02 View Post
You should, it's an awesome piece of software. Not hard to set up once installed really.

In any case I solved it. When you install from the packages and you copy over /usr/local/share/examples/openvpn/easy-rsa/2.0/* over to /etc/openvpn/easy-rsa (or where ever you want to copy it) you have to edit the vars file.

You have to specify the openssl-1.0.0.cnf file found with the OpenVPN package and I had to drop the $EASYRSA variable and actually put the path in.

In case someone runs into the same problem.
I got the same error setting up OpenVPN on my 5.2 box, but solved it replacing the backticks with quotes in the line, besides eliminating the final $EASY_RSA:
Code:
export KEY_CONFIG=`$EASY_RSA/openssl-1.0.0.cnf`
to
Code:
export KEY_CONFIG="$EASY_RSA/openssl-1.0.0.cnf"

Last edited by libertas; 1st October 2012 at 05:03 PM.
Reply With Quote