How to install Kerberos client on Windows

I had installed KDC server on RHEL and also installed the Kerberos client on Ubuntu. Able to perform the ssh login from client to server through Kerberos.(without password).

Now, I want to use same server that created but Kerberos client should be on windows. Can someone help to point out the required steps to be perform on windows to install the Kerberos client on Windows Server.

Thanks, Hrushi

2 Answers

For use with SSH, there are three system-wide clients available:

  • MIT Kerberos for Windows, providing a GSSAPI Krb5 implementation.

  • Heimdal, also providing a GSSAPI Krb5 implementation.

  • The Windows built-in Kerberos client, accessible via SSPI. It's part of the Active Directory integration – if you join the computer to an AD domain and log in using an AD account, you'll automatically use Kerberos. That said, it's possible to use the built-in client even for non-AD realms after some configuration with ksetup /mapuser and runas /netonly, but not recommended.

Note that some SSH clients might only support SSPI (through native Windows functions), and some might only support GSSAPI (through a library). Current releases of PuTTY support both.

2

I had installed Kerberos on windows by following below links -

It may be useful for someone

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like