最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

centos7如何設(shè)置密碼規(guī)則?centos7設(shè)置密碼規(guī)則的方法

  發(fā)布時(shí)間:2017-03-24 11:22:38   作者:佚名   我要評(píng)論
最近一些朋友問小編centos7如何設(shè)置密碼規(guī)則?今天小編就為大家?guī)韈entos7設(shè)置密碼規(guī)則的方法!希望對(duì)大家會(huì)有幫助!有需要的朋友一起去看看吧

出于安全考慮設(shè)置密碼規(guī)則

設(shè)置密碼到期的天數(shù)。 
用戶必須在天內(nèi)更改密碼。 
此設(shè)置僅影響創(chuàng)建用戶,而不會(huì)影響現(xiàn)有用戶。 
如果設(shè)置為現(xiàn)有用戶,請(qǐng)運(yùn)行命令“chage -M(days)(user)”。
PASS_MAX_DAYS   60         # 密碼到期時(shí)間
PASS_MIN_DAYS   3          # 初始密碼更改時(shí)間
PASS_MIN_LEN    8          # 密碼最小長(zhǎng)度
PASS_WARN_AGE   7          # 密碼過期提示時(shí)間

重復(fù)密碼限制使用

 [root@linuxprobe~]# vi /etc/pam.d/system-auth
# near line 15: prohibit to use the same password for 5 generation in past

password     sufficient     pam_unix.so sha512 shadow nullok try_first_pass use_authtok remember=5

設(shè)置最小密碼長(zhǎng)度。 用戶不能設(shè)置小于此參數(shù)的密碼長(zhǎng)度。

 # set 8 for minimum password length

[root@linuxprobe~]# authconfig --passminlen=8 --update
# the parameter is set in a config below

[root@linuxprobe~]# grep "^minlen" /etc/security/pwquality.conf
minlen = 8 

# 在新密碼中設(shè)置同一類的允許連續(xù)字符的最大數(shù)目
 # set 4 for maximum number of allowed consecutive characters of the same class

[root@linuxprobe~]# authconfig --passmaxclassrepeat=4 --update
# the parameter is set in a config below

[root@linuxprobe~]# grep "^maxclassrepeat" /etc/security/pwquality.conf
maxclassrepeat = 4 

# 在新密碼中至少需要一個(gè)小寫字符。
 [root@linuxprobe~]# authconfig --enablereqlower --update
# the parameter is set in a config below
# (if you'd like to edit the value, edit it with vi and others)

[root@linuxprobe~]# grep "^lcredit" /etc/security/pwquality.conf
lcredit = -1 

# 在新密碼中至少需要一個(gè)大寫字符
 [root@linuxprobe~]# authconfig --enablerequpper --update
# the parameter is set in a config below

# (if you'd like to edit the value, edit it with vi and others)
[root@linuxprobe~]# grep "^ucredit" /etc/security/pwquality.conf
ucredit = -1 

# 在新密碼中至少需要一個(gè)數(shù)字
 [root@linuxprobe~]# authconfig --enablereqdigit --update
# the parameter is set in a config below

# (if you'd like to edit the value, edit it with vi and others)
[root@linuxprobe~]# grep "^dcredit" /etc/security/pwquality.conf
dcredit = -1 

# 密碼包括至少一個(gè)特殊字符
 [root@linuxprobe~]# authconfig --enablereqother --update
# the parameter is set in a config below

# (if you'd like to edit the value, edit it with vi and others)
[root@linuxprobe~]# grep "^ocredit" /etc/security/pwquality.conf
ocredit = -1 

# 在新密碼中設(shè)置單調(diào)字符序列的最大長(zhǎng)度。 (ex⇒'12345','fedcb')
 [root@linuxprobe~]# vi /etc/security/pwquality.conf
# add to the end
maxsequence = 3 

# 設(shè)置新密碼中不能出現(xiàn)在舊密碼中的字符數(shù)
 [root@linuxprobe~]# vi /etc/security/pwquality.conf
# add to the end
difok = 5 

# 檢查來自用戶passwd條目的GECOS字段的長(zhǎng)度超過3個(gè)字符的字是否包含在新密碼中。
 [root@linuxprobe~]# vi /etc/security/pwquality.conf
# add to the end
gecoscheck = 1 

# 設(shè)置不能包含在密碼中的Ssace分隔的單詞列表
 [root@linuxprobe~]# vi /etc/security/pwquality.conf
# add to the end
badwords = denywords1 denywords2 denywords3 

# 為新密碼設(shè)置hash / crypt算法。 (默認(rèn)為sha512)
# show current algorithm

[root@linuxprobe~]# authconfig --test | grep hashing

password hashing algorithm is md5
# chnage algorithm to sha512

[root@linuxprobe~]# authconfig --passalgo=sha512 --update
[root@linuxprobe~]# authconfig --test | grep hashing
password hashing algorithm is sha512 

相關(guān)文章

  • CentOS配置SSH單向無密碼訪問的方法

    今天小編為大家?guī)淼氖荂entOS配置SSH單向無密碼訪問的方法;希望能夠幫助到大家!有需要的朋友一起去看看吧
    2017-02-08
  • Centos7 SSH密鑰登陸及密碼密鑰雙重驗(yàn)證詳解

    今天小編為大家?guī)淼氖荂entos7 SSH密鑰登陸及密碼密鑰雙重驗(yàn)證詳解;希望對(duì)大家會(huì)有幫助,有需要的朋友一起去看看吧
    2017-01-22
  • centos破解密碼及運(yùn)行級(jí)別介紹

    今天小編為大家分享的是centos破解密碼及運(yùn)行級(jí)別介紹;希望對(duì)大家會(huì)有幫助,有需要的朋友一起去看看吧
    2017-01-12
  • centos系統(tǒng)中VPS忘記密碼該如何解決?

    很多朋友不知道centos系統(tǒng)中VPS忘記密碼該如何解決?今天小編就為大家?guī)韈entos系統(tǒng)中VPS忘記密碼重置的方法,有需要的朋友一起去看看吧
    2016-12-22
  • Centos系統(tǒng)用戶密碼字符串生成命令-shadow

    今天小編為大家?guī)淼氖荂entos系統(tǒng)用戶密碼字符串生成命令-shadow;有需要的朋友可以過來看看,希望對(duì)大家的學(xué)習(xí)會(huì)有幫助
    2016-12-09
  • CentOS6.6單用戶模式重設(shè)root密碼的方法

    一些朋友還不知道CentOS6.6單用戶模式如何重設(shè)root密碼;下面小編就為大家?guī)鞢entOS6.6單用戶模式重設(shè)root密碼的方法;有需要的朋友可以過來看看
    2016-11-30
  • CentOS雙向免密碼登錄教程

    還有些朋友不知道CentOS怎么雙向免密碼登錄;下面小編將為大家發(fā)享CentOS雙向免密碼登錄的教程;有需要的朋友可以過來看看
    2016-11-29
  • centos忘記密碼怎么重置root密碼?

    centos忘記root密碼怎么重置root密碼?使用Linux系統(tǒng)的時(shí)候root密碼是十分關(guān)鍵的安全機(jī)制。但是假設(shè)那天丟失了root密碼的話問題就嚴(yán)重了。下面分享重置root密碼的方法,需
    2015-05-05
  • centos系統(tǒng)密碼忘了怎么破解密碼?

    centos系統(tǒng)密碼忘了怎么破解密碼?windows下破解密碼很簡(jiǎn)單,linux下破解也不難,只需進(jìn)入單用戶,然后用很簡(jiǎn)單的命令就能重置密碼,下面分享解決辦法
    2015-04-16
  • Centos 7.0 系統(tǒng)密碼破解圖文方法

    這篇文章主要介紹了Centos 7.0 系統(tǒng)密碼破解圖文方法,需要的朋友可以參考下
    2014-12-13

最新評(píng)論

绥德县| 江北区| 鹤壁市| 武安市| 双柏县| 阜新市| 河源市| 松溪县| 南康市| 长寿区| 玉田县| 武安市| 满洲里市| 湖口县| 阳信县| 屯昌县| 乾安县| 天祝| 沙湾县| 西吉县| 四平市| 石棉县| 时尚| 务川| 葵青区| 成都市| 福建省| 青河县| 讷河市| 万全县| 武川县| 黄大仙区| 千阳县| 乡宁县| 宜宾市| 德保县| 公安县| 恩施市| 通渭县| 洛阳市| 玉林市|