views:

84

answers:

4

Does anyone know what the official name is for a "domain\username" based login?

I'm trying to troubleshoot an application which claims to have support for LDAP integration with OpenLDAP, Sun One etc.

When I reviewed logs , and sniffed the network traffic I could see that in every instance of authentication a "domain\username" is passed. I'm not 100% sure but I think that method for authentication is only for Active Directory?

Thanks in advance for any help you may be able to provide ;)

+1  A: 

"Windows authentication"

Kevin Dente
A: 

Active Directory, now part of the greater Active Directory Domain Services

pokstad
A: 

This can be a bit confusing because active directory is capable of authenticating with multiple authentication mechanisms. Which capability is used is based on domain policy and client capabilities. So AD could be authenticating with Kerberos, or NTLM or LDAP bind. Usually Kerberos is preferred.

So maybe your application in question is multi-protocol capable and because it is operating in an AD domain it is defaulting to Kerberos, but if it were operating in an LDAP only environment it would default to LDAP bind.

Mark Arnott
A: 

I believe these "domain\username" logins are NTLM logins.

Kirill Kovalenko