Nithin Bodla
Nithin Bodla

Reputation: 7

kerberos.GSSError: SSPI: InitializeSecurityContext: The specified target is unknown or unreachable

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

Answers (1)

Michael-O
Michael-O

Reputation: 18415

SSPI does not understand GSS-API-style SPNs. Use HTTP/xyz.abc.com. This will work.

Upvotes: 3

Related Questions