Reputation: 7
C:\Dropbox\gittools\JsonLearning>Auth.py
Traceback (most recent call last):
File "C:\Dropbox\gittools\JsonLearning\Auth.py", line 31, in
krb = KerberosTicket("[email protected]")
File "C:\Dropbox\gittools\JsonLearning\Auth.py", line 9, in init
kerberos.authGSSClientStep(krb_context, "")
winkerberos.GSSError: SSPI: InitializeSecurityContext: The specified target is unknown or unreachable
Upvotes: 0
Views: 6368
Reputation: 18415
SSPI does not understand GSS-API-style SPNs. Use HTTP/xyz.abc.com
. This will work.
Upvotes: 3