vanutsteen.nl => nerds only A blog on rails, php, computing, my bass guitar and stuff

vpnc with openssl!

on in Development, Linux

The default vpnc in Ubuntu comes without openssl support. Bugger… But with these few lines of code this is solved:

1
2
3
4
5
6
7
8
9
sudo apt-get update
sudo apt-get build-dep vpnc
sudo apt-get install libssl-dev
mkdir ~/src/vpnc -p
cd ~/src/vpnc
apt-get source vpnc
cd vpnc-*
dpkg-buildpackage
sudo dpkg -i ../vpnc*.deb

Et voila: vpnc with openssl!

Comments