我正在尝试建立一个简单的,密码控制的SSH连接,但遇到了悬挂问题。客户端终端输出如下所示:
[d3pd@ppepc145 ~]$ ssh user@10.194.248.43 -v
OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to 10.194.248.43 [10.194.248.43] port 22.
debug1: Connection established.
debug1: identity file REDACTED/d3pd/.ssh/identity type -1
debug1: identity file REDACTED/d3pd/.ssh/id_rsa type -1
debug1: identity file REDACTED/d3pd/.ssh/id_dsa type -1
debug1: loaded 3 keys
此时,客户端简单挂起。
相应的服务器/var/log/auth.log
日志条目如下:
Jun 12 12:49:20 m93p sshd[7232]: Did not receive identification string from 194.36.1.172
我已确认sshd
正在运行:
d3pd@m93p:~$ ps ax | grep sshd
7152 ? Ss 0:00 /usr/sbin/sshd -D
7301 pts/13 S+ 0:00 grep --color=auto sshd
我已经验证SSH服务器似乎正在使用netstat -taupen
监听相应的端口(22):
tcp6 0 0 :::22 :::* LISTEN 0 227957 7152/sshd
我应该尝试尝试建立一个简单的密码控制的SSH连接?
报告的服务器OpenSSH版本为OpenSSH_6.6.1p1 Ubuntu-2ubuntu2, OpenSSL 1.0.1f 6 Jan 2014
,客户端报告的OpenSSH版本为OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008
。