Tagged Questions
2
votes
0answers
136 views
How can I tunnel SSH through 2 gateways to a remote host using Fabric?
I'm trying to figure out how to use Fabric to simplify SSHing into and running commands on a machine separated by two gateways. The setup looks like this:
Local host -> Gateway 1 -> Gateway 2 ...
3
votes
1answer
219 views
is it possible to create an SSH tunnel in Ruby or Python without creating a local port?
I'm wanting to create an SSH tunnel to use for talking securely with a remote legacy application, but I don't want other local applications to be able to use it. Is this possible with Python and/or ...
0
votes
1answer
135 views
python - can't restart socket connection from client if server becomes unavailable temporarily
I am running a Graphite server to monitor instruments at remote locations. I have a "perpetual" ssh tunnel to the machines from my server (loving autossh) to map their local ports to my server's local ...
3
votes
1answer
381 views
Tunneling TCP ports through ssh without blocking
I'm trying setup a ssh tunnel via pexpect with following code:
#!/bin/env python2.4
import pexpect, sys
child = pexpect.spawn('ssh -CfNL 0.0.0.0:3306:127.0.0.1:3306 user@server.com')
child.logfile = ...
0
votes
1answer
596 views
How do I close an ssh Tunnel opened through Popen in python
I need to create an ssh tunnel, then do something, then tear the tunnel down.
I have been trying to do it like this:
def runCmd(self,cmd):
args = shlex.split(cmd)
return ...
1
vote
1answer
655 views
unable to access website with urllib and proxy
I've opened a ssh tunnel with ssh -D localhost:5678 me@server.com and I want to use it in my python3 application.
#!/usr/bin/python3.1
# -*- coding:Utf-8 -*-
import urllib.request
proxyhand = ...
1
vote
1answer
1k views
How to open an SSH tunnel using python?
I am trying to connect to a remote mysql database using django.
The documentation specifies that it is required to open an SSH tunnel first to connect to the database.
Is there a python library that ...
3
votes
2answers
605 views
SSH Dynamic Port Forwarding ('ssh -D') in Python
I'm looking for a way to implement SSH Dynamic Port Forwarding ('ssh -D') under Python. The problem is that it has to work under Windows, i.e., running SSH with popen/pexec/etc. won't work. Any ideas?
...