Hi,
so you want to login to your box via ssh without using a password?
Althoug it is possible to use ".rhosts-authentication", it is disabled by default because of security reasons - it's that why you use ssh anyway, right?
It is also possible for the clients, to generate their keys without securing them with a passphrase, but that's almost the same thing.
so the idea of using "ssh-agent" is:
The idea is that ssh-agent is started in the beginning of an
X-session or a login session, and all other windows or pro-
grams are started as children of the ssh-agent program (the
command normally starts X or is the user shell). Programs
started under the agent inherit a connection to the agent,
and the agent is automatically used for RSA authentication
when logging to other machines using ssh.
With a "normal" login-session, you could:
exec ssh-agent /bin/bash
and afterwards add your private key to the agent by giving the passphrase for your key to the ssh-add-command.
You can then ssh or scp to your box without the need of giving your passphrase again.
Using that in a X-session is a bit tricky, it depends on your distribution, where to put the corresponding command.
The use of the ssh-agent should be forwarded to the remote box, but there have been some problems, i'm not sure if it works with the actual ssh-server.
pls ask again if this was not clear enough.
ciao,
mbr