Windows 10 Pro (1903) Server, "Unidentified" network...
Posted: Fri Nov 15, 2019 8:29 am
Server config: Running OpenVPN 2.4.8
Client config: Running OpenVPN 2.4.8
I was under the impression that the push "route-metric 512" and push "route 0.0.0.0 0.0.0.0" in the server config would give all connecting Windows clients a default gateway, and thus evade the "Unidentified Network" problem. That does not appear to be the case anymore - the server is content with the VPN and is showing it as a private network, but clients are automatically connecting and seeing an "Unidentified Network" where they used to prompt the user, asking if the newly-detected network was a private or public network. How do I restore this behavior?
Code: Select all
port 1194
proto udp
dev tun
ca ca-chain.pem
cert serv.crt
key serv.pem # This file should be kept secret
dh dh2048.pem
server 172.20.88.0 255.255.255.0
client-config-dir ccd
push "route-metric 512"
push "route 0.0.0.0 0.0.0.0"
keepalive 10 120
tls-auth ta.key 0 # This file is secret
cipher AES-256-CBC
comp-lzo
persist-key
persist-tun
status openvpn-status.log
log openvpn.log
verb 3
Code: Select all
client
dev tun
proto udp
remote-cert-tls server
remote 192.168.1.1 1194
resolv-retry infinite
nobind
ca ca-chain.pem
cert client.crt
key client.pem
tls-auth ta.key 1
cipher AES-256-CBC
compress lz4
status openvpn-status.log
log openvpn.log
verb 3