能否對(duì)Linux服務(wù)器實(shí)現(xiàn)這樣的登錄需求:普通用戶可以使用密碼驗(yàn)證登錄;一個(gè)特殊用戶必須采用ssh密鑰文件進(jìn)行登錄。我在sshd_config配置文件中發(fā)現(xiàn)PasswordAuthentication yes或PubkeyAuthentication yes都是針對(duì)所有用戶的
1 回答

小唯快跑啊
TA貢獻(xiàn)1863條經(jīng)驗(yàn) 獲得超2個(gè)贊
在sshd_config
末尾添加:
Match User username PasswordAuthentication no
注意為什么是在末尾加?是因?yàn)?nbsp;Match
語法一直匹配到下一個(gè)Match
或者文件末尾
這里面如果有其他配置的話 都只針對(duì)此Match生效
如果是針對(duì)一個(gè)組
Match Group groupname PasswordAuthentication no
如果是反過來,只有某用戶可以使用密碼登錄,其他用戶都不可以
Match User !username PasswordAuthentication no
添加回答
舉報(bào)
0/150
提交
取消