OpenVPN 配置教程

OpenVPN 配置教程

我已经看过 10 多个关于设置 OpenVPN 的教程,每个教程都会给出不同的问题……

有人知道一个不错且有用的网站/教程可以让我去设置吗?我已经为此奋斗了将近 2 个月。

是的,我也对 forums.openvpn 进行了窃听,但我认为我已经“达到了我的发帖限制”。

我必须通过 ssh 进行远程配置它。

更新:

好的,我被要求更清楚地说明这个问题

我按照本教程进行操作(作为示例)-

http://www.servermom.com/how-to-build-openvpn-server-on-centos-6-x/732/

我没有遇到任何设置问题,除了当我启动 Windows 并运行 OpenVPN GUI 客户端时,它连接并出现此错误:

警告:来自对等方 (21331) 的封装数据包长度错误,必须大于 0 且小于等于 1576 - 请确保两个对等方上的 --tun-mtu 或 --link-mtu 相等 - 此情况也可能表示对 TCP 链路存在主动攻击 - [正在尝试重新启动...]

这是我的服务器配置:

port 1194 #- port
proto udp #- protocol
dev tun
tun-mtu 1500
tun-mtu-extra 32
mssfix 1450
reneg-sec 0
ca /etc/openvpn/easy-rsa/2.0/keys/ca.crt
cert /etc/openvpn/easy-rsa/2.0/keys/server.crt
key /etc/openvpn/easy-rsa/2.0/keys/server.key
dh /etc/openvpn/easy-rsa/2.0/keys/dh1024.pem
plugin /usr/lib64/openvpn/plugin/lib/openvpn-auth-pam.so /etc/pam.d/login #- Co$
#plugin /etc/openvpn/radiusplugin.so /etc/openvpn/radiusplugin.cnf #- Uncomment$
client-cert-not-required
username-as-common-name
server 10.8.0.0 255.255.255.0
push "redirect-gateway def1"
push "dhcp-option DNS 8.8.8.8"
push "dhcp-option DNS 8.8.4.4"
keepalive 5 30
comp-lzo
persist-key
persist-tun
status 1194.log
verb 3

和我的客户端配置:

client
dev tun
proto udp
remote [server ip] 1194 # - Your server IP and OpenVPN Port
resolv-retry infinite
nobind
tun-mtu 1500
tun-mtu-extra 32
mssfix 1450
persist-key
persist-tun
ca ca.crt
auth-user-pass
comp-lzo
reneg-sec 0
verb 3

OpenVPN 客户端日志:

Thu Oct 31 11:51:29 2013 OpenVPN 2.0.9 Win32-MinGW [SSL] [LZO] built on Oct  1 2006
Thu Oct 31 11:51:44 2013 IMPORTANT: OpenVPN's default port number is now 1194, based on an official port number assignment by IANA.  OpenVPN 2.0-beta16 and earlier used 5000 as the default port.
Thu Oct 31 11:51:44 2013 WARNING: No server certificate verification method has been enabled.  See http://openvpn.net/howto.html#mitm for more info.
Thu Oct 31 11:51:44 2013 LZO compression initialized
Thu Oct 31 11:51:44 2013 Control Channel MTU parms [ L:1576 D:140 EF:40 EB:0 ET:0 EL:0 ]
Thu Oct 31 11:51:44 2013 Data Channel MTU parms [ L:1576 D:1450 EF:44 EB:135 ET:32 EL:0 AF:3/1 ]
Thu Oct 31 11:51:44 2013 Local Options hash (VER=V4): '2547efd2'
Thu Oct 31 11:51:44 2013 Expected Remote Options hash (VER=V4): '77cf0943'
Thu Oct 31 11:51:44 2013 Attempting to establish TCP connection with x.x.x.x:1194
Thu Oct 31 11:51:44 2013 TCP connection established with x.x.x.x:1194
Thu Oct 31 11:51:44 2013 TCPv4_CLIENT link local: [undef]
Thu Oct 31 11:51:44 2013 TCPv4_CLIENT link remote: x.x.x.x:1194 

// after this it just hangs, nothing happens

所以我不知道我做错了什么,但是我有点不耐烦,在我发布此帖子的每个论坛上,我都得到愚蠢/不相关/无用的答案......

答案1

OpenVPN文档:http://openvpn.net/index.php/open-source/documentation.html

如果你有具体的问题,就说出来。含糊其辞是没有用的。

相关内容