我在 Debian 11 机器上运行 OpenVPN 服务器。我有几个客户端,它们运行各种操作系统(Ubuntu 20.04、Debian 11、Windows 10、iOS)。但是,运行 Windows 10 的客户端无法 ping 其他客户端(无论操作系统如何),而其他客户端无法 ping Windows 10 客户端。似乎 Windows 10 客户端无法识别客户端到客户端选项。
在 Windows 客户端上,我使用 OpenVPN-gui (https://openvpn.net/community-downloads/-OpenVPN-2.6.4-I001-amd64.msi)
我已经尝试向 Windows 防火墙添加一条规则,以允许任何东西从端口 1194 进出。
这是服务器配置:
port 1194
proto tcp
dev tun
ca ca.crt
cert FZ01SRVR.crt
key FZ01SRVR.key
dh dh.pem
server 10.10.10.0 255.255.255.0
client-config-dir ccd
push "redirect-gateway def1 bypass-dhcp"
push "dhcp-option DNS 208.67.222.222"
push "dhcp-option DNS 208.67.220.220"
client-to-client
keepalive 10 120
tls-auth ta.key 0
cipher AES-256-CBC
user nobody
group nogroup
persist-key
persist-tun
status openvpn-status.log
log-append openvpn.log
verb 5
这是客户端配置(跨操作系统):
client
dev tun
proto tcp
remote xxx.xxx.xxx.xxx 1194
resolv-retry infinite
pull-filter ignore redirect-gateway
nobind
persist-key
persist-tun
ca ca.crt
cert gestionale.crt
key gestionale.key
tls-auth ta.key 1
verb 1
我究竟做错了什么?