Additions:
first create a RSA key on your local machine and copy it to the remote server
Deletions:
Additions:
SshProxy
Additions:
===Secure Shell - ssh===
ssh secure shell
ssh secure shell
Deletions:
secure shell
Additions:
SshPortForward
Additions:
SshSecurity
Additions:
secure shell
==enable login to a remote ssh server without entering a password==
----
REFERRERS
{{backlinks}}
==enable login to a remote ssh server without entering a password==
----
REFERRERS
{{backlinks}}
Deletions:
Additions:
$ ssh remote-server
$ exit
$ exit
Additions:
==window title==
==login to a remote ssh server without a password==
first create a RSA key on your local server and copy it to the remote server
$ ssh-keygen -t rsa
$ scp .ssh/id_rsa.pub remote-server:
ssh to remote server and add your RSA key to the list of authorized keys
$ cat id_rsa.pub >> .ssh/authorized_keys
disconnect and the next time you ssh to the remote server it shouldn't ask you for the password
==login to a remote ssh server without a password==
first create a RSA key on your local server and copy it to the remote server
$ ssh-keygen -t rsa
$ scp .ssh/id_rsa.pub remote-server:
ssh to remote server and add your RSA key to the list of authorized keys
$ cat id_rsa.pub >> .ssh/authorized_keys
disconnect and the next time you ssh to the remote server it shouldn't ask you for the password