0

C:\Dropbox\gittools\JsonLearning>Auth.py

Traceback (most recent call last):

File "C:\Dropbox\gittools\JsonLearning\Auth.py", line 31, in

krb = KerberosTicket("HTTP@xyz.abc.com")

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

Nithin Bodla
  • 7
  • 1
  • 2

1 Answers1

3

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

Michael-O
  • 18,123
  • 6
  • 55
  • 121