OpenVPN 클라이언트 간이 Windows 클라이언트에서 작동하지 않습니다

OpenVPN 클라이언트 간이 Windows 클라이언트에서 작동하지 않습니다

Debian 11 시스템에서 OpenVPN 서버를 실행하고 있습니다. 저는 모든 종류의 OS(Ubuntu 20.04, Debian 11, Windows 10, iOS)를 사용하는 여러 클라이언트를 보유하고 있습니다. 그러나 Windows 10을 실행하는 클라이언트는 OS에 관계없이 다른 클라이언트를 ping할 수 없으며 다른 클라이언트는 Windows 10 클라이언트를 ping할 수 없습니다. 클라이언트-클라이언트 옵션이 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

클라이언트 구성(교차 OS)은 다음과 같습니다.

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

내가 도대체 ​​뭘 잘못하고있는 겁니까?

관련 정보