Python Language
Veilige Shell-verbinding in Python
Zoeken…
parameters
Parameter | Gebruik |
---|---|
hostname | Deze parameter vertelt de host waarmee de verbinding tot stand moet worden gebracht |
gebruikersnaam | gebruikersnaam vereist voor toegang tot de host |
haven | host poort |
wachtwoord | wachtwoord voor het account |
ssh-verbinding
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
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow