OpenLDAP : LDAP over SSL/TLS2020/05/11 |
LDAP over SSL/TLS を設定し、LDAP サーバーとクライアント間の通信をよりセキュアにします。
|
|
[1] | |
[2] | LDAP サーバー側で [1] で作成した証明書をコピーして SSL/TLS の設定をします。 |
root@dlp:~#
cp /etc/ssl/private/server.key \ /etc/ssl/private/server.crt \ /etc/ssl/certs/ca-certificates.crt \ /etc/ldap/sasl2/ root@dlp:~# chown openldap. /etc/ldap/sasl2/server.key \
/etc/ldap/sasl2/server.crt \ /etc/ldap/sasl2/ca-certificates.crt
root@dlp:~#
vi mod_ssl.ldif # 新規作成 dn: cn=config changetype: modify add: olcTLSCACertificateFile olcTLSCACertificateFile: /etc/ldap/sasl2/ca-certificates.crt - replace: olcTLSCertificateFile olcTLSCertificateFile: /etc/ldap/sasl2/server.crt - replace: olcTLSCertificateKeyFile olcTLSCertificateKeyFile: /etc/ldap/sasl2/server.key ldapmodify -Y EXTERNAL -H ldapi:/// -f mod_ssl.ldif SASL/EXTERNAL authentication started SASL username: gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth SASL SSF: 0 modifying entry "cn=config"root@dlp:~# systemctl restart slapd
|
[3] | LDAP クライアント側の設定です。 通信内容が正常に暗号化されているかを確認する場合は、サーバー側で tcpdump 等を活用するとよいでしょう。 |
root@node01:~#
vi /etc/nslcd.conf # 29行目:追記 ssl start_tls tls_reqcert allow
root@node01:~#
logout node01 login: focal # LDAP 登録ユーザー Password: Welcome to Ubuntu 20.04 LTS (GNU/Linux 5.4.0-26-generic x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage System information as of Mon 11 May 2020 05:03:25 PM JST System load: 0.0 Processes: 127 Usage of /: 9.1% of 24.54GB Users logged in: 0 Memory usage: 4% IPv4 address for enp1s0: 10.0.0.51 Swap usage: 0% Last login: Mon May 10 16:56:03 JST 2020 on ttyS0 focal@node01:~$ # ログインできた |
Sponsored Link |