AIX使用者賬戶鎖定與解鎖最佳方法

shilei1發表於2016-08-05

AIX使用者賬戶鎖定與解鎖最佳方法

例如:密碼多次被輸錯,鎖定後的提示資訊
Password:
530-There have been too many unsuccessful login attempts; please see
        the system administrator.

與之相關的配置引數是/etc/security/login.cfg的以下配置項

logindisable=7              *7次失敗登入後鎖定埠
logininterval=120            *在120秒內7次失敗登入才鎖定埠

1、如果你可以登陸到ROOT賬戶,比較簡單
使用chsec命令即可解鎖,具體如下:
# chsec -f  /etc/security/lastlog -a unsuccessful_login_count=0 -s  username
透過重置未成功登陸的次數即可解鎖

2、如果是透過設定來鎖定的使用者,可以這樣解鎖
#【smitty user】-->【Lock / Unlock a User's Account】
或是
# chsec -f  /etc/security/lastlog -a unsuccessful_login_count=0 -s  username

3、命令解鎖
# chuser account_locked=TRUE username  給使用者加鎖
# chuser accout_locked=FALSE username   給使用者解鎖

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/196700/viewspace-2123032/,如需轉載,請註明出處,否則將追究法律責任。

相關文章