In this entry we are going to disable the SSLv3 protocol in 389 Directory Server to work through TLS
To do this, first of all we have to modify the 389 Directory Server administration console
Bash
vi /etc/dirsrv/admin-serv/console.confWe look for the line: NSSProtocol SSLv3,TLSv1 and we must eliminate SSLV3 remaining as follows:
text
NSSProtocol TLSv1.1After deactivating SSLv3 in the administrative console we have to connect through LDAP and modify the encryption type
text
ldapmodify -D «cn=directory manager» -W
dn: cn=encryption,cn=config
changetype: modify
replace: nsSSL3
nsSSL3: offWe restart the service
text
/etc/init.d/dirsrv restartTo check if SSLv3 is disabled:
text
openssl s_client -connect hostname:389 -ssl3
openssl s_client -connect hostname:636 -ssl3
openssl s_client -connect hostname:9830 -ssl3:wq!
Comments