Is it possible to make settings in the .OVPN to be recognized by the SO?
Example:
Code: Select all
client
proto udp
explicit-exit-notify
remote SERVER 1194
dev tun
resolv-retry infinite
nobind
persist-key
persist-tun
remote-cert-tls server
verify-x509-name server name
auth SHA256
auth-user-pass
auth-nocache
cipher AES-128-GCM
tls-client
tls-version-min 1.2
tls-cipher TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256
verb 3
reneg-sec 36000
dhcp-option DNS 10.1.0.1
# BEGIN BLOCK ONLY WINDOWS
register-dns
block-outside-dns
# END BLOCK ONLY WINDOWS
# BEGIN BLOCK ONLY LINUX
script-security 2
up /etc/openvpn/update-resolv-conf
down /etc/openvpn/update-resolv-conf
# ENDBLOCK ONLY LINUX
Thanks.