SSH报错:ssh_exchange_identification: read: Connection reset by peer

ssh连接主机时,出现如下报错如何解决

ssh [email protected]
ssh_exchange_identification: read: Connection reset by peer

使用-v选项查看详细信息

## -v表示查看连接详细信息
ssh -v [email protected]

SSH报错:ssh_exchange_identification: read: Connection reset by peer_第1张图片
解决方案:在服务端更改配置文件

vi /etc/hosts.allow
#########################
sshd: ALL    ##允许所有ip主机均能连接本机

同样可以这样配置:sshd: 172. 也就是172.网段下的主机都可以连接
SSH报错:ssh_exchange_identification: read: Connection reset by peer_第2张图片
重启网络服务:systemctl restart sshd
测试:

ssh [email protected]
Last login: Wed Jan  9 22:51:17 2019 from 172.25.254.66

你可能感兴趣的:(运维监控,运维,ssh)