Monday, August 8, 2016

let's make ssh like telnet

 let's make ssh like telnet  
   
 me@here:~$ ssh root@there  
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  
 @  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  
 51:e3:4a:61:06:6b:52:04:c1:69:4f:36:47:4e:d6:dc.  
 Please contact your system administrator.  
 Add correct host key in known_hosts to get rid of this message.  
   
 i am the effing systems administrator. and yeah, i reinstalled the host.  
   
 # vi ~/.ssh/config  
   
 Host *  
   StrictHostKeyChecking no  
   UserKnownHostsFile=/dev/null  
     
 and now i'm pretty much flying blind. weeeee  

No comments: