ssh trouble shottings

注:内容大部分来自网络,来源信息已经丢失,请原创作者见谅。

问题1:
   sshd遇到PRNG is not seeded重启失败的解决方法

造成此错误的原因是/dev/下/dev/random和/dev/urandom文件的丢失,手动再建立一下就好了:

mknod /dev/random c 1 8
mknod /dev/urandom c 1 9

但是重启后又会丢失,我们需要在/etc/conf.d/local下添加以上语句即可。

如遇到ssh登陆出现/dev/null: Permission denied,在/etc/conf.d/local添加chmod a+w /dev/null即可
---------------------------------------------------------------------------------------
问题2:
   SSH 登录失败:Host key verification failed

由于公钥不一样了,所以无法登录,提示信息是 KEY 验证失败。
解决方法是:
在 /root/.ssh/known_hosts 文件里面将原来的公钥信息删除即可。
SSH 报 “Host key verification failed.”。一般来说,出现该错误有这么几种可能:
1. .ssh/known_hosts �e面记录的目标主机 key 值不正确。这是最普遍的情况,只要删除对应的主机记录就能恢复正常。
2. .ssh 目录或者 .ssh/known_hosts 对当前用户的权限设置不正确。这种情况比较少,一般正确设置读写权限以后也能恢复正常。
3. /dev/tty 对 other 用户没有放开读写权限。这种情况极为罕见。出现的现象是,只有 root 用户能够使用 ssh client,而所有其他的普通用户都会出现错误。
我今天遇到的就是第三种情况,修改 /dev/tty 的权限后,一切正常。为了避免以后忘记解决方法,记录在这里。
4. client上的/dev/tty 不存在,由于我们是自己做的LFS系统,还存在缺陷。
我是通过scp -v参数发现问题的
root:/etc/ssh# scp -v -P222 libmagic.* [email protected]:/usr/lib/
Executing: program /usr/bin/ssh host 192.168.1.16, user root, command scp -v -t /usr/lib/
OpenSSH_4.6p1, OpenSSL 0.9.7m 23 Feb 2007
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Connecting to 192.168.1.16 [192.168.1.16] port 222.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: identity file /root/.ssh/identity type -1
debug1: identity file /root/.ssh/id_rsa type -1
debug1: identity file /root/.ssh/id_dsa type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_4.6
debug1: match: OpenSSH_4.6 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_4.6
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-cbc hmac-md5 none
debug1: kex: client->server aes128-cbc hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: checking without port identifier
debug1: read_passphrase: can't open /dev/tty: No such file or directory  ############
Host key verification failed.
lost connection
解决办法:
root:/etc/ssh# mknod /dev/tty c 5 0
---------------------------------------------------------------------------------------

问题3:
ssh_exchange_identification: Connection closed by remote host
解决办法:
修改/etc/hosts.allow文件,加入 sshd:ALL。
符相关配制说明: vi /etc/ssh/ssh_config
下面逐行说明上面的选项设置:
Host * :选项“Host”只对能够匹配后面字串的计算机有效。“*”表示所有的计算机。 
ForwardAgent no :“ForwardAgent”设置连接是否经过验证代理(如果存在)转发给远程计算机。 
ForwardX11 no :“ForwardX11”设置X11连接是否被自动重定向到安全的通道和显示集(DISPLAY set)。 
RhostsAuthentication no :“RhostsAuthentication”设置是否使用基于rhosts的安全验证。 
RhostsRSAAuthentication no :“RhostsRSAAuthentication”设置是否使用用RSA算法的基于rhosts的安全验证。 
RSAAuthentication yes :RSAAuthentication”设置是否使用RSA算法进行安全验证。 
PasswordAuthentication yes :“PasswordAuthentication”设置是否使用口令验证。 
FallBackToRsh no:“FallBackToRsh”设置如果用ssh连接出现错误是否自动使用rsh。 
UseRsh no :“UseRsh”设置是否在这台计算机上使用“rlogin/rsh”。 
BatchMode no :“BatchMode”如果设为“yes”,passphrase/password(交互式输入口令)的提示将被禁止。当不能交互式输入口令的时候,这个选项对脚本文件和批处理任务十分有用。 
CheckHostIP yes :“CheckHostIP”设置ssh是否查看连接到服务器的主机的IP地址以防止DNS欺骗。建议设置为“yes”。 
StrictHostKeyChecking no :“StrictHostKeyChecking”如果设置成“yes”,ssh就不会自动把计算机的密匙加入“$HOME/.ssh/known_hosts”文件,并且一旦计算机的密匙发生了变化,就拒绝连接。 
IdentityFile ~/.ssh/identity :“IdentityFile”设置从哪个文件读取用户的RSA安全验证标识。 
Port 22 :“Port”设置连接到远程主机的端口。 
Cipher blowfish :“Cipher”设置加密用的密码。 
EscapeChar ~ :“EscapeChar”设置escape字符。

---------------------------------------------------------------------------------------
Public Key Authentication from OpenSSH to SSH
set up public key authentication from my machine to a couple of other machines. This is quite handy since you only need to provide your passphrase once and then the ssh agent does the authentication for you. However, I could not figure out why my key was not working with a particular server until I found out that there are differences between OpenSSH and SSH. To use your OpenSSH key with an SSH server, you need to convert it first and then put it in a specific place. Here a step by step tutorial, that I found here.

Change to your local .ssh directory
cd ~/.ssh
Convert your public key
ssh-keygen -e -f id_dsa.pub > id_dsa_secsh.pub
Copy this new key to the remote machine into the .ssh2 directory
scp ~/.ssh/id_dsa_secsh.pub chris@remotemachine:~/.ssh2/
SSH into the remote machine
ssh chris@remotemachine
Append information to the .ssh2/authorization file
echo Key id_dsa_secsh.pub >> .ssh2/authorization

That’s it! From now one, “ssh remotemachine" will be enough.

你可能感兴趣的:(OpenSSL)