Created
February 24, 2011 09:09
-
-
Save mlafeldt/841944 to your computer and use it in GitHub Desktop.
[Python] paramiko examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys, paramiko | |
if len(sys.argv) < 5: | |
print "args missing" | |
sys.exit(1) | |
hostname = sys.argv[1] | |
password = sys.argv[2] | |
source = sys.argv[3] | |
dest = sys.argv[4] | |
username = "root" | |
port = 22 | |
try: | |
t = paramiko.Transport((hostname, port)) | |
t.connect(username=username, password=password) | |
sftp = paramiko.SFTPClient.from_transport(t) | |
sftp.get(source, dest) | |
finally: | |
t.close() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys, paramiko | |
if len(sys.argv) < 4: | |
print "args missing" | |
sys.exit(1) | |
hostname = sys.argv[1] | |
password = sys.argv[2] | |
command = sys.argv[3] | |
username = "admin" | |
port = 22 | |
try: | |
client = paramiko.SSHClient() | |
client.load_system_host_keys() | |
client.set_missing_host_key_policy(paramiko.WarningPolicy) | |
client.connect(hostname, port=port, username=username, password=password) | |
stdin, stdout, stderr = client.exec_command(command) | |
print stdout.read(), | |
finally: | |
client.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey,
how can I use these openssh options on paramiko?