[categories] [index] [all (552)] [latest]
On the client machine
Generate keys (without passphrase)
$ ssh-keygen -t rsa
Copy the public key on the server
$ scp ~/.ssh/id_rsa.pub nst@10.0.1.2:~/new_key
On the server machine
$ cat ~/new_key >> ~/.ssh/authorized_keys
$ rm new_key