Created
April 6, 2014 10:12
-
-
Save Eyjafjallajokull/10004030 to your computer and use it in GitHub Desktop.
paramiko test
This file contains 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
__author__ = 'pawel' | |
from paramiko import * | |
import select | |
from time import sleep | |
private = RSAKey.generate(2048) | |
private.write_private_key_file('private') | |
print private.get_base64() | |
exit(0) | |
client = SSHClient() | |
client.set_missing_host_key_policy(AutoAddPolicy()) | |
client.load_host_keys('/var/gunnery/secure/c065dd92ee5f060d7d127ee2e6cd68aa') | |
pkey = RSAKey(filename='/var/gunnery/secure/0e0efd122cbc9958a16d2b2d730737b6') | |
client.connect('localhost', pkey=pkey, look_for_keys=False) | |
transport = client.get_transport() | |
channel = transport.open_session() | |
channel.exec_command('rm -rf /tmp/dupa; for i in {1..10}; do echo $i; sleep 1; done; echo A>/tmp/dupa') | |
while True: | |
rl, wl, xl = select.select([channel],[],[],0.0) | |
if len(rl) > 0: | |
out = channel.recv(1024) | |
if out: | |
print out, | |
if out == '5\n': | |
client.close() | |
break | |
else: | |
break | |
sleep(0.5) | |
client.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment