ssh and fingerprint


 
Thread Tools Search this Thread
Operating Systems Solaris ssh and fingerprint
# 8  
Old 03-27-2008
It's a usability problem that it behaves differently the first time you connect to a host, particularly if you hop between client machines all the time and might or might not have connected from that particular client before. From that point of view it would be a benefit if it would just silently add new hosts without asking. (I don't understand why it has to ask, anyway.) I don't particularly believe in Expect but anything which gets rid of that obnoxious question would be an improvement.
# 9  
Old 03-27-2008
Quote:
Originally Posted by melanie_pfefer
I am sorry but setting StrictHostKeyChecking to no has no effect.
Works for me.

Did you remove the comment-out (#) from the line?

Code:
$ cat /etc/ssh/ssh_config
   ...
   #   CheckHostIP yes
   #   StrictHostKeyChecking ask
   StrictHostKeyChecking no
   #   EscapeChar ~
   # 
   
$ ssh testserver
Warning: Permanently added 'testserver' (DSA) to the list of known hosts.
user1@testserver's password:

# 10  
Old 03-28-2008
System Shock, you are right, it actually works, I forgot to remove the #, stupid me Smilie
# 11  
Old 03-28-2008
Quote:
Originally Posted by sysgate
System Shock, you are right, it actually works, I forgot to remove the #, stupid me Smilie
..well, some time ago I wasted half a thread arguing with Vino about a way of removing the ^M that windows text editors append at the end of lines from a text file, and instead of checking the results by vi'ing a test file, I kept on cat'ing it... so I feel you Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

Accept fingerprint automaticaly secureCRT

Hello, Is it any way to accept automaticaly the fingerprints? The basic idea is to find a way to give a command to many servers at once. So i thought to create a multiple session with all the connections opened them in multiple tabs and give the command at once to all the opened windows... (0 Replies)
Discussion started by: @dagio
0 Replies

2. UNIX for Dummies Questions & Answers

How to change the RSA key fingerprint?

Hi there, I have a Linux Debian machine with the following fingerprint : e1:95:11:46:ff:d1:e3:4a:a3:34:1a:25:b4:d8:f1:cb. I'd like to set this fingerprint to : cd:19:bd:f6:8e:00:7a:69:14:52:a1:73:cb:15:a5:ca. I have very specific reasons to do that. So please only answer if you know how... (5 Replies)
Discussion started by: chebarbudo
5 Replies

3. Shell Programming and Scripting

Capture RSA fingerprint from ssh response

Hi. I'm trying to automate access to an Amazon Web Services machine instance. What this means is that my script is trying to use ssh to connect to a new server every time. I know the RSA fingerprint of my new server through an out-of-band channel. I would like to capture the RSA fingerprint... (0 Replies)
Discussion started by: chorlton
0 Replies

4. Shell Programming and Scripting

RSA key fingerprint needs to be avoided.

Hi All, I need to scp a folder from one host to another in a script. When I run a command , it asks me to authenticate for the RSA key fingerprint for the first time. # scp -r temp1 root@iqcarrot:/root/ The authenticity of host 'iqmango.apac.avaya.com (148.147.172.112)' can't be... (2 Replies)
Discussion started by: nua7
2 Replies

5. UNIX for Dummies Questions & Answers

Register RSA Key fingerprint with JVM 1.4.2

Hi, We wish to register RSA key fingerprint with JVM 1.4.2 under UNIX environment. Any inputs how to go for it? The output we are getting as "The authenticity of host 'sxfer01.bluecrossmn.com (159.136.224.30)' can't be established. RSA key fingerprint is... (0 Replies)
Discussion started by: asawari
0 Replies

6. Cybersecurity

ssh DSA Key fingerprint option

Hi, I have an cron-script running ssh every 5 minutes. After a reboot cron errors as ssh is wating for a DSA key fingerprint authenticy. The request looks as following : The authenticity of host '*** (*.*.*.0)' can't be established. DSA key fingerprint is... (1 Reply)
Discussion started by: davidg
1 Replies
Login or Register to Ask a Question