Quando provo a stabilire connessioni ldaps al mio server Novel eDirectory 8.8, a volte devo inserire TLS_REQCERT never
il file ldap.conf dei server client. Ovviamente, questa è una cattiva idea.
Il comando che eseguo è qualcosa del genere con credenziali che funzionano davvero ...
ldapsearch -x -H ldaps://ldapserver -b 'ou=active,ou=people,dc=example,dc=org' -D 'cn=admin,dc=example,dc=org' -W "cn=username"
Su Ubuntu 13.10, funziona benissimo.
Su SLES funziona benissimo.
Su CentOS 6.5 restituisce:
ldap_sasl_bind(SIMPLE): Can't contact LDAP server (-1)
Ora, il certificato che ho importato è un certificato jolly acquistato da DigiCert. Il mio collega ha trovato alcuni rapporti che indicano che alcuni sistemi hanno problemi con i caratteri jolly.
Quindi, è la colpa del carattere jolly cert? In tal caso, come posso ripararlo?
Se non è il cert jolly, che cos'è?
Seguendo il suggerimento di Andrew Schulman, ho aggiunto -d1
al mio comando ldapsearch. Ecco cosa ho finito con:
ldap_url_parse_ext(ldaps://ldap.example.org)
ldap_create
ldap_url_parse_ext(ldaps://ldap.example.org:636/??base)
Enter LDAP Password:
ldap_sasl_bind
ldap_send_initial_request
ldap_new_connection 1 1 0
ldap_int_open_connection
ldap_connect_to_host: TCP ldap.example.org:636
ldap_new_socket: 3
ldap_prepare_socket: 3
ldap_connect_to_host: Trying 10.225.0.24:636
ldap_pvt_connect: fd: 3 tm: -1 async: 0
TLS: certdb config: configDir='/etc/openldap' tokenDescription='ldap(0)' certPrefix='cacerts' keyPrefix='cacerts' flags=readOnly
TLS: cannot open certdb '/etc/openldap', error -8018:Unknown PKCS #11 error.
TLS: could not get info about the CA certificate directory /etc/openldap/cacerts - error -5950:File not found.
TLS: certificate [CN=DigiCert High Assurance EV Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US] is not valid - error -8172:Peer's certificate issuer has been marked as not trusted by the user..
TLS: error: connect - force handshake failure: errno 2 - moznss error -8172
TLS: can't connect: TLS error -8172:Peer's certificate issuer has been marked as not trusted by the user..
ldap_err2string
ldap_sasl_bind(SIMPLE): Can't contact LDAP server (-1)
Da quanto detto, CentOS non si fida di DigiCert? Oppure CentOS non ha un elenco di emittenti fidati?
telnet ldapserver ldaps
oopenssl s_client -connect ldapserver:636
.