客户设置 LDAP

我有一个现有服务器 LDAP (openldap), 我尝试配置服务器 CentOS 用于身份验证,我无法实现这一目标。 例如,我想做 # ssh some_ldap_user @ anyclientserver 并且可以成功传递身份验证。 任何人都可以向我表示可以帮助我的资源吗? 似乎似乎并不是一个挑战,但我的搜索技巧真的会破坏或类似的东西。
已邀请:

卫东

赞同来自:

假设您的服务器 LDAP 设置正确 (并且有大量的变量) ... 这是我编写的一个小脚本,以执行我们的每辆车以启用身份验证。 LDAP:

#!/bin/sh
#Redhats tool to configure LDAP auth (aka, 'setup' from command line)
#change order of two servers to change which one to check first (I pick closest one)
authconfig --enableldap --enableldapauth --enablemkhomedir --ldapserver=server1.local,server2.local --ldapbasedn="dc=whatever,dc=local" --update
#I use sudo in LDAP. (very handy tool, see the SUDO LDAP files on the web)
echo 'sudoers: files ldap' >> /etc/nsswitch.conf
echo 'base dc=whatever,dc=local
timelimit 120
bind_policy soft
bind_timelimit 120
idle_timelimit 3600
uri ldaps://server1.local/
uri ldaps://server2.local/
ssl yes
#without this line, will complain about our self signed certs
tls_checkpeer no
#because of security choices, have to send the password in the clear (but it goes over SSL, so no big deal). Then Ldap will hash it and compare.
#without this line, my people couldn't change passwords.
pam_password clear
sudoers_base ou=SUDOers,dc=whatever,dc=local
' > /etc/ldap.conf
#this lets us know which servers LDAP authentication is setup on...
echo '*************************************************' >> /etc/ssh/banner
echo '*Authorized users, please use your LDAP password*' >> /etc/ssh/banner
echo '*************************************************' >> /etc/ssh/banner

echo 'Banner /etc/ssh/banner' >> /etc/ssh/sshd_config
service sshd restart

要回复问题请先登录注册