Help with unified opvn configuration

Official client software for OpenVPN Access Server and OpenVPN Cloud.
Post Reply
coc014
OpenVpn Newbie
Posts: 2
Joined: Fri Feb 22, 2013 8:40 pm

Help with unified opvn configuration

Post by coc014 » Tue Jun 18, 2013 1:35 pm

Hi !

I have an issue, i've made an unified opvn file but when i try to import, i fill my user id and password, i touch "connect" and, openvpn ask me for a certificate with strange filename, like pfx or p12 :?

My .opvn base file from my computer (not unified) :

Code: Select all

client
port 443
proto tcp
dev tun
remote nameofserver.com
resolv-retry infinite
ca ca.crt
tls-auth ta.key 1
auth-user-pass 
cipher AES-256-CBC
comp-lzo
verb 1
route-method exe
route-delay 2
nobind
ns-cert-type server
and my "unified" openvpn file that i made looks like this (i think i have done a mistake but where ?)

Code: Select all

client
port 443
proto tcp
dev tun
remote nameofserver.com
resolv-retry infinite
auth-user-pass 
cipher AES-256-CBC
comp-lzo
verb 1
route-method exe
route-delay 2
nobind
ns-cert-type server
key-direction 1
<ca>
-----BEGIN CERTIFICATE-----
the certificate (removed for security)
-----END CERTIFICATE-----
</ca>
<tls-auth>
-----BEGIN OpenVPN Static key V1-----
removed 
-----END OpenVPN Static key V1-----
</tls-auth>
And i haven't managed to get openvpn working on iphone/android ... with featvpn (unofficial app) it worked a while on android but no more with android 4.2.

So could someone verify my opvn file, thanks ! :mrgreen:
(sorry for my english)



EDIT : it works ! just add this line "setenv CLIENT_CERT 0"
if someone has the same issue... :)

Post Reply