What is the difference between Windows integrated (NTLM) authentication and Windows integrated (Kerberos)?
How to implement these in IIS6
w.r.t. MSDN
|
|
|
here's a good link: http://msdn.microsoft.com/en-us/library/aa480475.aspx Also this will show you if kerberos (Negotiate) is on (on your webserver) :
NOTE: nnnn is the MetaBase site id in the past kerberos has caused me a few problems (when users have too many permissions) resulting in '400 Bad Request' errors |
||||
|
|
|
Kerberos and NTLM are different algorithms for validating a user's password, without reveiling the password to the server. More info about NTLM and Kerberos at Wikipedia. If you enable Windows authentication, Kerberos will normally be preferred and if that is not available it will fall back to NTLM.
|
||||
|
|