Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

OpenVPN Server Plugin : 32-bit and 64-bit Version

Featured Replies

rexl: did you update the plugin?

try any wget cmd if it runs ok?

 

I just downloaded the plg from the begin post, first time of installing the OpenVPN Server Plugin. Even trying to download a simple wallpaper from wallbase doesn't work, keep getting the same error:

wget: error while loading shared libraries: libssl.so.0: cannot open shared object file: No such file or directory

 

1) remove the plugin file from boot/config/plugins/

2) restart unraid

3) install plugin again

4) update plg from webgui settings/open vpn server

 

thats how i get rid of that error.

 

Just did what you told, but keep getting the error as mentioned above:

success
file /boot/config/plugins/openvpnserver/Device_status.png: downloading from --no-check-certificate http://lime-technology.com/wiki/images/9/97/Device_status.png ... wget: error while loading shared libraries: libssl.so.0: cannot open shared object file: No such file or directory
bad download, deleting

Warning: unlink(/boot/config/plugins/openvpnserver/Device_status.png): No such file or directory in /usr/local/sbin/installplg on line 70

 

I installed the other packages by hand, via downloading them on my main pc and copying them to the unraid server.

  • Replies 381
  • Views 87.2k
  • Created
  • Last Reply

Using configuration from /mnt/disk1/server/easy-rsa-master/easy-rsa/2.0/openssl-1.0.0.cnf

 

your setup finds the cnf file with no prob.

 

export KEY_CONFIG=/etc/openvpn/easy-rsa/2.0/openssl-1.0.0.cnf

 

where am i going to add this?

  • Author

is it working if you do it from the prompt ?

 

/etc/rc.d/rc.openvpnserver add_client peter

 

nope

can yo utry this

 

cd to the easy-rsa folder then to below command, some other plugin using older version of ssl, so do a [b]installpkg [/b]first to be sure you use the latest ssl
ln -s openssl-1.0.0.cnf openssl.cnf

  • Author

One more solution for the openssl issue ??? found it from google  8)

 

Looking in the original "whichopensslcnf" script, I find this:

 

elif $OPENSSL version | grep -E "1\.0\.([[:digit:]][[:alnum:]])" > /dev/null; then
                cnf="$1/openssl-1.0.0.cnf"

This doesn't match my OpenSSL version output on the system because it doesn't allow for the dash ("-").

 

A side note: The parentheses really don't do anything in that line at present. My guess would be that they are a "relic" of old code in that line or an allowance for an OR match in the future.

 

If you replace that piece of code with the below, it should work as intended (leave the parentheses if you want):

elif $OPENSSL version | grep -E "1\.0\.[[:digit:]]-{0,1}[[:alnum:]]" > /dev/null; then
                cnf="$1/openssl-1.0.0.cnf"

after installing openssl again with installpkg /boot/packages/openssl-1.0.1c-i486-3.txz

finally i can add client.

 

it is odd, at my syslog just 1.0.1c is there none of different versions. And also this is the log part of installing openvpnserver plugin.i didnt install anything after openvpn.

file /boot/packages/openssl-1.0.1c-i486-3.txz: already exists
  upgradepkg --install-new /boot/packages/openssl-1.0.1c-i486-3.txz ... 
+==============================================================================
| Skipping package openssl-1.0.1c-i486-3 (already installed)
+==============================================================================

 

But still cant start, says started but not. (according to status at plugin page.)

root@Tower:/mnt/user/No_move/opn_cert/clients# /etc/rc.d/rc.openvpnserver start
Starting Openvpn server.....
nohup: redirecting stderr to stdout
OK... Started

  • Author

check so you don't have an running openvpnserver process ps -ef before start server

  • Author

I have a new version with some fix below

 

1:Create directory with long path name are OK now.

2:ln -s openssl-1.0.0.cnf openssl.cnf, be sure, reinstall the plugin after reboot, so you don't have an other version of SSL from different plugins

3: Using TLS verification( new ta.key, and relevant update of ovpn files (server & client). You need to create new cert/keys for the server when using this new version.

4: chose of 1024 or 2048 dh2048.pem, prefered use 2048, it going to take longer time to create it, just wait and relax

 

and some more fine tuning of code .....

 

Will be available later or tomorrow....

 

//Peter

 

 

check so you don't have an running openvpnserver process ps -ef before start server

 

i reboot the server, checked running process, still cant start. hope upcoming update have a fix for me :)

i try it with my test server: first try it was ok and also realize that logs are different when adding clients so i think my actual server cant add clients properly. After that i copy all the plugins from my actual server to the test server and resart it. Then it also started to cant find the cnf file. and can not start the daemon.

 

now i have to find which plugin is confusing and why.... ???

maybe tomorrow...

another minor note: when http://geoip.hidemyass.com/ip/ is not reachable and you try to open open vpn server settings page it locks the wengui. it wiil be good to add a timeout if it is possible.

  • Author

I found that wget have settings for different timeouts .... and also curl should be OK to set a timeout

 

going to look a this  .....

 

//Peter

rexl: did you update the plugin?

try any wget cmd if it runs ok?

 

I just downloaded the plg from the begin post, first time of installing the OpenVPN Server Plugin. Even trying to download a simple wallpaper from wallbase doesn't work, keep getting the same error:

wget: error while loading shared libraries: libssl.so.0: cannot open shared object file: No such file or directory

 

1) remove the plugin file from boot/config/plugins/

2) restart unraid

3) install plugin again

4) update plg from webgui settings/open vpn server

 

thats how i get rid of that error.

 

Just did what you told, but keep getting the error as mentioned above:

success
file /boot/config/plugins/openvpnserver/Device_status.png: downloading from --no-check-certificate http://lime-technology.com/wiki/images/9/97/Device_status.png ... wget: error while loading shared libraries: libssl.so.0: cannot open shared object file: No such file or directory
bad download, deleting

Warning: unlink(/boot/config/plugins/openvpnserver/Device_status.png): No such file or directory in /usr/local/sbin/installplg on line 70

 

I installed the other packages by hand, via downloading them on my main pc and copying them to the unraid server.

 

Could anyone help me out with this error?

 

Thanks in advance!

@rexl

 

What version of unRAID, unmenu or simple features installed? And which plugins do you have?

@rexl

 

What version of unRAID, unmenu or simple features installed? And which plugins do you have?

Thanks for replying, I have the following version / plug-ins installed.

 

unRaid: 5.0 rc12a

Simple Features: v1.0.11

Sabnzbd: Unplugged - Plug-in Version: 2.5.3

Sickbeard: Unplugged - Plug-in Version: 2.4

Plex:  version: v0.9.7.28.33-f80a4a2

 

-Rexl

@rexl

 

What version of unRAID, unmenu or simple features installed? And which plugins do you have?

Thanks for replying, I have the following version / plug-ins installed.

 

unRaid: 5.0 rc12a

Simple Features: v1.0.11

Sabnzbd: Unplugged - Plug-in Version: 2.5.3

Sickbeard: Unplugged - Plug-in Version: 2.4

Plex:  version: v0.9.7.28.33-f80a4a2

 

-Rexl

 

And what plgs install from simple features? All?

 

I also had a problem starting openvpn server with 16c, sab, cp, SB, plex and SF (near identical setup to each other). I removed all plugins apart from plex and got some results starting but often had to upgrade / downgrade plugin to start.

 

Once I updated to v5 final, no more issues with openvpn

@rexl

 

What version of unRAID, unmenu or simple features installed? And which plugins do you have?

Thanks for replying, I have the following version / plug-ins installed.

 

unRaid: 5.0 rc12a

Simple Features: v1.0.11

Sabnzbd: Unplugged - Plug-in Version: 2.5.3

Sickbeard: Unplugged - Plug-in Version: 2.4

Plex:  version: v0.9.7.28.33-f80a4a2

 

-Rexl

 

And what plgs install from simple features? All?

 

I also had a problem starting openvpn server with 16c, sab, cp, SB, plex and SF (near identical setup to each other). I removed all plugins apart from plex and got some results starting but often had to upgrade / downgrade plugin to start.

 

Once I updated to v5 final, no more issues with openvpn

 

I upgraded aswell to V5 Final and everything seems to be working fine now:) thanks for your help!

 

I have a new version with some fix below

 

1:Create directory with long path name are OK now.

2:ln -s openssl-1.0.0.cnf openssl.cnf, be sure, reinstall the plugin after reboot, so you don't have an other version of SSL from different plugins

3: Using TLS verification( new ta.key, and relevant update of ovpn files (server & client). You need to create new cert/keys for the server when using this new version.

4: chose of 1024 or 2048 dh2048.pem, prefered use 2048, it going to take longer time to create it, just wait and relax

 

and some more fine tuning of code .....

 

Will be available later or tomorrow....

 

//Peter

 

Peter, it seems to create a 2048 client key whether 1024 or 2048 is selected. Also now where the WAN IP should be its showing a box with a webpage in. Doesn't affect the operation of the server though.

 

 

I have a new version with some fix below

 

1:Create directory with long path name are OK now.

2:ln -s openssl-1.0.0.cnf openssl.cnf, be sure, reinstall the plugin after reboot, so you don't have an other version of SSL from different plugins

3: Using TLS verification( new ta.key, and relevant update of ovpn files (server & client). You need to create new cert/keys for the server when using this new version.

4: chose of 1024 or 2048 dh2048.pem, prefered use 2048, it going to take longer time to create it, just wait and relax

 

and some more fine tuning of code .....

 

Will be available later or tomorrow....

 

//Peter

 

Peter, it seems to create a 2048 client key whether 1024 or 2048 is selected. Also now where the WAN IP should be its showing a box with a webpage in. Doesn't affect the operation of the server though.

 

Also when i click info on unraid, it shows eth0 at 1000mb/s full duplex, but tun0 at 10mb/s full duplex - is that normal?

  • Author

I have found a bug with 1024 or 2048 dh file, new version soooon ;-) it's going to be forced to create 2048!

 

//Peter

  • Author

Please check new file !!

 

For you that have issues with long path name and issue with openssl, is all OK now ?

 

 

//Peter

 

 

Please check new file !!

 

For you that have issues with long path name and issue with openssl, is all OK now ?

 

 

//Peter

 

Updated and installed, running fine. Thanks Peter

 

Also long names and OpenSSL are working without a problem.

 

Still an issue with HTML showing on the page under WAN IP. Will post a screenshot tomorrow

Hi,

 

I installed the plugin finally and set the config and cert paths, but I cant seem to figure out how to get the OpenVPN Software on my machine.

Status:  OpenVPN Server is NOT RUNNING

Plugin / Build	                               	
OpenVPN Server Plugin Version      Local Version: 1.1.23     Online Version: 1.1.23
OpenVPN Software Build             Local Version: <NONE>      Online Version:2.3.2

 

Anyone could help me get this sorted?

 

Thanks in advance!

 

Never mind, got an install of OpenVPN 2.3.1 running now, couldnt find version 2.3.2 for slackware:)

I just rebooted my server running v5 and your latest version

 

I can't start openvpn server it says started but nothing.

  • Author

Hi,

 

I installed the plugin finally and set the config and cert paths, but I cant seem to figure out how to get the OpenVPN Software on my machine.

Status:  OpenVPN Server is NOT RUNNING

Plugin / Build	                               	
OpenVPN Server Plugin Version      Local Version: 1.1.23     Online Version: 1.1.23
OpenVPN Software Build             Local Version: <NONE>      Online Version:2.3.2

 

Anyone could help me get this sorted?

 

Thanks in advance!

 

Never mind, got an install of OpenVPN 2.3.1 running now, couldnt find version 2.3.2 for slackware:)

 

??? what, did you install it by your self ? all files that are needed are being installed in the plugin!, so no need to install anyone manually, what error did you get when installing the plugin for the openvpn??

 

 

 

 

 

  • Author

I just rebooted my server running v5 and your latest version

 

I can't start openvpn server it says started but nothing.

 

What ... "but nothing" ?? what do you mean with that  ;)

Archived

This topic is now archived and is closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.