SUMMARY
Connecting to Windows hosts via winrm
Get “KDC has no support for encryption type”
ENVIRONMENT
- AWX version: 19.2.2
- AWX install method: operator
- AWX deployment target:minikube
- Operating System: Rhel_8_4.x86_64
- Web Browser:
STEPS TO REPRODUCE
ConfigMap for /etc/krb5.conf is same as working old environment.
Inventory Variables:
ansible_connection: winrm
ansible_winrm_server_cert_validation: ignore
ansible_port: 5986
ansible_winrm_transport: kerberos
ansible_winrm_scheme: https
ansible_winrm_kerberos_delegation: true
tasks:
- name: Win Ping (win_ping)
win_ping:
EXPECTED RESULTS
connection successful
ACTUAL RESULTS
fatal: [Host.hostzone]: UNREACHABLE! => {
“changed”: false,
“msg”: “kerberos: authGSSClientStep() failed: ((‘Unspecified GSS failure. Minor code may provide more information’, 851968), (‘KDC has no support for encryption type’, -1765328370))”,
“unreachable”: true
}
This used to work Pre AWX-Operator install
ADDITIONAL INFORMATION
from minikube host
test1:
openssl s_client -connect host.hostzove:5986
Protocol : TLSv1.2
Cipher : 0000
and test2:
openssl s_client -connect host.hostzone:5986 -cipher ‘ECDHE-RSA-AES256-SHA’
Protocol : TLSv1.2
Cipher : ECDHE-RSA-AES256-SHA
Not really sure where the error is