我截断了以下代码,以允许在两台 Windows 机器上执行。我安装copssh
为在 Windows 机器中作为 ssh 服务器工作,我正试图让它工作......
cmd = "python --version"
client = paramiko.SSHClient()
client.set_missing_host_key_policy(paramiko.WarningPolicy())
client.connect("myhost",username="admin", password="adminpass")
print "restarting machine ... "
stdin, stdout, stderr = client.exec_command(cmd)
print stdout.readlines()
执行以下代码时,我得到:
C:\wcat>python main.py
C:\Python27\lib\site-packages\paramiko-1.11.0-py2.7.egg\paramiko\client.py:95: U
serWarning: Unknown ssh-rsa host key for 192.168.2.4: 7bf6ba243a3daaa994e0b42067
9cfb30
(key.get_name(), hostname, hexlify(key.get_fingerprint())))
restarting machine ...
[]
它什么也不返回......即使做简单的 Windows 命令,比如cd C:\ && dir
返回我[]
。我也在从我正在 ssh 到另一台机器的机器上做同样的事情,它可以工作,但是解决方法不是......可能的原因是什么?