Ubuntu 16.04
Sponsored Link

LDAP over TLS2016/05/25

 
LDAP over TLS を設定し、LDAP サーバーとクライアント間の通信をよりセキュアにします。
[1]
まずはこちらを参照して SSL 証明書を作成しておきます。
[2] LDAP サーバーの設定です。
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

root@dlp:~#
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:~#
vi /etc/default/slapd
# 24行目:追記

SLAPD_SERVICES="ldap:/// ldapi:///
ldaps:///
"
root@dlp:~#
systemctl restart slapd

[3] LDAP クライアントの設定です。
root@www:~#
echo "TLS_REQCERT allow" >> /etc/ldap/ldap.conf

root@www:~#
vi /etc/ldap.conf
# 261行目:コメント解除

ssl start_tls
root@www:~#
logout
Ubuntu 16.04 LTS www.srv.world ttyS0
www login:
ubuntu

Password:
Last login: Thu May 26 14:24:32 JST 2016 on ttyS0
Welcome to Ubuntu 16.04 LTS (GNU/Linux 4.4.0-22-generic x86_64)

 * Documentation:  https://help.ubuntu.com/
ubuntu@www:~$    
# ログインできた
関連コンテンツ