3

我有一个使用套接字的 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隧道连接到服务器?

4

2 回答 2

1

你总是可以使用Twisted Conch,他们有实现简单 SSH 客户端/服务器的示例,可能有用。

于 2012-06-19T13:25:29.717 回答
1

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

于 2012-06-19T13:51:24.607 回答