Unable to get windows authentication to work through local IIS

前端 未结 9 1747
梦如初夏
梦如初夏 2020-12-07 09:37

So I\'ve created a new ASP.NET MVC project using the intranet template. web.config contains the appropriate values (e.g.

9条回答
  •  情歌与酒
    2020-12-07 10:00

    I recently spent three days trying to solve the same problem and it drove me crazy. It was happening on a load-balanced setup where one of the servers was authenticating correctly while the other failed. Investigating the problem - and eventually solving it - it turned out to be unrelated to the load-balanced environment, it could happen with any server when authenticating using Windows Authentication and the server is called with a name other than the one recognized by Active Directory

    1. Enable Kerberos logging

    To correctly diagnose your issue, you will need to enable Kerberos logging on the machine hosting your IIS site. To do so, add the following registry entry:

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\Kerberos\Parameters

    Add Registry Value LogLevel with ValueType REG_DWORD and value 0x1.

    Once you turn on logging, then you try to authenticate, you will get errors logged in your Windows Application Log. You can ignore the error KDC_ERR_PREAUTH_REQUIRED (this is just part of the handshake) but if you get the error KDC_ERR_C_PRINCIPAL_UNKNOWN that means your AD controller doesn't recognize your server therefore you need to follow the steps below.

    2. KDC_ERR_C_PRINCIPAL_UNKNOWN

    if you're getting KDC_ERR_C_PRINCIPAL_UNKNOWN, that means the name "mysite.mydomain.com" is different from how the AD recognizes your machine so it's unable to provide a valid kerberos ticket. In that case, you need to register a Service Principal Name (SPN) for " 'www.mysite.mydomain" on the AD.

    On your AD controller, run this command - you will need Domain Admin privilege:

    Setspn -A HTTP/mysite.mydomain YOUR_MACHINE_HOSTNAME
    

    3. Use a custom identity for your Application pool

    Finally, make you Application pool use a custom account that belongs to the Active Directory instead of using NetworkService. This can be done in advanced settings of your application pool.

    and .. voila.


    Notes: The problem could (unlikely) be related to having multiple SPNs registered to the same machine, in that case you will need to run a command to remove duplicate SPNs, but I doubt this is the case. Also try adding a different binding to your site (that doesn't use a custom name) something like htttp://localhost:custom_port_number and see if authentication works. If it works, this is an extra indication that you're suffering from the same problem I had.

提交回复
热议问题