baumi's blog

baumi's personal blog … Linux, OS X, Windows, Random things, …

SSH login ohne kennwort

1) auf rechner A:

ssh-keygen -t rsa	  # für Protokol 2
ssh-keygen -t dsa	  # für Protokol 2

 

 

2) auf rechner A (der sich künftig ohne kennwort auf B einloggen soll):

ssh-copy-id -i ~/.ssh/id_dsa.pub userB@hostB.com
ssh-copy-id -i ~/.ssh/id_rsa.pub userB@hostB.com

(wenn ssh copy nicht vorhanden ist:

cat ~/.ssh/*.pub | ssh user@remote-system 'umask 077; cat >>.ssh/authorized_keys'

Siehe auch:
https://www.unix-ninja.com/p/How_to_use_SSH_aliases

Comments are currently closed.