[关闭]
@bergus 2016-01-10T14:57:23.000000Z 字数 5050 阅读 2202

ubuntu 搭建 OPENVPN

ubuntu openvpn


配置OpenVPN的步骤,大致包括两部分,首先是服务器端的OpenVPN服务,其次是客户端的OpenVPN软件。首先我们在Ubuntu 10.04 TLS上配置OpenVPN服务器端。

配置OpenVPN服务器

首先请使用root账户登录系统,若没有开启root,请使用sudo暂转为root模式:

  1. sudo -i

从软件仓库安装openvpn及其相关软件包:

  1. apt-get install openvpn udev lzop -y

完成安装后,复制证书配置模板信息:

  1. cp -r /usr/share/doc/openvpn/examples/easy-rsa/ /etc/openvpn/
  2. cd /etc/openvpn/easy-rsa/2.0/
  3. source vars

先清除已有的证书信息:

  1. ./clean-all

创建CA根证书:

  1. #./build-ca
  2. Generating a 1024 bit RSA private key
  3. ................++++++
  4. ........++++++
  5. writing new private key to 'ca.key'
  6. -----
  7. You are about to be asked to enter information that will be incorporated
  8. into your certificate request.
  9. What you are about to enter is what is called a Distinguished Name or a DN.
  10. There are quite a few fields but you can leave some blank
  11. For some fields there will be a default value,
  12. If you enter '.', the field will be left blank.
  13. -----
  14. Country Name (2 letter code) [CN]:
  15. State or Province Name (full name) [GD]:
  16. Locality Name (eg, city) [SZ]:
  17. Organization Name (eg, company) []:
  18. Organizational Unit Name (eg, section) []:soa
  19. Common Name (eg, your name or your server's hostname) []:starlight36.com
  20. Email Address [your-email [at] starlight36.com]:

创建服务器端key:

  1. #./build-key-server server
  2. Generating a 1024 bit RSA private key
  3. ......++++++
  4. ....................++++++
  5. writing new private key to 'server.key'
  6. -----
  7. You are about to be asked to enter information that will be incorporated
  8. into your certificate request.
  9. What you are about to enter is what is called a Distinguished Name or a DN.
  10. There are quite a few fields but you can leave some blank
  11. For some fields there will be a default value,
  12. If you enter '.', the field will be left blank.
  13. -----
  14. Country Name (2 letter code) [CN]:
  15. State or Province Name (full name) [LN]:
  16. Locality Name (eg, city) [DL]:
  17. Organization Name (eg, company) [starlight36.com]:
  18. Organizational Unit Name (eg, section) []:starlight36.com
  19. Common Name (eg, your name or your server's hostname) []:server
  20. Email Address [your-email [at] starlight36.com]:
  21. ... ...

创建客户端key

  1. #./build-key client
  2. Generating a 1024 bit RSA private key
  3. ......++++++
  4. ....................++++++
  5. writing new private key to 'server.key'
  6. -----
  7. You are about to be asked to enter information that will be incorporated
  8. into your certificate request.
  9. What you are about to enter is what is called a Distinguished Name or a DN.
  10. There are quite a few fields but you can leave some blank
  11. For some fields there will be a default value,
  12. If you enter '.', the field will be left blank.
  13. -----
  14. Country Name (2 letter code) [CN]:
  15. State or Province Name (full name) [LN]:
  16. Locality Name (eg, city) [DL]:
  17. Organization Name (eg, company) [starlight36.com]:
  18. Organizational Unit Name (eg, section) []:starlight36.com
  19. Common Name (eg, your name or your server's hostname) []:client
  20. Email Address [your-email [at] starlight36.com]:
  21. ... ...

过程和创建服务器端Key基本一致,但是需要注意的是,Common Name (eg, your name or your server’s hostname)这一项每个客户端key之间不能重名,和server key的设置也不能重名,否则会导致生成失败。

生成 Diffie Hellman信息:

  1. ./build-dh

这时,服务器证书的配置就完成了,我们需要把服务器上刚才生成的ca.crt client.crt client.key三个文件下载下来,客户端连接时需要用到。

继续配置服务器端OpenVPN配置文件:

  1. #vi /etc/openvpn/server.conf
  2. local 【服务器IP
  3. port 【服务端口】
  4. proto udp
  5. dev tun
  6. ca /etc/openvpn/easy-rsa/2.0/keys/ca.crt
  7. cert /etc/openvpn/easy-rsa/2.0/keys/server.crt
  8. key /etc/openvpn/easy-rsa/2.0/keys/server.key
  9. dh /etc/openvpn/easy-rsa/2.0/keys/dh1024.pem
  10. ifconfig-pool-persist ipp.txt
  11. server 10.168.1.0 255.255.255.0
  12. push "redirect-gateway"
  13. push "dhcp-option DNS 8.8.8.8"
  14. push "dhcp-option DNS 8.8.4.4"
  15. client-to-client
  16. duplicate-cn
  17. keepalive 10 60
  18. comp-lzo
  19. max-clients 10
  20. persist-key
  21. persist-tun
  22. status openvpn-status.log
  23. log-append openvpn.log
  24. verb 3
  25. mute 20

对iptables进行设置,进行nat转发:

  1. iptables -t nat -A POSTROUTING -s 10.168.0.0/16 -o venet0 -j SNAT --to 【外网出口IP

保存到iptables表中:

  1. iptables-save > /etc/iptables.rules

添加配置,让网卡启动时自动加载规则:

  1. #vi /etc/network/if-up.d/iptables
  2. #!/bin/sh
  3. iptables-restore < /etc/iptables.rules

为脚本增加执行权限:

  1. chmod +x /etc/network/if-up.d/iptables

增加内核配置信息:

  1. #vi /etc/sysctl.conf
  2. net.ipv4.ip_forward = 1
  3. net.ipv4.conf.all.send_redirects = 0
  4. net.ipv4.conf.default.send_redirects = 0
  5. net.ipv4.conf.all.accept_redirects = 0
  6. net.ipv4.conf.default.accept_redirects = 0

立即生效配置:

  1. sysctl -p

启动VPN服务并重启网络:

  1. /etc/init.d/openvpn restart
  2. /etc/init.d/networking restart

若启动服务失败,请查看日志/etc/openvpn/openvpn.log。

对于VPS而言,若出现Cannot allocate TUN/TAP dev dynamically的错误,请联系你的空间商,让其为你开启TUN支持。当然有些VPS空间商是不支持这个的。貌似Godaddy的就不支持。

  1. 配置OpenVPN客户端(Windows下)
    首先,请先下载Windows下的最新版本的OpenVPN客户端:

http://swupdate.openvpn.org/community/releases/openvpn-2.2.2-install.exe

运行并安装,默认选项即可,若安装有困难,请参考这篇文章:

http://vpn5201.com/setup/windows-7/openvpn.php

将刚才保存到本地的ca.crt client.crt client.key三个文件,丢进OpenVPN安装目录下的config文件夹中,默认安装路径为:C:\Program Files\OpenVPN(x64系统下为C:\Program Files (x86)\OpenVPN)。

在config文件夹中创建一个连接服务器的配置文件,扩展名为.ovpn:

  1. client
  2. dev tun
  3. proto udp
  4. remote OpenVPN服务器IP 【服务端口】
  5. resolv-retry infinite
  6. nobind
  7. persist-key
  8. persist-tun
  9. ca ca.crt
  10. cert client.crt
  11. key client.key
  12. ns-cert-type server
  13. redirect-gateway
  14. keepalive 20 60
  15. #tls-auth ta.key 1
  16. comp-lzo
  17. verb 3
  18. mute 20
  19. route-method exe
  20. route-delay 2

在开始菜单启动OpenVPN,这时可以在系统托盘中看到图标,右键选择Connect,即可开始连接,不出以外,你可以正常连上了。

  1. 安卓Android使用OpenVPN
    由于Android也使用Linux内核,所以原则上它也是可以使用OpenVPN的。在Android上使用OpenVPN,请安装OpenVPN-Setting,下载地址请见:

http://code.google.com/p/android-openvpn-settings/downloads/list

安装了客户端之后,在sd卡目录下新建一个openvpn,将PC客户端上的证书和配置文件(config文件夹下的东西)拷贝过来,运行OpenVPN Settings即可。

参考文章:

http://hi.baidu.com/gaolongquan/blog/item/57cad955a23e18deb645ae5a.html

http://www.xiaohui.com/dev/server/20070514-install-openvpn.htm

http://vpn5201.com/setup/windows-7/openvpn.php

转:http://starlight36.com/post/ubuntu-openvpn-server-install

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注