ssh
Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
ssh [2017/04/19 18:07] – simon | ssh [Date inconnue] (Version actuelle) – supprimée - modification externe (Date inconnue) 127.0.0.1 | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
- | ====== La commande " | ||
- | La page de [[man de ssh]]. | ||
- | |||
- | ===== Générer une clé SSH ===== | ||
- | <code bash> | ||
- | simon@localhost: | ||
- | Generating public/ | ||
- | </ | ||
- | |||
- | On ajoute la nouvelle clé au " | ||
- | <code bash> | ||
- | simon@localhost: | ||
- | Could not open a connection to your authentication agent. | ||
- | |||
- | simon@localhost: | ||
- | |||
- | simon@localhost: | ||
- | Enter passphrase for .ssh/ | ||
- | Identity added: .ssh/id_rsa (.ssh/ | ||
- | </ | ||
- | |||
- | On envoie à présent la clé sur le serveur : | ||
- | <code bash> | ||
- | simon@localhost: | ||
- | / | ||
- | / | ||
- | LOGIN@NOM-DE-DOMAINE.COM' | ||
- | |||
- | Number of key(s) added: 1 | ||
- | |||
- | Now try logging into the machine, with: " | ||
- | and check to make sure that only the key(s) you wanted were added. | ||
- | </ | ||
- | |||
- | Plus qu'à se connecter, sans rentrer de code cette fois : | ||
- | <code bash> | ||
- | simon@localhost: | ||
- | LOGIN@HOST~$ | ||
- | </ | ||
- | |||
- | ==== Changer la passphrase d'une clé SSH ==== | ||
- | |||
- | <code bash> | ||
- | $ cd .ssh/ | ||
- | $ ssh-keygen -f id_rsa -p | ||
- | Enter old passphrase: | ||
- | Key has comment 'rsa w/o comment' | ||
- | Enter new passphrase (empty for no passphrase): | ||
- | Enter same passphrase again: | ||
- | Your identification has been saved with the new passphrase. | ||
- | </ | ||
- | [[https:// | ||
- | |||
- | ===== Problèmes rencontrés ===== | ||
- | ==== Problèmes de droits ==== | ||
- | <code bash> | ||
- | $ ssh hostname | ||
- | Bad owner or permissions on / | ||
- | </ | ||
- | |||
- | Il faut avoir les bonnes permissions sur le fichier '' | ||
- | <code bash> | ||
- | $ ls -alh ~/ | ||
- | -rwxrwxrwx. 1 user user 324 30 mar 2016 / | ||
- | </ | ||
- | |||
- | Solution : | ||
- | <code bash> | ||
- | $ chmod 600 ~/ | ||
- | </ | ||
- | |||
- | Après : | ||
- | <code bash> | ||
- | $ ls -alh ~/ | ||
- | -rw-------. 1 user user 324 30 mar 2016 / | ||
- | </ | ||
- | |||
- | ===== Exemples et astuces ===== | ||
- | |||
- | * [[Redirection de l' | ||
- | * [[Reverse SSH]], pour intervenir à distance sur un ordinateur derrière un NAT. | ||
- | * [[http:// |
ssh.1492625252.txt.gz · Dernière modification : 2020/08/09 12:59 (modification externe)