@Jeff777@Pascalou59@MilesTEG1
Bon j'ai trouvé la solution au problème en cherchant sur le net.
A priori c'est connu sur la dernière version du client OpenVPN Connect (3.3.6)
A la création du serveur OpenVPN sur le NAS et quand on coche l'option
Vérifier le CN du serveur.
Dans le fichier de conf exporté, la ligne suivante est ajoutée en fin de fichier
verify-x509-name 'mon.nom.domaine.fr' name
ceci qui conduit au message d'erreur suivant lors de l'utilisation de cette conf sous OpenVPN Connect 3.3.6
Pour résoudre le problème il faut enlever les quote ou les remplacer par des doubles quote sur la ligne de commande dans le fichier de conf .opvn
La ligne devient
verify-x509-name mon.nom.domaine.fr name
Et après ça marche !!!
Merci pour votre aide à tous.
Je laisse ici le fichier de config
dev tun
tls-client
remote mon.nom.domaine.fr 1194
# The "float" tells OpenVPN to accept authenticated packets from any address,
# not only the address which was specified in the --remote option.
# This is useful when you are connecting to a peer which holds a dynamic address
# such as a dial-in user or DHCP client.
# (Please refer to the manual of OpenVPN for more information.)
#float
# If redirect-gateway is enabled, the client will redirect it's
# default network gateway through the VPN.
# It means the VPN connection will firstly connect to the VPN Server
# and then to the internet.
# (Please refer to the manual of OpenVPN for more information.)
redirect-gateway def1
# dhcp-option DNS: To set primary domain name server address.
# Repeat this option to set secondary DNS server addresses.
#dhcp-option DNS DNS_IP_ADDRESS
pull
# If you want to connect by Server's IPv6 address, you should use
# "proto udp6" in UDP mode or "proto tcp6-client" in TCP mode
proto udp
script-security 2
reneg-sec 0
cipher AES-256-CBC
data-ciphers 'AES-256-CBC'
auth SHA512
auth-nocache
auth-user-pass
<ca>
-----BEGIN CERTIFICATE-----
# ici votre certificat
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
# ici votre certificat
-----END CERTIFICATE-----
</ca>
key-direction 1
<tls-auth>
#
# 2048 bit OpenVPN static key
#
-----BEGIN OpenVPN Static key V1-----
# ici votre clé
-----END OpenVPN Static key V1-----
</tls-auth>
verify-x509-name mon.nom.domaine.fr name