栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > Linux

各种操作系统的密码策略

Linux 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

各种操作系统的密码策略

Centos6.9

闲置超时退出  

在etc/profile文件末尾添加TMOUT=900(单位为秒)保存退出,source /etc/profile执行

密码复杂度策略 修改etc/pam.d/system-auth   更改pam_cracklib.so   最少八位,含有大写字母,数字,小写字母,特殊字符

防止重复密码策略 修改etc/pam.d/system-auth  更改pam_unix.so   remember=防止重复历史几次的密码

 

登录有效期

修改etc/login.defs中PASS-MAX-DAYS后边字段为90,PASS-WARN-AGE 后边字段为7(密码有效期90天,过期前七天提醒)

登录超过五次锁定  

修改etc/pam.d/sshd限制远程登录次数,新添加一行auth  required pam_tally2.so   deny=限制登录次数 unlock_time=锁定时间(单位秒)

想要限制root用户就在后面加上even_deny_root   root_unlock_time=锁定时间

 

修改etc/pam.d/system-auth限制本地登录次数   新添加一行auth  required pam_tally2.so deny=限制登录次数 unlock_time=锁定时间(单位秒)

想要限制root用户就在后面加上even_deny_root   root_unlock_time=锁定时间

 

Centos7.9

闲置超时退出  

在etc/profile文件末尾添加TMOUT=900(单位为秒)保存退出,source /etc/profile执行

密码复杂度策略 修改etc/pam.d/system-auth   更改pam_pwquality.so   最少八位,含有大写字母,数字,小写字母,特殊字符

防止重复密码策略 修改etc/pam.d/system-auth  更改pam_unix.so   remember=防止重复历史几次的密码

 

登录有效期

修改etc/login.defs中PASS-MAX-DAYS后边字段为90,PASS-WARN-AGE 后边字段为7(密码有效期90天,过期前七天提醒)

登录超过五次锁定  

修改etc/pam.d/sshd限制远程登录次数,新添加一行auth  required pam_tally2.so   deny=限制登录次数 unlock_time=锁定时间(单位秒)

想要限制root用户就在后面加上even_deny_root   root_unlock_time=锁定时间

 

修改etc/pam.d/system-auth限制本地登录次数   新添加一行auth  required pam_tally2.so deny=限制登录次数 unlock_time=锁定时间(单位秒)

想要限制root用户就在后面加上even_deny_root   root_unlock_time=锁定时间

 

ununtu9.3.0

闲置超时退出  

在etc/profile文件末尾添加TMOUT=900(单位为秒)保存退出,source /etc/profile执行

登录有效期

修改etc/login.defs中PASS-MAX-DAYS后边字段为90,PASS-WARN-AGE 后边字段为7(密码有效期90天,过期前七天提醒)

密码复杂度策略

修改etc/pam.d/common-password   更改pam_cracklib.so   最少八位,含有大写字母,数字,小写字母,特殊字符

防止重复密码策略

 修改etc/pam.d/common-password  更改pam_unix.so   remember=防止重复历史几次的密码

(ubantu中如果没有安装cracklib模块需要先apt-get install libpam-cracklib进行安装,找不到安装资源的话就apt-get update更新安装包)

 

登录超过五次锁定  

修改etc/pam.d/sshd限制远程登录次数,新添加一行auth  required  pam_tally2.so   deny=限制登录次数 unlock_time=锁定时间(单位秒)

想要限制root用户就在后面加上even_deny_root   root_unlock_time=锁定时间

 

修改etc/pam.d/login限制本地登录次数   新添加一行auth  required  pam_tally2.so deny=限制登录次数 unlock_time=锁定时间(单位秒)

想要限制root用户就在后面加上even_deny_root   root_unlock_time=锁定时间

 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/841580.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号