我正在尝试通过网络管理器中的OpenVPN GUI模块使用通过OpenVPN协议使用的免费服务。
该配置.ovpn
与Windows 一样运行良好。Windows中的行为是我运行OpenVPN GUI并选择连接到该特定VPN。然后它将显示尝试连接的活动,并打开一个用于用户名/密码验证的对话框。
通过将文件类型更改为.conf
并使用网络管理器中的导入功能,我已经成功导入了所有配置。但是,尝试连接将仅显示网络管理器的尝试连接动画,但最终以连接超时通知结束。根本不会出现询问身份验证的提示,也找不到任何为身份验证详细信息加前缀的功能。
client
dev tun
proto tcp
remote miami.proxpn.com 443
resolv-retry infinite
nobind
persist-key
persist-tun
ca ca.crt
cert client.crt
key client.key
cipher BF-CBC
keysize 512
comp-lzo
verb 4
mute 5
tun-mtu 1500
mssfix 1450
auth-user-pass
reneg-sec 0
# If you are connecting through an
# HTTP proxy to reach the actual OpenVPN
# server, put the proxy server/IP and
# port number here. See the man page
# if your proxy server requires
# authentication.
;http-proxy-retry # retry on connection failures
;http-proxy [proxy server] [proxy port #]
不用说,但是我已经下载了设置OpenVPN连接所需的所有软件包。
顺便说一下,如您在上面看到的,文件位置.key
和配置.crt
文件指定在同一目录中。导入配置文件后,如果我要删除它们,会引起任何问题吗?注意,我还没有删除它们,所以我面临的问题不是由于缺少这些文件。
sudo
特权。