I have an OpenVPN network with a pretty much standard configuration:
auth.txt
file with user and passwordca.crt
file with the certificatemy-nat.pem
file with the identity for my VPC
and the OpenVPN config:
client
dev tun
proto udp
remote some-ip-here some-port-here
ca /etc/openvpn/keys/ca.crt
auth-user-pass /etc/openvpn/keys/auth.txt
resolv-retry infinite
nobind
persist-key
persist-tun
ns-cert-type server
cipher AES-128-CBC
comp-lzo
status /var/log/openvpn-status.log
log /var/log/openvpn.log
log-append /var/log/openvpn.log
verb 3
And connect command: ssh -i "my-nat.pem" Ubuntu@machine-ip-here
How can I translate these files/config so I can use it with the built-in VPN connection on Windows 10?