我最近购买了一项 VPN 服务,并使用 openVPN 连接该服务。
在 Windows 7 上,我可以通过 UDP 和 TCP 设置进行连接,但当我在 Ubuntu 13.04 上尝试进行同样操作时,它允许我访问Initialization Sequence Completed
网页,但只有 UDP 允许我访问网页。
当我尝试使用 TCP 连接到网页时,它只是不断加载,没有任何反应
我已经尝试过网络上的许多设置,其中还包括命令iptables
。
我也尝试导入我的设置,network-manager-openvpn, network-manager-openvpn-gnome
但这给了我错误"VPN-NAME" Failed because of invalid VPN secret
我很确定问题出在 Ubuntu 配置的某个地方,但这是我的 openVPN 配置文件:
client
dev tun
proto tcp
remote vpn.host.here 443
reneg-sec 0
resolv-retry infinite
nobind
persist-key
persist-tun
ca ca.crt
ns-cert-type server
tls-auth ta.key 1
auth-user-pass
cipher AES-256-CBC
verb 4
tun-ipv6
keepalive 5 30
我不知道什么信息或日志可用于解决此问题,但我会在需要时将其添加到问题中。
有人有建议吗?
顺便说一句,我无法使用 UDP 方法,因为那里使用的端口在网络上没有打开。它必须是端口 80 或 443。