Difference between revisions of "Ssh"

From Linuxintro
imported>ThorstenStaerk
imported>ThorstenStaerk
Line 13: Line 13:
  
 
= possible problems =
 
= possible problems =
Wrong key on ssh-login:
+
 
;Problem:
+
;Symptom:
  WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!
+
When trying to log in via ssh you may get a message like this:
 +
<pre>
 +
tweedleburg:~ # ssh root@192.168.0.107
 +
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
 +
@    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!     @
 +
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
 +
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
 +
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
 +
It is also possible that the RSA host key has just been changed.
 +
The fingerprint for the RSA key sent by the remote host is
 +
32:78:25:83:d8:a6:de:ad:6a:0b:99:5e:05:e5:7c:e7.
 +
Please contact your system administrator.
 +
Add correct host key in /root/.ssh/known_hosts to get rid of this message.
 +
Offending key in /root/.ssh/known_hosts:11
 +
RSA host key for 192.168.0.107 has changed and you have requested strict checking.
 +
Host key verification failed.
 +
</pre>
 +
;Reason:
 +
This means the key of the computer that you try to reach has changed.
 
;Solution:  
 
;Solution:  
 
  $ ssh-keygen -R ''hostname''
 
  $ ssh-keygen -R ''hostname''

Revision as of 10:31, 31 July 2010

ssh is a command to log in over the network to another computer.

Send graphical output to ssh user

ssh -l user server -X
xclock &

port forwarding

ssh username@server -L localport:remoteserver:remoteport

ssh verbose

ssh -v user@server
or -vv, -vvv

possible problems

Symptom

When trying to log in via ssh you may get a message like this:

tweedleburg:~ # ssh root@192.168.0.107
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!     @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that the RSA host key has just been changed.
The fingerprint for the RSA key sent by the remote host is
32:78:25:83:d8:a6:de:ad:6a:0b:99:5e:05:e5:7c:e7.
Please contact your system administrator.
Add correct host key in /root/.ssh/known_hosts to get rid of this message.
Offending key in /root/.ssh/known_hosts:11
RSA host key for 192.168.0.107 has changed and you have requested strict checking.
Host key verification failed.
Reason

This means the key of the computer that you try to reach has changed.

Solution
$ ssh-keygen -R hostname

Related

ssh-related topics: