ssh question


 
Thread Tools Search this Thread
Special Forums Cybersecurity ssh question
# 1  
Old 06-23-2008
Question ssh question

I have a query on ssh.

[Local_host] /home/user1/ # ssh remote_host

When the fingerprint created and saved in /home/user1/.ssh/known_hosts file, is the fingerprint the public key of remote_host?
# 2  
Old 06-23-2008
The fingerprint only identifies the remote host as the host you want to connect to. So that the next time you connect, you wouldn't get this message to save the fingerprint into the known_hosts file. So it's just a way to verify that the host you remotely connect to is in fact the host you want to connect to.

The private and public key is something else. They are just easier ways to login to a remote host. Using private and public keys would make you able to login without a username and password.
# 3  
Old 06-24-2008
Thank you for the reply.

I think the fingerprint is also the public key of the remote server. It is saved under /etc/ssh/ssh_host_rsa_key.pub on remote server.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Ssh tunnel question

Hi all I have a suite of scripts that ssh to remote servers within a cluster and run some tests. This is done from a central server so that all of the test results can be captured in one location. Problem is I now have 509 tests and the number is growing. The scripts work by establishing a... (2 Replies)
Discussion started by: steadyonabix
2 Replies

2. Shell Programming and Scripting

Question about parameters in ssh

Hello where I can find or can anybody send me a full list with parameters of ssh. I hope to understand what I mean. For exam -xpvf (tar -xpvf file.tar.gz) -x -p -v -f what do any of these parameters I have command for extract tar.gz file but I want to do this without folder but I don't know what... (2 Replies)
Discussion started by: gladiator6
2 Replies

3. Red Hat

ssh daemon question

Hi, I'm trying to connect from one server to another via ssh, the server that I'm connecting from only has openssh installed. The server that I'm connecting to has the following packages installed: ssh-3.2.9.1-ML_RHEL4 openssh-3.9p1-8.RHEL4.12 openssh-clients-3.9p1-8.RHEL4.12... (0 Replies)
Discussion started by: newb1000
0 Replies

4. UNIX for Advanced & Expert Users

SSH and alias question...

i regularly login to servers that I donot control. On many of these servers I do not have home dir. I need to set aliases from my host to the remote machine when I ssh in. for example from when I go from hosta --> hostb. I want all my aliases from hosta to be present in hostb once I login. ( i... (5 Replies)
Discussion started by: vijayrajah
5 Replies

5. UNIX for Dummies Questions & Answers

ssh question

hi all, I setup a new server using centos 5.0 with webmin installed and its working fine. the only problem i found is that I now cant ssh into the box anymore for some reason. I am able to ssh out of it no problem tho. I did check to see if ssh was running and it was. I did the following to... (12 Replies)
Discussion started by: mcraul
12 Replies

6. Solaris

Silly question regarding SSH.

Hi Guys, I have installed SSH package on server as well as clients. I think I need to these steps next. Login as root on the server. 1) ssh-keygen -b 1024 -t rsa -f /etc/ssh_hosts_key.pub -N " " Login to root as the user. 2)ssh_keygen -b 1024 -t rsa Enter the phrase Basically this... (3 Replies)
Discussion started by: nitinkgoud
3 Replies

7. UNIX for Dummies Questions & Answers

ssh question

Dear all, I have a question regarding the remote access a server without login using "ssh". I'm thinking if there is anyway to send a certificate pass to ssh command. For example, I need write a script for a user who doesn't have access to any server but running this script. Within the... (1 Reply)
Discussion started by: ting123
1 Replies

8. Cybersecurity

Casual Question regarding ssh

I have openssh installed on the Unix machines. I have also set the syslog level to auth.debug so that the all the ssh entries are logged. I have this vague message which in no way affects my ssh session but still i am curious Whenever i log in it gives this error pam_secretd: error... (5 Replies)
Discussion started by: DPAI
5 Replies
Login or Register to Ask a Question