如何通过python中的ssh隧道连接到服务器

时间:2012-06-19 13:20:21

标签: python sockets ssh

我有一个使用socket的python聊天客户端,我想通过ssh服务器连接到聊天服务器,我看到了paramiko

import paramiko
ssh = paramiko.SSHClient()

ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())

ssh.connect('<hostname>', username='<username>', password='<password>', key_filename='<path/to/openssh-private-key-file>')

stdin, stdout, stderr = ssh.exec_command('ls')
print stdout.readlines()
ssh.close()

但是我无法弄清楚如何将这与我的套接字连接如此链接

from twisted.internet.protocol import ClientFactory
from twisted.protocols.basic import LineReceiver
from twisted.internet import reactor
import sys

class EchoClient(LineReceiver):
    end="Bye-bye!"
    def connectionMade(self):
        self.sendLine("Hello, world!")
        self.sendLine("What a fine day it is.")
        self.sendLine(self.end)

    def lineReceived(self, line):
        print "receive:", line
        if line==self.end:
            self.transport.loseConnection()

class EchoClientFactory(ClientFactory):
    protocol = EchoClient

    def clientConnectionFailed(self, connector, reason):
        print 'connection failed:', reason.getErrorMessage()
        reactor.stop()

    def clientConnectionLost(self, connector, reason):
        print 'connection lost:', reason.getErrorMessage()
        reactor.stop()

def main():
    factory = EchoClientFactory()
    reactor.connectTCP('localhost', 8000, factory)
    reactor.run()

if __name__ == '__main__':
    main()

那么如何在python中通过ssh隧道连接服务器?

2 个答案:

答案 0 :(得分:1)

您可以随时使用Twisted Conch,并且examples实施可能有用的简单SSH客户端/服务器。

答案 1 :(得分:1)

您可以在SSHClient上使用invoke_shell()方法,它返回类似套接字的对象(通道),因此您可以像在shell中一样创建新的ssh隧道。以下所有连接均可通过此渠道访问。