Enabling SharePoint 2013 Hybrid Search with the BIG-IP

Over my past several blog posts, I’ve talked about federating our on-premise environments with Office 365.  Now, that we have that handled, (it’s handled right?) let’s talk about another lesser known piece of the puzzle; hybrid SharePoint environments.  With federation and SSO between on-premise applications and Office 365 provided by the BIG-IP and APM, (Access Policy Manager) users can move seamlessly between their on-premise SharePoint and SharePoint online as if they were one integrated application.  Cool right?  But what about when I need to search for content across environments?  Funny I should ask.  That’s what this post is all about.  Microsoft actually has this figured out.  The only piece missing is a device that can act as the reverse proxy for the on-premise environment and facilitate the secure connection between the two environments.  Hmmm…  What could we use?

 

Configuring Hybrid Search for SharePoint 2013

This post covers the pieces required to use the BIG-IP as a reverse-proxy for a hybrid SharePoint search deployment.  For guidance on configuring both your on-premise SharePoint 2013 and SharePoint Online environments refer to the Hybrid for SharePoint 2013 guidance provided by Microsoft.  It’s quite thorough and, to be honest a little daunting.

Currently, Microsoft’s SharePoint 2013 hybrid capabilities are intended to let users in Office 365 access and search across certain content from an on premises SharePoint farm.  For detailed information on architectural recommendations and limitations take a look at the blog post from Microsoft architect, Steve Peschka.

Client Certificate authentication is utilized to allow secure access for hybrid search, (SharePoint content located both on-premise and in the cloud) from Office 365 environment.  To accomplish this a target application is configured in the SharePoint Online Secure Store where a client certificate, (issued by a public root certificate authority).

 

Figure 1SharePoint Online Secure Store & Target application

          

 

Configuring the BIG-IP for Client Certificate Authentication

The following configuration was tested by F5 in collaboration with the Office365 product team.  The testing was conducted at the Microsoft Technology Center in Irvine where an environment was provided for hybrid enterprise search & LOB scenarios between O365 and on-premise SharePoint farms.  We collaborated with the MTC’s expert staff and took advantage of the alliance partnership between Microsoft and F5, whose solutions were made available as part of their engagement.

For the purposes of hybrid search, the BIG-IP and LTM, (Local Traffic Manager) acts as a reverse proxy providing a secure Internet facing endpoint for connections from the SharePoint Online environment.  The deployment of SharePoint behind the BIG-IP can either be configured manually or via the BIG-IP iApp configuration.  Once SharePoint 2013 has been successfully deployed it is simple matter of modifying the virtual server’s Client SSL Profile.

 

Figure 2SharePoint 2013 On-Premise Virtual Server

The SSL Profile is configured to require a client certificate for successful access.  Additionally, the certificate must be issued from the specified certificate authority whose CA certificate is installed on the BIG-IP.  In the example below, (Figure 3) the client certificate presented must be issued by StartCom, Ltd.

 

Figure 3Client SSL Profile with Client Authentication Required

As long as the certificate installed and configured in the SharePoint Online Secure Store is valid and issued by the appropriate certificate authority, users in O365 will be able to search for and receive results from the on-premise SharePoint environment.

 

Enhancing Security with iRules

Ok, the above configuration provides security to the hybrid connection via client certificates.  However, it’s still vulnerable.  As previously noted, the certificate used must be issued by a public root certificate authority.  While this is good, this does not guarantee that the certificate presented is the actual certificate configured in the SharePoint Online environment.  Merely, it just guarantees that the certificate was issued from the same place, (StartCom, Ltd. in our example).  Fortunately, there’s an iRule for that!

The iRule provided below examines the client certificate provided and ensures that the serial number of the certificate matches the SharePoint Online configured certificate.  This ensures that not only is the presented certificate issued from a specific and valid certificate authority, but also ensures that the certificate itself is an exact match.

 

Figure 4Granular_Cert_Verification iRule validating the Client Certificate Serial Number

   1: when CLIENTSSL_CLIENTCERT {
   2:  
   3:    # Check if client provided a cert
   4:    if {[SSL::cert 0] eq ""}{
   5:  
   6:       # Reset the connection
   7:       reject
   8:  
   9:    } else {
  10:  
  11:       #Example Subject SN:  01 ED 51
  12:       set subject_sn [X509::serial_number [SSL::cert 0]]
  13:       log "Client Certificate Received: $subject_sn"
  14:       #Check if the client certificate contains the correct serial number
  15:       if {$subject_sn contains "0c e4 11"} {
  16:          #Accept the client cert
  17:          log "Client Certificate Accepted: $subject_sn"
  18:       } else {
  19:          log "No Matching Client Certificate Was Found Using: $subject_sn"
  20:          reject
  21:      }
  22:    }
  23: }

 

Figure 5Client Certificate Subject Name

Figure 6iRule Assigned to Virtual Server

 

That’s It!  Not too bad huh?  Of course this is the easy part.  We still need to ensure that we have properly configured both environments, (on-premise and Office 365) to enable the hybrid search functionality.  Accomplishing that is a little more tricky, but definitely doable.  Be sure to refer to the links below for information from Microsoft on how to set this up.  In addition, check out Steve Peschka’s blog posts for information.

 

Additional Links:

Hybrid for SharePoint Server 2013

Configure hybrid Search for SharePoint Server 2013

F5 and SharePoint 2013 – Deployment Guidance

Architecture Design Recommendation for SharePoint 2013 Hybrid Search Features – Steve Peschka Blog

Big-IP and ADFS Part 1 – “Load balancing the ADFS Farm”

Published Nov 11, 2013
Version 1.0

Was this article helpful?