通过 guacamole 登录本地 SSH shell

通过 guacamole 登录本地 SSH shell

所以我想使用 guacamole 访问 127.0.0.1 ssh shell。

我已禁用纯文本密码验证和 root 登录。使用私人密码进行我的正常 ssh 会话。

有没有办法允许在 sshd 配置中使用密码对本地主机登录进行身份验证?

谢谢!

答案1

在一个块中重新启用它Match

PasswordAuthentication no
ChallengeResponseAuthentication no

Match Address ::1
    PasswordAuthentication yes

Match Address 127.0.0.1
    PasswordAuthentication yes

相关内容