我希望能够让一组用户使用公钥身份验证和其他用户进行身份验证,以使用密码身份验证.
这在Linux上的OpenSSH中是否可行?如果是这样我该怎么办呢?
查看/ etc / ssh / sshd_config后,似乎我只能启用密钥身份验证或使用PAM.
解决方法
Match指令(在man sshd_config中描述)允许为sshd服务器的一个实例中的不同用户指定不同的身份验证方法.作为枚举个人用户和群组的奖励,它还允许通过通配符选择它们.
Match Group wheel # for users from group wheel: PubkeyAuthentication Match Group !wheel,* # for other users: PasswordAuthentication # caution: don't add directives here - they will be caught by "Match" block # (end of file /etc/ssh/sshd_config)