On Wed, 2002-06-12 at 13:23, [EMAIL PROTECTED] wrote:
> that it is all I have to do to work it, However, here is the error that I
> got:   
...
> The authenticity of host 'node-a (192.168.58.201)' can't be established.
> RSA key fingerprint is 2c:31:1e:22:28:7a:af:e0:93:a8:b1:55:85:e4:4c:3d.
> Are you sure you want to continue connecting (yes/no)? no
> Aborted by user!

You have to say "yes" to continue connecting.  Your SSH Key is an
authentication method; authentication can not begin until the host's
identity is verified and accepted.  Accept the key and it should
authenticate properly.

You will, however, have to generate an SSH2 key unless you specifically
tell ssh to use the ssh1 protocol:
ssh -1 node-a # Yuck!

ssh-keygen -t dsa

If the ssh server is older than OpenSSH 3.0, you'll have to store public
keys in .ssh/authorized_keys2.  However, if your server is older than
OpenSSH 3.0, you probably haven't been applying errata, and may be
running a root-exploitable SSH!

Update if you can, use only DSA keys, and store them in
.ssh/authorized_keys.




_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to