This is a simple guide to how to setup passwordless login with the "real thing".
1: Generate public/private key-pairs like this.
ssh-keygen2 -b 2048 -t rsaThat gives you two files (in ~/.ssh2).
mv id_rsa_2048_bla server mv id_rsa_2048_bla.pub server.pubAnd of course the same for the "client".
2: Configure the client/workstation.
echo "IdKey client" > ~/.ssh2/identification3: Copy client.pub to the server machine
scp ~/.ssh2/client.pub user@server_ip:.ssh2/4: Configure the server
echo "Key client.pub" > ~/.ssh2/authorization5: Enjoy the power of the true ssh!
Some short words