Estou tentando usar minha caixa NAS Synology DS212 e também atuo como gateway de VPN para minha VPN de empresas. Infelizmente, eles só usam Cisco ASA e para complicar ainda mais as coisas, precisamos usar certificados pessoais (o que é claro, mais seguro, mas mais complicado para continuar ...).
Então eu compilei o OpenConnect v4.06 do link . Como um teste muito básico, eu tentei construir uma conexão invocando manualmente o openconnect, passando adiante os arquivos chave e cert, assim:
/lib/ld-linux.so.3 --library-path /opt/lib \
/opt/openconnect/sbin/openconnect \
--certificate=$VPN_CFG/alexander.crt \
--sslkey=$VPN_CFG/alexander.key \
--cafile=$VPN_CFG/Company_VPN_CA.crt \
--user=alexander --verbose <ip>:443
Ele falha: (
Attempting to connect to <ip>:443
Using certificate file $VPN_CFG/alexander.crt
Using client certificate '/[email protected]/OU=Company VPN'
5919:error:0D0680A8:asn1 encoding routines:ASN1_CHECK_TLEN:wrong tag:tasn_dec.c:1315:
Loading private key failed (see above errors)
Loading certificate failed. Aborting.
Failed to open HTTPS connection to <ip>
Failed to obtain WebVPN cookie
Quando executo o mesmo comando com os mesmos arquivos de certificados / chaves em uma caixa do Ubuntu 12.04, ele funciona:
openconnect \
--certificate=$VPN_CFG/alexander.crt \
--sslkey=$VPN_CFG/alexander.key \
--cafile=$VPN_CFG/Company_VPN_CA.crt \
--user=alexander --verbose <ip>:443
Attempting to connect to <ip>:443
Using certificate file $VPN_CFG/alexander.crt
Extra cert from cafile: '/CN=Company AG VPN CA/O=Company AG/L=Zurich/ST=ZH/C=CH'
SSL negotiation with <ip>
Server certificate verify failed: self signed certificate
Certificate from VPN server "<ip>" failed verification.
Reason: self signed certificate
Enter 'yes' to accept, 'no' to abort; anything else to view: yes
Connected to HTTPS on <ip>
GET https://<ip>/
[…]
Bem… O erro no NAS é este:
5919: erro: 0D0680A8: rotinas de codificação asn1: ASN1_CHECK_TLEN: tag errada: tasn_dec.c: 1315:
Alguma idéia, o que está causando isso?
No Syno, eu uso o OpenConnect 4.06. No Ubuntu, eu apenas compilei e instalei para um local personalizado OpenConnect 4.06 também.
Obrigado
Alexandre