Ubuntu – How to get Netextender (VPN) working in Ubuntu 12.10 x64

vpn

At work we have to use Sonicwall Netextender to connect over VPN. The NetExtender client works fine on Windows x64 for me, but when using the same settings in my Ubuntu , the connection seems to work fine at first – But after just some packages have been sent, it slows down to almost 0 or 0 ( the connection is still up and seems fine)

Some other people at work have the same NetExtender problem with their Ubuntusetups, so we belive it's some failure with the NetExtenderclient – or that some workaround is needed with it.

So the Question is: Has anyone had success in using NetExtender on Ubuntu 12.x, and what specific settings did you use?

Also – are there any Open Source alternative NetExtender clients we could use instead of the SonicWalls one?

BTW (I tried stuff like this http://www.webantix.net/2012/02/sonicwall-netextender-on-ubuntu-x64.html)

Also tried with latest NetExtenderPackage "NetExtender.Linux.7.0.741.x86_64" and it's the same symptoms – i can connect successfully, fetch about one webpage, and then everything just seem to stall. I also upgraded to Ubuntu 13.04.

Irritating that it works flawlessly on the same machine with Windows 7 in dualboot, same settings.

Best Answer

See Franck Routiers Post:

Note, you'll have to have the Java Development Kit installed on your System.

1) go to https://sslvpn.demo.sonicwall.com/cgi-bin/welcome

2) log in with demo/password

3) click on NetExtender icon, this will download a tar.gz with the client

4) sudo ln -s /lib/x86_64-linux-gnu/libssl.so.1.0.0 /usr/lib/libssl.so.6

5) sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.6

6) un-tar the client, make install script executable and launch install

You're done.

Connect with :

sudo netExtender -u user -p password -d domain server

(and see man netExtender)

Related Question