English 中文(简体)
What s the official name of a "domainusername" authentication method for a domain?
原标题:

Does anyone know what the official name is for a "domainusername" 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 "domainusername" 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 ;)

问题回答

"Windows authentication"

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.

I believe these "domainusername" logins are NTLM logins.

Domainusername is usually managed by AD and usually based on NTLM authentication.If your application claims it can integrate with OpenLDAP then it doesn t mean it is using LDAP based authentication.It could mean it can synchronize its users and changes with an OpenLDAP based system and it might be having some APIs for this.





相关问题
ajax login using httpRequest?

I am trying to develop my login script to give feedback to the user if the login is valid or not. Basically if it isn t correct a div box will show saying its wrong, if its correct it will show its ...

Remotely authenticating client Windows user on demand

Suppose I am writing a server for a particular network protocol. If I know that the client is running on a Windows machine, is it possible for my server to authenticate the Windows user that owns the ...

Role/Permission based forms authorizing/authentication?

While looking into forms authorizing/authentication, I found that it is possible to do role based authorizing by adding an array of roles to a FormsAuthenticationTicket. That way I can write User....

热门标签