Centos7添加密碼安全策略

設置密碼中至少包含一個小寫字符,執行命令:
# authconfig --enablereqlower --update
查看設置:# grep "^lcredit" /etc/security/pwquality.conf\linux

 

設置密碼中至少包含一個大寫字符,執行命令:
# authconfig --enablerequpper --update
查看設置:
# grep "^ucredit" /etc/security/pwquality.confgit

 

設置密碼中至少包含一個數字字符,執行命令:
# authconfig --enablereqdigit --update
查看設置:
# grep "^dcredit" /etc/security/pwquality.confvim

 

設置密碼中至少包含一個特殊字符,執行命令:
# authconfig --enablereqother --update
查看設置:
# grep "^ocredit" /etc/security/pwquality.confui


直接編輯 /etc/security/pwquality.conf 這個文件 添加上述參數也是能夠的it

若是想讓上述密碼策略一樣適用於root用戶,那麼就須要編輯文件
# vim /etc/pam.d/system-auth 文件,找到 password requisite pam_pwquality.so 這一行,添加以下語句date

password requisite pam_pwquality.so try_first_pass local_users_only retry=3 enforce_for_rootgrep

 

參考連接:http://topspeedsnail.com/linux-password-limit-lengh-and-complex/密碼

相關文章
相關標籤/搜索