これは私のopenvpn設定です。
サーバーはlinux centos、クライアント1はlinux centos、クライアント2はwindows10です。 LinuxクライアントはLinuxサーバーをpingできますが、Windowsクライアントはpingできません。 Linuxクライアントはlinuxサーバーをpingできますが、Windowsクライアントはできません。私が逃したものは何ですか?システムログにエラーがなく、Windowsでファイアウォールをオフにしようとしましたが、成功しませんでした。これらはconfファイルです
サーバーLinux
port 1194
proto udp
dev tun
ca ca.crt
cert server.crt
key server.key # This file should be kept secret
dh dh2048.pem
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
keepalive 10 120
tls-auth ta.key 0 # This file is secret
cipher AES-256-CBC
user nobody
group nobody
persist-key
persist-tun
status openvpn-status.log
verb 3
explicit-exit-notify 1
クライアントLinux
client
dev tun
proto udp
remote mysite.fqdn 1194
resolv-retry infinite
nobind
user nobody
group nobody
persist-key
persist-tun
ca ca.crt
cert client.crt
key client.key
remote-cert-tls server
tls-auth ta.key 1
cipher AES-256-CBC
verb 6
クライアントウィンドウ
client
proto udp
verb 3
dev tun
remote mysite.fqdn
port 1194
ca ca.crt
cert windows10.mysite.crt
key windows10.mysite.key
tls-auth ta.key 1
nobind
persist-key
persist-tun
cipher AES-256-CBC
ベストアンサー1
解決策が見つかりました。サーバーに以下を追加する必要があります。
クライアント対クライアントなど
Windowsクライアントの場合(通常どおり..)
だからserver.confは
port 1194
proto udp
dev tun
ca ca.crt
cert server.crt
key server.key # This file should be kept secret
dh dh2048.pem
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
keepalive 10 120
tls-auth ta.key 0 # This file is secret
cipher AES-256-CBC
user nobody
group nobody
persist-key
persist-tun
status openvpn-status.log
verb 3
explicit-exit-notify 1
client-to-client
topology "subnet"
push "topology subnet"
push "route 10.8.0.0 255.255.255.0"