Linux下OpenVPN的安装

首先下载编译必须的软件源码包

yum install pam-devel.x86_64
mkdir /root/openvpn
cd /root/openvpn
wget http://www.oberhumer.com/opensource/lzo/download/lzo-2.09.tar.gz
tar zxvf lzo-2.09.tar.gz
cd lzo-2.09
./configure && make && make install
cd ../
wget https://swupdate.openvpn.org/community/releases/openvpn-2.0.9.tar.gz
tar zxvf openvpn-2.0.9.tar.gz
cd openvpn-2.0.9
./configure && make && make install
cd ../

执行上述命令完成编译工作之后,接下来是配置OpenVPN的证书步骤。
Continue reading