OpenVPN 客户端连接到主机服务器,但客户端无法上网

OpenVPN 客户端连接到主机服务器,但客户端无法上网

我到处寻找答案,但仍然不知所措。我在个人网络上的 Windows PC 上设置了一个 OpenVPN 主机服务器。当我在客户端上启动与服务器的连接时,它会像平常一样连接,但首先令人担忧的是上传/下载速度以字节和千字节为单位,这似乎真的很慢,当我尝试在 VPN 连接时访问任何网站时,它就会超时。我搜索了一下,我不断看到很多解决方案,可以解决其他人遇到的类似问题,方法是将 更改为 push "redirect-gateway def1"push "redirect-gateway def"这个解决方案似乎对我没有任何作用。我真的被困住了,任何帮助都将不胜感激。

服务器配置:

# Specify a port, a protocol and a device type
port 1194
proto udp
dev tun
# Specify paths to server certificates
ca "C:\\Program Files\\OpenVPN\\easy-rsa\\pki\\ca.crt"
cert "C:\\Program Files\\OpenVPN\\easy-rsa\\pki\\issued\\server.crt"
key "C:\\Program Files\\OpenVPN\\easy-rsa\\pki\\private\\server.key"
dh "C:\\Program Files\\OpenVPN\\easy-rsa\\pki\\dh.pem"
# Specify the settings of the IP network your VPN clients will get their IP addresses from
server 10.24.1.0 255.255.255.0
push "redirect-gateway def"
# If you want to allow your clients to connect using the same key, enable the duplicate-cn option (not recommended)
# duplicate-cn
# TLS protection
tls-auth "C:\\Program Files\\OpenVPN\\easy-rsa\\pki\\ta.key" 0
cipher AES-256-GCM
# Other options
keepalive 20 60
persist-key
persist-tun
status "C:\\Program Files\\OpenVPN\\log\\status.log"
log "C:\\Program Files\\OpenVPN\\log\\openvpn.log"
verb 3

客户端配置:

client
dev tun
proto udp
remote (Host Server Public IP) 1194
resolv-retry infinite
nobind
persist-key
persist-tun
ca ca.crt
cert client1.crt
key client1.key
remote-cert-tls server
tls-auth ta.key 1
cipher AES-256-GCM
connect-retry-max 25
verb 3

相关内容