Linux

無法再通過 sshd 登錄

  • December 28, 2012

我已經使用 SSH 很長時間了,但最近我需要在我的設置中添加另一個使用者。我按照我在網上找到的一些說明進行了以下操作。

adduser sam
sudo nano /etc/ssh/sshd_config
    AllowUsers michael, sam
sudo reboot

我完全設置了使用者 sam,將允許使用者添加到 sshd 配置並重新啟動。現在 michael 是 sudoer,但有趣的是,我可以使用 Sams 憑據通過 ssh 登錄,但不再是 michaels。

有任何想法嗎?

來自man sshd_config

AllowUsers
This keyword can be followed by a list of user name patterns, separated by spaces.

然後,您的行必須採用以下形式:

AllowUsers michael sam

引用自:https://serverfault.com/questions/461384