plaintext not supported in Windows Server 2016.

ntlm authentication is backwards compatible to Windows Server 2008 at least, but plaintext is not supported in Server 2016.
This commit is contained in:
Jan Harasym 2018-04-18 00:12:02 +02:00 committed by GitHub
parent 09dcb8ffce
commit df26cdc1d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -835,7 +835,7 @@ def wait_for_winrm(host, port, username, password, timeout=900, use_ssl=True, ve
)
transport = 'ssl'
if not use_ssl:
transport = 'plaintext'
transport = 'ntlm'
trycount = 0
while True:
trycount += 1