passwordless ssh setup, can be used for tunneling some apps that need secure data transfer
Basically, what the user (client) needs is to generate a public/private
key pair. The server will know the public key, but only the client will know
the private key.
What must be done, then , is to generate a public/private key pair, and
copy the public part into the appropiate place on the server side. local>ssh-keygen -t rsa -f .ssh/id_rsa
-t tells the type of encription
local> cd .ssh remote> chmod 640 authorized_keys remote> rm id_rsa.pub remote> exit
| To start Your own Blog Other Blogs » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » » |

