centos – 当用户使用passwd更改LDAP密码时强制SHA

前端之家收集整理的这篇文章主要介绍了centos – 当用户使用passwd更改LDAP密码时强制SHA前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试设置PAM / LDAP,以便当登录的SSH用户使用passwd更改其密码时,它会在更新LDAP条目之前使用SHA1加密密码.我有这个
# /etc/ldap.conf
...
rootbinddn cn=Manager,dc=ourdomain,dc=com
rootpw secret
pam_crypt local

用户使用passwd更改其密码时,在LDAP中,该条目看起来像这样

{crypt}41H84HEld3

所以它作为地穴而来.我不确定如何强制它成为SHA / SHA1.我尝试添加

pam_password sha

到/etc/ldap.conf然后密码刚刚结束,并以明文形式存储在LDAP中.

从这个 source,RHEL | CentOS 5:

Display Current Hashing Algorithm

Type the following command:
# authconfig –test | grep hashing

Sample outputs:

password hashing algorithm is md5

Configure Linux Server To Use The SHA-512

To configure the Linux system to use the SHA-512 algorithm,enter:
# authconfig –passalgo=sha512 –update

Note: users need to change their passwords in order to generate hashes using SHA-512. You can force users to change their password on next login:

# chage -d 0 userName

我没有尝试过(只有CentOS 4有用),但希望它有所帮助.

原文链接:https://www.f2er.com/centos/373706.html

猜你在找的CentOS相关文章