SSH login without password

0

Possible Duplicate:
How do I set up SSH so I don’t have to type my password?

You don't want to type your password when you ssh into a machine. What can you use to accomplish this? Are there any security concerns with your approach?

crst53

Posted 2009-08-20T21:53:57.340

Reputation: 507

Question was closed 2009-08-20T21:58:19.280

2Why don't I want to type my password again? – EBGreen – 2009-08-20T21:57:35.413

What OSs? – Lance Roberts – 2009-08-20T21:58:08.923

Answers

1

You can create a pair of SSH keys, placing a private key on the server and a public key on the client. This will allow the client to connect to the server using it's public key instead of having to enter a password.

SSH public key tutorial

MiffTheFox

Posted 2009-08-20T21:53:57.340

Reputation: 3 032

is there any security concerns about this? – crst53 – 2009-08-21T00:16:36.707

3crst53: public/private key exchange is much more secure than using passwords, and much less likely to suffer from brute force attack on the SSH server. The problem is if you don't use a pass-phrase on the key anyone getting physical access to your machine may be able to login through your machine IIUC. – The Tentacle – 2009-08-21T01:09:15.680