So I am running Ansible on Fedora 25 and this is the issue I'm facing:
1. I installed all dependencies: dnf install python-devel krb5-devel krb5-libs krb5-workstation
2. I installed the keberos module: pip install pywinrm[keberos]
3. I confirmed both of these installations were for Python 2
5. I did klist to make sure I got the ticket. I have tho correct domain name
6. I tried putting FQDN's of some computers in my host file
7. I ran ansible <group> -m win_ping and I get:
<HOST> | UNREACHABLE! => {
"changed": false,
"msg": "ssl: the specified credentials were rejected by the server",
"unreachable": true
}
I know this means Anisble is falling back to SSL, but I'm not sure why it would be doing this. Can I get some guidance in debugging this?
Thanks!