SharePoint 2010: Configure Kerberos Authentication
SharePoint 2010 supports two authentication mode: Classic mode and Claims based. Today I’m going to explain how to configure Kerberos authentication for an web application with classic mode Authentication. I’ll try to explain how to configure Kerberos for an web application with Claims based authentication later.Step 1: Create/Configure Web Application
In this step you need to create an web application with required configurations. However, you can convert an existing web application to use Kerberos authentication if the web application app pool user is a domain user. But as mentioned already, the configuration explained in this post applies for an web application with Classic Mode Authentication.Create a new web application
In creating new web application for using Kerberos Authentication you need to consider the following options:- Use classic mode Authentication as shown below (You
can use Claims Based Authentication but then the steps described in
this post might not work. For Claims Based Authentication you need
different sets of configuration):
Figure 1: Create site with ‘Classic Mode Authentication’
- Use Negotiate (Kerberos) as Authentication Provider in ‘Create Web Application’ page as shown below:
Figure 2: Create site with Negotiate (Kerberos) Authentication provider selected. - Use
domain username for app-pool account. Don’t use Predefined (like
Network Service, Local System etc) user account. This is important to
use domain user name as you will configure Kerberos against this
app-pool username.
Figure 3: User domain user name for App-pool account.
- One recommendation. Make the site url to be Fully Qualified Domain Name. For example, my server name was sohel-server and domain name was sohel.com. I’ve modified my full site name from default http://sohel-server:5000 to http://sohel-server.sohel.com:5000. This will help you identifying if the Only Kerberos is used for authentication instead of NTLM.
Configure an existing web application
If you have an existing web application that you want to move to Kerberos from NTLM you need to make sure your site meets the following criterion:
- The web application uses a domain user in application pool account instead of predefined account like Network Service, Local System. If your web application doesn’t use domain user then you can create a new web application with domain user name as application pool account. Changing the application pool account might make your web application malfunctioning.
- If you existing web application uses Classic Mode Authentication then configuration in this post should work. However, if you are using Claims based Authentication then you need to configure Security Token Service (STS) which in not mentioned in this post. If you are using Classic Mode, then you can continue this post as this post describes Kerberos for an web application with Classic Mode Authentication.
Figure 4: Change Authentication Provider
In the Authentication provider windows click on the zone you want to configure the Kerberos Authentication. Then you will be shown ‘Edit Authentication’ window. If your web application is using NTLM you can change the Authentication to Kerberos as shown below:
Figure 5: Change NTLM to Kerberos
When you change the authentication type from NTLM to Kerberos you will be prompted with message saying “” as shown below. You don’t need to worry, we’ll configure other settings to use Kerberos. So just click ok button when the message appears and then save the settings.
Figure 6: Warning appears during Authentication changes from NTLM to Kerberos
Step 2: Configure Service Principal Name (SPN) in Active Directory
So your web application is configured for Kerberos Authentication but you need to configure Service Principal Name (SPN). Simply SPN is an unique identifier for each service (HTTP, SQL, AD etc) running in the server. An SPN is a combination of service name, host name and port name. The original format for SPN is<Service Name>/<DNS Host>:Port
To know more about SPN, you can follow the link: http://technet.microsoft.com/en-us/library/cc961723.aspx. For our web application we need to create SPN. The SPN format for our web application is as shown below:
- HTTP/<DNS Host Name>:Port
- HTTP/<DNS FQDN>:Port
- HTTP/sohel-server:5000
- HTTP/sohel-server.sohel.com/5000
- HTTP/sohel-server
- HTTP/sohel-server.sohel.com
- HTTP/sohel-server:5000
- HTTP/sohel-server.sohel.com:5000
- Make
sure you installed ‘Active Directory Lightweight Directory Services’
from Server Role to get the ADSI Edit UI for editing SPN values. You can
add the ‘Active Directory Lightweight Directory Services’ from Server
Manager => Add Roles as shown below:
Figure 7: Install ‘Active Directory Lightweight Directory Services’ from ‘Add Server Role’
- To setup SPN, Run the command “adsiedit.msc” in either command prompt or from Run. You will get the ADSI Edit window.
- In ADSI Edit window, expand the ‘Default naming context’ and expand CN=Users and find the user you used for application pool in web application.
- Right click on the user entry CN=UserName and
select properties window. Then find the property ‘servicePrincipalName’
and click edit as shown below:
Figure 8: Set SPN through servicePrincipalName
- Finally add the SPNs in the edit window as shown below:
Figure 9: Add SPN values as value of attribute ‘servicePrincipalName’.
- Press OK and then apply to close the dialog.
Step 3: Enable delegation
In some cases you may need to enable delegation of credentials. To enable delegation, open the Active Directory users and Computers from ‘Administrative Tools’ menu. Find the user used in Application pool under ‘Users’ node. Right click on the user and click Properties to get the properties window. Then in the properties window go to ‘Delegation’ tab and select ‘Trust this user for…’ as shown below:Figure 10: Enable delegation
Step 4: Configure Internet Explorer
Finally you need to configure Internet Explorer (IE) to use current windows user to access the SharePoint site.- Go to Tool => Internet Options. Then select ‘Local Intranet’ and click Sites as shown below:
Figure 11: Setup IE for adding the SharePoint site to local Intranet
- After
‘Local Intranet’ dialog select ‘Advanced’ and then you’ll find the way
to add sites to local intranet. Add ‘*.yourdomain’ in the local intranet
zone as shown below:
Figure 12: Adding my domain (sohel.com) to local intranet.
- Now
close the Internet Options dialog. Then open the ‘Internet Options’
dialog from Tools => Internet Options. Then go to Security tab and
select ‘Local Intranet’ and select ‘Custom Level’. Then At the end of
the ‘Security settings’ window, select ‘Automatic login only in Intranet
zone’ as shown below:
Figure 13: Enable automatic login for Intranet zone
No comments:
Post a Comment