class documentation

Thread subclass for tunnelling connections over SSH between two endpoints. Specifically, one instance of this class is sufficient to sit around forwarding any number of individual connections made to one end of the tunnel or the other. If you need to forward connections between more than one set of ports, you'll end up instantiating multiple TunnelManagers. Wraps a `~paramiko.transport.Transport`, which should already be connected to the remote server. .. versionadded:: 2.0

Method __init__ Undocumented
Instance Variable finished Undocumented
Instance Variable local_address Undocumented
Instance Variable remote_address Undocumented
Instance Variable transport Undocumented
Method _run Undocumented
def __init__(self, local_host, local_port, remote_host, remote_port, transport, finished): (source)

Undocumented

finished = (source)

Undocumented

local_address = (source)

Undocumented

remote_address = (source)

Undocumented

transport = (source)

Undocumented

def _run(self): (source)

Undocumented