Sie möchten sich vom Rechner A auf einem fremden Rechner B ohne Password-Eingabe mittels ssh anmelden. Die Anmeldung erfolgt somit mittels public keys.
Eine Voraussetzung dafür ist die Erstellung von SSH key pair (siehe Erstelle SSH key pair in Ubuntu).
- Verifizieren Sie die Anmeldung
$ tomas@ubuntu:~$ ssh-copy-id -i ~/.ssh/id_rsa.pub BENUTZER@ZIELRECHNER
(Beispiel:$ tomas@ubuntu:~$ ssh-copy-id -i .ssh/id_rsa.pub martin@centos1.localdomain
)- BENUTZER ist Benutzer auf dem Zielrechner
- ZIELRECHNER Name des Zielrechners
- Anmeldung ohne Password möglich
$ ssh root@centos1.localdomain