ULTEO OPEN VIRTUAL DESKTOP OVD WEB APPLICATION GATEWAY

Size: px
Start display at page:

Download "ULTEO OPEN VIRTUAL DESKTOP OVD WEB APPLICATION GATEWAY"

Transcription

1 ULTEO OPEN VIRTUAL DESKTOP V4.0.2 OVD WEB APPLICATION GATEWAY

2 Contents 1 Introduction 2 2 Overview 3 3 Installation Red Hat Enterprise Linux SUSE Linux Enterprise Server 11.SP Ubuntu Lucid Ubuntu Precise Debian Squeeze Debian Wheezy OpenSUSE Configuration Configuration file Configuration Section Handlers Section ServerHandler ClientHandler DispatchHandler ChainHandler RedirectHandler Filters Section StaticRequestFilter CookieFilter HttpBasicAuthFilter NTLMFilter Configuration Example ULTEO SAS

3 Section 1 Introduction Ulteo Open Virtual Desktop 4.0 supports the delivery of native Web Applications alongside Windows and Linux. The OVD Web Application Gateway is intended to provide a single sign on (SSO) capability for Web Applications as well as the ability to integrate Web Applications into the OVD infrastructure. This documentation describes how to configure OVD to integrate Web Applications into an OVD user session. ULTEO SAS

4 Section 2 Overview The OVD Web Application Gateway is defined as a new role named ulteo-ovd-slaveserverrole-web. The role can be installed as an additional role on an existing server with the OVD farm or as a dedicated role on a standalone server The OVD Web Application Gateway can be used in two modes: path: The path mode defines the full path for a Web Application such as domain: The domain mode will use the dns configuration for a domain in order to access the Web Application such as The publication and configuration of a Web Application is performed on the Applications tab on the OVD Administration Console. ULTEO SAS

5 Section 3 Installation The OVD Web Application Gateway can be installed on all the supported distributions 3.1 Red Hat Enterprise Linux 6 Install the keyring package to validate the repository using gpg: # rpm -- import http :// archive. ulteo.com/ovd /4.0/ rhel /6.0/ keyring Edit the file /etc/yum.repos.d/ovd.repo with: [ovd ] name = Ulteo OVD baseurl = http :// archive. ulteo.com/ovd /4.0/ rhel /6.0/ enabled =1 gpgcheck =1 gpgkey = http :// archive. ulteo.com/ovd /4.0/ rhel /6.0/ keyring To install the Premium module ulteo-ovd-slaveserver-role-web that provides the Web Application Gateway execute the following command: # yum install ulteo - ovd - slaveserver - role - web 3.2 SUSE Linux Enterprise Server 11.SP1 Add the Premium repository: # zypper ar http :// archive. ulteo.com/ovd /4.0/ sles /11 _sp1 ovd Install the keyring package to validate the repository using gpg: # rpm -- import http :// archive. ulteo.com/ovd /4.0/ sles /11 _sp1 / keyring Update the package database: # zypper refresh To install the Premium Edition ulteo-ovd-slaveserver-role-web that provides the Web Application Gateway execute the following command: # zypper install ulteo - ovd - slaveserver - role - web 3.3 Ubuntu Lucid Edit the /etc/apt/sources.list.d/ulteo_ovd.list file and add these lines: deb http :// archive. ulteo.com/ovd /4.0/ ubuntu lucid main ULTEO SAS

6 To install the Premium Edition ulteo-ovd-slaveserver-role-web that provides the Web Application Gateway execute the following commands: # apt - get install ulteo - keyring # apt - get install ulteo -ovd - slaveserver -role -web 3.4 Ubuntu Precise Edit the /etc/apt/sources.list.d/ulteo_ovd.list file and add these lines: deb http :// archive. ulteo.com/ovd /4.0/ ubuntu precise main To install the Premium Edition ulteo-ovd-slaveserver-role-web that provides the Web Application Gateway execute the following commands: # apt - get install ulteo - keyring # apt - get install ulteo -ovd - slaveserver -role -web 3.5 Debian Squeeze Edit the /etc/apt/sources.list.d/ulteo_ovd.list file and add these lines: deb http :// archive. ulteo.com/ovd /4.0/ debian squeeze main To install the Premium Edition ulteo-ovd-slaveserver-role-web that provides the Web Application Gateway execute the following commands: # apt - get install ulteo - keyring # apt - get install ulteo -ovd - slaveserver -role -web 3.6 Debian Wheezy Edit the /etc/apt/sources.list.d/ulteo_ovd.list file and add these lines: deb http :// archive. ulteo.com/ovd /4.0/ debian lucid main To install the Premium Edition ulteo-ovd-slaveserver-role-web that provides the Web Application Gateway execute the following commands: # apt - get install ulteo - keyring # apt - get install ulteo -ovd - slaveserver -role -web ULTEO SAS

7 3.7 OpenSUSE 11.3 Add the Premium repository: # zypper ar http :// archive. ulteo.com/ovd /4.0/ opensuse /11.3 ovd # zypper refresh Install the keyring package to validate the repository using gpg: # rpm -- import http :// archive. ulteo.com/ovd /4.0/ opensuse /11.3/ keyring Update the package database: # zypper refresh To install the Premium Edition ulteo-ovd-slaveserver-role-web that provides the OVD Web Application Gateway execute the following command: # zypper install ulteo - ovd - slaveserver - role - web ULTEO SAS

8 Section 4 Configuration 4.1 Configuration file In order to integrate a Web Application, a JSON configuration file is required. More details on the JSON format can be found in Wikipedia: JSON. One JSON file is required for each Web Application. Once created, the JSON config file can be uploaded using the OVD Admin Console. The configuration of the JSON file is described below. Configuration parameters described in this section can be assigned the value of a setting that is defined in the Admin Console. This is done by using variables to contain those values. They can be used in handlers and filters on any nesting level Configuration Section Parameters described in this section are variables which are configurable in OVD Administration Console. They can be used in handlers and filters on any nesting level. The syntax for using a variable is of the form $(VARNAME). There are five types of variable: url text input field in Admin console (checked if it s valid) string text input field in Admin Console boolean checkbox input field in Admin Console user_login login of current logged in user user_passwd password of current logged in user In the configuration section, you define variables which will be used in the handlers section. You have to set minimum, the type and the value. The variables will be shown on a form in the appropriate Web Application in the OVD Administration Console " Configuration ": { " TARGETURL ": { " type ": " url ", " title ": " Server URL", " value ": " https :// demo. zarafa.com/webapp ", " USER_LOGIN ": { " type ": " string ", " value ": " demo12 ", " USER_PASSWD ": { " type ": " string ", ULTEO SAS

9 " value ": " demo12 " Any other type used in the JSON file will be displayed in Administration Console as a read-only text input field. The optional parameter title is used in the Administration Console as the label for the input field Handlers Section This section defines the handlers and the order in which the handlers should be used to handle traffic between a user s browser and a Web Application. Each handler should have a unique name (key). The parameter type is required and defines the type of handler. Optional parameter filters describes filters that should be processed during request handling ServerHandler ServerHandler - manages the basic configuration for the target Web Application Parameters: baseuri (required) address of the Web Application next_handler (required) name of the next handler " Server ": { " type ": " ServerHandler ", " baseuri ": " http :// $( TARGETIP )", " next_handler ": " Dispatch " ClientHandler ClientHandler opens a connection to the target Web Application, downloads the requested date and returns it to the user s browser. ULTEO SAS

10 " Client ":{ " type ": " ClientHandler " DispatchHandler DispatchHandler chains the query to others handlers, based on the defined rules. Parameters bindings (required) consists of a list of conditions and a next_handler which is the handler to execute if no condition is fulfilled. A Condition Parameter consists of a condition and a next_handler which is the handler to execute if the condition is fulfilled. cond (required) any valid python expression. next_handler (required) - name of the handler to be executed if the condition is fulfilled Variables available in a cond expression: request_path (string) path of requested resource request_headers (list) list of request headers " Dispatch ":{ " type ": " DispatchHandler ", " bindings ":{ " condition1 ":{ " cond ": " request_path. startswith ( / manage )", " next_ handler ": " Unauthorized ", " condition2 ":{ " cond ": " login_ form in request_ path ", " next_ handler ": " LoginForm ", " next_handler ": " Client " ULTEO SAS

11 ChainHandler The ChainHandler is a connector between two handlers. It is used mainly to add filters between two handlers. " Chain ":{ " type ": " ChainHandler ", " next_handler ": " Client " RedirectHandler The RedirectHandler redirects the browser to a given location. Parameter location (required) can define the URL or path to which the browser should be redirected. " Unauthorized ":{ " type ": " RedirectHandler ", " location ": "/ site /401" Filters Section Each handler can define a list of filters. Filters handle several authentication by adding or modifying data in request and response. Filters are defined as an array of object StaticRequestFilter StaticRequestFilter makes an internal http query. In most cases, it s used to submit login form and acquired cookies created after submit. Parameters: path (required) - (string) - path to login form. form (required) - (string) - input fields which are part of the form ULTEO SAS

12 autologin (required) - (boolean) - defines if the form is automatically submitted or not (true or false) regexp (optional) - (string) - regular expression used to match redirects content_regexp (optional) - (string) - regular expression used to match response content On first request, OVD Web Application Gateway will open page configured in path parameter. In content of this page will find all input fields listed in form parameter and insert values. After this it will submit form that contains listed input fields. If server response has 302 code and Location header matches regexp attribute or server response has 200 code and response content matches content_regexp attribute then OVD Web Application Gateway will relogin (submit again data) to the Web Application. { " type ": " StaticRequestFilter ", " path ": "/ site / login_form ", " autologin ": false, " form ":{ " ac_login ": "$( USER_LOGIN )", " ac_password ": "$( USER_PASSWD )" CookieFilter CookieFilter is able to inject cookies in the stream, read them back and update. This filter will retrieve the cookie from the server and store it user s session to reinject it at the next requests. Parameters: managed (optional) - (array) - array of cookie names that should be managed by OVD Web Application Gateway. Those cookies will not be visible in user s browser. suppressed (optional) - (array) - array of cookie names that should be removed by OVD Web Application Gateway. If the user s browser does send such a cookie it will be dropped and the Web Application will not receive it. If Web Application does set such a cookie is will be dropped, and the user s browser will not receive it replayed (optional) - (array) - array of cookie names that shouldn t be changed ULTEO SAS

13 If cookie is not defined in managed, suppressed or replayed lists it will be dropped (such as it would be on suppressed list). { " type ": " CookieFilter ", " managed ": " WEBAPPScookie ", " relayed ": " I18N_LANGUAGE " HttpBasicAuthFilter HttpBasicAuthFilter is able to inject http basic authentication header. Parameters: user (required) - (string) - username pass (required) - (string) - password If cookie is not defined in managed, suppressed or replayed lists it will be dropped (such as it would be on suppressed list). { " type ": " HttpBasicAuthFilter ", " user ": "$( USER_LOGIN )", " pass ": "$( USER_PASSWD )" NTLMFilter NTLMFilter is able to inject NTLM authentication header. Parameters: user (required) - (string) - username pass (required) - (string) - password If cookie is not defined in managed, suppressed or replayed lists it will be dropped (such as it would be on suppressed list). ULTEO SAS

14 { " type ": " NTLMFilter ", " user ": "$( USER_LOGIN )", " pass ": "$( USER_PASSWD )" 4.2 Configuration Example The example below illustrates how to configure and use Zarafa (a Webmail application) in Ulteo Open Virtual Desktop { " title ": " Zarafa WebApp ", " Configuration ": { " TARGETURL ": { " type ": " url ", " title ": " Server URL", " value ": " https :// demo. zarafa.com/webapp ", " USER_LOGIN ": { " type ": " string ", " value ": " demo12 ", " USER_PASSWD ": { " type ": " string ", " value ": " demo12 ", " Handlers ": { " Start ": { " baseuri ": "$( TARGETURL )", " next_ handler ": " LoginRequestHandler ", " type ": " ServerHandler ", " Client ": { " type ": " ClientHandler ", " LoginRequestHandler ": { " next_handler ": " Client ", " type ": " ChainHandler ", " filters ": [ { " type ": " CookieFilter ", " managed ": [ " ZARAFA_WEBAPP " ], { " type ": " StaticRequestFilter ", " path ": "/ webapp /", " autologin ": false, " content_regexp ": " login_main ", " form ": { " username ": "$( USER_LOGIN )", ULTEO SAS

15 ] " password ": "$( USER_PASSWD )" ULTEO SAS

ULTEO OPEN VIRTUAL DESKTOP UBUNTU 12.04 (PRECISE PANGOLIN) SUPPORT

ULTEO OPEN VIRTUAL DESKTOP UBUNTU 12.04 (PRECISE PANGOLIN) SUPPORT ULTEO OPEN VIRTUAL DESKTOP V4.0.2 UBUNTU 12.04 (PRECISE PANGOLIN) SUPPORT Contents 1 Prerequisites: Ubuntu 12.04 (Precise Pangolin) 3 1.1 System Requirements.............................. 3 1.2 sudo.........................................

More information

ULTEO OPEN VIRTUAL DESKTOP V4.0

ULTEO OPEN VIRTUAL DESKTOP V4.0 ULTEO OPEN VIRTUAL DESKTOP V4.0 MIGRATION GUIDE 28 February 2014 Contents Section 1 Introduction... 4 Section 2 Overview... 5 Section 3 Preparation... 6 3.1 Enter Maintenance Mode... 6 3.2 Backup The OVD

More information

Ulteo Open Virtual Desktop Installation

Ulteo Open Virtual Desktop Installation Ulteo Open Virtual Desktop Installation Copyright 2008 Ulteo SAS - CONTENTS CONTENTS Contents 1 Prerequisites 2 1.1 Installation of MySQL....................................... 2 2 Session Manager (sm.ulteo.com)

More information

How To Understand The Architecture Of An Ulteo Virtual Desktop Server Farm

How To Understand The Architecture Of An Ulteo Virtual Desktop Server Farm ULTEO OPEN VIRTUAL DESKTOP V4.0.2 ARCHITECTURE OVERVIEW Contents 1 Introduction 2 2 Servers Roles 3 2.1 Session Manager................................. 3 2.2 Application Server................................

More information

INUVIKA OVD INSTALLING INUVIKA OVD ON UBUNTU 14.04 (TRUSTY TAHR)

INUVIKA OVD INSTALLING INUVIKA OVD ON UBUNTU 14.04 (TRUSTY TAHR) INUVIKA OVD INSTALLING INUVIKA OVD ON UBUNTU 14.04 (TRUSTY TAHR) Mathieu SCHIRES Version: 0.9.1 Published December 24, 2014 http://www.inuvika.com Contents 1 Prerequisites: Ubuntu 14.04 (Trusty Tahr) 3

More information

Installation documentation for Ulteo Open Virtual Desktop

Installation documentation for Ulteo Open Virtual Desktop Installation documentation for Ulteo Open Virtual Desktop Copyright 2008 Ulteo SAS - 1 PREREQUISITES CONTENTS Contents 1 Prerequisites 1 1.1 Installation of MySQL.......................................

More information

ZCP trunk (build 51762) Z-Admin Manual. The Z-Admin Manual

ZCP trunk (build 51762) Z-Admin Manual. The Z-Admin Manual ZCP trunk (build 51762) Z-Admin Manual The Z-Admin Manual Z-Admin Manual ZCP trunk (build 51762) Z-Admin Manual The Z-Admin Manual Edition 7.0 Copyright 2015 Zarafa BV. The text of and illustrations in

More information

INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6

INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6 INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6 Mathieu SCHIRES Version: 0.96.1 Published January 19, 2015 http://www.inuvika.com Contents 1 Prerequisites: RHEL 6 3 1.1 System Requirements...................................

More information

Deploying RSA ClearTrust with the FirePass controller

Deploying RSA ClearTrust with the FirePass controller Deployment Guide Deploying RSA ClearTrust with the FirePass Controller Deploying RSA ClearTrust with the FirePass controller Welcome to the FirePass RSA ClearTrust Deployment Guide. This guide shows you

More information

Active Directory Requirements and Setup

Active Directory Requirements and Setup Active Directory Requirements and Setup The information contained in this document has been written for use by Soutron staff, clients, and prospective clients. Soutron reserves the right to change the

More information

IBM Endpoint Manager Version 9.1. Patch Management for Red Hat Enterprise Linux User's Guide

IBM Endpoint Manager Version 9.1. Patch Management for Red Hat Enterprise Linux User's Guide IBM Endpoint Manager Version 9.1 Patch Management for Red Hat Enterprise Linux User's Guide IBM Endpoint Manager Version 9.1 Patch Management for Red Hat Enterprise Linux User's Guide Note Before using

More information

QUICK START. GO-Global Cloud 4.1 SETTING UP A LINUX CLOUD SERVER AND HOST INSTALL THE CLOUD SERVER ON LINUX

QUICK START. GO-Global Cloud 4.1 SETTING UP A LINUX CLOUD SERVER AND HOST INSTALL THE CLOUD SERVER ON LINUX GO-Global Cloud 4.1 QUICK START SETTING UP A LINUX CLOUD SERVER AND HOST This guide provides instructions for setting up a cloud server and configuring a host so it can be accessed from the cloud server.

More information

IBM Endpoint Manager Version 9.2. Patch Management for SUSE Linux Enterprise User's Guide

IBM Endpoint Manager Version 9.2. Patch Management for SUSE Linux Enterprise User's Guide IBM Endpoint Manager Version 9.2 Patch Management for SUSE Linux Enterprise User's Guide IBM Endpoint Manager Version 9.2 Patch Management for SUSE Linux Enterprise User's Guide Note Before using this

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

What s New in Propalms VPN 3.5?

What s New in Propalms VPN 3.5? What s New in Propalms VPN 3.5? Contents Improved Management Console Interface... 2 Inline Help on Management Console... 2 Graphical Dashboard on Management Console... 2 Multiple Authentication Server

More information

Using Microsoft Windows Authentication for Microsoft SQL Server Connections in Data Archive

Using Microsoft Windows Authentication for Microsoft SQL Server Connections in Data Archive Using Microsoft Windows Authentication for Microsoft SQL Server Connections in Data Archive 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means

More information

Eucalyptus 3.4.2 User Console Guide

Eucalyptus 3.4.2 User Console Guide Eucalyptus 3.4.2 User Console Guide 2014-02-23 Eucalyptus Systems Eucalyptus Contents 2 Contents User Console Overview...4 Install the Eucalyptus User Console...5 Install on Centos / RHEL 6.3...5 Configure

More information

INUVIKA OVD VIRTUAL DESKTOP ENTERPRISE

INUVIKA OVD VIRTUAL DESKTOP ENTERPRISE INUVIKA OVD VIRTUAL DESKTOP ENTERPRISE MICROSOFT ACTIVE DIRECTORY INTEGRATION Agostinho Tavares Version 1.0 Published 06/05/2015 This document describes how Inuvika OVD 1.0 can be integrated with Microsoft

More information

Configuring. Moodle. Chapter 82

Configuring. Moodle. Chapter 82 Chapter 82 Configuring Moodle The following is an overview of the steps required to configure the Moodle Web application for single sign-on (SSO) via SAML. Moodle offers SP-initiated SAML SSO only. 1 Prepare

More information

API documentation - 1 -

API documentation - 1 - API documentation - 1 - Table of Contents 1. Introduction 1.1. What is an API 2. API Functions 2.1. Purge list of files 2.1.1 Description 2.1.2 Implementation 2.2. Purge of whole cache (all files on all

More information

How To Connect A Gemalto To A Germanto Server To A Joniper Ssl Vpn On A Pb.Net 2.Net 3.5.1 (Net 2) On A Gmaalto.Com Web Server

How To Connect A Gemalto To A Germanto Server To A Joniper Ssl Vpn On A Pb.Net 2.Net 3.5.1 (Net 2) On A Gmaalto.Com Web Server Application Note: Integrate Juniper SSL VPN with Gemalto SA Server SASolutions@gemalto.com October 2007 www.gemalto.com Table of contents Table of contents... 2 Overview... 3 Architecture... 5 Configure

More information

Introduction to Mobile Access Gateway Installation

Introduction to Mobile Access Gateway Installation Introduction to Mobile Access Gateway Installation This document describes the installation process for the Mobile Access Gateway (MAG), which is an enterprise integration component that provides a secure

More information

SOA Software API Gateway Appliance 7.1.x Administration Guide

SOA Software API Gateway Appliance 7.1.x Administration Guide SOA Software API Gateway Appliance 7.1.x Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names,

More information

The data between TC Monitor and remote devices is exchanged using HTTP protocol. Monitored devices operate either as server or client mode.

The data between TC Monitor and remote devices is exchanged using HTTP protocol. Monitored devices operate either as server or client mode. 1. Introduction TC Monitor is easy to use Windows application for monitoring and control of some Teracom Ethernet (TCW) and GSM/GPRS (TCG) controllers. The supported devices are TCW122B-CM, TCW181B- CM,

More information

Administering Jive Mobile Apps

Administering Jive Mobile Apps Administering Jive Mobile Apps Contents 2 Contents Administering Jive Mobile Apps...3 Configuring Jive for Android and ios... 3 Native Apps and Push Notifications...4 Custom App Wrapping for ios... 5 Native

More information

Expresso Quick Install

Expresso Quick Install Expresso Quick Install 1. Considerations 2. Basic requirements to install 3. Install 4. Expresso set up 5. Registering users 6. Expresso first access 7. Uninstall 8. Reinstall 1. Considerations Before

More information

Kaspersky Security Center Web-Console

Kaspersky Security Center Web-Console Kaspersky Security Center Web-Console User Guide CONTENTS ABOUT THIS GUIDE... 5 In this document... 5 Document conventions... 7 KASPERSKY SECURITY CENTER WEB-CONSOLE... 8 SOFTWARE REQUIREMENTS... 10 APPLICATION

More information

OnCommand Performance Manager 1.1

OnCommand Performance Manager 1.1 OnCommand Performance Manager 1.1 Installation and Setup Guide For Red Hat Enterprise Linux NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. Telephone: +1 (408) 822-6000 Fax: +1 (408) 822-4501

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

Object Storage and Enterprise Repository Installation manual

Object Storage and Enterprise Repository Installation manual Object Storage and Enterprise Repository Installation manual Version 1.6 Copyright (C) 2015 Dovecot Oy The repository access is available only by using a customer- specific username and password. We preserve

More information

How to Configure Captive Portal

How to Configure Captive Portal How to Configure Captive Portal Captive portal is one of the user identification methods available on the Palo Alto Networks firewall. Unknown users sending HTTP or HTTPS 1 traffic will be authenticated,

More information

Citrix Receiver for Mobile Devices Troubleshooting Guide

Citrix Receiver for Mobile Devices Troubleshooting Guide Citrix Receiver for Mobile Devices Troubleshooting Guide www.citrix.com Contents REQUIREMENTS...3 KNOWN LIMITATIONS...3 TROUBLESHOOTING QUESTIONS TO ASK...3 TROUBLESHOOTING TOOLS...4 BASIC TROUBLESHOOTING

More information

Egnyte Single Sign-On (SSO) Installation for OneLogin

Egnyte Single Sign-On (SSO) Installation for OneLogin Egnyte Single Sign-On (SSO) Installation for OneLogin To set up Egnyte so employees can log in using SSO, follow the steps below to configure OneLogin and Egnyte to work with each other. 1. Set up OneLogin

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

CYAN SECURE WEB HOWTO. NTLM Authentication

CYAN SECURE WEB HOWTO. NTLM Authentication CYAN SECURE WEB HOWTO June 2008 Applies to: CYAN Secure Web 1.4 and above NTLM helps to transparently synchronize user names and passwords of an Active Directory Domain and use them for authentication.

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

McAfee Cloud Identity Manager

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

More information

nitrobit update server

nitrobit update server nitrobit update server Administrator's Guide 2011 analytiq consulting gmbh. All rights reserved. Page 2 nitrobit update server Administrator's Guide Content I. Introduction... 4 Overview... 4 Components

More information

Collax Web Security. Howto. This howto describes the setup of a Web proxy server as Web content filter.

Collax Web Security. Howto. This howto describes the setup of a Web proxy server as Web content filter. Collax Web Security Howto This howto describes the setup of a Web proxy server as Web content filter. Requirements Collax Business Server Collax Security Gateway Collax Platform Server including Collax

More information

UVOS WEB REGISTRATION EXTENSION MANUAL

UVOS WEB REGISTRATION EXTENSION MANUAL UVOS Web Registration Extension Manual UVOS WEB REGISTRATION EXTENSION MANUAL UNICORE Team Document Version: 1.5.1 Component Version: 1.5.0-p6 Date: 13 04 2012 This work is co-funded by the EC EMI project

More information

Q&A Session for Understanding Atrium SSO Date: Thursday, February 14, 2013, 8:00am Pacific

Q&A Session for Understanding Atrium SSO Date: Thursday, February 14, 2013, 8:00am Pacific Q: Is the challenge required or can pass through authentication be used with regard to automatic login after you login to your corporate domain? A: You can configure the system to pass on the challenge

More information

SSL VPN Server Guide. Access Manager 3.2 SP2. June 2013

SSL VPN Server Guide. Access Manager 3.2 SP2. June 2013 SSL VPN Server Guide Access Manager 3.2 SP2 June 2013 Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE AGREEMENT OR A

More information

Installation Guide. Copyright (c) 2015 The OpenNMS Group, Inc. OpenNMS 17.0.0-SNAPSHOT Last updated 2015-09-22 05:19:20 EDT

Installation Guide. Copyright (c) 2015 The OpenNMS Group, Inc. OpenNMS 17.0.0-SNAPSHOT Last updated 2015-09-22 05:19:20 EDT Installation Guide Copyright (c) 2015 The OpenNMS Group, Inc. OpenNMS 17.0.0-SNAPSHOT Last updated 2015-09-22 05:19:20 EDT Table of Contents 1. Basic Installation of OpenNMS... 1 1.1. Repositories for

More information

www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013

www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013 www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of this documentation,

More information

McAfee Cloud Identity Manager

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

More information

Kaspersky Security Center Web-Console

Kaspersky Security Center Web-Console Kaspersky Security Center Web-Console User Guide CONTENTS ABOUT THIS GUIDE... 5 In this document... 5 Document conventions... 7 KASPERSKY SECURITY CENTER WEB-CONSOLE... 8 SOFTWARE REQUIREMENTS... 10 APPLICATION

More information

SecureAware on IIS8 on Windows Server 2008/- 12 R2-64bit

SecureAware on IIS8 on Windows Server 2008/- 12 R2-64bit SecureAware on IIS8 on Windows Server 2008/- 12 R2-64bit Note: SecureAware version 3.7 and above contains all files and setup configuration needed to use Microsoft IIS as a front end web server. Installing

More information

Crawl Proxy Installation and Configuration Guide

Crawl Proxy Installation and Configuration Guide Crawl Proxy Installation and Configuration Guide Google Enterprise EMEA Google Search Appliance is able to natively crawl secure content coming from multiple sources using for instance the following main

More information

Salesforce Files Connect Implementation Guide

Salesforce Files Connect Implementation Guide Salesforce Files Connect Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Copyright Pivotal Software Inc, 2013-2015 1 of 10

Copyright Pivotal Software Inc, 2013-2015 1 of 10 Table of Contents Table of Contents Getting Started with Pivotal Single Sign-On Adding Users to a Single Sign-On Service Plan Administering Pivotal Single Sign-On Choosing an Application Type 1 2 5 7 10

More information

DEPLOYMENT GUIDE Version 2.1. Deploying F5 with Microsoft SharePoint 2010

DEPLOYMENT GUIDE Version 2.1. Deploying F5 with Microsoft SharePoint 2010 DEPLOYMENT GUIDE Version 2.1 Deploying F5 with Microsoft SharePoint 2010 Table of Contents Table of Contents Introducing the F5 Deployment Guide for Microsoft SharePoint 2010 Prerequisites and configuration

More information

DEPLOYMENT GUIDE CONFIGURING THE BIG-IP LTM SYSTEM WITH FIREPASS CONTROLLERS FOR LOAD BALANCING AND SSL OFFLOAD

DEPLOYMENT GUIDE CONFIGURING THE BIG-IP LTM SYSTEM WITH FIREPASS CONTROLLERS FOR LOAD BALANCING AND SSL OFFLOAD DEPLOYMENT GUIDE CONFIGURING THE BIG-IP LTM SYSTEM WITH FIREPASS CONTROLLERS FOR LOAD BALANCING AND SSL OFFLOAD Configuring the BIG-IP LTM system for use with FirePass controllers Welcome to the Configuring

More information

Setting up VMware Server v1 for 2X VirtualDesktopServer Manual

Setting up VMware Server v1 for 2X VirtualDesktopServer Manual Setting up VMware Server v1 for 2X VirtualDesktopServer Manual URL: www.2x.com E-mail: info@2x.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

MadCap Software. Upgrading Guide. Pulse

MadCap Software. Upgrading Guide. Pulse MadCap Software Upgrading Guide Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

More information

A Guide to New Features in Propalms OneGate 4.0

A Guide to New Features in Propalms OneGate 4.0 A Guide to New Features in Propalms OneGate 4.0 Propalms Ltd. Published April 2013 Overview This document covers the new features, enhancements and changes introduced in Propalms OneGate 4.0 Server (previously

More information

How To Install Storegrid Server On Linux On A Microsoft Ubuntu 7.5 (Amd64) Or Ubuntu (Amd86) (Amd77) (Orchestra) (For Ubuntu) (Permanent) (Powerpoint

How To Install Storegrid Server On Linux On A Microsoft Ubuntu 7.5 (Amd64) Or Ubuntu (Amd86) (Amd77) (Orchestra) (For Ubuntu) (Permanent) (Powerpoint StoreGrid Linux Server Installation Guide Before installing StoreGrid as Backup Server (or) Replication Server in your machine, you should install MySQL Server in your machine (or) in any other dedicated

More information

Kerio MailServer 6. Administrator s Guide. Kerio Technologies

Kerio MailServer 6. Administrator s Guide. Kerio Technologies Kerio MailServer 6 Administrator s Guide Kerio Technologies Kerio Technologies. All Rights Reserved. This guide provides detailed description on Kerio MailServer, version 6.7 (updated version). All additional

More information

F-Secure Policy Manager. Administrator's Guide

F-Secure Policy Manager. Administrator's Guide F-Secure Policy Manager Administrator's Guide F-Secure Policy Manager TOC 2 Contents Chapter 1: Introduction...8 1.1 System requirements...9 1.1.1 Policy Manager Server...9 1.1.2 Policy Manager Console...10

More information

SAML single sign-on configuration overview

SAML single sign-on configuration overview Chapter 46 Configurin uring Drupal Configure the Drupal Web-SAML application profile in Cloud Manager to set up single sign-on via SAML with a Drupal-based web application. Configuration also specifies

More information

To set up Egnyte so employees can log in using SSO, follow the steps below to configure VMware Horizon and Egnyte to work with each other.

To set up Egnyte so employees can log in using SSO, follow the steps below to configure VMware Horizon and Egnyte to work with each other. w w w. e g n y t e. c o m Egnyte Single Sign-On (SSO) Installation for VMware Horizon To set up Egnyte so employees can log in using SSO, follow the steps below to configure VMware Horizon and Egnyte to

More information

MY HELPDESK - END-USER CONSOLE...

MY HELPDESK - END-USER CONSOLE... Helpdesk User Guide Page 1 Helpdesk User Guide Table of Contents 1 INTRODUCTION... 3 1.1. OBJECTIVES... 3 1.2. END-USER CONSOLE... 3 1.3. SUMMARY OF RESPONSIBILITY... 3 1.4. HELPDESK INCIDENT LIFE CYCLE...

More information

BMC Remedy Integration Guide 7.6.04

BMC Remedy Integration Guide 7.6.04 BMC Remedy Integration Guide 7.6.04 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their

More information

DEPLOYMENT GUIDE Version 1.1. Deploying the BIG-IP LTM v10 with Citrix Presentation Server 4.5

DEPLOYMENT GUIDE Version 1.1. Deploying the BIG-IP LTM v10 with Citrix Presentation Server 4.5 DEPLOYMENT GUIDE Version 1.1 Deploying the BIG-IP LTM v10 with Citrix Presentation Server 4.5 Table of Contents Table of Contents Deploying the BIG-IP system v10 with Citrix Presentation Server Prerequisites

More information

Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x

Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x Configuring Secure Socket Layer (SSL) communication for a standalone environment... 2 Import the Process Server WAS root SSL certificate into

More information

v7.8.1 Release Notes for Websense Web Security

v7.8.1 Release Notes for Websense Web Security v7.8.1 Release Notes for Websense Web Security Topic 43010 Release Notes Web Security Solutions Updated 22-Oct-2013 Applies to: Websense Web Filter, Web Security, Web Security Gateway, and Web Security

More information

Nevepoint Access Manager 1.2 BETA Documentation

Nevepoint Access Manager 1.2 BETA Documentation Nevepoint Access Manager 1.2 BETA Documentation Table of Contents Installation...3 Locating the Installation Wizard URL...3 Step 1: Configure the Administrator...4 Step 2: Connecting to Primary Connector...4

More information

OAuth 2.0 Developers Guide. Ping Identity, Inc. 1001 17th Street, Suite 100, Denver, CO 80202 303.468.2900

OAuth 2.0 Developers Guide. Ping Identity, Inc. 1001 17th Street, Suite 100, Denver, CO 80202 303.468.2900 OAuth 2.0 Developers Guide Ping Identity, Inc. 1001 17th Street, Suite 100, Denver, CO 80202 303.468.2900 Table of Contents Contents TABLE OF CONTENTS... 2 ABOUT THIS DOCUMENT... 3 GETTING STARTED... 4

More information

Introduction to the EIS Guide

Introduction to the EIS Guide Introduction to the EIS Guide The AirWatch Enterprise Integration Service (EIS) provides organizations the ability to securely integrate with back-end enterprise systems from either the AirWatch SaaS environment

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

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Xerox DocuShare Security Features. Security White Paper

Xerox DocuShare Security Features. Security White Paper Xerox DocuShare Security Features Security White Paper Xerox DocuShare Security Features Businesses are increasingly concerned with protecting the security of their networks. Any application added to a

More information

Installing and configuring TrueConf client application for Linux

Installing and configuring TrueConf client application for Linux Installing and configuring TrueConf client application for Linux How to install client application? How to log in? How to configure the application? «TrueConf» Menu «My profile» Section «Logout» Section

More information

Using SAML for Single Sign-On in the SOA Software Platform

Using SAML for Single Sign-On in the SOA Software Platform Using SAML for Single Sign-On in the SOA Software Platform SOA Software Community Manager: Using SAML on the Platform 1 Policy Manager / Community Manager Using SAML for Single Sign-On in the SOA Software

More information

Lucid Key Server v2 Installation Documentation. www.lucidcentral.org

Lucid Key Server v2 Installation Documentation. www.lucidcentral.org Lucid Key Server v2 Installation Documentation Contents System Requirements...2 Web Server...3 Database Server...3 Java...3 Tomcat...3 Installation files...3 Creating the Database...3 Step 1: Create the

More information

F-Secure Policy Manager. Administrator's Guide

F-Secure Policy Manager. Administrator's Guide F-Secure Policy Manager Administrator's Guide F-Secure Policy Manager TOC 3 Contents Chapter 1: Introduction...7 System requirements...8 Policy Manager Server...8 Policy Manager Console...8 Main components...9

More information

VMware Identity Manager Connector Installation and Configuration

VMware Identity Manager Connector Installation and Configuration VMware Identity Manager Connector Installation and Configuration VMware Identity Manager This document supports the version of each product listed and supports all subsequent versions until the document

More information

CDH 5 Quick Start Guide

CDH 5 Quick Start Guide CDH 5 Quick Start Guide Important Notice (c) 2010-2015 Cloudera, Inc. All rights reserved. Cloudera, the Cloudera logo, Cloudera Impala, and any other product or service names or slogans contained in this

More information

1. Introduction. 2. Web Application. 3. Components. 4. Common Vulnerabilities. 5. Improving security in Web applications

1. Introduction. 2. Web Application. 3. Components. 4. Common Vulnerabilities. 5. Improving security in Web applications 1. Introduction 2. Web Application 3. Components 4. Common Vulnerabilities 5. Improving security in Web applications 2 What does World Wide Web security mean? Webmasters=> confidence that their site won

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

Exchange Integration DME 4.4 Microsoft Exchange 2007, 2010, 2013

Exchange Integration DME 4.4 Microsoft Exchange 2007, 2010, 2013 Exchange Integration DME 4.4 Microsoft Exchange 2007, 2010, 2013 Document version 1.1 Published 09-07-2015 Integration with Microsoft Exchange 2007/2010/2013 Contents Integration with Microsoft Exchange

More information

IBM Cloud Manager with OpenStack

IBM Cloud Manager with OpenStack IBM Cloud Manager with OpenStack Download Trial Guide Cloud Solutions Team: Cloud Solutions Beta cloudbta@us.ibm.com Page 1 Table of Contents Chapter 1: Introduction...3 Development cycle release scope...3

More information

WESTERNACHER OUTLOOK E-MAIL-MANAGER OPERATING MANUAL

WESTERNACHER OUTLOOK E-MAIL-MANAGER OPERATING MANUAL TABLE OF CONTENTS 1 Summary 3 2 Software requirements 3 3 Installing the Outlook E-Mail Manager Client 3 3.1 Requirements 3 3.1.1 Installation for trial customers for cloud-based testing 3 3.1.2 Installing

More information

avast! for linux technical documentation

avast! for linux technical documentation avast! for linux technical documentation Martin Tůma, tuma@avast.com June 4, 2014 Contents 1 Overview 1 2 Installation 2 3 Operation 3 4 Licensing 4 5 Virus definitions updates 4 6 AMaViS integration 4

More information

How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap (

How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap ( WHITEPAPER BackupAssist Version 5.1 www.backupassist.com Cortex I.T. Labs 2001-2008 2 Contents Introduction... 3 Hardware Setup Instructions... 3 QNAP TS-409... 3 Netgear ReadyNas NV+... 5 Drobo rev1...

More information

DEPLOYMENT GUIDE Version 1.1. Deploying F5 with Oracle Fusion Middleware Identity Management 11gR1

DEPLOYMENT GUIDE Version 1.1. Deploying F5 with Oracle Fusion Middleware Identity Management 11gR1 DEPLOYMENT GUIDE Version 1.1 Deploying F5 with Oracle Fusion Middleware Identity Management 11gR1 Introducing the F5 and Oracle Identity Management configuration Welcome to the F5 and Oracle Identity Management

More information

OpenLDAP Oracle Enterprise Gateway Integration Guide

OpenLDAP Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 OpenLDAP Oracle Enterprise Gateway Integration Guide 1 / 29 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Egnyte Single Sign-On (SSO) Installation for Okta

Egnyte Single Sign-On (SSO) Installation for Okta w w w. e g n y t e. c o m Egnyte Single Sign-On (SSO) Installation for Okta To set up Egnyte so employees can log in using SSO, follow the steps below to configure Okta and Egnyte to work with each other.

More information

INUVIKA OPEN VIRTUAL DESKTOP FOUNDATION SERVER

INUVIKA OPEN VIRTUAL DESKTOP FOUNDATION SERVER INUVIKA OPEN VIRTUAL DESKTOP FOUNDATION SERVER ARCHITECTURE OVERVIEW AND SYSTEM REQUIREMENTS Mathieu SCHIRES Version: 1.0.0 Published March 5, 2015 http://www.inuvika.com Contents 1 Introduction 3 2 Architecture

More information

Load Balancing. Outlook Web Access. Web Mail Using Equalizer

Load Balancing. Outlook Web Access. Web Mail Using Equalizer Load Balancing Outlook Web Access Web Mail Using Equalizer Copyright 2009 Coyote Point Systems, Inc. Printed in the USA. Publication Date: January 2009 Equalizer is a trademark of Coyote Point Systems

More information

LoadRunner and Performance Center v11.52 Technical Awareness Webinar Training

LoadRunner and Performance Center v11.52 Technical Awareness Webinar Training LoadRunner and Performance Center v11.52 Technical Awareness Webinar Training Tony Wong 1 Copyright Copyright 2012 2012 Hewlett-Packard Development Development Company, Company, L.P. The L.P. information

More information

ISL Online Integration Manual

ISL Online Integration Manual Contents 2 Table of Contents Foreword Part I Overview Part II 0 3 4... 1 Dow nload and prepare 4... 2 Enable the ex ternal ID column on ISL Conference Prox y 4... 3 Deploy w eb content 5... 4 Add items

More information

Zabbix Manual. https://www.zabbix.com/documentation/2.0/manual

Zabbix Manual. https://www.zabbix.com/documentation/2.0/manual Zabbix Manual [Zabbix] 11/21/13, 4:25 PM Zabbix Manual Welcome to the user manual for Zabbix 2.0 software. These pages are created to help our users successfully manage their monitoring tasks with Zabbix,

More information

MyanPay API Integration with Magento CMS

MyanPay API Integration with Magento CMS 2014 MyanPay API Integration with Magento CMS MyanPay Myanmar Soft Gate Technology Co, Ltd. 1/1/2014 MyanPay API Integration with Magento CMS 1 MyanPay API Integration with Magento CMS MyanPay API Generating

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

Weston Public Schools Virtual Desktop Access Instructions

Weston Public Schools Virtual Desktop Access Instructions Instructions for connecting to the Weston Schools Virtual Desktop Environment Notes: You will have to have administrator permission on your computer in order to install a VMWare Client application which

More information

Siteminder Integration Guide

Siteminder Integration Guide Integrating Siteminder with SA SA - Siteminder Integration Guide Abstract The Junos Pulse Secure Access (SA) platform supports the Netegrity Siteminder authentication and authorization server along with

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

Kerio Connect. Administrator s Guide. Kerio Technologies

Kerio Connect. Administrator s Guide. Kerio Technologies Kerio Connect Administrator s Guide Kerio Technologies 2010 Kerio Technologies s.r.o. All rights reserved. This guide provides detailed description on Kerio Connect, version 7.1. All additional modifications

More information

Avast for linux technical documentation

Avast for linux technical documentation Avast for linux technical documentation Martin Tůma, tuma@avast.com December 10, 2014 Contents 1 Overview 1 2 Installation 2 3 Operation 4 4 Licensing 4 5 Virus definitions updates 4 6 AMaViS integration

More information

Deploying the BIG-IP System v11 with Microsoft SharePoint 2010 and 2013

Deploying the BIG-IP System v11 with Microsoft SharePoint 2010 and 2013 Deployment Guide Document version 3.2 What's inside: 2 What is F5 iapp? 2 Prerequisites and configuration notes 4 Configuration example 5 Preparation Worksheet 6 Configuring SharePoint Alternate Access

More information