Quantcast
Channel: TechNet Blogs
Viewing all articles
Browse latest Browse all 34890

SupportMultipleDomain switch, when managing SSO to Office 365

$
0
0

Use of SupportMultipleDomain switch, when managing SSO to Office 365 using ADFS

 

When a SSO is enabled for O365 via ADFS, you should see the Relying Party (RP) trust created for O365.

  

RP trust for O365 

Commands that would create the RP trust for O365 are below:

New-MsolFederatedDomain -DomainName<domain>

Update-MSOLFederatedDomain -DomainName <domain>

Convert-MsolDomainToFederated -DomainName <domain>

 

The RP trust created above comes with 2 claims rules

 

Get-MsolFederationProperty -DomainName <domain> on the federated domains shows that the “FederationServiceIdentifier” was the same for source ADFS and O365 i.e. the
http://STSname/adfs/Services/trust

  

MsolFederationProperty without SupportMultipledomain

 

With the ADFS rollup 1 update, we added the following functionality:

 

Multiple Issuer Support
Previously, Microsoft Office 365 customers who require single sign-on (SSO) by using AD FS 2.0 and use multiple top level domains for users' user principal name (UPN) suffixes within their organization (for example, @contoso.us or @contoso.de) are
required to deploy a separate instance of AD FS 2.0 Federation Service for each suffix. After you install this Update Rollup on all the AD FS 2.0 federation servers in the farm and follow the instructions of using this feature with Office 365, new claim rules will be set to dynamically generate token issuer IDs based on the UPN suffixes of the Office 365 users. As a result, you do not have to set up multiple instances of AD FS 2.0 federation server to support SSO for multiple top level domains in Office 365.”

 

Support for Multiple Top Level Domains

“Currently, Microsoft Office 365 customers who utilize single sign-on (SSO) through AD FS 2.0 and have multiple top level domains for users' user principal name (UPN) suffixes within their organization (for example, @contoso.com or @fabrikam.com) are required to deploy a separate instance of AD FS 2.0 Federation Service for each suffix.  There is now a rollup for AD FS 2.0 (http://support.microsoft.com/kb/2607496) that works in conjunction with the “SupportMultipleDomain” switch to enable the AD FS server to support this scenario without requiring additional AD FS 2.0 servers.

 

Commands that would create the RP trust for O365 are below:

New-MsolFederatedDomain -DomainName <domain> -SupportMultiDomain

Update-MSOLFederatedDomain -DomainName <domain> -SupportMultipleDomain

Convert-MsolDomainToFederated -DomainName <domain> -SupportMultipleDomain

 

Get-MsolFederationProperty -DomainName <domain> on the federated domains now shows that the “FederationServiceIdentifier” is different for ADFS and O365. Every federated domain will have the
“FederationServiceIdentifier” as
http://<domainname>/adfs/services/trust/ whereas the ADFS configuration still has http://STSname/adfs/Services/trust.

 

MsolFederationProperty with Supportmultipledomain

 

Due to this mismatch in configuration, we need to ensure that when a token is sent to O365 the issuer mentioned in it, is the same as one configured for the Domain in O365. If not you will get the error below:

  

Signin Error 

So when adding or updating RP trust with -SupportMultipleDomain switch, a 3rd claim rule is automatically added to the RP trust for O365.

 

Default 3rd rule:

c:[Type
== "
http://schemas.xmlsoap.org/claims/UPN"]

=> issue(Type = "http://schemas.microsoft.com/ws/2008/06/identity/claims/issuerid", Value = regexreplace(c.Value, ".+@(?<domain>.+)", "http://${domain}/adfs/services/trust/"));

 

This rule uses the suffix value of user’s UPN and uses that to generate a new claim called Issuerid. Example http://contoso.com/adfs/services/trust/.

 

Using fiddler, we can trace the token being passed to login.microsoftonline.com/login.srf. After copying the token passed in wresult, paste the content in notepad and save that file as .xml.

Later you can open the token saved as .xml file using IE and see its content.

  

 fiddler

 

token in XML 

 

It’s interesting to note that the though this rule issues Issuerid claim, we don’t see this claim in the response token, in fact we see the “Issuer” attribute modified to the newly composed value.

 

<saml:Assertion MajorVersion="1" MinorVersion="1"
AssertionID="_2546eb2e-a3a6-4cf3-9006-c9f20560097f"
Issuer="http://contoso.com/adfs/services/trust/" IssueInstant="2012-12-23T04:07:30.874Z" xmlns:saml="urn:oasis:names:tc:SAML:1.0:assertion">

 

NOTE: If SupportMultipleDomain is used without the ADFS rollup 1 or 2 installed. You will see that the response token generated by ADFS has BOTH the Issuer=”http://STSname/adfs/Services/trustand the claim “Issuerid” with the composed value as per the 3rd claim rule.

 

<saml:Assertion MajorVersion="1" MinorVersion="1"
AssertionID="_2546eb2e-a3a6-4cf3-9006-c9f20560097f"
Issuer="http://STS.contoso.com/adfs/services/trust/" IssueInstant="2012-12-23T04:07:30.874Z" xmlns:saml="urn:oasis:names:tc:SAML:1.0:assertion">

<saml:Attribute
AttributeName="issuerid" AttributeNamespace="
http://schemas.microsoft.com/ws/2008/06/identity/claims"><saml:AttributeValue>http://contoso.com/adfs/services/trust/</saml:AttributeValue>
</saml:Attribute>

-       This will again lead to error “Your organization could not sign you in to this service”

 

Support for Sub domains

“It is important to note that the SupportMultipleDomain” switch is not required when you have a single top level domain and multiple sub domains.  For example if the domains used for upn suffixes are @sales.contoso.com, @marketing.contoso.com
and @contoso.com and the top level domain (contoso.com in this case) was added first and federated then you don’t need to use the “SupportMultipleDomain” switch.  This is because these sub domains are effectively managed within the scope of the parent and a single AD FS server can be utilized to handle this already.”


If however, you have multiple top level domains (@contoso.com and @fabrikam.com) and these domains also have sub domains (@sales.contoso.com and @sales.fabrikam.com) the “SupportMultipleDomain” switch will not work for
the sub domains and these users will not be able to login

 

Why will this switch not work, in the above scenario?

Answer:

-       For child domain, sharing the same namespace, we don’t federate them separately. The federated root domain covers the child as well, which mean that the federationServiceIdentifier value for the child domain will also be the same as that of parent i.e. http://contoso.com/adfs/services/trust/

 

-       But the 3rd claim rule which ends up picking the UPN suffix for the user to compose the Issuer value ends up with http://Child1.contoso.com/adfs/services/trust/, again causing a mismatch and hence the error Your organization could not sign you in to this service”

 

To resolve this, we can modify the 3rd rule such that it ends up generating an Issuer value that matches “FederationServiceIdentifier” for the domain at O365 end. 2 different rules that can work in this scenario are below. This rule just picks up the root domain from the UPN suffix to compose the Issuer value. For a UPN suffix child1.contoso.com, it will still generate an Issuer value of http://contoso.com/adfs/services/trust/ instead of  http://Child1.contoso.com/adfs/services/trust/ (with default rule)

   

claim rule           

 

Customized
3rd rule

     Rule 1:

c:[Type == "http://schemas.xmlsoap.org/claims/UPN"]

=> issue(Type = "http://schemas.microsoft.com/ws/2008/06/identity/claims/issuerid", Value = regexreplace(c.Value, "^((.*)([.|@]))?(?<domain>[^.]*[.].*)$", "http://${domain}/adfs/services/trust/"));

 

Rule 2:

c:[Type
== "
http://schemas.xmlsoap.org/claims/UPN"]

=> issue(Type = "http://schemas.microsoft.com/ws/2008/06/identity/claims/issuerid", Value = regexreplace(c.Value, “^((.*)([.|@]))?(?<domain>[^.]*.(com|net|co|org)(.\w\w)?)$”, “http://${domain}/adfs/services/trust/”));

 

 Note:

The rules above may not apply to all scenarios, but can be customized to ensure that the Issuerid value matches “FederationServiceIdentifier” for the domain added/federated at O365 end.

 

The mismatch of federationServiceIdentifier between ADFS and O365 for a domain can also be corrected by modifying the federationServiceIdentifier” for the domain at O365 end, to match the federationServiceIdentifier”
for ADFS. But the federationServiceIdentifier can only be configured for ONE federated domain and not all.

 

-       Set-MSOLDomainFederationSettings -domainname  Contoso.com –issueruri http://STS.contoso.com/adfs/services/trust/

 

 

More information that should help you write your own claim rules.

 

The Role of the Claim Rule Language
http://technet.microsoft.com/en-us/library/dd807118(WS.10).aspx

 

Understanding Claim Rule Language in AD FS 2.0
http://social.technet.microsoft.com/wiki/contents/articles/4792.understanding-claim-rule-language-in-ad-fs-2-0.aspx#General_Syntax_of_the_Claim_Rule_Language

 

Regular Expressions
http://technet.microsoft.com/en-us/library/hh440535.aspx


Hope this info helps 

 

Cheers

Abizer


Viewing all articles
Browse latest Browse all 34890

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>