ssh
Ceci est une ancienne révision du document !
Table des matières
La commande "ssh"
La page de man de ssh.
Générer une clé SSH
simon@localhost:~$ ssh-keygen -t rsa -b 8192 Generating public/private rsa key pair.
On ajoute la nouvelle clé au “ssh-agent” :
simon@localhost:~$ ssh-add .ssh/id_rsa Could not open a connection to your authentication agent. simon@localhost:~$ ssh-agent bash simon@localhost:~$ ssh-add .ssh/id_rsa Enter passphrase for .ssh/id_rsa: Identity added: .ssh/id_rsa (.ssh/id_rsa)
On envoie à présent la clé sur le serveur :
simon@localhost:~$ ssh-copy-id LOGIN@NOM-DE-DOMAINE.COM /usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed /usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys LOGIN@NOM-DE-DOMAINE.COM's password: Number of key(s) added: 1 Now try logging into the machine, with: "ssh 'LOGIN@NOM-DE-DOMAINE.COM'" and check to make sure that only the key(s) you wanted were added.
Plus qu'à se connecter, sans rentrer de code cette fois :
simon@localhost:~$ ssh LOGIN@NOM-DE-DOMAINE.COM LOGIN@HOST~$
Exemples et astuces
- Reverse SSH, pour intervenir à distance sur un ordinateur derrière un NAT.
ssh.1483794039.txt.gz · Dernière modification : 2020/08/09 12:59 (modification externe)