Ansible 以本地用户身份连接到 windows 主机 - 错误 401/500

Ansible connect to windows host as local user - Errors 401/500

尝试使用 Ansible 与 Windows 主机通信时出现 401/500 错误。

[root@rhel7]# ansible windows -i hosts.ini -m win_ping -vvvv
<192.168.10.10> ESTABLISH WINRM CONNECTION FOR USER: ansibleuser on PORT 5985 TO 192.168.10.10
<192.168.10.10> WINRM CONNECT: transport=plaintext endpoint=http://192.168.10.10:5985/wsman
<192.168.10.10> WINRM CONNECTION ERROR: 401 Unauthorized.
<192.168.10.10> WINRM CONNECT: transport=plaintext endpoint=https://192.168.10.10:5985/wsman
<192.168.10.10> WINRM CONNECTION ERROR: 500 WinRMTransport. [Errno 1] _ssl.c:504: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol
192.168.10.10 | FAILED => 500 WinRMTransport. [Errno 1] _ssl.c:504: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol

hosts.ini :

[windows]
192.168.10.10 

[windows:vars]
ansible_ssh_user=ansibleuser 
ansible_ssh_password=password
ansible_ssh_port=5985
ansible_connection=winrm

用户ansibleuser是本地用户,拥有本地管理员权限。 Ansible 版本是 1.9.2

我可以使用 RDP 成功连接到服务器,winrm 设置看起来正确,防火墙已禁用。

我用tcpdump取HTTP-headers,请求没有Authorization参数。没有想法。

POST /wsman HTTP/1.1
Accept-Encoding: identity
Content-Length: 0
Host: 192.168.10.10:5985
Content-Type: application/soap+xml;charset=UTF-8
Connection: close
User-Agent: Python WinRM client

请帮我解决这个问题,谢谢

原因是Ansible官方文档中的错误:ansible_ssh_password是不正确的参数,正确的是ansible_ssh_pass