获取paramiko.ssh_exception.SSHException:读取SSH协议标题到期连接时出错(Python)

问题描述 投票:0回答:1

Python 3.7 Fabric 2.4.0无法使用端口3389(如mstsc)连接远程PC,如果我正在尝试另一个端口 - 获取“无法连接到端口”

v = Connection(host=ServName, port=Port, user=User, connect_kwargs={'password': 's3cr3t'})
print(v.is_connected) #get False
v.run('dir') #get error (see img attach below)

Image of the error

python windows console remote-access fabric
1个回答
0
投票

端口3389通常用于Windows RDP而不用于ssh。您可能尝试通过WinRM(通常是端口5985-86)进行连接,在这种情况下使用pywinrm library而不是fabric。你最好使用已经连接了这种连接的ansible。

© www.soinside.com 2019 - 2024. All rights reserved.