问题及解决
ssh_exchange_identification: read: Connection reset by peer
缘故因由:一般是由于源地址限制导致的
Permission denied (publickey,keyboard-interactive,hostbased).
缘故因由:客户端和服务端认证方法不匹配,最后定位由于是server端使用了keyboard-interactive认证方法,而客户端只有password,publickey。
解决:修改server上的sshd_config将AuthenticationMethods注释掉使用默认,大概设置成和客户端使用的一致。
man文档分析
The available authentication methods are:
Qq gssapi-with-mic , Qq hostbased , Qq keyboard-interactive , Qq none (used for access to password-less accounts when PermitEmptyPasswords is enabled), Qq password and Qq publickey .
参数分析
SSH 协议中支持的几种认证方法(这些认证方法除了在AuthenticationMethods 设置,同时也需要明确启用才行,例如:PasswordAuthentication yes):
- gssapi-with-mic:(GSSAPIAuthentication yes)
- 描述: 使用 Generic Security Service API(GSSAPI)举行身份验证,通常与 Kerberos 认证一起使用。
- 安全性: 高。Kerberos 提供了强盛的身份验证和单点登录机制。
- hostbased:(HostbasedAuthentication yes)
- 描述: 基于主机的身份验证,通常使用主机和用户的密钥举行验证。
- 安全性: 依赖于密钥的管理和分发,通常不推荐在不受信任的网络中使用。
- keyboard-interactive:(KbdInteractiveAuthentication yes)
- 描述: 交互式的身份验证方式,通常包括通过键盘输入暗码或其他信息举行身份验证。
- 安全性: 取决于暗码的复杂性和用户的安全实践。支持交互式操作,实用于需要用户输入的场景。
- none:(PermitEmptyPasswords yes)
- 描述: 表示没有使用任何身份验证方法,通常用于访问启用了空暗码(PermitEmptyPasswords)的帐户。
- 安全性: 低。在生产情况中,通常应禁用空暗码。
- password:(PasswordAuthentication yes)
- 描述: 使用暗码举行身份验证。
- 安全性: 取决于暗码的复杂性。在不安全的网络中,大概容易受到中心人攻击。
- publickey:(PubkeyAuthentication yes)
- 描述: 使用公钥举行身份验证,通常使用用户的 SSH 密钥对。
- 安全性: 高。公钥加密提供了强盛的安全性,特别是当密钥足够长时。
这些方法提供了差别层次的安全性和实用于差别的使用场景。在实际使用中,通常推荐使用公钥(publickey)举行身份验证,由于它提供了较高的安全性和便利性。同时,使用 GSSAPI 举行 Kerberos 身份验证也是一种常见的做法,尤其在企业情况中。其他方法的使用通常受到特定需求和安全实践的限制。
特别分析:UsePAM参数
UsePAM使能Pluggable Authentication Module接口。如果设置为yes,除了PAM帐户和会话模块处理惩罚所有身份验证范例之外,还将启用使用KbdInteractiveAuthentication和PasswordAuthentication的PAM身份验证。
由于PAM keyboard-interactive 身份验证通常饰演与暗码身份验证相同的角色,因此应该禁用PasswordAuthentication或KbdInteractiveAuthentication。
如果启用了UsePAM,您将无法以非root用户的身份运行sshd(8)。默以为no。在openssh9左右版本开始不支持UsePAM参数了。
特别分析:sshd_config参数重复设置
sshd_config设置文件相同属性只有第一条生效
1、设置多条,例如:
PasswordAuthentication yes
PasswordAuthentication no
2、加载设置
systemctl reload sshd
3、检查生效情况
sshd -T|grep -i PasswordAuthentication
passwordauthentication yes
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |