I'm trying to setup an ovpn connection on my mikrotik and it won't work.
The service i'm trying to connect has provided me an .ovpn file that contains <ca> section only.
Code: Select all
client
dev tun
proto tcp
remote IP 443
resolv-retry infinite
nobind
tun-mtu 1500
tun-mtu-extra 32
mssfix 1450
persist-key
persist-tun
auth-user-pass
comp-lzo
reneg-sec 0
verb 3
<ca>
-----BEGIN CERTIFICATE-----
....
-----END CERTIFICATE-----
</ca>
Then I created a connection, choose the certificate and cipher.
And it won't connect. In log: TLS failed
If I choose no certificate ("none"), it can authenticate on the server using username and password provided and receive remote ip address but after a minute it disconnects. And seems packets aren't going (I think because of no certificate)
What I did wrong or this type of connection isn't supported by Mikrotik?
The .ovpn config works perfectly with Tunnelblick
Thank you.