Configure the DNS server. Secure communications for both the application server and the meeting server (HTTP and RTMP).

Size: px
Start display at page:

Download "Configure the DNS server. Secure communications for both the application server and the meeting server (HTTP and RTMP)."

Transcription

1 Configure software-based SSL When you configure software-based SSL, you can secure network connections to the web application server (HTTPS protocol), the meeting server (RTMPS protocol), or both. No matter which configuration you choose, you must create DNS records for your Connect servers first. HTTP is the protocol with which the Adobe Connect application server is accessed. This includes the Connect Central administration pages for managing your Connect instance, Connect user login, and the Connect web services. Securing the application server by using HTTPS is important to prevent unauthorized access of your Connect service. RTMP is the protocol which the Adobe Connect meeting server uses. RTMP connections contain media data such as video and audio streams from your Connect meetings, as well as data from the meeting rooms such as participant names and chat text. Securing the meeting server is important if you have sensitive information being exchanged in your Connect meetings. Configure the DNS server Create DNS entries that define addresses for the Fully Qualified Domain Name (FQDN) of each secured service. If you intend to secure traffic for both the application server and the meeting server, you must have a separate IP address for each service. The domain name for the Central application server is the address with which your end users will access Adobe Connect with. Enter this domain name as the Connect Host value on the Server Settings page in the Application Management Console. For example, a good value is connect.yourcompany.com. End users do not see the FQDN(s) for the meeting server(s). However, you must define a unique domain name for each meeting server if you want to conduct meetings over a secure connection. Enter this FQDN in the External Name box on the Server Settings page in the Application Management Console. For example, a good value is fms.yourcompany.com. Note: In a cluster of servers, all the application servers can share an SSL certificate, but each meeting server must have its own SSL certificate. On a single server, to secure both the HTTP (application server) and RTMP (meeting server) connections, you must have a total of two IP addresses, two FQDNs and two SSL certificates (one for each protocol). (You may also get a single, wildcard SSL certificate that can be used for multiple hosts in the same subdomain, e.g. *.yourcompany.com. This is simpler to manage, but typically costs more than a single domain name certificate.) Secure communications for both the application server and the meeting server (HTTP and RTMP). 1 Locate your installation media for Adobe Connect 9 and browse to \Connect\ \Merge_Modules\stunnel zip 2 Extract the stunnel zip file to a new folder named stunnel under your Adobe Connect installation folder, as follows: [root_install_dir]\stunnel 2 Under the newly-created stunnel folder, open stunnel.conf and replace the following code (replace the code in italic with your own values): ; Protocol version (all, SSLv2, SSLv3, TLSv1) sslversion = all fips = no ; Some performance tunings socket = l:tcp_nodelay=1

2 socket = r:tcp_nodelay=1 TIMEOUTclose=0 options = DONT_INSERT_EMPTY_FRAGMENTS [https vip] ; incoming vip for https (This is to secure Web) ; ip address that resolves to the ConnectProHost (Web App FQDN). ; listens on port 443 accept = :443 ; When stunnel is on the same box, leave the below IP address as ; send the unencrypted request to port 8443 connect = :8443 ; Certificate information for Connect. cert = AppServer CertificateNameHere.pem key = AppServer CerificateKeyNameHere.pem [rtmps vip] ; incoming vip for fms (This is to secure Meeting) IP address that resolves to meeting FQDN accept = :443 ; When stunnel is on the same box, leave the IP address as ; Send unencrypted request to 1935 connect = :1935 ; Certificate information for Connect Meetings. cert = Meeting Server CertificateNameHere.pem key = Meeting Server CerificateKeyNameHere.pem You must have two certificate files for each secure connection: one for the public SSL certificate and one for the private key belonging to the certificate. Specify the location of the public SSL certificate in the cert property. Specify the location of the private key in the key property. The server sends the public SSL certificate to clients. The private key remains on the server. 4 Open the custom.ini file located in the root installation directory and save a backup copy to another location. 5 Insert the following code in the custom.ini file without replacing or deleting any existing text: ADMIN_PROTOCOL= SSL_ONLY=yes RTMP_SEQUENCE=rtmps://external-host:443/?rtmp://localhost:8506/ Note: The custom.ini file is case sensitive use capital letters for parameter names and lowercase letters for values.

3 6 Save the custom.ini file. 7Open /appserv/conf/server.xml and uncomment the following section: <Connector port="8443" protocol="http/1.1" executor="httpsthreadpool" enablelookups="false" acceptcount="250" connectiontimeout="20000" SSLEnabled="false" scheme="https" secure="true" proxyport="443" URIEncoding="utf-8"/> 8 Restart Adobe Connect Server: a) Choose Start > Programs > Adobe Connect Server > Stop Adobe Connect Application Server b) Choose Start > Programs > Adobe Connect Server > Stop Adobe Connect Meeting Server c) Choose Start > Programs > Adobe Connect Server > Start Adobe Connect Meeting Server d) Choose Start > Programs > Adobe Connect Server > Start Adobe Connect Application Server e) Start stunnel.exe from [root_install_directory]\stunnel 9 Open the Application Management Console ( or Start > Programs > Adobe Connect Server > Configure Connect Server 10 On the Application Settings screen, select Server Settings and do the following: a) Enter the FQDN for your Adobe Connect account in the Connect Host box. This FQDN is the URL end users use to connect to Adobe Connect. b) Enter the FQDN for the Connect meeting server in the Host Mappings External Name box. The server uses this value internally. Secure the web application server (HTTP) only 1 Locate your installation media for Adobe Connect 9 and browse to \Connect\ \Merge_Modules\stunnel zip 2 Extract the stunnel zip file to a new folder named stunnel under your Adobe Connect installation folder, as follows: [root_install_dir]\stunnel 3 Under the newly-created stunnel folder, open stunnel.conf and replace the following code (replace the code in italic with your own values): ; Protocol version (all, SSLv2, SSLv3, TLSv1) sslversion = all fips = no ; Some performance tunings socket = l:tcp_nodelay=1 socket = r:tcp_nodelay=1 TIMEOUTclose=0

4 options = DONT_INSERT_EMPTY_FRAGMENTS [https vip] ; incoming vip for https (This is to secure Web) ; ip address that resolves to the ConnectProHost (Web App FQDN). ; listens on port 443 accept = :443 ; When stunnel is on the same box, simply leave the below IP address as ; send the unencrypted request to port 8443 connect = :8443 ; Certificate information for Connect. cert = AppServer CertificateNameHere.pem key = AppServer CerificateKeyNameHere.pem You must have two certificate files for each secure connection: one for the public SSL certificate and one for the private key belonging to the certificate. Specify the location of the public SSL certificate in the cert property. Specify the location of the private key in the key property. The server sends the public SSL certificate to clients. The private key remains on the server. 4 Open the custom.ini file located in the root installation directory (c:\connect, by default) and save a backup copy to another location. 5 Insert the following code in the custom.ini file without replacing or deleting any existing text: ADMIN_PROTOCOL= SSL_ONLY=yes Note: The custom.ini file is case sensitive use capital letters for parameter names and lowercase letters for values. 6 Save the custom.ini file. 7 Open /appserv/conf/server.xml and uncomment the following section: <Connector port="8443" protocol="http/1.1" executor="httpsthreadpool" enablelookups="false" acceptcount="250" connectiontimeout="20000" SSLEnabled="false" scheme="https" secure="true" proxyport="443" URIEncoding="utf-8"/> 8 Restart Adobe Connect Server: a) Choose Start > Programs > Adobe Connect Server > Stop Adobe Connect Application Server. b) Choose Start > Programs > Adobe Connect Server > Start Adobe Connect Application Server. c) Start stunnel.exe from [root_install_directory]\stunnel

5 9 Open the Application Management Console ( or Start > Programs > Adobe Connect Server > Configure Connect Server 10 On the Application Settings screen, select Server Settings and do the following: a) Enter the fully qualified domain name for your Adobe Connect account in the Connect Host box. This is the domain name end users use to connect to Adobe Connect. Secure the meeting server (RTMP) only 1 Locate your installation media for Adobe Connect 9 and browse to \Connect\ \Merge_Modules\stunnel zip 2 Extract the stunnel zip file to a new folder named stunnel under your Adobe Connect installation folder, as follows: [root_install_dir]\stunnel 3 Under the newly-created stunnel folder, open stunnel.conf and replace the following code (replace the code in italic with your own values): ; Protocol version (all, SSLv2, SSLv3, TLSv1) sslversion = all fips = no ; Some performance tunings socket = l:tcp_nodelay=1 socket = r:tcp_nodelay=1 TIMEOUTclose=0 options = DONT_INSERT_EMPTY_FRAGMENTS [rtmps vip] ; incoming vip for fms (This is to secure Meeting) IP address that resolves to meeting FQDN accept = :443 ; When stunnel is on the same box, simply leave the below IP address as ; Send unencrypted request to 1935 connect = :1935 ; Certificate information for Connect Meetings. cert = MeetingServer CertificateNameHere.pem key = Meeting Server CerificateKeyNameHere.pem You must have two certificate files for each secure connection: one for the public SSL certificate and one for the private key belonging to the certificate. Specify the location of the public SSL certificate in the cert property. Specify the location of the private key in the key property. The server sends the public SSL certificate to clients. The private key remains on the server. 4 Open the custom.ini file located in the root installation directory (c:\connect, by default) and save a backup copy to another location. 5 Insert the following code in the custom.ini file without replacing or deleting any existing text: RTMP_SEQUENCE=rtmps://external-host:443/?rtmp://localhost:8506/

6 Note: The custom.ini file is case sensitive use capital letters for parameter names and lowercase letters for values. 6 Save the custom.ini file. 7 Restart Adobe Connect Server: a) Choose Start > Programs > Adobe Connect Server > Stop Adobe Connect Meeting Server b) Choose Start > Programs > Adobe Connect Server > Start Adobe Connect Meeting Server c) Start stunnel.exe from [root_install_directory]\stunnel 8 Open the Application Management Console ( or Start > Programs > Adobe Connect Server > Configure Connect Server). 9 On the Application Settings screen, select Server Settings and do the following: a) Enter the fully qualified domain name for your Adobe Connect account in the Connect Host box. This is the domain name end users use to connect to Adobe Connect. b) Enter the fully qualified domain name for the Connect meeting server in the Host Mappings External Name box. The server uses this value internally. Secure communications for the Adobe Connect Edge Server This section describes how to configure software SSL with the optional Adobe Connect Edge Server product. It assumes that you have already configured your Adobe Connect server for SSL. It also assumes that you have purchased and installed the Adobe Connect Edge Server product and are now prepared to secure it with software SSL. The supported Adobe Connect Software SSL solution, STunnel, does not come packaged as part of the Adobe Connect Edge Server installer. First you will need to get a copy of the supported version of STunnel and install it on the server which hosts your Edge Server. 1 Locate your installation media for Adobe Connect 9 and browse to \Connect\ \Merge_Modules\stunnel zip 2 Extract the stunnel zip file to a new folder named stunnel under your Adobe Connect installation folder, as follows: [root_install_dir]\stunnel 3 Under the newly-created stunnel folder, open stunnel.conf and replace the following code (replace the code in italic with your own values):; Protocol version (all, SSLv2, SSLv3, TLSv1) sslversion = all ; Some performance tunings socket = l:tcp_nodelay=1 socket = r:tcp_nodelay=1 TIMEOUTclose=0 options = DONT_INSERT_EMPTY_FRAGMENTS [https vip] ; incoming vip for https (This is to secure Web) ; ip address that resolves to the ConnectProHost (Web App FQDN). ; listens on port 443 accept = :443 ; When stunnel is on the same box, leave the below IP address as ; send the unencrypted request to port 8443

7 connect = :8443 ; Certificate information for Connect. cert = AppServer CertificateNameHere.pem key = AppServer CerificateKeyNameHere.pem [rtmps vip] ; incoming vip for fms (This is to secure Meeting) IP address that resolves to meeting FQDN accept = :443 ; When stunnel is on the same box, leave the IP address as ; Send unencrypted request to 1935 connect = :1935 ; Certificate information for Connect Meetings. cert = Meeting Server CertificateNameHere.pem key = Meeting Server CerificateKeyNameHere.pem You must have two certificate files for each secure connection: one for the public SSL certificate and one for the private key belonging to the certificate. Specify the location of the public SSL certificate in the cert property. Specify the location of the private key in the key property. The server sends the public SSL certificate to clients. The private key remains on the server. 4 Change the DNS entry you are using to redirect Connect traffic to the Edge server to use the ip address of the httpsvip from the STunnel configuration file. 5 Open the custom.ini file located in the Adobe Connect root installation directory (c:\connect, by default) and save a backup copy to another location. 6 Configure the edge server to point to your main Connect server by inserting the following code in the custom.ini file: FCS_EDGE_REGISTER_HOST=connect.yourdomain.com:8443 FCS.HTTPCACHE_BREEZE_SERVER_SECURE_PORT= connect.yourdomain.com:443 Note: The custom.ini file is case sensitive use capital letters for parameter names and lowercase letters for values. 7 Save the custom.ini file. 8Open breeze\edgeserver\win32\conf\httpcache.xml. Edit the HostName tag and enter the FQDN for the FMS VIP of the Edge Server: <HostName>edge-fms.yourdomain.com</HostName> 9 Restart Adobe Connect Edge Server: d) Choose Start > Programs > Adobe Connect Edge Server > Stop Connect Edge Server. e) Choose Start > Programs > Adobe Connect Edge Server > Start Connect Edge Server. 10 Restart the STunnel service. 11 Go to your Adobe Connect server and open the Application Management Console ( or Start > Programs > Adobe Connect Server > Configure Connect Server).

8 12 On the Application Settings screen, select Server Settings and verify that your edge server now appears listed under the Host Mappings heading. Test the configuration 1If you secured the application server, log in to Adobe Connect Central. You see a lock in your browser. 2If you secured the meeting server, enter an Adobe Connect meeting room. You see a lock in the connection light.

Stunnel Guide for Trevance 19 April 2017

Stunnel Guide for Trevance 19 April 2017 Stunnel Guide for Trevance 19 April 2017 This guide is for stunnel.conf version 2017-04-19.01. The stunnel.conf version number is near the top of the file. When communicating with the Trevance payment

More information

Stunnel Guide for CN!Express 3 April 2017

Stunnel Guide for CN!Express 3 April 2017 Stunnel Guide for CN!Express 3 April 2017 When communicating with the CN!Express payment application from a remote server, the communications between the two servers must be secured. Auric requires CN!Express

More information

System Setup. Accessing the Administration Interface CHAPTER

System Setup. Accessing the Administration Interface CHAPTER CHAPTER 3 The system can be configured through the web interface to provide the networking configuration for the appliance and other system settings that are important such as time and SSL certificate.

More information

How to Set Up External CA VPN Certificates

How to Set Up External CA VPN Certificates To configure a client-to-site, or site-to-site VPN using s created by External CA, you must create the following VPN s for the VPN service to be able to authenticate Before you begin Use an external CA

More information

How to Configure Guest Access with the Ticketing System

How to Configure Guest Access with the Ticketing System How to Configure Guest Access with the Ticketing System Set up a login or ticketing system to temporarily grant access to guest users. Ticketing admins assign guest tickets to the users. The user credentials

More information

GlobalForms SSL Installation Tech Brief

GlobalForms SSL Installation Tech Brief 127 Church Street, New Haven, CT 06510 O: (203) 789-0889 E: sales@square-9.com www.square-9.com GlobalForms SSL Installation Guide The following guide will give an overview of how to generate and install

More information

Genesys Administrator Extension Migration Guide. Prerequisites

Genesys Administrator Extension Migration Guide. Prerequisites Genesys Administrator Extension Migration Guide Prerequisites 7/17/2018 Contents 1 Prerequisites 1.1 Management Framework 1.2 Computing Environment Prerequisites 1.3 Browser Requirements 1.4 Required Permissions

More information

Microsoft Exchange Server 2013 and 2016 Deployment

Microsoft Exchange Server 2013 and 2016 Deployment Microsoft Exchange Server 2013 and 2016 Deployment Barracuda Networks has conducted interoperability tests using the Barracuda Load Balancer ADC and Microsoft Exchange Server 2013 and Microsoft Exchange

More information

VMware Identity Manager Connector Installation and Configuration (Legacy Mode)

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

More information

Load Balancing Nginx Web Servers with OWASP Top 10 WAF in AWS

Load Balancing Nginx Web Servers with OWASP Top 10 WAF in AWS Load Balancing Nginx Web Servers with OWASP Top 10 WAF in AWS Quick Reference Guide V1.0.2 ABOUT THIS GUIDE This document provides a quick reference guide on how to load balance Nginx Web Servers and configure

More information

FieldView. Management Suite

FieldView. Management Suite FieldView The FieldView Management Suite (FMS) system allows administrators to view the status of remote FieldView System endpoints, create and apply system configurations, and manage and apply remote

More information

Installing and Configuring VMware Identity Manager Connector (Windows) OCT 2018 VMware Identity Manager VMware Identity Manager 3.

Installing and Configuring VMware Identity Manager Connector (Windows) OCT 2018 VMware Identity Manager VMware Identity Manager 3. Installing and Configuring VMware Identity Manager Connector 2018.8.1.0 (Windows) OCT 2018 VMware Identity Manager VMware Identity Manager 3.3 You can find the most up-to-date technical documentation on

More information

Load Balancing Web Servers with OWASP Top 10 WAF in AWS

Load Balancing Web Servers with OWASP Top 10 WAF in AWS Load Balancing Web Servers with OWASP Top 10 WAF in AWS Quick Reference Guide V1.0.1 ABOUT THIS GUIDE This document provides a quick reference guide on how to load balance Web Servers and configure a WAF

More information

Load Balancing Nginx Web Servers with OWASP Top 10 WAF in Azure

Load Balancing Nginx Web Servers with OWASP Top 10 WAF in Azure Load Balancing Nginx Web Servers with OWASP Top 10 WAF in Azure Quick Reference Guide v1.0.2 ABOUT THIS GUIDE This document provides a quick reference guide on how to load balance Nginx Web Servers and

More information

Load Balancing Web Servers with OWASP Top 10 WAF in Azure

Load Balancing Web Servers with OWASP Top 10 WAF in Azure Load Balancing Web Servers with OWASP Top 10 WAF in Azure Quick Reference Guide v1.0.3 ABOUT THIS GUIDE This document provides a quick reference guide on how to load balance Web Servers and configure a

More information

LDAP Directory Integration

LDAP Directory Integration LDAP Server Name, Address, and Profile Configuration, on page 1 with Cisco Unified Communications Manager Task List, on page 1 for Contact Searches on XMPP Clients, on page 6 LDAP Server Name, Address,

More information

Mitel MiVoice Connect Security Certificates

Mitel MiVoice Connect Security Certificates Application Note - AN16036 MT App Note 16036 (AN 16036) May, 2018 Mitel MiVoice Connect Security Certificates Description: This Application Note describes the use of security certificates in Mitel MiVoice

More information

PowerSchool Student Information System

PowerSchool Student Information System PowerTeacher Gradebook Installation and Setup Guide PowerSchool Student Information System Released December 8, 2008 Document Owner: Documentation Services This edition applies to Release 1.5 of the PowerTeacher

More information

Installing nginx for DME Server

Installing nginx for DME Server for DME Server Document version 1.3 Published 10-05-2017 nginx installation guide Contents nginx installation guide... 2 nginx... 4 Windows... 5... 6 Supported platforms... 6 Step 1: Install or upgrade

More information

IceWarp SSL Certificate Process

IceWarp SSL Certificate Process IceWarp Unified Communications IceWarp SSL Certificate Process Version 12 Printed on 20 April, 2017 Contents IceWarp SSL Certificate Process 1 Choosing the Proper Certificate Type... 2 Creating your CSR

More information

User guide NotifySCM Installer

User guide NotifySCM Installer User guide NotifySCM Installer TABLE OF CONTENTS 1 Overview... 3 2 Office 365 Users synchronization... 3 3 Installation... 5 4 Starting the server... 17 2 P a g e 1 OVERVIEW This user guide provides instruction

More information

Getting Started. Overview CHAPTER

Getting Started. Overview CHAPTER CHAPTER 1 This chapter provides information that you need to get started with the IPICS Mobile Client. It includes these topics: Overview, page 1-1 Obtaining the IPICS Mobile Client, page 1-3, page 1-4

More information

How to Configure the Sakai Integration - Admin

How to Configure the Sakai Integration - Admin How to Configure the Sakai Integration - Admin Overview Panopto s free Sakai integration brings video directly to the Sakai interface. Instructors can add and manage their video files inside their familiar

More information

Configuration of Microsoft Live Communications Server for Partitioned Intradomain Federation

Configuration of Microsoft Live Communications Server for Partitioned Intradomain Federation Configuration of Microsoft Live Communications Server for Partitioned Intradomain Federation Domain Verification for LCS Servers, page 1 Enable Port 5060 on LCS Server, page 1 Configure a LCS Static Route

More information

Getting Started. Overview CHAPTER

Getting Started. Overview CHAPTER 1 CHAPTER This chapter provides information that you need to get started with the IPICS Mobile Client. It includes these topics: Overview, page 1-1 Obtaining the IPICS Mobile Client, page 1-4 Obtaining

More information

VMware Horizon View Deployment

VMware Horizon View Deployment VMware Horizon View provides end users with access to their machines and applications through a unified workspace across multiple devices, locations, and connections. The Horizon View Connection Server

More information

Bitnami JFrog Artifactory for Huawei Enterprise Cloud

Bitnami JFrog Artifactory for Huawei Enterprise Cloud Bitnami JFrog Artifactory for Huawei Enterprise Cloud Description JFrog Artifactory is a Binary Repository Manager for Maven, Ivy, Gradle modules, etc. Integrates with CI servers for fully traceable builds.

More information

VMware Identity Manager Cloud Deployment. Modified on 01 OCT 2017 VMware Identity Manager

VMware Identity Manager Cloud Deployment. Modified on 01 OCT 2017 VMware Identity Manager VMware Identity Manager Cloud Deployment Modified on 01 OCT 2017 VMware Identity Manager You can find the most up-to-date technical documentation on the VMware Web site at: https://docs.vmware.com/ The

More information

PKI Cert Creation via Good Control: Reference Implementation

PKI Cert Creation via Good Control: Reference Implementation PKI Cert Creation via Good Control: Reference Implementation Legal Notice Copyright 2016 BlackBerry Limited. All rights reserved. All use is subject to license terms posted at http://us.blackberry.com/legal/legal.html.

More information

VMware Identity Manager Cloud Deployment. DEC 2017 VMware AirWatch 9.2 VMware Identity Manager

VMware Identity Manager Cloud Deployment. DEC 2017 VMware AirWatch 9.2 VMware Identity Manager VMware Identity Manager Cloud Deployment DEC 2017 VMware AirWatch 9.2 VMware Identity Manager You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

CounterACT DNS Enforce Plugin

CounterACT DNS Enforce Plugin Version 1.1.4.1 Table of Contents About the DNS Enforce Plugin... 3 What to Do... 4 Requirements... 4 Install the Plugin... 4 Configure the Plugin... 5 Target IP... 7 Port Information... 7 Time to Live

More information

Advanced Integration TLS Certificate on the NotifySCM Server

Advanced Integration TLS Certificate on the NotifySCM Server Advanced Integration TLS Certificate on the NotifySCM Server TABLE OF CONTENTS 1 Enable a TLS Connection Between NotifySCM and a Reverse Proxy... 3 1.1 Generate a self-signed certificate... 3 1.2 Install

More information

LDAP Directory Integration

LDAP Directory Integration LDAP Server Name, Address, and Profile Configuration, page 1 with Cisco Unified Communications Manager Task List, page 1 for Contact Searches on XMPP Clients, page 6 LDAP Server Name, Address, and Profile

More information

Elastic Load Balancing. User Guide. Date

Elastic Load Balancing. User Guide. Date Date 2018-07-20 Contents Contents 1 Product Description... 4 1.1 What Is Elastic Load Balancing (ELB)?... 4 1.2 Load Balancer Type... 4 1.3 Basic Architecture... 5 1.3.1 Classic Load Balancer... 5 1.3.2

More information

Best Practices for Security Certificates w/ Connect

Best Practices for Security Certificates w/ Connect Application Note AN17038 MT AppNote 17038 (AN 17038) September 2017 Best Practices for Security Certificates w/ Connect Description: This Application Note describes the process and best practices for using

More information

Example - Reverse Proxy for Exchange Services

Example - Reverse Proxy for Exchange Services The reverse proxy redirects incoming requests from Microsoft Exchange Server services to clients without providing the origin details. This example configuration shows how to configure a reverse proxy

More information

Prescription Monitoring Program Information Exchange. RxCheck State Routing Service. SRS Installation & Setup Guide

Prescription Monitoring Program Information Exchange. RxCheck State Routing Service. SRS Installation & Setup Guide Prescription Monitoring Program Information Exchange RxCheck State Routing Service SRS Installation & Setup Guide Delivery On: Version: July 2018 2.0 Prepared By: Sponsored By: IJIS Institute Tetrus Corp

More information

Horizon DaaS Platform 6.1 Patch 2

Horizon DaaS Platform 6.1 Patch 2 Horizon DaaS Platform 6.1 Patch 2 November 2014 Revision History Date Version Description 11/07/2014 1.0 Initial release 2014 VMw are, Inc. All rights reserved. This product is protected by U.S. and international

More information

Configure the IM and Presence Service to Integrate with the Microsoft Exchange Server

Configure the IM and Presence Service to Integrate with the Microsoft Exchange Server Configure the IM and Presence Service to Integrate with the Microsoft Exchange Server Configure a Presence Gateway for Microsoft Exchange Integration, page 1 SAN and Wildcard Certificate Support, page

More information

After installation need to configure 3.5. Secure WSUS with the Secure Sockets Layer Protocol You can use the Secure Sockets Layer (SSL) protocol to help secure the WSUS deployment. WSUS uses SSL

More information

VMware Content Gateway to Unified Access Gateway Migration Guide

VMware Content Gateway to Unified Access Gateway Migration Guide VMware Content Gateway to Unified Access Gateway Migration Guide Workspace ONE UEM v9.7 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

More information

Deploying VMware Identity Manager in the DMZ. JULY 2018 VMware Identity Manager 3.2

Deploying VMware Identity Manager in the DMZ. JULY 2018 VMware Identity Manager 3.2 Deploying VMware Identity Manager in the DMZ JULY 2018 VMware Identity Manager 3.2 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have

More information

TestsDumps. Latest Test Dumps for IT Exam Certification

TestsDumps.   Latest Test Dumps for IT Exam Certification TestsDumps http://www.testsdumps.com Latest Test Dumps for IT Exam Certification Exam : 70-350 Title : Implementing Microsoft Internet Security and Acceleration (ISA) Server 2004 Vendors : Microsoft Version

More information

Privileged Remote Access Appliance Interface (/appliance)

Privileged Remote Access Appliance Interface (/appliance) Privileged Remote Access Appliance Interface (/appliance) 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property

More information

Load Balancing Microsoft IIS. Deployment Guide v Copyright Loadbalancer.org

Load Balancing Microsoft IIS. Deployment Guide v Copyright Loadbalancer.org Load Balancing Microsoft IIS Deployment Guide v1.6.4 Copyright Loadbalancer.org Table of Contents 1. About this Guide...4 2. Loadbalancer.org Appliances Supported...4 3. Loadbalancer.org Software Versions

More information

SAML-Based SSO Configuration

SAML-Based SSO Configuration Prerequisites, page 1 SAML SSO Configuration Workflow, page 5 Reconfigure OpenAM SSO to SAML SSO After an Upgrade, page 9 Prerequisites NTP Setup In SAML SSO, Network Time Protocol (NTP) enables clock

More information

Elastic Load Balance. User Guide. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD.

Elastic Load Balance. User Guide. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 01 Date 2018-04-30 HUAWEI TECHNOLOGIES CO., LTD. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

new world ERP Server Migration Checklist New World ERP TMS

new world ERP Server Migration Checklist New World ERP TMS new world ERP Server Migration Checklist Revised 2/20/17 Table of Contents Overview... 3 Document and Build Environments... 4 Test the New Servers... 7 Cut Over to New Servers... 8 Appendix A: Server Documentation

More information

Appliance Interface Guide (/appliance) Base 5.x

Appliance Interface Guide (/appliance) Base 5.x Appliance Interface Guide (/appliance) Base 5.x 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property

More information

Android Mobile Single Sign-On to VMware Workspace ONE. SEP 2018 VMware Workspace ONE VMware Identity Manager VMware Identity Manager 3.

Android Mobile Single Sign-On to VMware Workspace ONE. SEP 2018 VMware Workspace ONE VMware Identity Manager VMware Identity Manager 3. Android Mobile Single Sign-On to VMware Workspace ONE SEP 2018 VMware Workspace ONE VMware Identity Manager VMware Identity Manager 3.3 You can find the most up-to-date technical documentation on the VMware

More information

Certificates for Live Data

Certificates for Live Data You must set up security certificates for Finesse and Cisco Unified Intelligence Center with HTTPS. You can: Use the self-signed certificates provided with Finesse and Cisco Unified Intelligence Center.

More information

Convio Data Sync Connector 3 Installation Guide

Convio Data Sync Connector 3 Installation Guide Convio Data Sync Connector 3 Installation Guide Convio Connector Installation Instructions.doc 1 INSTALLATION Installation Prerequisites... 3 Technical Requirements... 3 Installing the Pervasive Data Integrator...

More information

Highwinds CDN Content Protection Products. August 2009

Highwinds CDN Content Protection Products. August 2009 Highwinds CDN Content Protection Products August 2009 1 Highwinds CDN Content Protection Products August 2009 Table of Contents CDN SECURITY INTRO... 3 CONTENT PROTECTION BY CDN DELIVERY PRODUCT... 3 HTTP

More information

Deploying VMware Identity Manager in the DMZ. SEPT 2018 VMware Identity Manager 3.3

Deploying VMware Identity Manager in the DMZ. SEPT 2018 VMware Identity Manager 3.3 Deploying VMware Identity Manager in the DMZ SEPT 2018 VMware Identity Manager 3.3 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have

More information

10972: ADMINISTERING THE WEB SERVER (IIS) ROLE OF WINDOWS SERVER

10972: ADMINISTERING THE WEB SERVER (IIS) ROLE OF WINDOWS SERVER ABOUT THIS COURSE This course provides students with the fundamental knowledge and skills to configure and manage Internet Information Services. This course is intended to help provide pre-requisite skills

More information

This post documents the basic steps that should be performed after installing Exchange I perform the following steps:

This post documents the basic steps that should be performed after installing Exchange I perform the following steps: Dean Suzuki Blog Title: Basic Exchange 2013 Configuration Created: 11/28/2012 Description: This post documents the basic steps that should be performed after installing Exchange 2013. I perform the following

More information

ForeScout CounterACT. Configuration Guide. Version 1.2

ForeScout CounterACT. Configuration Guide. Version 1.2 ForeScout CounterACT Core Extensions Module: DNS Enforce Plugin Version 1.2 Table of Contents About the DNS Enforce Plugin... 3 What to Do... 4 Requirements... 4 Configure the Plugin... 4 Target IP...

More information

Load Balancing Censornet USS Gateway. Deployment Guide v Copyright Loadbalancer.org

Load Balancing Censornet USS Gateway. Deployment Guide v Copyright Loadbalancer.org Load Balancing Censornet USS Gateway Deployment Guide v1.0.0 Copyright Loadbalancer.org Table of Contents 1. About this Guide...3 2. Loadbalancer.org Appliances Supported...3 3. Loadbalancer.org Software

More information

Remote Support Appliance Interface (/appliance)

Remote Support Appliance Interface (/appliance) Remote Support Appliance Interface (/appliance) 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property of

More information

App Orchestration 2.6

App Orchestration 2.6 Configuring NetScaler 10.5 Load Balancing with StoreFront 3.0 and NetScaler Gateway for Last Updated: June 04, 2015 Contents Introduction... 3 Configure the NetScaler load balancer certificates... 3 To

More information

SAML-Based SSO Configuration

SAML-Based SSO Configuration Prerequisites, page 1 SAML SSO Configuration Task Flow, page 5 Reconfigure OpenAM SSO to SAML SSO Following an Upgrade, page 9 SAML SSO Deployment Interactions and Restrictions, page 9 Prerequisites NTP

More information

Creating an authorized SSL certificate

Creating an authorized SSL certificate Creating an authorized SSL certificate for MeetingSphere Meeting Center Server MeetingSphere Meeting Center Server requires an authorized SSL certificate by which its Meeting center is identified, and

More information

Secure IIS Web Server with SSL

Secure IIS Web Server with SSL Publication Date: May 24, 2017 Abstract The purpose of this document is to help users to Install and configure Secure Socket Layer (SSL) Secure the IIS Web server with SSL It is supported for all EventTracker

More information

Running Intellicus under SSL. Version: 16.0

Running Intellicus under SSL. Version: 16.0 Running Intellicus under SSL Version: 16.0 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived

More information

Configuring Cisco Unified MeetingPlace Web Conferencing Security Features

Configuring Cisco Unified MeetingPlace Web Conferencing Security Features Configuring Cisco Unified MeetingPlace Web Conferencing Security Features Release 7.1 Revised: February 15, 2012 3:42 pm How to Configure Restricted Meeting ID Patterns, page 1 How to Configure Secure

More information

Uniform Resource Locators (URL)

Uniform Resource Locators (URL) The World Wide Web Web Web site consists of simply of pages of text and images A web pages are render by a web browser Retrieving a webpage online: Client open a web browser on the local machine The web

More information

Configuring WebConnect

Configuring WebConnect CHAPTER 6 WebConnect provides seamless integration between multiple internal and external web servers through a single URL. Making use of a single database and a customer-defined rollover sequence, WebConnect

More information

(Document Insight Evaluation Title) Quick Start Guide (Product Version 10.0

(Document Insight Evaluation Title) Quick Start Guide (Product Version 10.0 AppSense Insight Environment Management Application Performance DataNow Manager Center (Document Insight Evaluation Title) Quick Start Guide (Product Version 10.0 Version) AppSense Insight - Evaluation

More information

ZENworks Mobile Workspace Installation Guide. September 2017

ZENworks Mobile Workspace Installation Guide. September 2017 ZENworks Mobile Workspace Installation Guide September 2017 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights,

More information

Intel Small Business Extended Access. Deployment Guide

Intel Small Business Extended Access. Deployment Guide Intel Small Business Extended Access Deployment Legal Notices and Disclaimers Disclaimers INTEL CORPORATION MAKES NO WARRANTY OF ANY KIND WITH REGARD TO THIS MATERIAL, INCLUDING, BUT NOT LIMITED TO, THE

More information

Upgrade Instructions. NetBrain Integrated Edition 7.1. Two-Server Deployment

Upgrade Instructions. NetBrain Integrated Edition 7.1. Two-Server Deployment NetBrain Integrated Edition 7.1 Upgrade Instructions Two-Server Deployment Version 7.1a Last Updated 2018-09-04 Copyright 2004-2018 NetBrain Technologies, Inc. All rights reserved. Contents 1. Upgrading

More information

GroupWise Messenger 18 Installation Guide. November 2017

GroupWise Messenger 18 Installation Guide. November 2017 GroupWise Messenger 18 Installation Guide November 2017 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights,

More information

Web Interface Installation Guide. Version 8.2

Web Interface Installation Guide. Version 8.2 Web Interface Installation Guide Version 8.2 Web Interface Installation Guide The purpose of this document is to provide the steps necessary to configure and use the SBAdmin Web Interface. The SBAdmin

More information

Configuring Cisco Unified Presence for Integration with Microsoft Exchange Server

Configuring Cisco Unified Presence for Integration with Microsoft Exchange Server CHAPTER 4 Configuring Cisco Unified Presence for Integration with Microsoft Exchange Server Revised: November 30, 2012 Configuring the Presence Gateway on Cisco Unified Presence for Microsoft Exchange

More information

Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1

Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1 Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1 Setting Up Resources in VMware Identity Manager (On Premises) You can find the most up-to-date

More information

Table of Contents. Installing the AD FS Running the PowerShell Script 16. Troubleshooting log in issues 19

Table of Contents. Installing the AD FS Running the PowerShell Script 16. Troubleshooting log in issues 19 ZOHOCORP Installing and configuring AD FS 2.0 to work with ManageEngine SDP On-Demand Step by Step Guide ManageEngine On-Demand 3/21/2012 Table of Contents Installing the AD FS 2.0 2 Running the PowerShell

More information

Certificates for Live Data Standalone

Certificates for Live Data Standalone Certificates and Secure Communications, on page 1 Export Self-Signed Live Data Certificates, on page 2 Import Self-Signed Live Data Certificates, on page 3 Produce Certificate Internally, on page 4 Deploy

More information

Installing VMR with V2PC

Installing VMR with V2PC This chapter describes the procedure for installing VMR v1.2.1_018 or later on Red Hat OpenShift Container Orchestration Engine (COE) 1.5.1. These procedures assume you are using V2PC as the control interface

More information

How to configure the UTM Web Application Firewall for Microsoft Lync Web Services connectivity

How to configure the UTM Web Application Firewall for Microsoft Lync Web Services connectivity How to configure the UTM Web Application Firewall for Microsoft Lync Web Services connectivity This article explains how to configure your Sophos UTM to allow access Microsoft s Lync Web Services (the

More information

akkadian Global Directory 3.0 System Administration Guide

akkadian Global Directory 3.0 System Administration Guide akkadian Global Directory 3.0 System Administration Guide Updated July 19 th, 2016 Copyright and Trademarks: I. Copyright: This website and its content is copyright 2014 Akkadian Labs. All rights reserved.

More information

XMediusFAX Sharp OSA Connector Administration Guide

XMediusFAX Sharp OSA Connector Administration Guide WWW.XMEDIUS.COM XMediusFAX Sharp OSA Connector 4.1.0 Administration Guide XMediusFAX Sharp OSA Connector Version Number 4.1.0.76 March 2016. Patents Protected by US Patents 4,994,926; 5,291,302; 5,459,584;

More information

ENABLING RPC OVER HTTPS CONNECTIONS TO M-FILES SERVER

ENABLING RPC OVER HTTPS CONNECTIONS TO M-FILES SERVER M-FILES CORPORATION ENABLING RPC OVER HTTPS CONNECTIONS TO M-FILES SERVER LAST UPDATED DECEMBER 13, 2017 VERSION 2.9 Contents 1. Overview... 3 1.1 Prerequisites... 3 2. Network Layout... 4 2.1 Separate

More information

McAfee epo Deep Command

McAfee epo Deep Command Quick Start Guide McAfee epo Deep Command version 2.4.1 This Quick Start Guide provides high level instructions for setting up McAfee epo Deep Command 2.4.1. For detailed instructions, refer to the McAfee

More information

Configuring Cisco Mobility Express controller

Configuring Cisco Mobility Express controller There are multiple ways one can configure a Cisco Mobility Express controller. They are as follows: 1 CLI Setup Wizard 2 Over the Air Setup Wizard 3 Network Plug and Play CLI Setup Wizard, page 1 Over-the-Air

More information

BROWSER-BASED SUPPORT CONSOLE USER S GUIDE. 31 January 2017

BROWSER-BASED SUPPORT CONSOLE USER S GUIDE. 31 January 2017 BROWSER-BASED SUPPORT CONSOLE USER S GUIDE 31 January 2017 Contents 1 Introduction... 2 2 Netop Host Configuration... 2 2.1 Connecting through HTTPS using Certificates... 3 2.1.1 Self-signed certificate...

More information

Cloud Access Manager Security and Best Practices Guide

Cloud Access Manager Security and Best Practices Guide Cloud Access Manager 8.1.3 Security and Best Practices Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

Installing VMR with V2PC

Installing VMR with V2PC This chapter describes the procedure for installing VMR v1.2.1_018 or later on Red Hat OpenShift v1.5. These procedures assume you are using V2PC as the control interface for VMR. The following topics

More information

Managing Certificates

Managing Certificates CHAPTER 12 The Cisco Identity Services Engine (Cisco ISE) relies on public key infrastructure (PKI) to provide secure communication for the following: Client and server authentication for Transport Layer

More information

Step-by-step installation guide for monitoring untrusted servers using Operations Manager

Step-by-step installation guide for monitoring untrusted servers using Operations Manager Step-by-step installation guide for monitoring untrusted servers using Operations Manager Most of the time through Operations Manager, you may require to monitor servers and clients that are located outside

More information

Advanced Web Scanner Service

Advanced Web Scanner Service Advanced Web Scanner Service The existing Web Scanner mechanism was not supported by all the browsers and required changes in the methodology. The Advanced Web Scanner Service provides a more secure and

More information

Building Block Installation - Admins

Building Block Installation - Admins Building Block Installation - Admins Overview To use your Blackboard Server with Panopto, you first need to install the Panopto Building Block on your Blackboard server. You then need to add Blackboard

More information

SCCM Plug-in User Guide. Version 3.0

SCCM Plug-in User Guide. Version 3.0 SCCM Plug-in User Guide Version 3.0 JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software 301 4th Ave

More information

Use a class C setting for maximum security. The class C setting is Click RoomWizard Setup.

Use a class C setting for maximum security. The class C setting is Click RoomWizard Setup. Use a class C setting for maximum security. The class C setting is 255.255.255.0. 2 Click RoomWizard Setup. The Default Gateway is the IP address of the router or gateway that provides internet access.

More information

Adding Report Folders to Entuity

Adding Report Folders to Entuity Adding Report Folders to Entuity Purpose: The purpose of this Application note is to provide a short procedure that will demonstrate how to add a new report folder to an Entuity server. The procedure will

More information

Setting Up the Server

Setting Up the Server Managing Licenses, page 1 Cross-launch from Prime Collaboration Provisioning, page 5 Integrating Prime Collaboration Servers, page 6 Single Sign-On for Prime Collaboration, page 7 Changing the SSL Port,

More information

Forescout. Configuration Guide. Version 1.3

Forescout. Configuration Guide. Version 1.3 Forescout Version 1.3 Contact Information Forescout Technologies, Inc. 190 West Tasman Drive San Jose, CA 95134 USA https://www.forescout.com/support/ Toll-Free (US): 1.866.377.8771 Tel (Intl): 1.408.213.3191

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.7 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Setting up the Sophos Mobile Control External EAS Proxy

Setting up the Sophos Mobile Control External EAS Proxy Setting up the Sophos Mobile Control External EAS Proxy Setting up the External EAS Proxy This document tries to explain the concept of the Sophos Mobile Control External EAS Proxy which is available for

More information

Module 1: Understanding and Installing Internet Information Services

Module 1: Understanding and Installing Internet Information Services Course Outline Module 1: Understanding and Installing Internet Information Services In this module, you will learn about the infrastructure prerequisites for using Microsoft Internet Information Services

More information

ENTRUST CONNECTOR Installation and Configuration Guide Version April 21, 2017

ENTRUST CONNECTOR Installation and Configuration Guide Version April 21, 2017 ENTRUST CONNECTOR Installation and Configuration Guide Version 0.5.1 April 21, 2017 2017 CygnaCom Solutions, Inc. All rights reserved. Contents What is Entrust Connector... 4 Installation... 5 Prerequisites...

More information