ssh
tiny howto for setting up ssh with an ssh agent (with openssh)-
create a ssh key pair - preferrably a ssh2 ssh key...
ssh-keygen -t dsa - add the public part of your ssh key - id_dsa.pub - to the authorized keys file - ~/.ssh/authorized_keys - of all machines you need access to
-
start the ssh agent...
ssh-agent bash or ssh-agent screen -
add the key...
ssh-add ~/.ssh/id_dsa or just ssh-add
more information
- openssh
- man ssh-agent