Comments on: Forcer une identity SSH pour un host en particulier http://sametmax.com/forcer-une-identity-ssh-pour-un-host-en-particulier/ Du code, du cul Mon, 28 Oct 2019 11:54:55 +0000 hourly 1 https://wordpress.org/?v=4.9.7 By: glickind http://sametmax.com/forcer-une-identity-ssh-pour-un-host-en-particulier/#comment-9517 Thu, 30 May 2013 00:26:54 +0000 http://sametmax.com/?p=6211#comment-9517 pour gérer les connexions SSH en python, il y a aussi storm basé sur paramiko

]]>
By: JEEK http://sametmax.com/forcer-une-identity-ssh-pour-un-host-en-particulier/#comment-9221 Sat, 25 May 2013 08:13:09 +0000 http://sametmax.com/?p=6211#comment-9221 J’avoue que jusque là, j’avais jamais eu besoin de ces spécificités…
…mais ça peut être bien utile ; merci Sam et merci aux commentateurs qui rajoutent du stuff !

Je crois que je vais remettre les mains dans le cambouis fissa… *miam*
:-)

]]>
By: glickind http://sametmax.com/forcer-une-identity-ssh-pour-un-host-en-particulier/#comment-9219 Fri, 24 May 2013 23:08:40 +0000 http://sametmax.com/?p=6211#comment-9219 il y a aussi Belier disponible sur pypi qui permet d’automatiser l’enchaînement de plusieurs connexions ssh …
basé sur python et expect, c’est orienté Linux ;)

]]>
By: N http://sametmax.com/forcer-une-identity-ssh-pour-un-host-en-particulier/#comment-9206 Fri, 24 May 2013 13:43:49 +0000 http://sametmax.com/?p=6211#comment-9206 Et pour sautiller entre les serveurs sans avoir à faire plusieurs ssh:

Host MonServeur
hostname ip.du.serveur.final
ForwardAgent yes
ProxyCommand ssh host.de.la.passerelle "nc -q0 %h %p" 2> /dev/null

]]>
By: gardouille http://sametmax.com/forcer-une-identity-ssh-pour-un-host-en-particulier/#comment-9202 Fri, 24 May 2013 12:13:42 +0000 http://sametmax.com/?p=6211#comment-9202 En vrac:


# Ne pas vérifier la clé de l'hôte
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
# Établir une connection "maître"
ControlMaster auto
# Passer toutes les autres connections sur cet hôte par la connection maître
# Ainsi une 2nde connection sur un hote déjà connecté ne demandera pas de mot de passe.
ControlPath /tmp/ssh-%r@%h:%p

## Tunnel vers toto
Host tunnel.toto.mydomain.org
HostName ip_pub.mydomain.org
port 12345
User turlutte
LocalForward PORT_LOCAL toto.domain.org:PORT_DISTANT

]]>
By: Sam http://sametmax.com/forcer-une-identity-ssh-pour-un-host-en-particulier/#comment-9196 Fri, 24 May 2013 10:28:18 +0000 http://sametmax.com/?p=6211#comment-9196 J’ai un peu abusé sur le franglais là…

]]>