How do you go about checking that an IIS website is successfully using Kerberos and not falling back on NTLM?
|
|
The easiest way that I can think of is to use wireshark to watch the network packets and verify that your IIS server is requesting Kerberos Tickets from your DC. |
||
|
|
|
You can check the security log in the event viewer of the web server. You can also launch KerbTray on the client machine and check if it's using the correct SPN. Kerbtray is available here (don't worry, it's not Win2000 only). |
||
|
|
|
|
Fiddler2 will indicate if the authentication header is NTLM vs Kerberos.
|
||
|
|
|
|
One way I found to test in code that you are using Kerberos is that that the HTTP_AUTHORIZATION header for NTLM always starts with the following:
If the header doesn't start with text then the browser is authenticating using Kerberos. |
||
|
|
|
|
Well, Negotiate can also be Kerberos, because it is a wrapper over Kerberos and NTLM. Like other guys said, Wireshark (or Network Monitor) and Security event log will not cheat you. |
||
|
|
|
|
I use the security log in the event viewer to check like someone already mentioned. Here is a successful kerb auth:
|
||
|
|
