Tagged Questions

paramiko is a Python module that implements the SSH2 protocol.

learn more… | top users | synonyms

8
votes
4answers
9k views

Running interactive commands in Paramiko

I'm trying to run an interactive command through paramiko. The cmd execution tries to prompt for a password but I do not know how to supply the password through paramiko's exec_command and the ...
7
votes
2answers
4k views

Nested SSH session with Paramiko

I'm rewriting a Bash script I wrote into Python. The crux of that script was ssh -t first.com "ssh second.com very_remote_command" I'm having a problem with the nested authentication with paramiko. ...
7
votes
3answers
6k views

Long-running ssh commands in python paramiko module (and how to end them)

I want to run a tail -f logfile command on a remote machine using python's paramiko module. I've been attempting it so far in the following fashion: interface = paramiko.SSHClient() #snip the ...
6
votes
2answers
1k views

Paramiko and Pseudo-tty Allocation

I'm trying to use Paramiko to connect to a remote host and execute a number of text file substitutions. i, o, e = client.exec_command("perl -p -i -e 's/" + initial + "/" ...
5
votes
2answers
175 views

I want to retrieve multiple logs from a server with minimum lines of code

I would like to retrieve multiple log files from an Ubuntu server (using Python 2.7 on win 7 machine) without having to write verbose, repetitive code. I'm sure I can use a loop to accomplish this, ...
4
votes
1answer
58 views

Paramiko hang when use ssh-keygen command

I am creating one user and want to set the ssh key for that user My script is import paramiko ssh_conn = paramiko.SSHClient() ssh_conn.set_missing_host_key_policy(paramiko.AutoAddPolicy()) ...
4
votes
2answers
222 views

Paramiko hangs while executing a large wget command

Hi I am having problems executing a command that performs a wget of a 100mb file over a Ubuntu 10 server. Shorter commands work fine except for this. The below class contains how I use paramiko and my ...
4
votes
1answer
71 views

How to make sure All spawned processes die when I Kill a Python Paramiko script?

How does one ensure when I spawn a process on a remote machine using Python Paramiko, that the process will die when the connection does? Specifically, the issue I'm having is I'll run wget or some ...
4
votes
1answer
114 views

Is there a way to capture the collection of shell commands that fabric outputs?

I've got a collection of fab files that I use to manage servers, install applications on them etc for clients. Some of them are not very happy when I deliver install documentation as a fabfile and ...
4
votes
4answers
1k views

Persistent ssh session to Cisco router

I have search on this site and multiple other locations but I have been unable to resolve my problem of connecting and maintaining ssh session after one command. Below is my current code: ...
4
votes
1answer
880 views

How to make a sudo command using Paramiko

ok i have some problem with comands that have sudo using paramiko f.ex sudo apt-get update here is my code: try: import paramiko except: try: import paramiko except: print ...
4
votes
1answer
372 views

python paramiko

Have installed Paramiko for Python and PyCrypto for Windows 7 machine. import paramiko ssh = paramiko.SSHClient() Tried the above commands but I keep getting this error msg: AttributeError: ...
4
votes
1answer
741 views

Fabric auto-login in Windows

Relevant question: http://stackoverflow.com/questions/2339735/fabric-password I configured Putty to login with private-public keys (no password) using this guide: ...
4
votes
1answer
2k views

paramiko SSH exec_command(shell script) returns before completion

I launch a shell script from a remote Linux machine using paramiko. The shell script is launched and execute a command make -j8. However the exec_command returns before the completion of the make. ...
4
votes
2answers
408 views

Why does Fabric display the disconnect from server message for almost 2 minutes?

Fabric displays Disconnecting from username@server... done. for almost 2 minutes prior to showing a new command prompt whenever I issue a fab command. This problem exists when using Fabric commands ...
4
votes
2answers
178 views

Paramiko equvalent of pipline controls and input/output pipes

I need a method of paramiko based file transfer with a lightweight SSH2 server (dropbear) which has no support for SCP or SFTP. Is there a way of achieving a cat and redirect style file transfer, such ...
3
votes
1answer
103 views

Paramiko: Piping blocks forever on read

I have a problem with getting piping to work with paramiko. This works: ssh = paramiko.SSHClient() [...] stdin, stdout, stderr = ssh.exec_command("find /tmp") stdout.read() This does not work ...
3
votes
1answer
122 views

How can I get all .log and .txt files when I SSH into a server

I'm using the Paramiko module to log into a server (ssh on some and sftp on others). I can get text and log files from specific folders on the server no problem. But there are many sub-directories ...
3
votes
2answers
257 views

multiprocess module with paramiko

I'm trying to use the paramiko python module (1.7.7.1) to execute commands and/or xfer files to a group of remote servers in parallel. One task looks like this: jobs = [] for obj in appObjs: ...
3
votes
1answer
419 views

paramiko: SSH port forwarding to get SQL dump

I am trying to use a python script to get an SQL dump from a remote host, with an intermediate host as proxy, like so: local machine -> proxy -> remote The proxy needs to be there because the ...
3
votes
2answers
590 views

Python ssh client over socks (proxy)

So, I need to connect to SSH server through proxy socks. I read paramiko and twisted.conch docs, but didn`t found proxy socks support there.
3
votes
1answer
689 views

Paramiko and sudo

I've been searching the nets for some time now for a solution to my problem, and no luck. My issue is that I can't seem to get sudo commands to run with paramiko. At first, I tried to simply use ...
3
votes
2answers
2k views

how can paramiko get ssh command return code

client = paramiko.SSHClient() stdin, stdout, stderr = client.exec_command(command) Is there any way to get the command return code? It's hard to parse all stdout/stderr and know whether the command ...
3
votes
1answer
1k views

Python - ssh - paramiko - connect to more ssh all at once

import sys, os, string import paramiko cmd = "grep -h 'king' /opt/data/horror_20100810*" ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) ...
3
votes
2answers
607 views

How to send EOF to stdin in paramiko?

I would like to execute some program through ssh and redirect its input from a file. The behaviour of the following code: channel.exec_command('cat') with open('mumu', 'r') as f: text = f.read() ...
3
votes
1answer
314 views

Paramiko equvalent of pipeline controls and input/output pipes

I need a method of paramiko based file transfer with a lightweight SSH2 server (dropbear) which has no support for SCP or SFTP. Is there a way of achieving a cat and redirect style file transfer, such ...
3
votes
3answers
1k views

Solving thread cleanup on paramiko

I have a automated process using python/paramiko anf have this error: Exception in thread Thread-1 (most likely raised during interpreter shutdown) .... .... <type ...
3
votes
1answer
3k views

Where do I find the Python Crypto package when installing Paramiko on windows?

I am trying to SFTP from Python running on windows and installed Paramiko as was recommended here. Unfortunately, it asks for Crypto.Util.randpool so I need to install the Crypto package. I found RPMS ...
3
votes
1answer
721 views

Why does Paramiko hang if you use it while loading a module?

Put the following into a file hello.py (and easy_install paramiko if you haven't got it): hostname,username,password='fill','these','in' import paramiko c = paramiko.SSHClient() ...
2
votes
1answer
24 views

Get Python Version from Remote Host with paramiko

I'm writting a Software to get some Information about Server and i just want to get the python Version from an remote Server. Here is my code: ssh = paramiko.SSHClient() ...
2
votes
1answer
73 views

python-paramiko - run command in background

If I use command ssh -f server 'cp /file1 /file2 & >/dev/null 2>/dev/null ; disown;' it detaches well and command is runned in the background. But is there any variant of -f key for ...
2
votes
1answer
71 views

How to set password on first call for command from paramiko?

I have one user test. I set password change when that user login with chage command. chage -E 2012-01-25 -M 30 -d 0 -W 10 -I 5 test So when i try to run command ls [root@localhost ~]# ssh ...
2
votes
1answer
60 views

How to use paramiko to talk interactivity with a remote application?

I am trying to use paramiko to interatively speak with an command line application, but I'm doing something wrong. # that's the echo.py, the script I am connecting to via SSH import sys, time while ...
2
votes
2answers
185 views

How to create a ssh tunnel using python and paramiko?

I'm learning python. I need to tunnel creators to read information from a database and close the tunnel. I use paramiko but I have not worked with tonelem example. please give an example of a simple ...
2
votes
2answers
86 views

Setting date/time on a unix based server with Python (Paramiko module)

Okay, can someone tell what I'm doing wrong with this simple request to change the time? I'm on a win 7 machine, trying to change the time on a linux box. I can login, search logs and run other ...
2
votes
2answers
236 views

Python paramiko script, problems reading output during exec_command()

Background: I am using python and paramiko to automate the process I go through everytime I have to hand in a program for a class. We use a command called "handin" to submit source code, but this ...
2
votes
1answer
80 views

SSH with Paramiko : failing to read data

Below is my driver information where I need to pull the data(Firmware Version) using ssh script as show below. ncmdvstk:~ $ ssh admin@153.88.127.21 Password: MSM760 V. 5.3.6.18-01-9124 (C) 2010 ...
2
votes
1answer
316 views

ImportError: No module named paramiko

I have installed "python-paramiko" and "python-pycrypto" in Red hat linux. But still when i run the sample program i get "ImportError: No module named paramiko". I checked the installed packages ...
2
votes
0answers
139 views

Paramiko bug: SSHClient.connect() method hangs when the peer is unreachable even if I set the 'timeout'

Here is a python code snippet that uses paramiko: import paramiko sshClient = paramiko.SSHClient() sshClient.set_missing_host_key_policy(paramiko.AutoAddPolicy) sshClient.connect(_peerIp, ...
2
votes
2answers
46 views

how to get past keyboard authentication with paramiko

I am trying to use Paramiko to connect to a remote host via ssh however I get an error message which states that keyboard authentication is required to access the host. Is there any way I can get ...
2
votes
3answers
330 views

Recursive directory download with Paramiko?

I want to download a directory with unknown contents recursively via SSH and have been trying Paramiko. I have seen several examples how to upload directories but none that covers recursive download. ...
2
votes
1answer
278 views

ssh client with paramiko

import paramiko import os def connection(): ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) privatekey = os.path.expanduser('/home/rabia/private') ...
2
votes
2answers
370 views

Upload a file-like object with Paramiko?

I have a bunch of code that looks like this: with tempfile.NamedTemporaryFile() as tmpfile: tmpfile.write(fileobj.read()) # fileobj is some file-like object tmpfile.flush() try: ...
2
votes
2answers
440 views

Why is Paramiko raising EOFError() when the SFTP object is stored in a dictionary?

I'm having trouble with an application I'm writing that downloads and uploads files to and from other boxes via SSH. The issue I'm experiencing is that I can get (download) files just fine but when I ...
2
votes
2answers
666 views

Paramiko SSH Tunnel Shutdown Issue

I'm working on a python script to query a few remote databases over an established ssh tunnel every so often. I'm fairly familiar with the paramiko library, so that was my choice of route. I'd prefer ...
2
votes
1answer
547 views

Is Paramiko going to be ported over to Python 3.x? [closed]

Seems to be that PyCrypt is required to be ported, in order to make that happen. Is it hard to do yourself?
2
votes
2answers
761 views

How to suppress a third-party warning using warnings.filterwarnings

I am using Paramiko in my python code (for sftp). Everything works fine except that everytime I import or call a paramiko function. This warning would show up: ...
2
votes
2answers
485 views

paramiko combine stdout and stderr

I am trying to combine the output of stdout and stderr. My belief is that this can be done with the set_combine_stderr() of a Channel object. This is what I am doing: SSH = paramiko.SSHClient() #I ...
2
votes
2answers
191 views

obtaining error number of an error

I need to obtain the error number from an error that has occurred in Python. Ex; When trying to transfer a directory via the Paramiko package, an error is caught with this piece of code: ...
2
votes
1answer
514 views

Escape arguments for paramiko.SSHClient().exec_command

What is the best way to escape a string for safe usage as a command-line argument? I know that using subprocess.Popen takes care of this using list2cmdline(), but that doesn't seem to work correctly ...

1 2 3 4