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