Eu tenho uma rede OpenVPN com uma configuração bastante padrão:
auth.txt
arquivo com usuário e senha ca.crt
arquivo com o certificado my-nat.pem
arquivo com a identidade do meu VPC e a configuração do OpenVPN:
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
E conecte o comando: 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?
Tags vpn windows-10 openvpn