Windows OS Hub
  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux

 Windows OS Hub / Windows Server 2019 / Configuring Kerberos Authentication on IIS Website

March 11, 2024 Windows Server 2019

Configuring Kerberos Authentication on IIS Website

Here is a step-by-step guide on how to configure the transparent SSO (Single Sign-On) Kerberos domain user authentication on the IIS website running Windows Server 2012 R2.

Start IIS Manager on your Web server, select the necessary website and go to the Authentication section. As you can see, only Anonymous Authentication is enabled by default. Disable it and enable Windows Authentication (First of all IIS always tries to perform anonymous authentication).

IIS - Windows Authentication

Open the list of providers, available for Windows authentication (Providers). By default, two providers are available: Negotiate and NTLM. Negotiate is a container that uses Kerberos as the first authentication method, and if the authentication fails, NTLM is used. It is required that Negotiate comes first in the list of providers.

IIS Negotiate (Kerberos) providers

The next step includes the registration of Service Principal Name (SPN) entries for the name of the website, which will be accessed by the users. If the IIS website has to be available only by the name of the server, on which it is located (http://server-name or http://server-name.adatum.loc), you don’t need to create additional SPN entries (SPN entries already exist in the server account in AD). If the website address differs from the host name or if you are building a webfarm with load balancing, you will have to connect additional SPN entries to a server or user account.

Suppose, we have a farm of IIS servers. In this case, it’s better to create a separate AD account and bind SPN entries to it. The target Application Pool of our website will be started from this account.

Create a domain account iis_service. Make sure that SPN entries are not assigned for this object (servicePrincipalName attribute is empty).

servicePrincipalName attribute

Suppose, that the website has to respond at http://webportal and http://webportal.adatum.loc. We have to specify these addresses in the SPN attribute of the service account.

Setspn /s HTTP/webportal adatum\iis_service
Setspn /s HTTP/webportal.adatum.loc adatum\iis_service

Setspn

Thus, we allow this account to decrypt Kerberos tickets, when users access these addresses, and authenticate sessions.

You can check SPN settings of the account like this:

setspn /l iis_service

check spn records

Tip. Kerberos won’t work correctly if the same SPNs are used by different domain entries. Using the following command, make sure that there are no duplicate SPNs in the domain: setspn –x

The next step is the configuration of IIS Application Pool to launch it from the account created earlier.

Select the Application Pool of your website (in our example, it is DefaultAppPool).

DefaultAppPool

Open the Advanced Settings and go to the Identity.

Application Pool Identity

Change it from ApplicationPoolIdentity to adatum\iis_service.

change applicationpool identity

Then go to your website in IIS Manager and select Configuration Editor.

In the dropdown menu select system.webServer > security > authentication > windowsAuthentication

useAppPoolCredentials

Change useAppPoolCredentials to True.

Thus we allow IIS to use the domain account to decrypt Kerberos tickets from the clients.

Reset IIS using this command:

iisreset

iisreset

The same has to be configured on all web farm servers.

Let’s test Kerberos authentication. To do it, open http://webportal.adatum.loc in the client’s browser.

Note. In my case, I couldn’t authenticate at once in IE11. I had to add the address to the list of trusted websites and specify Automatic logon with current user name and password in User Authentication -> Logon in Trusted Zones Sites settings.ie11 Automatic logon with current user name and password

You can make sure that Kerberos authentication is used on your website by means of monitoring HTTP traffic using Fiddler.

Start Fiddler and open the target website in the browser. In the left part of the window, find the line of website access. Go to the Inspectors tab in the right part of the window. The line “Authorization Header (Negotiate) appears to contain a Kerberos ticket” shows that Kerberos has been used to authenticate on the IIS website.

Fiddler  - Authorization Header (Negotiate) appears to contain a Kerberos ticket

3 comments
3
Facebook Twitter Google + Pinterest
previous post
How to Connect and Query MySQL or MariaDB with PowerShell
next post
Unable to Connect Windows 10 Shared Printer to Windows XP

Related Reading

Remote Desktop fix: The number of connections to...

February 7, 2025

How to Hide or Show the ‘Safely Remove...

August 13, 2024

Change Network Connection (Adapter) Priorities in Windows

August 5, 2024

Fix: Multiple Connections to a Server or Shared...

July 16, 2024

Configure File and Folder Access Auditing on Windows...

June 27, 2024

3 comments

David Chivers October 16, 2017 - 11:14 pm

Thanks for sharing this, it saved me a bunch of time.

Just one comment on IE zones. I add sites that use my Windows credentials to the Local Intranet zone only, where the automatic logon setting is already applied by default. Sites in the Trusted zone are only trusted for their content – I don’t trust them with my Windows credentials.

Reply
RICHARD HARRIS June 22, 2019 - 2:23 pm

Great article. I don’t know if this will fix my problem. I am trying to use ‘Impersonation’ to authenticate the AD logon user to the SQL Server instance used in my web app. So I put some information on the home screen detailing the System.Security.Principal Identity.Name information and the AuthenticationType and the authentication name comes back as NTLM. I have specified ‘Windows Integrated’ security on the site with impersonation turned on and anonymous access turned off.

Reply
shine August 15, 2019 - 6:31 am

how i can set kerberos authentication if multiple service accounts are used on iis server websites?

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMware
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025
  • How to Block Common (Weak) Passwords in Active Directory

    March 25, 2025
  • Fix: The referenced assembly could not be found error (0x80073701) on Windows

    March 17, 2025
  • Exclude a Specific User or Computer from Group Policy

    March 12, 2025
  • AD Domain Join: Computer Account Re-use Blocked

    March 11, 2025
  • How to Write Logs to the Windows Event Viewer from PowerShell/CMD

    March 3, 2025
  • How to Hide (Block) a Specific Windows Update

    February 25, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • How to Configure and Deploy Screensaver on Windows with Group Policy
  • How to Obtain SeDebugPrivilege when Debug Program Policy is Enabled
  • How to Install and Configure TFTP Server and Client on Windows
  • How to Connect and Query MySQL or MariaDB with PowerShell
  • Windows: Auto Reconnect to VPN on Disconnect
  • How to Clear Event Viewer Logs on Windows
  • Scanning Windows Trusted Root CA for Suspicious Certificates
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top