简体   繁体   English

在 Windows 上与域用户一起使用 Ansible

[英]Using Ansible on windows with domain user

I'm starting to learn Ansible but the documentation is not too helpful.我开始学习 Ansible,但文档并没有太大帮助。

I have installed the control machine on RHEL and created the necessary hosts file and windows.yml .我已经在 RHEL 上安装了控制机器并创建了必要的主机文件和windows.yml

But when trying to connect to the remote Windows server to get a pong back I get the following error:但是当尝试连接到远程 Windows 服务器以获取乒乓球时,我收到以下错误:

[root@myd666 ansible_test]# ansible windows -i hosts -m win_ping
hostname | UNREACHABLE! => {
    "changed": false,
    "msg": "ssl: the specified credentials were rejected by the server",
    "unreachable": true
}

After Installing python-kerberos dependencies , 安装 python-kerberos 依赖项后

I now get this Error:我现在收到此错误:

hostname | UNREACHABLE! => {
    "changed": false,
    "msg": "Kerberos auth failure: kinit: KDC reply did not match expectations while getting initial credentials",
    "unreachable": true
}

My windows.yml file contains:我的windows.yml文件包含:

# it is suggested that these be encrypted with ansible-vault:
# ansible-vault edit group_vars/windows.yml
ansible_ssh_user: user@MYDOMAIN.NET
ansible_ssh_pass: password
ansible_ssh_port: 5986
ansible_connection: winrm
ansible_winrm_server_cert_validation: ignore

Am I doing anything wrong with the syntax of Domain\\user\u003c/strong> ?我对Domain\\user\u003c/strong>的语法做错了吗? Maybe I forgot to install something on the Windows machine?也许我忘了在 Windows 机器上安装一些东西? I only ran the ConfigureRemotingForAnsible.ps1 script, and Python is not installed there.我只运行了ConfigureRemotingForAnsible.ps1脚本,并且那里没有安装 Python。

This is my krb5.conf file:这是我的krb5.conf文件:

[libdefaults]
default_realm = MYDOMAIN.NET
#dns_lookup_realm = true
#dns_lookup_kdc = true

[realms]
MYDOMAIN.NET = {
kdc = dc1.mydomain.net
default_domain = hpeswlab.net
}

[domain_realm]
.mydomain.net = MYDOMAIN.NET
 mydomain.net = MYDOMAIN.NET

And I do get a token using Kinit:我确实使用 Kinit 获得了一个令牌:

kinit -C user@MYDOMAIN.NET

klist

Klist output: Klist输出:

Valid starting       Expires              Service principal
01/31/2017 11:25:33  01/31/2017 21:25:33  krbtgt/MYDOMAIN.NET@MYDOMAIN.NET
        renew until 02/01/2017 11:25:29

In windows.yml , please double-check and ensure that the ansible_ssh_user: user@MYDOMAIN.NET line does indeed have the realm MYDOMAIN.NET in upper case.windows.yml 中,请仔细检查并确保ansible_ssh_user: user@MYDOMAIN.NET行确实具有大写的领域 MYDOMAIN.NET。 Somewhere, the realm request to the KDC is being sent in lower case instead of upper case causing the 'KDC reply did not match expectations..' error.在某处,向 KDC 发送的领域请求以小写而不是大写发送,导致“KDC 回复与预期不匹配......”错误。

In krb5.conf , case-sensitivity is also important.krb5.conf 中,区分大小写也很重要。 First I'll note that since the KDC name is the name of an IP host, so it needs to be specified as a fully-qualified host name, like in the example shown below.首先我要注意,由于 KDC 名称是 IP 主机的名称,因此需要将其指定为完全限定的主机名,如下面的示例所示。 It assumes your KDC is named "dc1.mydomain.net".它假定您的 KDC 名为“dc1.mydomain.net”。 Next, the domain name should only be in lower case.接下来,域名只能小写 On the other hand, Kerberos Realm names need be in upper case - if the realm name is incorrectly specified in lower case in this file that is another reason you may get this error message.另一方面,Kerberos 领域名称需要大写- 如果在此文件中以小写错误指定领域名称,这是您可能会收到此错误消息的另一个原因。 Please modify your entire krb5.conf to look like that shown below (changing only "dc1" to the actual name) and it should work.请将整个 krb5.conf 修改为如下所示(仅将“dc1”更改为实际名称),它应该可以工作。 Side note: You do not necessarily need the two dns_lookup_ lines in your krb5.conf, so please comment them out per the below.旁注:您不一定需要 krb5.conf 中的两个dns_lookup_行,因此请按照下面的说明将它们注释掉。 Those are fallback mechanisms only as per the MIT Kerberos Documentation and may actually cause issues in your simple use case.根据MIT Kerberos 文档,这些只是后备机制,实际上可能会在您的简单用例中导致问题。 After modifying either configuration file, make sure to restart the Ansible engine before testing again.修改任一配置文件后,请确保在再次测试之前重新启动 Ansible 引擎。

[libdefaults]
default_realm = MYDOMAIN.NET
#dns_lookup_realm = true
#dns_lookup_kdc = true

[realms]
MYDOMAIN.NET = {
kdc = dc1.mydomain.net
default_domain = mydomain.net
        }

[domain_realm]
.mydomain.net = MYDOMAIN.NET 
mydomain.net = MYDOMAIN.NET

Please refer to this MIT reference for how to properly set up the krb5.conf: Sample krb5.conf File请参阅此 MIT 参考以了解如何正确设置 krb5.conf: 示例 krb5.conf 文件

In the Hosts file, check to ensure your IP to name mappings are correct.Hosts文件中,检查以确保您的 IP 到名称的映射正确。 Per the RFCs, Kerberos requires a properly functioning DNS, and you are at risk of shortchanging that if your Hosts file has outdated entries in it.根据 RFC,Kerberos 需要一个正常运行的 DNS,如果您的 Hosts 文件中有过时的条目,您就有可能会缩短它。

Finally, though I wasn't able to tell which version of Ansible you were using, I did some research and found that "Ansible 2.0 has deprecated the “ssh” from ansible_ssh_user, ansible_ssh_host, and ansible_ssh_port to become ansible_user, ansible_host, and ansible_port."最后,虽然我无法确定您使用的是哪个版本的 Ansible,但我做了一些研究,发现“Ansible 2.0 已弃用 ansible_ssh_user、ansible_ssh_host 和 ansible_ssh_port 中的“ssh”,改为 ansible_user、ansible_host 和 ansible_port。 ” This could certainly be part of the problem.这当然可能是问题的一部分。 See: Ansible on Windows Documentation请参阅: Windows 上的 Ansible 文档

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM