语境
我这里有 2 台不同的机器,它们的主要区别是一个运行 CentOS6,另一个运行 CentOS7。两者都运行最新的可用分发版本的 lib:COS7 为 0.8.13,CentOS6 为 0.7.5 两者都运行“正常”配置的 nss-pam-ldapd:
/etc/nslcd.conf
uid nslcd
gid ldap
uri ldap://ldap.example.org/
base dc=example,dc=org
ssl no
tls_cacertdir /etc/openldap/cacerts
idle_timelimit 240
base group ou=groups,dc=example,dc=org
binddn cn=Readonly,dc=example,dc=org
bindpw **************
服务器权限:
olcAccess: {0}to attrs=userPassword,shadowLastChange by dn="cn=Manager,dc=cube-net,dc=org" write by dn="cn=Readonly,dc=example,dc=org" none by anonymous auth by self write by * none
olcAccess: {1}to dn.base="cn=Readonly,dc=example,dc=org" by dn="cn=Manager,dc=example,dc=org" write by * none
olcAccess: {2}to dn.base="" by * read
olcAccess: {3}to * by dn="cn=Manager,dc=example,dc=org" write by dn="cn=Readonly,dc=example,dc=org" read by self write by * read
问题
我可以很好地查找用户,但我无法以su
在 CentOS 7 上使用的用户身份登录。我得到:
mveroone@vm:~$ passwd
Changing password for user mveroone.
(current) LDAP Password:
New password:
Retype new password:
passwd: all authentication tokens updated successfully.
mveroone@vm:~$ su - mveroone
Password:
su: Permission denied
mveroone@vm:~$ ssh localhost
Authorized uses only. All activity may be \ monitored and reported.
mveroone@localhost's password:
Last login: Fri Aug 20 16:10:24 2021
Authorized uses only. All activity may be \ monitored and reported.
mveroone@vm:~$
所以是的,我可以使用 SSH 登录,更改我的密码,但不能使用 su。
我试过的
使用简单的绑定方法在两台服务器上执行 aldapwhoami
工作,但不是 SASL(无可用机制)
root@vm:~# ldapwhoami -D uid=user,ou=users,dc=example,dc=org -W -H ldap://ldap.example.org
Enter LDAP Password:
dn:uid=user,ou=users,dc=example,dc=org
nslcd -d
在尝试使用密码验证时运行su
仅在 COS7 中显示:
nslcd: DEBUG: accept() failed (ignored): Resource temporarily unavailable
尽管根据几个邮件列表线程,这似乎是一个可以忽略的错误。
当使用附加调试()运行 nslcd 时nslcd -dd
,我可以看到它首先尝试与用户绑定,这成功了,然后它搜索'(objectClass=*)'
,过滤属性:dn
和 base = 本身有效:
ldap_free_request (origid 1, msgid 1)
ldap_parse_result
ldap_msgfree
ldap_search_ext
put_filter: "(objectClass=*)"
put_filter: simple
put_simple_filter: "objectClass=*"
ldap_build_search_req ATTRS: dn
ldap_send_initial_request
ldap_send_server_request
ldap_result ld 0x7f7a9800cf60 msgid 2
wait4msg ld 0x7f7a9800cf60 msgid 2 (timeout 10000000 usec)
wait4msg continue ld 0x7f7a9800cf60 msgid 2 all 0
** ld 0x7f7a9800cf60 Connections:
* host: ldap.example.org port: 389 (default)
refcnt: 2 status: Connected
last used: Fri Aug 20 11:42:05 2021
** ld 0x7f7a9800cf60 Outstanding Requests:
* msgid 2, origid 2, status InProgress
outstanding referrals 0, parent count 0
ld 0x7f7a9800cf60 request count 1 (abandoned 0)
** ld 0x7f7a9800cf60 Response Queue:
Empty
ld 0x7f7a9800cf60 response count 0
ldap_chkResponseList ld 0x7f7a9800cf60 msgid 2 all 0
ldap_chkResponseList returns ld 0x7f7a9800cf60 NULL
ldap_int_select
read1msg: ld 0x7f7a9800cf60 msgid 2 all 0
read1msg: ld 0x7f7a9800cf60 msgid 2 message type search-entry
ldap_get_dn
nslcd: [0e0f76] <authc="user"> DEBUG: ldap_result(): uid=user,ou=users,dc=example,dc=org
ldap_msgfree
ldap_abandon 2
ldap_abandon_ext 2
do_abandon origid 2, msgid 2
ldap_msgdelete ld=0x7f7a9800cf60 msgid=2
ldap_free_request (origid 2, msgid 2)
ldap_free_connection 0 1
ldap_free_connection: refcnt 1
ldap_msgfree
nslcd: [0e0f76] <authc="user"> DEBUG: ldap_unbind()
ldap_unbind
所以路径是:
- 绑定(确定)
- 搜索自己的DN(ok)
- 放弃
- 解绑
然后告诉我它无法验证用户。(“权限被拒绝”,所以它与“身份验证失败”不同)我执行了一个数据包捕获,它显示了同样的事情。
我已经尝试通过 nslcd 的 0.8.x 版本的变更日志来查看是否发生了一些变化,但是有很多变化,没有足够的细节。