Python Language
Connexion sécurisée au shell en Python
Recherche…
Paramètres
Paramètre | Usage |
---|---|
nom d'hôte | Ce paramètre indique à l'hôte auquel la connexion doit être établie |
Nom d'utilisateur | nom d'utilisateur requis pour accéder à l'hôte |
Port | port hôte |
mot de passe | mot de passe pour le compte |
connexion ssh
from paramiko import client
ssh = client.SSHClient() # create a new SSHClient object
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) #auto-accept unknown host keys
ssh.connect(hostname, username=username, port=port, password=password) #connect with a host
stdin, stdout, stderr = ssh.exec_command(command) # submit a command to ssh
print stdout.channel.recv_exit_status() #tells the status 1 - job failed
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow