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 subprocess.Popen(args)

def openTunnel
    cmd = 'ssh -f -N -L 1313:localhost:1313 userid@server.com'
    self.TunnelObj = self.runCmd(cmd)

That creates my Tunnel. I can then do the stuff I need to do. Now I want to tear down the tunnel.

    def closeSocket(self):
        print '\nClosing Tunnel\n'
        if self.TunnelObj.returncode == None: 
            print '\nabout to kill\n'
            self.TunnelObj.kill()

But the tunnel is still open. An ssh session still exists, and the port is still assigned.

How can I shut this tunnel down?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Part of the problem is that the tunnel process is a subprocess of self.TunnelObj. You can try to omit the -f flag so you hold the tunnel process directly.

Another option would be to look at the paramiko library and this question.

link|improve this answer
That was exactly my problem. the -f (which sends the tunnel to the background) was keeping python from killing the process. – Skip Huffman Jun 10 '11 at 11:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.