Now that we have the Active Directory Federation Services (AD FS) server and webserver in place, it’s time to bind them together through trust relationships.

Let’s first look at the theory behind this “binding.”

The SAML and OAuth2 protocol flow

For the SAML and OAuth2 protocols, a federation trust needs to be built between a claims-aware application and the Identity Provider. This allows the application to redirect authentication to its resources (1 in the image below) to the correct authentication provider (2). Colleagues would then authenticate to the SAML-based Security Token Service (STS) (3), which is our Active Directory Federation Services server (ADFS). The STS would then authenticate to the on-premises Active Directory environment (DC1) (4 and 5).

When authentication succeeds, the STS would transform the Kerberos-based token to a SAML- or OAuth2-based ticket for the specific web application and pass it on to the device (6). This ticket is then presented to the web application (7), which verifies that the ticket is, indeed, issued by the STS and is valid. The colleague is then granted appropriate access.

This process is depicted below:

SAML and OAuth2 Flow

SAML and OAuth2 flow

Although configuring a website as a claims-enabled website seems like a pretty overwhelming ordeal, it’s the last clicks you’ll perform throughout this step-by-step guide. In fact, what you’ll see is that it is pretty straightforward and that our demo setup actually makes it harder than it is in any real-life scenario you might encounter with AD FS.

So, let’s get to it!

Step 15: Configure IIS and trust from the webserver

In order for the claims app to digest claims, we need to set up a trust between the AD FS server and the webserver. Log on as an administrator on the WebServer server and perform these steps:

  1. Navigate to C:\Program Files (x86)\Windows Identity Foundation SDK\v3.5\.
  2. Double-click fedutil.exe to run the Federation Utility Wizard.
    Welcome to the Federation Utility Wizard
  3. For the Application configuration location, browse to the web.config file in C:\Intetpub\ClaimApp. For the Application URI, specify https://www.demo.4sysops.com/claimapp. Click Next > when done.
  4. On the Security Token Service window, select Use an existing STS. Use https://adfs.demo.4sysops.com/federationmetadata/2007-06/federationmetadata.xmlas the STS WS-Federation metadata document location.
  5. Select Test location… When you get a load of gibberish in Internet Explorer, you’ll know it works. 😉 Close Internet Explorer.
  6. Click Next > four times.
  7. On the Summaryscreen, select the option to Schedule a task to perform daily WS-Federation metadata updates. Click Finish.
  8. Click OK when the Federation Utility Wizard is done configuring.

Now, all we need is some work in the Internet Information Services (IIS) Manager. We’re going to create a binding and configure the .NET app pool:

  1. From Server Manager, in the grey top bar, select Tools and then click Internet Information Services (IIS) Manager.
  2. In the left pane, click the server’s name to expand it.
  3. Click Cancel in the pop-up window that asks if you want to get started with Microsoft Web Platform to stay connected with latest Web Platform Components.
  4. In the left pane, also expand Sites, and then select the Default Web Site.
  5. In the right Actions pane, follow the Bindings… hyperlink.
  6. Add… a binding.
  7. In the Add Site Binding window, select https as the Type.
    Add Site Binding
  8. Select the webserver.demo.4sysops.com SSL certificate.
  9. Click OK.
  10. Click Close to close the Site Bindings window.
  11. In the left pane, select Application Pools.
  12. On the main window, select the DefaultAppPool.
  13. In the right pane, click the Basic Settings… hyperlink.
  14. Select .NET CLR Version v2.0…. for the .NET CLR version:. Click OK.
  15. In the right pane, click the Advanced Settings… hyperlink.
  16. On the Advanced Settings window, scroll down a tad.
  17. Change the value for Load User Profile from False to True.
    Advanced Settings
  18. Click OK to close the Advanced Settings window.
  19. In the left pane, right-click Default Web Site and select Add Application… from the context menu.
    Add Application
  20. Specify claimapp as the Alias: and C:\inetpub\claimapp as the Physical path:.
  21. Click OK when done.
  22. Close the IIS Manager.
  23. Log off.

Step 16: Configure IIS and trust from the AD FS server

Now, let’s complete the federation magic from the side of the AD FS server:

  1. Log on to server ADFS.
  2. In Server Manager, from the grey top bar, select Tools and then click AD FS Management.
  3. In the left pane of AD FS, select Trust relationships.
  4. In the Actions pane on the right, follow the Add Relying Party Trust… hyperlink.
    Welcome to the Add Relying Party Trust Wizard
  5. Click Start on the Welcome to the Add Replying Party Trust Wizard window.
  6. On the Select DataSource window, accept the default selection Import data about the relying party published online or on a local network. Specify https://www.demo.4sysops.com/claimapp/federationmetadata/2007-06/federationmetadata.xml as the Federation metadata address (host name or URL):. Click Next >.
  7. Specify ClaimApp as the Display name: and click Next > four times.
  8. Click Close to finish the wizard.

Since we want our ClaimApp to show all claims that are supported by our AD FS server, we’ll want to create a special kind of claims transformation rule.

  1. Click Add Rule….Note:
    If you’re not prompted to create a rule, have inadvertently closed the pop-up window, or made a typo below, you can open it again by selecting the ClaimApp Relying Party Trust. To do so, select Relying Party Trusts in the left pane and then follow the Edit Claim Rules… hyperlink from the Actions pane. Then, on the Issuance Transform Rules tab on the Edit Claims Rules for ClaimApp window, click the Add Rule… button or Edit Rule… button.
    Select Rule Template
  2. Select Send Claims using a custom role… at the bottom of the drop-down list.
  3. Give the claims transformation rule a meaningful name, like All Claims. Then, define a Custom rule:
    c:[]
     => issue(claim=c);

    Configure Rule

  4. Click Finish.
  5. Close AD FS Management.
  6. Log off.

Concluding

After looking at the SAML and OAuth2 federation protocol flows, we’ve created the trusts between our claims-aware web application and the Active Directory Federation Services server (ADFS).

In my next post, I will show you how to configure the Web Application Proxy for our BYOD lab.

0 Comments

Leave a reply

Your email address will not be published. Required fields are marked *

*

© 4sysops 2006 - 2023

CONTACT US

Please ask IT administration questions in the forums. Any other messages are welcome.

Sending

Log in with your credentials

or    

Forgot your details?

Create Account