On Wed, 24 Oct 2001, Stan Brown wrote: > I have a Debian potato + Progeney + 2.4.9 kernel machine. I have installed > teh ssh package. I have installed openssh on the HP's on the network. I can > ssh between the machines, but I'm still prompted for a password. > > How can I elimnate this prompt?
From man pages: ssh implements the RSA authentication protocol automatically. The user creates his/her RSA key pair by running ssh-keygen(1). This stores the private key in $HOME/.ssh/identity and the public key in $HOME/.ssh/identity.pub in the user's home directory. The user should then copy the identity.pub to $HOME/.ssh/authorized_keys in his/her home directory on the remote machine (the authorized_keys file corresponds to the conventional $HOME/.rhosts file, and has one key per line, though the lines can be very long). After this, the user can log in without giving the password. RSA authentication is much more secure than rhosts authen tication. I hope that's the answer... Fred. > > -- > Stan Brown [EMAIL PROTECTED] > 843-745-3154 > Charleston SC. > -- > Windows 98: n. > useless extension to a minor patch release for 32-bit extensions and > a graphical shell for a 16-bit patch to an 8-bit operating system > originally coded for a 4-bit microprocessor, written by a 2-bit > company that can't stand for 1 bit of competition. > - > (c) 2000 Stan Brown. Redistribution via the Microsoft Network is prohibited. > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] > > +--,-.--+------------------ -------------------+ | oo| | Frédéric BURLET Linux Forever... | | /`'_) | IIIième Maitrise Informatique, FUNDP | |(\__|/ | HomePage : http://www.info.fundp.ac.be/~fburlet/| +-------+-------------------------------------------------+

