Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

Some schemas require a realm to work, if you see any realm inside of the response headers, use that in the configuration.

Negotiate/Kerberos

If you want to use the Negotiate/Kerberos authentication scheme you need to find out the "Key Distribution Center" (KDC) which is a service that supplies session tickets and temporary session keys to users and computers within an Active Directory domain. If you don't know your KDC address do as follows:

  • On Windows CMD or powershell
Code Block
> nltest /dsgetdc:<domain.name>

The KDC address will appear in the first line as "DC: <the KDC address>"

  • On Linux bash:
Code Block
$ cat /etc/krb5.conf

Look for something like:

Code Block
    [realms]
	TESTDOM.LAN = {
		kdc = DC1.TESTDOM.LAN
		admin_server = DC1.TESTDOM.LAN
	}