Single Sign On for Office 365 with NetScaler. Deployment Guide

Size: px
Start display at page:

Download "Single Sign On for Office 365 with NetScaler. Deployment Guide"

Transcription

1 Deployment Guide Single Sign On for Office 365 with NetScaler Deployment Guide This deployment guide focuses on defining the process for enabling Single Sign On into Microsoft Office 365 with Citrix NetScaler.

2 Table of Contents Introduction 3 Configuration details 4 NetScaler features to be enabled 4 Solution description 5 Part 1: Configure Office Part 2: Configure NetScaler 10 Configure LDAP domain authentication 10 To Configure the SAML IDP Policy and Profile 13 To Configure your AAA Virtual Server 15 Validate the configuration 16 Troubleshooting 17 Additional Resources 20 Conclusion 21 2

3 Citrix NetScaler is a world-class product with the proven ability to load balance, accelerate, optimize, and secure enterprise applications. Microsoft Office 365 is a suite of cloud-based productivity and collaboration applications provided by Microsoft on a subscription basis. It includes Microsoft s popular server-based applications such as Exchange, SharePoint, Office and Skype for Business. The apps are widely used by SMBs and enterprise customers alike to enable their business without significant capital investments. Introduction This guide focuses on enabling Microsoft Office 365 single sign on with Citrix NetScaler. 3

4 Configuration Details The table below lists the minimum required software versions for this integration to work successfully. The integration process should also work with higher versions of the same. Product NetScaler Minimum Required Version 11.0, Enterprise/Platinum License NetScaler features to be enabled The essential NetScaler feature that needs to be enabled is explained below. AAA-TM (Authentication, authorization and auditing - Traffic Management) AAA-TM The AAA feature set controls NetScaler authentication, authorization, and auditing policies. These policies include definition and management of various authentication schemas. NetScaler supports a wide range of authentication protocols and a strong, policy-driven application firewall capability. 4

5 Solution description Enabling SSO for Office 365 with NetScaler consists of two parts configuring the Office 365 portal and the NetScaler appliance. Office 365 should be configured to use NetScaler as a third party SAML IDP (Identity Provider). The NetScaler is configured as a SAML IDP by creating the AAA Virtual Server that will host the SAML IDP policy. The following instructions assume that you have already created the appropriate external and/or internal DNS entries to route authentication requests to a NetScaler-monitored IP address, and that an SSL certificate has already been created and installed on the appliance for the SSL/HTTPS communication. This document also assumes that a Microsoft Office 365 account has been created, the relevant domain has been added and domain verification for the same has been completed. Part 1: Configure Office 365 Step 1: Confirm Microsoft Office 365 Portal Settings 1. In a web browser, log in to your Office 365 administration portal at using an account with administrative rights. 2. Confirm that the domain that is in use by your company for Office 365 has been verified by navigating to Domains in the left hand navigation bar Select the Domain Settings options in the Manage Domains section shown on the right after selecting the appropriate domain in the list 5

6 Step 2: Setup Federation Settings for Windows Azure AD In order to complete single sign on configuration, you will need to complete the following steps 1. Assuming that a local AD (Active Directory) server is used for validation of user credentials, the Microsoft Azure Active Directory Connect tool (formerly called DirSync) will need to be installed on a domain-joined computer. This tool is essential for configuring SSO for Office Complete the configuration for federation/establishing trust between Azure AD (Azure Active Directory) and NetScaler using the Azure AD Module for Windows Powershell 3. Setup Directory Synchronization using the Azure AD Directory Connect Tool to ensure that users in the local AD are replicated in Azure AD. Before proceeding, you should verify that you have the signing certificate that NetScaler will use to sign the assertion. To get the verification certificate from the NetScaler appliance, follow these steps: 1. Login to your NetScaler appliance, then select the Configuration tab. 2. Select Traffic Management > SSL 3. Select Manage Certificates / Keys/ CSR s under the Tools section on the right as shown below 4. From the Manage Certificates window, browse to the certificate you will use for your AAA Virtual Server. Select the certificate and choose the Download button. Save the certificate to a location of your choice. 6

7 Step 2: Setup Federation Settings for Windows Azure AD In order to complete single sign on configuration, you will need to complete the following steps The following tools should be installed before proceeding: - REQUIRED: The Azure AD Module for Windows PowerShell is essential for this deployment. This module enables cmdlets to be run that completes the Azure AD administrative and configuration tasks for this deployment. Install the Microsoft Online Services Sign-In Assistant for IT Professionals RTW, then install the Azure Active Directory Module for Windows PowerShell (64-bit version). For the 32-bit version of the Azure Active Directory Module tool, refer to this link. Note: Support for the 32-bit version of this tool has ended, but it may still be used for this deployment. Additional information about this tool is available at the source link. - OPTIONAL: Windows Azure AD Connect enables synchronization of directories between Azure AD and the local Active Directory. This tool simplifies user account setup in Office 365, eliminating the need to add them individually. For more information on directory synchronization using Azure AD Connect, refer to active-directory-aadconnect/ Note: Azure AD Connect is an optional installation, and this integration can be completed without it. However, in this instance you will need to ensure that the Azure AD tenant for your Office 365 account has all user accounts corresponding to the ones in your Active Directory (the user account login should be the same as the UPN for the user accounts in the local Active Directory) Powershell Commands These commands are executed in the PowerShell after completing the Azure AD Directory Module installation. <your domain name> here refers to the domain name that your accounts are bound to for example, for a user UPN (User Principal Name) of user1@company.com, <your domain name> will be company.com. Step 1: Connect-MSolService will prompt for user credentials, provide an Office 365 administrative user s credentials. PS C:\Windows\system32> Connect-MsolService Note: Steps 2 and 3 are necessary only if your domain has not already been added to Office 365. If it is already setup, you may skip to step 4. Step 2: After connecting to the MS Online (Office 365) service, create a new domain. Ensure that the domain name matches with an existing public DNS record. PS C:\Windows\system32> New-MsolDomain name adfsns. 7

8 Step 3: Get the DNS record information for the new domain with the following command: PS C:\Windows\system32> Get-MsolDomainVerificationDns DomainName <your domain name> PS C:\Windows\system32> Confirm-MsolDomain DomainName <your domain name> Step 4: Provide a public certificate that will be used in SAML Signing. This is the certificate that was downloaded from the NetScaler device and bound to the AAA vserver. PS C:\Users\administrator.CTXNS\Desktop\Certificates> $cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2( <path to certificate, for example: C:\NS-IDP-Cert.cer> ) PS C:\Users\administrator.CTXNS\Desktop\Certificates> $certdata = [system.convert]::tobase64string($cert.rawdata) Step 5: Create variables and assign domain name and federation brand name. The domain variable value should match with the domain created in Step 2. PS C:\Users\administrator.CTXNS\Desktop\Certificates> $dom = <your domain name> PS C:\Users\administrator.CTXNS\Desktop\Certificates> $fedbrandname = <company brand name, for example: Citrix India> Step 6: Provide the URL for the SAML IdP (Identity Provider), in this case the FQDN (fully qualified domain name) for the AAA vserver that the SAML policies on the NetScaler appliance will be bound to. When NetScaler is acting as a SAML IdP the URL will be <aaavserver domain name>/ saml/login. Note: In the case of NetScaler Gateway acting as a SAML IDP the URL will be Gateway domain name>/saml/login In the case of AAATM, the SAML IDP URL will be domain name>/saml/login. PS C:\Users\administrator.CTXNS\Desktop\Certificates> $url = domain name>/cgi/tmlogout PS C:\Users\administrator.CTXNS\Desktop\Certificates> $uri = <aaavserver domain name>/saml/login PS C:\Users\administrator.CTXNS\Desktop\Certificates> $ecpurl = <aaavserver domain name>/saml/login Note: The ECP protocol URL has been set to the same value as the login URL as there is no unique URL for ECP support. 8

9 Step 7: This is the critical step for configuration of SAML authentication in the Office 365 deployment. PS C:\Users\administrator.CTXNS\Desktop\Certificates> Set- MsolDomainAuthentication -DomainName $dom -federationbrandname $fedbrandname -Authentication Federated -PassiveLogOnUri $url -SigningCertificate $certdata -IssuerUri $uri -ActiveLogOnUri $ecpurl -LogOffUri $url PreferredAuthenticationProtocol SAMLP If the domain being used has already been federated (for example, with ADFS), it needs to be converted to a standard domain before it can be used for federated authentication with NetScaler. Use the following command to convert it to a standard domain before setting new authentication parameters. Convert-MsolDomainToStandard DomainName <your domain name> -SkipUserConversion: $true PasswordFile C:\userpasswords.txt The userpasswords.txt file can be any path on the local hard drive; this command will dump all user passwords from the previously federated setup into this text file for reference. This will complete single sign-on configuration for Office 365 with NetScaler. Step 8: Convert the Domain to Federated. PS C:\Users\administrator.CTXNS\Desktop\Certificates> Convert- MsolDomainToFederated -DomainName <your domain name> If the command is successful, Successfully updated <your domain name> domain is shown at the PowerShell prompt. Verify the federation settings by using the command Get-MsolDomainFederationSettings and confirm that the details are shown as entered (the command will prompt you to provide the domain name, provide <your domain name> as the value). 9

10 Part 2: Configure NetScaler The following configuration is required on the NetScaler appliance for it to be supported as a SAML identity provider for Microsoft Office 365: LDAP authentication policy and server for domain authentication SSL certificate with external and internal DNS configured for the FQDN presented by the certificate (Wildcard certificates are supported.) SAML IDP policy and profile AAA virtual server This guide covers the configuration described above. The SSL certificate and DNS configurations should be in place prior to setup. Configuring LDAP domain authentication For domain users to be able to log on to the NetScaler appliance by using their corporate addresses, you must configure an LDAP authentication server and policy on the appliance and bind it to your AAA VIP address. (Use of an existing LDAP configuration is also supported) 1. In the NetScaler configuration utility, in the navigation pane, select Security > AAA Application Traffic > Policies > Authentication > Basic Policies > LDAP. 2. To create a new LDAP policy: On the Policies tab click Add, and then enter Office365_ LDAP_SSO_Policy as the name. In the Server field, click the + icon to add a new server. The Authentication LDAP Server window appears. 3. In the Name field, enter Office365_LDAP_SSO_Server. 4. Select the bullet for Server IP. Enter the IP address of one of your Active Directory domain controllers. (You can also point to a virtual server IP for the purpose of redundancy if you are load balancing domain controllers) 5. Specify the port that the NetScaler will use to communicate with the domain controller. Use 389 for LDAP or 636 for Secure LDAP (LDAPS). Leave the other settings as they are. 10

11 6. Under Connection Settings, enter the base domain name for the domain in which the user accounts reside within the Active Directory (AD) for which you want to allow authentication. The example below uses cn=users,dc=ctxns,dc=net. 7. In the Administrator Bind DN field, add a domain account (using an address for ease of configuration) that has rights to browse the AD tree. A service account is advisable, so that there will be no issues with logins if the account that is configured has a password expiration. 8. Check the box for Bind DN Password and enter the password twice. 9. Under Other Settings: Enter samaccountname as the Server Logon Name Attribute. 10. In the SSO Name Attribute field, enter UserPrincipalName. Enable the User Required and Referrals options. Leave the other settings as they are. 11

12 11. Click on More at the bottom of the screen, then add mail as Attribute 1 in the Attribute Fields section. Leave Nested Group Extraction in the Disabled state (we are not going to be using this option for this deployment) 12. Click the Create button to complete the LDAP server settings. 13. For the LDAP Policy Configuration, select the newly created LDAP server from the Server drop-down list, and in the Expression field type ns_true. 14. Click the Create button to complete the LDAP Policy and Server configuration. 12

13 Configure the SAML IDP Policy and Profile For your users to receive the SAML token for logging on to Microsoft Office 365, you must configure a SAML IDP policy and profile, and bind them to the AAA virtual server where users credentials are sent. Use the following procedure: 1. Open the NetScaler Configuration Utility and navigate to Security > AAA Application Traffic > Policies > Authentication > Basic Policies > SAML IDP 2. On the Policies Tab, select the Add button. 3. In the Create Authentication SAML IDP Policy Window, provide a name for your policy (for example Office365_SSO_Policy). 4. To the right of the Action field, click the + icon to add a new action or profile. 5. Provide a name (for example, Office365_SSO_Profile). 6. In the Assertion Consumer Service URL field, enter 7. Leave the SP Certificate Name blank. 8. In the IDP Certificate Name field, browse to the certificate installed on the NetScaler that is will be used to secure your AAA authentication Virtual Server. 9. In the Issuer Name field enter Set the Encryption Algorithm to AES256 and leave the Service Provider ID field blank. 11. Set both the Signature and Digest algorithms to SHA Set the SAML Binding to POST. 13

14 13. Click on More, then put urn:federation:microsoftonline in the Audience field. 14. Set the Skew Time to an appropriate value. This is the time difference that will be tolerated between the NetScaler appliance and the Office 365 server for the validity of the SAML assertion. 15. Set the Name ID Format to Persistent, and put http.req.user.name.b64encode in the Name ID Expression field. This directs NetScaler to provide the SSO username attribute (UserPrincipalName) that was defined earlier during LDAP configuration as the user ID for Office Type IDP in the Attribute1 field, then HTTP.REQ.USER.ATTRIBUTE(1) in the Attribute1 Expression field. This will provide the mail attribute added earlier as the ID used by Office 365. This is useful when the ID for a user is different from the User Principal Name listed in Active Directory. 17. Click Create to complete the SAML IDP profile configuration and return to the SAML IDP Policy creation window. 14

15 18. In the Expression field, add the following expression: HTTP.REQ.HEADER( Referer ). CONTAINS( microsoft ) 19. Click Create to complete the SAML IDP Configuration. To Configure your AAA Virtual Server An employee trying to log in to Office 365 is redirected to a NetScaler AAA virtual server which validates the employee s corporate credentials. This virtual server listens on port 443, which requires an SSL certificate, in addition to external and/or internal DNS resolution of the virtual server s IP address on the NetScaler appliance. The following steps require a pre-existing virtual server to be in place and assume that the DNS name resolution is already in place, and that the SSL certificate is already installed on your NetScaler appliance. 1. In the NetScaler Configuration tab navigate to Security > AAA Application Traffic > Virtual Servers and click the Add button. 2. In the Authentication Virtual Server window, enter the virtual server s name and IP address. (av1 and in this example) 3. Scroll down and make sure that the Authentication and State check boxes are selected. 4. Click Continue. 5. In the Certificates section, select No Server Certificate. 6. In the Server Cert Key window, click Bind. 7. Under SSL Certificates, choose your AAA SSL Certificate and select Insert. (Note This is NOT the Office 365 SP certificate.) 8. Click Save, then click Continue. 9. Click Continue again to bypass the Advanced Policy creation option, instead opting to add a Basic Authentication Policy by selecting the + icon on the right side of the window. 10. From the Choose Type window, select Choose Policy from the drop-down list, select LDAP, leaving Primary as the type, and select Continue. 11. Select Bind and from within the Policies window select the Office 365_LDAP_SSO_Policy created earlier. 12. Click OK to return to the Authentication Virtual Server screen. 13. Under Basic Authentication Policies click the + icon on the right to add a second Basic Policy. 14. From the Choose Policy drop-down list, select SAMLIDP, leave Primary as the type, and click Continue. 15. Under Policies select Bind, select your Office 365_SSO_Policy, and click Insert and OK. 16. Click Continue and Done. 15

16 After completing the AAA configuration above, this is how the Basic Settings screen of the AAA vserver will look: Validate the configuration Point your browser to In the or phone field, provide the UPN (which serves as the user ID for Office 365) for your enterprise user account. Upon typing the same and switching to the password field, you should be redirected to the NetScaler AAA logon form. Log in with user credentials that are valid for the NetScaler environment you just configured. Your Office 365 folders and applications should appear. 16

17 Troubleshooting In order to help while troubleshooting, here is the list of entries that will be observed in the ns.log file (located at /var/log on the NetScaler appliance) for a successful SAML login (note that some of the entries such as encrypted hash values etc. will vary) Section 1: The NetScaler receives the authentication request from Office 365 Jan 18 02:14:21 <local0.debug> /18/2016:02:14:21 GMT 0-PPE-0 : default SSLLOG SSL_HANDSHAKE_SUCCESS : SPCBId ClientIP ClientPort VserverServiceIP VserverServicePort ClientVersion TLSv1.0 - CipherSuite AES-256-CBC-SHA TLSv1 Non-Export 256-bit - Session New Jan 18 02:14:21 <local0.info> /18/2016:02:14:21 GMT 0-PPE-0 : default AAATM Message : Parse SAML authn_request: couldnt find ACS after finding AuthnRequest tag, ignoring (Note: this is not an error, the authentication will proceed normally) Jan 18 02:14:22 <local0.debug> /18/2016:02:14:22 GMT 0-PPE-0 : default SSLLOG SSL_HANDSHAKE_SUCCESS : SPCBId ClientIP ClientPort VserverServiceIP VserverServicePort ClientVersion TLSv1.0 - CipherSuite AES-256-CBC-SHA TLSv1 Non-Export 256-bit - Session Reuse 17

18 Section 2: Messages indicating successful authentication and extraction of parameters from the backend LDAP server. Jan 18 02:14:32 <local0.info> /18/2016:02:14:32 GMT 0-PPE-0 : default AAA Message : In update_aaa_cntr: Succeeded policy for user administrator = ldap2 Jan 18 02:14:32 <local0.debug> /18/2016:02:14:32 GMT 0-PPE-0 : default AAATM Message : extracted SSOusername: Administrator@CTXNS.net for user administrator Jan 18 02:14:32 <local0.debug> /18/2016:02:14:32 GMT 0-PPE-0 : default SSLVPN Message : sslvpn_extract_attributes_from_resp: attributes copied so far are Administrator@ctxns.com Jan 18 02:14:32 <local0.debug> /18/2016:02:14:32 GMT 0-PPE-0 : default SSLVPN Message : sslvpn_extract_attributes_from_resp: total len copied 28, mask 0x1 Section 3: Messages verifying SAML transaction and sending of SAML assertion with signature Jan 18 02:14:32 <local0.debug> /18/2016:02:14:32 GMT 0-PPE-0 : default AAATM Message : SAMLIDP: Checking whether current flow is SAML IdP flow, input U0ZEQ19TQU1MAElEPV84MzZiNGE5Mi01OWU1LTRmZDEtYjRmOS05N jbizwmxmty0yjamymluzd1wb3n0jkf4n2twtephwgc5mehht1pnakhsn0rsbe9tyku= Jan 18 02:14:32 <local0.info> /18/2016:02:14:32 GMT 0-PPE-0 : default AAA EXTRACTED_GROUPS : Extracted_groups ADSyncAdmins,ReportingGroup {133115cba0b1-4a96-83db-2f4828ba1ecf},SQLAccessGroup {133115cb-a0b1-4a96-83db-2f4828ba1ecf},PrivUserGroup {133115cb-a0b1-4a96-83db- 2f4828ba1ecf},VPN-USER,RadiusUser,LyncDL,ContentSubmitters,Organization Management,CSAdmin istrator,rtcuniversaluseradmins,rtcuniversalserveradmins,group Policy Creator Owners,Domain Admins,Enterprise Admins,Schema Admins,Administrators Jan 18 02:14:32 <local0.info> /18/2016:02:14:32 GMT 0-PPE-0 : default AAATM LOGIN : Context administrator@ SessionId: 34- User administrator - Client_ip Nat_ip Mapped Ip - Vserver :443 - Browser_type Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko - Group(s) N/A 18

19 Jan 18 02:14:32 <local0.debug> /18/2016:02:14:32 GMT 0-PPE-0 : default AAATM Message : SAMLIDP: Checking whether current flow is SAML IdP flow, input U0ZEQ19TQU1MAElEPV84MzZiNGE5Mi01OWU1L TRmZDEtYjRmOS05NjBiZWMxMTY0YjAmYmluZD1wb3N0JkF4N2tWTEphWGc5MEhHT1pnakhSN0RSbE9tYkU= Jan 18 02:14:32 <local0.debug> /18/2016:02:14:32 GMT 0-PPE-0 : default SSLVPN Message : UnifiedGateway: SSOID update skipped due to StepUp or LoginOnce OFF, user: administrator Jan 18 02:14:32 <local0.debug> /18/2016:02:14:32 GMT 0-PPE-0 : default AAATM Message : SAML: SendAssertion: Response tag is <samlp:response xmlns:sam lp= urn:oasis:names:tc:saml:2.0:protocol Destination= com/login.srf ID= _eb2de2e7d944c358296c3789aecd3095 InResponseTo= _836b4a92-59e5-4fd1- b4f9-960bec1164b0 IssueInstant= T02:14:32Z Version= 2.0 ><saml:issuer xmlns :saml= urn:oasis:names:tc:saml:2.0:assertion Format= urn:oasis:names:tc:saml:2.0:name id-format:entity > p:statuscode Value= urn:oasis:names:tc:saml:2.0:status:success ></samlp:statuscode></ samlp:status> Jan 18 02:14:32 <local0.debug> /18/2016:02:14:32 GMT 0-PPE-0 : default AAATM Message : SAML: SendAssertion: Assertion tag is <saml:assertion xmlns:sa ml= urn:oasis:names:tc:saml:2.0:assertion ID= _eb2de2e7d944c358296c3789aecd309 IssueInstant= T02:14:32Z Version= 2.0 ><saml:issuer Format= urn:oasis:names: tc:saml:2.0:nameid-format:entity > ml:subject><saml:nameid Format= urn:oasis:names:tc:saml:2.0:nameid-format:persistent >Q WRtaW5pc3RyYXRvckBDVFhOUy5uZXQ=</saml:NameID><saml:SubjectConfirmation Method= urn:oasis:names:tc:saml:2.0:cm:bearer ><saml:subjectconfirmationdata InResponseTo= _836b4a92-59e5-4fd1-b4f9-960bec1164b0 NotOnOrAfter= T02:19:32Z Recipient= ></saml:subjectconfirmationdata></ saml:subjectconfirmation></saml:subject><saml:conditions NotBefore= T02:09:32Z NotOnOrAfter= T02:19:32Z ><saml:audiencerestriction><saml:audience>urn:federa tion:microsoftonline</saml:audience></sam Jan 18 02:14:32 <local0.debug> /18/2016:02:14:32 GMT 0-PPE-0 : default AAATM Message : SAMLIDP: SendAssertion: Copying attribute Administrator@ctxns. com to response 19

20 Jan 18 02:14:32 <local0.debug> /18/2016:02:14:32 GMT 0-PPE-0 : default AAATM Message : SAML: SendAssertion, Digest Method SHA1, SignedInfo used for digest is <ds:signedinfo xmlns:ds= ><ds:c anonicalizationmethod Algorithm= ></ds:canoni calizationmethod><ds:signaturemethod Algorithm= xmldsig#rsa-sha1 ></ds:signaturemethod><ds:reference URI= #_eb2de2e7d944c358296c3789a ecd309 ><ds:transforms><ds:transform Algorithm= xmldsig#enveloped-signature ></ds:transform><ds:transform Algorithm= w3.org/2001/10/xml-exc-c14n# ></ds:transform></ds:transforms><ds:digestmethod Algorithm= ></ds:digestmethod><ds:digestvalue> ttffyb7amq4nvr/aibxn9wgyq8g=</ds:digestvalue></ds:reference></ds:signedinfo> Jan 18 02:14:32 <local0.debug> /18/2016:02:14:32 GMT 0-PPE-0 : default AAATM Message : SAML: SendAssertion, Signature element is <ds:signature xmlns:ds= ><ds:signedinfo xmlns:ds= ><ds:canonicalizationmethod Algorithm= ></ds:canonicalizationmethod><ds:s ignaturemethod Algorithm= ></ds:signaturem ethod><ds:reference URI= #_eb2de2e7d944c358296c3789aecd309 ><ds:transforms><ds:transf orm Algorithm= ></ ds:transform><ds:transform Algorithm= ></ ds:transform></ds:transforms><ds:digestmethod Algorithm= xmldsig#sha1 ></ds:digestmethod><ds:digestvalue>ttffyb7amq4nvr/aibxn9wgyq8g=</ ds:digestvalue></ds:reference></ds:signedinfo><ds:signaturevalue>hwbfuguizr7eijst7fw4 lrxwe3/u8xh/ehsd0jbvauigbokcut7lwbrqi97fzjrepfcn5+efq/jbvwm8k6buxjx7pkig19ojggkvuxma- VWpdPDjpyZRNXB17/cIQ Jan 18 02:14:33 <local0.debug> /18/2016:02:14:33 GMT 0-PPE-0 : default SSLVPN Message : core 0: initclientforreuse: making aaa_service_ fqdn_len 0 Additional Resources Microsoft lists the generic required configuration for SAML 2.0 compliant identity providers to function effectively with Office 365 at aspx 20

21 Conclusion NetScaler provides a secure and seamless experience with Office 365 by enabling single sign-on into Office 365 accounts, avoiding the need for users to remember multiple passwords and user IDs, while reducing the administrative overhead involved in maintaining these deployments. Corporate Headquarters Fort Lauderdale, FL, USA India Development Center Bangalore, India Latin America Headquarters Coral Gables, FL, USA Silicon Valley Headquarters Santa Clara, CA, USA Online Division Headquarters Santa Barbara, CA, USA UK Development Center Chalfont, United Kingdom EMEA Headquarters Schaffhausen, Switzerland Pacific Headquarters Hong Kong, China About Citrix Citrix (NASDAQ:CTXS) is leading the transition to software-defining the workplace, uniting virtualization, mobility management, networking and SaaS solutions to enable new ways for businesses and people to work better. Citrix solutions power business mobility through secure, mobile workspaces that provide people with instant access to apps, desktops, data and communications on any device, over any network and cloud. With annual revenue in 2014 of $3.14 billion, Citrix solutions are in use at more than 330,000 organizations and by over 100 million users globally. Learn more at Copyright 2016 Citrix Systems, Inc. All rights reserved. Citrix and NetScaler are trademarks of Citrix Systems, Inc. and/or one of its subsidiaries, and may be registered in the U.S. and other countries. Other product and company names mentioned herein may be trademarks of their respective companies /PDF 21

Single Sign On for ZenDesk with NetScaler. Deployment Guide

Single Sign On for ZenDesk with NetScaler. Deployment Guide Deployment Guide Single Sign On for ZenDesk with NetScaler Deployment Guide This deployment guide focuses on defining the process for enabling Single Sign On into ZenDesk with Citrix NetScaler. Table of

More information

Single Sign On for GoToMeeting with NetScaler

Single Sign On for GoToMeeting with NetScaler Deployment Guide Single Sign On for GoToMeeting with NetScaler Deployment Guide This deployment guide focuses on defining the process for enabling Single Sign On into GoToMeeting with Citrix NetScaler.

More information

Single Sign On for Google Apps with NetScaler. Deployment Guide

Single Sign On for Google Apps with NetScaler. Deployment Guide Deployment Guide Single Sign On for Google Apps with NetScaler Deployment Guide This deployment guide focuses on defining the process for enabling Single Sign On into Google Apps for Work with Citrix NetScaler.

More information

This guide identifies two possible enterprise integration scenarios for NetScaler and Azure AD.

This guide identifies two possible enterprise integration scenarios for NetScaler and Azure AD. Solution Guide Integrating NetScaler with Microsoft Azure Active Directory Enterprise Use Case Guidelines Enable NetScaler integration with Azure AD for XenApp and XenDesktop delivery as well as enterprise

More information

Single Sign On for ShareFile with NetScaler. Deployment Guide

Single Sign On for ShareFile with NetScaler. Deployment Guide Single Sign On for ShareFile with NetScaler Deployment Guide This deployment guide focuses on defining the process for enabling Single Sign On into Citrix ShareFile with Citrix NetScaler. Table of Contents

More information

icrosoft TMG Replacement with NetScaler

icrosoft TMG Replacement with NetScaler icrosoft TMG Replacement with NetScaler Replacing Microsoft Forefront TMG with NetScaler for secure VPN access Table of contents Introduction 3 Configuration details 3 NetScaler features to be enabled

More information

Deploying NetScaler Gateway in ICA Proxy Mode

Deploying NetScaler Gateway in ICA Proxy Mode Deploying NetScaler Gateway in ICA Proxy Mode Deployment Guide This deployment guide defines the configuration required for using the NetScaler Gateway in ICA Proxy Mode. Table of Contents Introduction

More information

Using Vasco IDENTIKEY Server with NetScaler

Using Vasco IDENTIKEY Server with NetScaler Using Vasco IDENTIKEY Server with NetScaler Deployment Guide This deployment guide describes the process for deploying Vasco IDENTIKEY server with NetScaler to enable secure authentication for application

More information

How To Use Netscaler As An Afs Proxy

How To Use Netscaler As An Afs Proxy Deployment Guide Guide to Deploying NetScaler as an Active Directory Federation Services Proxy Enabling seamless authentication for Office 365 use cases Table of Contents Introduction 3 ADFS proxy deployment

More information

Microsoft Dynamics CRM 2015 with NetScaler for Global Server Load Balancing

Microsoft Dynamics CRM 2015 with NetScaler for Global Server Load Balancing Microsoft Dynamics CRM 2015 with NetScaler for Global Server Load Balancing Solution Guide This solution guide focuses on defining the deployment process for Microsoft Dynamics CRM with Citrix NetScaler.

More information

Citrix NetScaler and Microsoft SharePoint 2013 Hybrid Deployment Guide

Citrix NetScaler and Microsoft SharePoint 2013 Hybrid Deployment Guide Citrix NetScaler and Microsoft SharePoint 2013 Hybrid Deployment Guide 2013 Deployment Guide Table of Contents Overview 3 SharePoint Hybrid Deployment Overview 3 Workflow 4 Step by Step Configuration on

More information

Microsoft SharePoint 2013 with Citrix NetScaler

Microsoft SharePoint 2013 with Citrix NetScaler Deployment Guide Microsoft SharePoint 2013 with Citrix NetScaler Deployment Guide citrix.com Table of contents Introduction 3 NetScaler value-add to SharePoint 4 Product versions and prerequisites 4 Deploying

More information

Solution Guide. Optimizing Microsoft SharePoint 2013 with Citrix NetScaler. citrix.com

Solution Guide. Optimizing Microsoft SharePoint 2013 with Citrix NetScaler. citrix.com Solution Guide Optimizing Microsoft SharePoint 2013 with Citrix NetScaler Table of Contents Overview of SharePoint 2013 3 Why NetScaler Optimization Solution for SharePoint 2013? 3 Product Versions and

More information

Configuring Citrix NetScaler for IBM WebSphere Application Services

Configuring Citrix NetScaler for IBM WebSphere Application Services White Paper Configuring Citrix NetScaler for IBM WebSphere Application Services A deployment guide for configuring NetScaler load balancing and content switching When deploying IBM WebSphere Application

More information

Solutions Guide. Deploying Citrix NetScaler with Microsoft Exchange 2013 for GSLB. citrix.com

Solutions Guide. Deploying Citrix NetScaler with Microsoft Exchange 2013 for GSLB. citrix.com Deploying Citrix NetScaler with Microsoft Exchange 2013 for GSLB Table of Contents Introduction 3 Overview of Microsoft Exchange 2013 3 Why NetScaler GSLB for Exchange 2013? 3 Topology 3 Single Namespace

More information

Microsoft TMG Replacement with NetScaler

Microsoft TMG Replacement with NetScaler Microsoft TMG Replacement with NetScaler Replacing Microsoft Forefront TMG with NetScaler for Optimization This deployment guide focuses on replacing Microsoft Forefront Threat Management Gateway (TMG)

More information

Securing Outlook Web Access (OWA) 2013 with NetScaler AppFirewall

Securing Outlook Web Access (OWA) 2013 with NetScaler AppFirewall Solution Guide Securing Outlook Web Access (OWA) 2013 with NetScaler AppFirewall Solution Guide This solution guide provides guidelines for securing Exchange 2013 Outlook Web Access (OWA) with NetScaler

More information

Deploying Microsoft Dynamics CRM 2015 with NetScaler

Deploying Microsoft Dynamics CRM 2015 with NetScaler Deploying Microsoft Dynamics CRM 2015 with NetScaler Deployment Guide This deployment guide focuses on defining the deployment process for Microsoft Dynamics CRM with Citrix NetScaler. It includes information

More information

Deploying NetScaler with Microsoft Exchange 2016

Deploying NetScaler with Microsoft Exchange 2016 Deployment Guide Deploying NetScaler with Microsoft Exchange 2016 Deployment Guide Load balancing Microsoft Exchange 2016 with NetScaler Table of Contents Introduction 3 Configuration 5 NetScaler features

More information

Guide to Deploying Microsoft Exchange 2013 with Citrix NetScaler

Guide to Deploying Microsoft Exchange 2013 with Citrix NetScaler Deployment Guide Guide to Deploying Microsoft Exchange 2013 with Citrix NetScaler Extensive guide covering details of NetScaler ADC deployment with Microsoft Exchange 2013. Table of Contents Introduction

More information

Provisioning ShareFile on Microsoft Azure Storage

Provisioning ShareFile on Microsoft Azure Storage ShareFile StorageZones Provisioning ShareFile on Microsoft Azure Storage This document provides a technical overview of how ShareFile can be provisioned on customermanaged, Microsoft Azure cloud storage

More information

Configuring Single Sign-On from the VMware Identity Manager Service to Office 365

Configuring Single Sign-On from the VMware Identity Manager Service to Office 365 Configuring Single Sign-On from the VMware Identity Manager Service to Office 365 VMware Identity Manager JULY 2015 V1 Table of Contents Overview... 2 Passive and Active Authentication Profiles... 2 Adding

More information

Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER

Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER Table of Contents Introduction.... 3 Requirements.... 3 Horizon Workspace Components.... 3 SAML 2.0 Standard.... 3 Authentication

More information

Solutions Guide. Deploying Citrix NetScaler for Global Server Load Balancing of Microsoft Lync 2013. citrix.com

Solutions Guide. Deploying Citrix NetScaler for Global Server Load Balancing of Microsoft Lync 2013. citrix.com Solutions Guide Deploying Citrix NetScaler for Global Server Load Balancing of Microsoft Lync 2013 Table of Contents Introduction 3 Overview of Microsoft Lync 2013 3 Why NetScaler GSLB Solution for Lync

More information

Citrix Workspace Cloud Apps and Desktop Service with an on-premises Resource Reference Architecture

Citrix Workspace Cloud Apps and Desktop Service with an on-premises Resource Reference Architecture Citrix Workspace Cloud Apps and Desktop Service with an on-premises Resource Reference Architecture Produced by Citrix Solutions Lab This guide walks you through an example of how to use Citrix Workspace

More information

How To Install A Citrix Netscaler On A Pc Or Mac Or Ipad (For A Web Browser) With A Certificate Certificate (For An Ipad) On A Netscaler (For Windows) With An Ipro (For

How To Install A Citrix Netscaler On A Pc Or Mac Or Ipad (For A Web Browser) With A Certificate Certificate (For An Ipad) On A Netscaler (For Windows) With An Ipro (For Deployment Guide Deployment Guide VeriSign Certificate Authority Citrix NetScaler SSL Deployment Guide Notice: The information in this publication is subject to change without notice. THIS PUBLICATION

More information

webnetwork Office 365 SSO integration v10-30-2015

webnetwork Office 365 SSO integration v10-30-2015 webnetwork Office 365 SSO integration v10-30-2015 Guide will cover: How to configure webnetwork SAML application How to prepare Office 365 for Single Sign-On How to configure Office 365 Single Sign-On

More information

Safeguard Protected Health Information With Citrix ShareFile

Safeguard Protected Health Information With Citrix ShareFile Safeguard Protected Health Information With Citrix ShareFile This enterprise file sync and sharing solution supports HIPAA compliance, boosts security and mobilizes data access Citrix ShareFile helps healthcare

More information

Solution Guide for Citrix NetScaler and Cisco APIC EM

Solution Guide for Citrix NetScaler and Cisco APIC EM Solution Guide for Citrix NetScaler and Cisco APIC EM Orchestrating Network QoS policy for delivering enhanced video experience to XenDesktop users Table of contents Solution Overview 3 Executive Summary

More information

Citrix Lifecycle Management

Citrix Lifecycle Management Citrix Lifecycle Management Comprehensive cloud-based service lifecycle management solution IT administrators are realizing that application deployments are getting more complex and error-prone than ever

More information

Deployment Guide ICA Proxy for XenApp

Deployment Guide ICA Proxy for XenApp Deployment Guide ICA Proxy for XenApp Access Gateway Enterprise Edition (NetScaler AGEE) www.citrix.com Table of Contents Introduction...3 Solution Requirements...4 Prerequisites...4 Network Diagram...5

More information

Citrix ShareFile Enterprise: a technical overview citrix.com

Citrix ShareFile Enterprise: a technical overview citrix.com Citrix ShareFile Enterprise: a technical overview White Paper Citrix ShareFile Enterprise: a technical overview 2 The role of IT organizations is changing rapidly as the forces of consumerization pose

More information

Configuration Guide. BES12 Cloud

Configuration Guide. BES12 Cloud Configuration Guide BES12 Cloud Published: 2016-04-08 SWD-20160408113328879 Contents About this guide... 6 Getting started... 7 Configuring BES12 for the first time...7 Administrator permissions you need

More information

Authentication in XenMobile 8.6 with a Focus on Client Certificate Authentication

Authentication in XenMobile 8.6 with a Focus on Client Certificate Authentication Authentication in XenMobile 8.6 with a Focus on Client Certificate Authentication Authentication is about security and user experience and balancing the two goals. This document describes the authentication

More information

Configuring the BIG-IP APM as a SAML 2.0 Identity Provider for Microsoft Office 365

Configuring the BIG-IP APM as a SAML 2.0 Identity Provider for Microsoft Office 365 Configuring the BIG-IP APM as a SAML 2.0 Identity Provider for Microsoft Office 365 Welcome to the F5 deployment guide for configuring the BIG-IP Access Policy Manager (APM) to act as a SAML Identity Provider

More information

Replacing Microsoft Forefront TMG with Citrix NetScaler for enterprise authentication

Replacing Microsoft Forefront TMG with Citrix NetScaler for enterprise authentication NetScaler deployment guide Replacing Microsoft Forefront TMG with Citrix NetScaler for enterprise authentication Prepared by: Abhishek RVRK Sharma, Networking and Cloud Authors The following authors contributed

More information

VMware Identity Manager Administration

VMware Identity Manager Administration VMware Identity Manager Administration VMware Identity Manager 2.4 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

SAML 2.0 SSO Deployment with Okta

SAML 2.0 SSO Deployment with Okta SAML 2.0 SSO Deployment with Okta Simplify Network Authentication by Using Thunder ADC as an Authentication Proxy DEPLOYMENT GUIDE Table of Contents Overview...3 The A10 Networks SAML 2.0 SSO Deployment

More information

Powering Real-Time Mobile Access to Critical Information With Citrix ShareFile

Powering Real-Time Mobile Access to Critical Information With Citrix ShareFile Powering Real-Time Mobile Access to Critical Information With Citrix ShareFile An enterprise file sync and sharing solution built for the needs of the energy, oil and gas industry to provide employee and

More information

Only LDAP-synchronized users can access SAML SSO-enabled web applications. Local end users and applications users cannot access them.

Only LDAP-synchronized users can access SAML SSO-enabled web applications. Local end users and applications users cannot access them. This chapter provides information about the Security Assertion Markup Language (SAML) Single Sign-On feature, which allows administrative users to access certain Cisco Unified Communications Manager and

More information

LAB 2: Identity Management

LAB 2: Identity Management LAB 2: Identity Management Contents Lab 2: Identity Management... 2 Exercise 1: install and configure prerequisites for configuring AD FS... 3 Tasks... 3 Exercise 2: adding and verifying a standard domain

More information

Office 365 deployment checklists

Office 365 deployment checklists Chapter 128 Office 365 deployment checklists This document provides some checklists to help you make sure that you install and configure your Office 365 deployment correctly and with a minimum of issues.

More information

Microsoft Office 365 Using SAML Integration Guide

Microsoft Office 365 Using SAML Integration Guide Microsoft Office 365 Using SAML Integration Guide Revision A Copyright 2013 SafeNet, Inc. All rights reserved. All attempts have been made to make the information in this document complete and accurate.

More information

White Paper. Protecting Mobile Apps with Citrix XenMobile and MDX. citrix.com

White Paper. Protecting Mobile Apps with Citrix XenMobile and MDX. citrix.com Protecting Mobile Apps with Citrix XenMobile and MDX citrix.com Mobility is a top priority for organizations as more employees demand access to the apps and data that will make them productive. Employees

More information

Configuring the BIG-IP APM as a SAML 2.0 Identity Provider for Microsoft Office 365

Configuring the BIG-IP APM as a SAML 2.0 Identity Provider for Microsoft Office 365 Deployment Guide Configuring the BIG-IP APM as a SAML 2.0 Identity Provider for Microsoft Oice 365 Welcome to the F5 deployment guide for configuring the BIG-IP Access Policy Manager (APM) to act as a

More information

Step-by-Step guide for SSO from MS Sharepoint 2010 to SAP EP 7.0x

Step-by-Step guide for SSO from MS Sharepoint 2010 to SAP EP 7.0x Step-by-Step guide for SSO from MS Sharepoint 2010 to SAP EP 7.0x Sverview Trust between SharePoint 2010 and ADFS 2.0 Use article Federated Collaboration with Shibboleth 2.0 and SharePoint 2010 Technologies

More information

Cloud Authentication. Getting Started Guide. Version 2.1.0.06

Cloud Authentication. Getting Started Guide. Version 2.1.0.06 Cloud Authentication Getting Started Guide Version 2.1.0.06 ii Copyright 2011 SafeNet, Inc. All rights reserved. All attempts have been made to make the information in this document complete and accurate.

More information

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365 Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365 May 2015 This guide describes how to configure Microsoft Office 365 for use with Dell One Identity Cloud Access Manager

More information

Office 365 deploym. ployment checklists. Chapter 27

Office 365 deploym. ployment checklists. Chapter 27 Chapter 27 Office 365 deploym ployment checklists This document provides some checklists to help you make sure that you install and configure your Office 365 deployment correctly and with a minimum of

More information

Mobilize Email with Enterprise-Grade Security and a Great Experience

Mobilize Email with Enterprise-Grade Security and a Great Experience White Paper Mobilize Email with Enterprise-Grade Security and a Great Experience Data protection for your business. Flexibility for IT. Seamless productivity for your workforce. People need to be able

More information

Configuring ADFS 3.0 to Communicate with WhosOnLocation SAML

Configuring ADFS 3.0 to Communicate with WhosOnLocation SAML Configuring ADFS 3.0 to Communicate with WhosOnLocation SAML --------------------------------------------------------------------------------------------------------------------------- Contents Overview...

More information

App Orchestration 2.5

App Orchestration 2.5 Configuring NetScaler 10.5 Load Balancing with StoreFront 2.5.2 and NetScaler Gateway for Prepared by: James Richards Last Updated: August 20, 2014 Contents Introduction... 3 Configure the NetScaler load

More information

SAM Context-Based Authentication Using Juniper SA Integration Guide

SAM Context-Based Authentication Using Juniper SA Integration Guide SAM Context-Based Authentication Using Juniper SA Integration Guide Revision A Copyright 2012 SafeNet, Inc. All rights reserved. All attempts have been made to make the information in this document complete

More information

Citrix ShareFile Enterprise technical overview

Citrix ShareFile Enterprise technical overview Citrix ShareFile Enterprise technical overview 2 The role of IT organizations is changing rapidly as the forces of consumerization pose new challenges. IT is transitioning from the sole provider of user

More information

The Office Reinvented: Mobile Workspaces are the Future of Work

The Office Reinvented: Mobile Workspaces are the Future of Work The Office Reinvented: Mobile Workspaces are the Future of Work How Citrix, Google and Samsung enable secure business mobility. Business mobility empowers people with a convenient and complete work experience

More information

365 Services. 1.1 Configuring Access Manager. 1.1.1 Prerequisite. 1.1.2 Adding the Office 365 Metadata. docsys (en) 2 August 2012

365 Services. 1.1 Configuring Access Manager. 1.1.1 Prerequisite. 1.1.2 Adding the Office 365 Metadata. docsys (en) 2 August 2012 1 1Configuring Single Sign-On For Office 365 Services NetIQ Access Manager is compatible with Office 365 and provides single sign on access to Office 365 services. Single sign on access is supported for

More information

Cisco and Citrix: Building Application Centric, ADC-enabled Data Centers

Cisco and Citrix: Building Application Centric, ADC-enabled Data Centers : Building Application Centric, ADC-enabled Data Centers Cisco Application Centric Infrastructure (ACI) integrates Citrix NetScaler Application Delivery Controller (ADC) appliances to reduce deployment

More information

Copyright 2012 Trend Micro Incorporated. All rights reserved.

Copyright 2012 Trend Micro Incorporated. All rights reserved. Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the software, please review the readme files,

More information

Investment Management System. Connectivity Guide. IMS Connectivity Guide Page 1 of 11

Investment Management System. Connectivity Guide. IMS Connectivity Guide Page 1 of 11 Investment Management System Connectivity Guide IMS Connectivity Guide Page 1 of 11 1. Introduction This document details the necessary steps and procedures required for organisations to access the Homes

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Single Sign-On Configuration Guide 6.2.6 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

White Paper. The Value Add of Citrix Enterprise Mobility Management over App Configuration for the Enterprise. citrix.com

White Paper. The Value Add of Citrix Enterprise Mobility Management over App Configuration for the Enterprise. citrix.com White Paper The Value Add of Citrix Enterprise Mobility Management over App Configuration for the Enterprise citrix.com App Configuration for Enterprise (ACE) was introduced by AirWatch. AirWatch describes

More information

Sharepoint server SSO

Sharepoint server SSO Configuring g on-premise Sharepoint server SSO Chapter 99 You can now provide single sign-on to your on-premise Sharepoint server applications. This section includes the following topics: "An overview

More information

Powering real-time mobile access to critical information with ShareFile

Powering real-time mobile access to critical information with ShareFile Powering real-time mobile access to critical information with ShareFile An enterprise file sync and sharing solution built for the needs of the energy, oil and gas industry to provide employee and third-party

More information

How To Use Saml 2.0 Single Sign On With Qualysguard

How To Use Saml 2.0 Single Sign On With Qualysguard QualysGuard SAML 2.0 Single Sign-On Technical Brief Introduction Qualys provides its customer the option to use SAML 2.0 Single Sign On (SSO) authentication with their QualysGuard subscription. When implemented,

More information

Cisco and Citrix: Building Application Centric, ADC-enabled Data Centers

Cisco and Citrix: Building Application Centric, ADC-enabled Data Centers Solutions Brief : Building Application Centric, ADC-enabled Data Centers Cisco Application Centric Infrastructure (ACI) integrates Citrix NetScaler Application Delivery Controller (ADC) appliances to reduce

More information

ADFS Integration Guidelines

ADFS Integration Guidelines ADFS Integration Guidelines Version 1.6 updated March 13 th 2014 Table of contents About This Guide 3 Requirements 3 Part 1 Configure Marcombox in the ADFS Environment 4 Part 2 Add Relying Party in ADFS

More information

Setting Up Resources in VMware Identity Manager

Setting Up Resources in VMware Identity Manager Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.4 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

VMware Identity Manager Administration

VMware Identity Manager Administration VMware Identity Manager Administration VMware Identity Manager 2.6 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

This chapter describes how to use the Junos Pulse Secure Access Service in a SAML single sign-on deployment. It includes the following sections:

This chapter describes how to use the Junos Pulse Secure Access Service in a SAML single sign-on deployment. It includes the following sections: CHAPTER 1 SAML Single Sign-On This chapter describes how to use the Junos Pulse Secure Access Service in a SAML single sign-on deployment. It includes the following sections: Junos Pulse Secure Access

More information

Section 1, Configuring Access Manager, on page 1 Section 2, Configuring Office 365, on page 4 Section 3, Verifying Single Sign-On Access, on page 5

Section 1, Configuring Access Manager, on page 1 Section 2, Configuring Office 365, on page 4 Section 3, Verifying Single Sign-On Access, on page 5 Configuring Single Sign-On For Office 365 Services NetIQ Access Manager is compatible with Microsoft Office 365 and provides single sign-on access to Office 365 services. Single sign-on access is supported

More information

Test Lab Guide: Creating a Windows Azure AD and Windows Server AD Environment using Azure AD Sync

Test Lab Guide: Creating a Windows Azure AD and Windows Server AD Environment using Azure AD Sync Test Lab Guide: Creating a Windows Azure AD and Windows Server AD Environment using Azure AD Sync Microsoft Corporation Published: December 2014 Author: Mark Grimes Acknowledgements Special thanks to the

More information

Migrating Exchange Server to Office 365

Migrating Exchange Server to Office 365 Migrating Exchange Server to Office 365 By: Brien M. Posey CONTENTS Domain Verification... 3 IMAP Migration... 4 Cut Over and Staged Migration Prep Work... 5 Cut Over Migrations... 6 Staged Migration...

More information

WHITE PAPER Citrix Secure Gateway Startup Guide

WHITE PAPER Citrix Secure Gateway Startup Guide WHITE PAPER Citrix Secure Gateway Startup Guide www.citrix.com Contents Introduction... 2 What you will need... 2 Preparing the environment for Secure Gateway... 2 Installing a CA using Windows Server

More information

Taking Windows Mobile on Any Device

Taking Windows Mobile on Any Device Taking Windows Mobile on Any Device As the adoption of mobile devices continues to expand, IT organizations are challenged to keep up with the mobile demands of today s fast-paced workforce and at the

More information

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure for SSO to SAP NetWeaver using SAML 2.0

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure for SSO to SAP NetWeaver using SAML 2.0 Dell One Identity Cloud Access Manager 8.0.1 - How to Configure for SSO to SAP NetWeaver using SAML 2.0 May 2015 About this guide Prerequisites and requirements NetWeaver configuration Legal notices About

More information

Lync Online Deployment Guide. Version 1.0

Lync Online Deployment Guide. Version 1.0 Date 28/07/2014 Table of Contents 1. Provisioning Lync Online... 1 1.1 Operating System Requirements... 1 1.2 Browser Requirements Administrative Centre... 1 2. Obtaining your login Credentials & Logging

More information

Google Apps Deployment Guide

Google Apps Deployment Guide CENTRIFY DEPLOYMENT GUIDE Google Apps Deployment Guide Abstract Centrify provides mobile device management and single sign-on services that you can trust and count on as a critical component of your corporate

More information

Top Three Reasons to Deliver Web Apps with App Virtualization

Top Three Reasons to Deliver Web Apps with App Virtualization Top Three Reasons to Deliver Web Apps with App Virtualization Improve manageability, security and performance for browser-based apps. Web browsers can cause many of the same headaches as any other Windows

More information

Centrify Cloud Connector Deployment Guide

Centrify Cloud Connector Deployment Guide C E N T R I F Y D E P L O Y M E N T G U I D E Centrify Cloud Connector Deployment Guide Abstract Centrify provides mobile device management and single sign-on services that you can trust and count on as

More information

Authentication Methods

Authentication Methods Authentication Methods Overview In addition to the OU Campus-managed authentication system, OU Campus supports LDAP, CAS, and Shibboleth authentication methods. LDAP users can be configured through the

More information

F-Secure Messaging Security Gateway. Deployment Guide

F-Secure Messaging Security Gateway. Deployment Guide F-Secure Messaging Security Gateway Deployment Guide TOC F-Secure Messaging Security Gateway Contents Chapter 1: Deploying F-Secure Messaging Security Gateway...3 1.1 The typical product deployment model...4

More information

CA Performance Center

CA Performance Center CA Performance Center Single Sign-On User Guide 2.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is

More information

OneLogin Integration User Guide

OneLogin Integration User Guide OneLogin Integration User Guide Table of Contents OneLogin Account Setup... 2 Create Account with OneLogin... 2 Setup Application with OneLogin... 2 Setup Required in OneLogin: SSO and AD Connector...

More information

McAfee Cloud Identity Manager

McAfee Cloud Identity Manager SAML2 Cloud Connector Guide McAfee Cloud Identity Manager version 1.2 or later COPYRIGHT Copyright 2013 McAfee, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed,

More information

Security Assertion Markup Language (SAML) Site Manager Setup

Security Assertion Markup Language (SAML) Site Manager Setup Security Assertion Markup Language (SAML) Site Manager Setup Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and

More information

Advanced Service Desk Security

Advanced Service Desk Security Advanced Service Desk Security Robust end-to-end security measures have been built into the GoToAssist Service Desk architecture to ensure the privacy and integrity of all data. gotoassist.com Many service

More information

Tenrox. Single Sign-On (SSO) Setup Guide. January, 2012. 2012 Tenrox. All rights reserved.

Tenrox. Single Sign-On (SSO) Setup Guide. January, 2012. 2012 Tenrox. All rights reserved. Tenrox Single Sign-On (SSO) Setup Guide January, 2012 2012 Tenrox. All rights reserved. About this Guide This guide provides a high-level technical overview of the Tenrox Single Sign-On (SSO) architecture,

More information

Single Sign-On Implementation Guide

Single Sign-On Implementation Guide Salesforce.com: Salesforce Winter '09 Single Sign-On Implementation Guide Copyright 2000-2008 salesforce.com, inc. All rights reserved. Salesforce.com and the no software logo are registered trademarks,

More information

EVault Endpoint Protection 7.0 Single Sign-On Configuration

EVault Endpoint Protection 7.0 Single Sign-On Configuration Revision: This manual has been provided for Version 7.0 (July 2014). Software Version: 7.0 2014 EVault Inc. EVault, A Seagate Company, makes no representations or warranties with respect to the contents

More information

PineApp Surf-SeCure Quick

PineApp Surf-SeCure Quick PineApp Surf-SeCure Quick Installation Guide September 2010 WEB BASED INSTALLATION SURF-SECURE AS PROXY 1. Once logged in, set the appliance s clock: a. Click on the Edit link under Time-Zone section.

More information

DEPLOYMENT GUIDE. SAML 2.0 Single Sign-on (SSO) Deployment Guide with Ping Identity

DEPLOYMENT GUIDE. SAML 2.0 Single Sign-on (SSO) Deployment Guide with Ping Identity DEPLOYMENT GUIDE SAML 2.0 Single Sign-on (SSO) Deployment Guide with Ping Identity Table of Contents SAML Overview...3 Integration Topology...3 Deployment Requirements...4 Configuration Steps...4 Step

More information

Configuring Salesforce

Configuring Salesforce Chapter 94 Configuring Salesforce The following is an overview of how to configure the Salesforce.com application for singlesign on: 1 Prepare Salesforce for single sign-on: This involves the following:

More information

Deploying XenApp on a Microsoft Azure cloud

Deploying XenApp on a Microsoft Azure cloud Deploying XenApp on a Microsoft Azure cloud The scalability and economics of XenApp services on-demand citrix.com Given business dynamics seasonal peaks, mergers, acquisitions, and changing business priorities

More information

Special thanks to the following people for reviewing and providing invaluable feedback for this document: Joe Davies, Bill Mathers, Andreas Kjellman

Special thanks to the following people for reviewing and providing invaluable feedback for this document: Joe Davies, Bill Mathers, Andreas Kjellman Test Lab Guide: Creating a Microsoft Azure Active Directory and Windows Server Active Directory Environment using Microsoft Azure Active Directory Sync Services Microsoft Corporation Published: December

More information

What is an application delivery controller?

What is an application delivery controller? What is an application delivery controller? ADCs have gained traction within the last decade, largely due to increased demand for legacy load balancing appliances to handle more advanced application delivery

More information

Getting Started with AD/LDAP SSO

Getting Started with AD/LDAP SSO Getting Started with AD/LDAP SSO Active Directory and LDAP single sign- on (SSO) with Syncplicity Business Edition accounts allows companies of any size to leverage their existing corporate directories

More information

Entrust Managed Services PKI

Entrust Managed Services PKI Entrust Managed Services PKI Entrust Managed Services PKI Windows Smart Card Logon Configuration Guide Using Web-based applications Document issue: 1.0 Date of Issue: June 2009 Copyright 2009 Entrust.

More information

Sophos UTM Web Application Firewall for Microsoft Exchange connectivity

Sophos UTM Web Application Firewall for Microsoft Exchange connectivity How to configure Sophos UTM Web Application Firewall for Microsoft Exchange connectivity This article explains how to configure your Sophos UTM 9.2 to allow access to the relevant Microsoft Exchange services

More information

Entrust Managed Services PKI. Configuring secure LDAP with Domain Controller digital certificates

Entrust Managed Services PKI. Configuring secure LDAP with Domain Controller digital certificates Entrust Managed Services Entrust Managed Services PKI Configuring secure LDAP with Domain Controller digital certificates Document issue: 1.0 Date of issue: October 2009 Copyright 2009 Entrust. All rights

More information