Pure commitment. how to. change IPsec VPN settings via the vcloud Director API. version 3.0

Size: px
Start display at page:

Download "Pure commitment. how to. change IPsec VPN settings via the vcloud Director API. version 3.0"

Transcription

1 Pure commitment. how to change IPsec VPN settings via the vcloud Director API version 3.0

2 Contents Overview... 3 Obtaining your vcloud API credentials... 3 Installing a REST client... 4 Obtaining an authorisation token... 7 Retrieving organisation details via the API Retrieving virtual data centre details via the API Retrieving edge gateway configuration via the API Reviewing the edge gateway configuration Locating the IPsec VPN settings in the returned XML Modifying the IPsec VPN configuration Modifying the local endpoint IP and local ID Modifying the peer endpoint IP and peer ID Adding or removing local subnets Adding or removing peer subnets Amending the shared secret Applying the new configuration What s next? Feedback UKCloud Ltd, 2017 Open Page 2 of 25

3 Overview This guide covers the installation and basic usage of a Firefox plugin called REST Client. Using this plugin, you can to retrieve, modify, and submit blocks of XML that represent the configuration of the IPsec VPN tunnels. The guide covers modifications to the local and peer IP addresses, local and peer IDs as well the addition or removal of local and peer subnets. In addition to this, the guide also outlines the steps required to modify the shared secret key used on a given IPsec VPN tunnel. Use cases: Enabling customers to quickly amend IPsec configurations Modifications of this nature are not possible in the vcloud Director graphical user interface without first deleting the existing IPsec VPN configuration entirely and reentering the settings. Depending on the number of tunnels, this can be a lengthy task. Making changes to the IPsec VPN configuration via the vcloud Director API can greatly speed up this process. Edge gateway configuration data You can also use the steps in this guide to obtain a backup of the current configuration applied to an edge gateway. You can then use this to restore the configuration of the edge gateway at a later point in time. By following the instructions in this guide you can make amendments to the IPsec VPN configuration without first needing to engage with UKCloud Support. Obtaining your vcloud API credentials Before using the vcloud API, you first need to find your API credentials. 1. Log in to the UKCloud Portal. If you need more detailed instructions, see the Getting Started Guide for UKCloud Portal (Assured Elevated). 2. Select your account. 3. In the top right corner of the page, click your username and then select API. UKCloud Ltd, 2017 Open Page 3 of 25

4 4. The API page provides a view of your personal credentials for accessing the vcloud API. In particular, the page provides the following: Compute service ID (in parentheses after the compute service name) to uniquely identify the compute service (or vorg) when using the vcloud API. API URL use this URL at the beginning of your calls to the vcloud API. Note! This URL will be different depending on the region in which your compute service is locate. Username your user ID to authenticate yourself with the vcloud API. Note! The compute service ID is appended to the end of the username. This is because you may have access to multiple compute services. Password for authentication with the vcloud API. This password is the same as the one you use to log in to the UKCloud Portal. 5. Make a note of the compute service ID, the API URL and your Username. Installing a REST client Having reviewed the information of the API page in the Portal, you now need to install a REST client within your internet browser. Note! This guide covers the installation of the REST Client plugin under Mozilla Firefox. The installation and configuration of REST clients for other browsers is outside the scope of this guide. To install the REST Client plugin: 1. Browse to the following URL: 2. In the search box in the upper right-hand corner of the ADD-ONS page enter the words Rest Client and click on the white arrow. UKCloud Ltd, 2017 Open Page 4 of 25

5 3. When presented with the search the results, hover over the entry called RESTClient, a debugger for RESTful web services. A green button will appear that reads Add to Firefox, click this button. 4. This will start the downloading the REST Client in the background, after a short amount of time a window will be displayed (see below). When the download has completed click the Install Now button. UKCloud Ltd, 2017 Open Page 5 of 25

6 5. To complete the installation you ll need to restart Firefox (see below): 6. Once restarted, you should see the icon for the REST Client towards the upper right-hand corner of the Firefox window. Click the REST Client icon. 7. After clicking on the REST Client icon you should be presented with a screen similar to the one shown below: UKCloud Ltd, 2017 Open Page 6 of 25

7 Obtaining an authorisation token Having installed the REST Client plugin for Firefox, you can start interacting with the vcloud API. You first need to obtain an x-vcloud-authorization token; to do this you need to adjust some settings on the REST Client. 1. Click the Method drop down menu and select POST. 2. In the API field, enter the API URL you recorded earlier and append the following to the end of the URL: /api/sessions. UKCloud Ltd, 2017 Open Page 7 of 25

8 3. Next add a Basic Authentication header, to do this click the Authentication menu at the top of the REST Client and select Basic Authentication. 4. After selecting Basic Authentication a new window is displayed prompting for a username and password. In the Username field, enter your API username recorded earlier from the API page. In this example the username will be as follows: FFFFFF@9-9-9-FFFFFF. In the Password field enter your UKCloud Portal password and then click Okay. UKCloud Ltd, 2017 Open Page 8 of 25

9 5. The Headers section should now be displayed in the REST Client containing an Authorization header. 6. Next add an Accept header to the REST Client. To do this click the Headers menu and select Custom Header. 7. In the Request Header window enter the word Accept in the Name field. In the Value field enter application/*+xml;version=5.5 and then click Okay. UKCloud Ltd, 2017 Open Page 9 of 25

10 8. A second header should now be visible in the REST Client. 9. The REST Client has now got all the required settings in place to make a request to the vcloud API to obtain a x-vcloud-authorization token, so click the SEND button. You ll see the following screen until a response is received from the vcloud API: UKCloud Ltd, 2017 Open Page 10 of 25

11 10. When a response is received the Response Headers section will be populated, the response should contain an x-vcloud-authorization token. 11. The x-vcloud-authorization token will replace the Basic Authentication header added earlier. To do this highlight and copy the string of characters displayed after the word x-vcloud-authorization. (as highlighted in the image above). Note! If at any point while following the instructions in this guide, the output displayed in the REST Client does not look similar to that shown in the images, you can use the value of the Status Code field to determine what went wrong and needs investigation. In this case above, Status Code received was HTTP 200 OK, which means that the request succeeded. For a list of HTTP response codes, see HTTP Response Codes. 12. To add an x-vcloud-authorization header to the REST Client, click the Headers menu and select Custom Header. The Request Header window displays. In the Name field enter x-vcloud-authorization. In the Value field, paste the string of characters copied in the previous step, then click Okay. UKCloud Ltd, 2017 Open Page 11 of 25

12 Retrieving organisation details via the API Now that you ve obtained an x-vcloud-authorization token, you can remove the Basic Authentication Header. 1. Click the x in the upper right-hand corner of the header. 2. Set the Method to GET using the drop down menu. UKCloud Ltd, 2017 Open Page 12 of 25

13 3. Next select the Response Body (Preview) tab towards the bottom of the REST Client. This view lists the links that you can use to drill down into the various objects exposed via the vcloud API. Of interest in the output below is a link that will, when queried, return details about the organisation and the objects contained within it. Clicking the URL will automatically update the contents of the URL box towards the top of the REST Client. 4. Verify that the URL has been updated and no longer reads Instead the contents of the URL field should contain followed by the unique identifier of your organisation as displayed in the output from the previous step. 5. Ensure that the Method drop down is set to GET and click SEND. After a short amount of time the contents of the Response Body (Preview) window will be updated to reflect the response from the vcloud API to your latest request. UKCloud Ltd, 2017 Open Page 13 of 25

14 Retrieving virtual data centre details via the API In our example, the organisation object contains two virtual data centres (VDCs). In the response from the vcloud API shown below there are two links, one for each of the VDCs. These have been highlighted in a green rectangle. To retrieve details about the VDCs in an organisation: 1. Click the link for the VDC containing the target edge gateway. This will update the URL field towards the top of the REST Client. In our example, the target edge gateway is located in the UKCloud IPSEC VPN Demo (IL0-PROD-BASIC) VDC, so select the first link. UKCloud Ltd, 2017 Open Page 14 of 25

15 2. Verify that the URL displayed at the top of the REST Client has been updated; the URL should now read as follows Appended to the end of the URL will be the unique identifier for the selected VDC. If this is the case click SEND. Retrieving edge gateway configuration via the API The contents of the Response Body (Preview) tab will be updated once more. 1. The response this time will probably be quite long. To easily locate a specific section in the response, use your browser s search utility. You can invoke this in Firefox by pressing CTRL+F. In the search dialog window at the bottom of the screen enter edgegateways, and then click the down arrow button to locate a section that looks similar to the one shown in the screenshot below: UKCloud Ltd, 2017 Open Page 15 of 25

16 2. Click the link ending in /edgegateways and verify that the URL displayed at the top of the REST Client has been updated to match. Ensure that the Method drop down is set to GET and click SEND. If this request is successful, the response will contain a link to the edge gateway which, when queried, will return the configuration of the edge gateway. Once you have received a response, use your browser s search utility to locate the EdgeGatewayRecord section within the response. UKCloud Ltd, 2017 Open Page 16 of 25

17 3. Within the EdgeGatewayRecord section of the above from the response, locate the link to the edge gateway that starts with the following: 4. Appended to the end of the URL will be a unique identifier for the edge gateway within the VDC. Click this link and verify that the URL displayed in the URL field has been updated accordingly and then click SEND. Reviewing the edge gateway configuration After a short amount of time the current configuration of the edge gateway will be displayed in a block of XML. This configuration information is contained between an opening <Configuration> and closing </Configuration> tag. This block of XML is split into sections which detail the configuration settings applied to a specific item, function or service available on the edge gateway. There are twelve sections in total; however only the configuration settings contained under the <GatewayIpsecVpnService> tags will be discussed in this guide. The example below shows a high-level overview of the structure of the XML block returned, with the opening and closing <GatewayIpsecVpnService> tags highlighted. UKCloud Ltd, 2017 Open Page 17 of 25

18 <EdgeGateway> <Configuration> <GatewayBackingConfig> </GatewayBackingConfig> <GatewayInterfaces> </GatewayInterfaces> <EdgeGatewayServiceConfiguration> <FirewallService> </FirewallService> <NatService> </NatService> <GatewayIpsecVpnService> </GatewayIpsecVpnService> <StaticRoutingService> </StaticRoutingService> <LoadBalancerService> </LoadBalancerService> </EdgeGatewayServiceConfiguration> <HaEnabled> </HaEnabled> <UseDefaultRouteForDnsRelay> </UseDefaultRouteForDnsRelay> </Configuration> </EdgeGateway> Before making any changes to the edge gateway via the API it is highly recommended to keep a copy of the XML returned. You can then use this backup to restore the configuration of the edge gateway to a known working configuration if the need arises. To copy the XML: 1. Select the Response Body (Highlight) tab of the REST Client. 2. Scroll down to the opening <Configuration> tag and highlight everything up to and including the closing <\Configuration> tag. The length of the XML to copy is dependent on the number of NAT, firewall rules and another configuration applied to the edge gateway. 3. With the contents of the <Configuration> tags highlighted, right click and select Copy. 4. Paste the configuration into a text editor, saving the file to a known location on your computer. Using a text editor that offers syntax highlighting such as Notepad++ will simplify the editing process. UKCloud Ltd, 2017 Open Page 18 of 25

19 Locating the IPsec VPN settings in the returned XML To locate the IPsec VPN settings, open a new text editor window and copy and paste the contents between the opening <GatewayIpsecVpnService> and closing </GatewayIpsecVpnService> tags. The contents should look similar to the XML block shown below: <GatewayIpsecVpnService> <IsEnabled>true</IsEnabled> <Endpoint> <Network type="application/vnd.vmware.admin.network+xml" href=" 3c284ec ba77-098c-7f697a3d8769"/> <PublicIp> </PublicIp> </Endpoint> <Tunnel> <Name>UKCloud IPSEC VPN Demo</Name> <Description/> <IpsecVpnThirdPartyPeer> <PeerId> </PeerId> </IpsecVpnThirdPartyPeer> <PeerIpAddress> </PeerIpAddress> <PeerId> </PeerId> <LocalIpAddress> </LocalIpAddress> <LocalId> </LocalId> <LocalSubnet> <Name>VPN Test Network 1</Name> <Gateway> </Gateway> <Netmask> </Netmask> </LocalSubnet> <PeerSubnet> <Name> /24</Name> <Gateway> </Gateway> <Netmask> </Netmask> </PeerSubnet> <SharedSecret>UKCloudIPSECVPNDemoSharedSecretKey</SharedSecret> <SharedSecretEncrypted>false</SharedSecretEncrypted> <EncryptionProtocol>AES256</EncryptionProtocol> <Mtu>1500</Mtu> <IsEnabled>true</IsEnabled> <IsOperational>true</IsOperational> </Tunnel> </GatewayIpsecVpnService> UKCloud Ltd, 2017 Open Page 19 of 25

20 Modifying the IPsec VPN configuration This section outlines common tasks performed via the API to manipulate the IPsec VPN configuration applied to a given edge gateway. Modifying the local endpoint IP and local ID You can change the local IP and local ID by editing the contents between the opening <localipaddress> and closing </localipaddress> and <localid> and </localid> tags as shown below: Original: <LocalIpAddress> </LocalIpAddress> <LocalId> </LocalId> Modified: <LocalIpAddress> </LocalIpAddress> <LocalId> </LocalId> This is by far the most commonly performed modification to the IPsec VPN configuration via the vcloud API. You can use this to change the local IP address from the IP address assigned to the edge gateway on the transit network to the IP address assigned to the edge gateways on the public network. For the tunnel to come up successfully the local IP address must be set to the edge gateway s public IP address. The local ID must also match the public IP address specified. Modifying the peer endpoint IP and peer ID If you need to move the remote endpoint of the tunnel to a new device or IP address, then you can adjust the following as required: Original: <PeerIpAddress> </PeerIpAddress> <PeerId> </PeerId> Modified: <PeerIpAddress> </PeerIpAddress> <PeerId> </PeerId> When changing the peer IP address of the tunnel you must ensure that the peer ID is also updated to match the new peer IP address. UKCloud Ltd, 2017 Open Page 20 of 25

21 Adding or removing local subnets You can add additional local subnets to the IPsec VPN tunnel. This involves adding a new local subnet definition to the IPsec VPN config: Original: <LocalSubnet> <Name>VPN Test Network</Name> <Gateway> </Gateway> <Netmask> </Netmask> </LocalSubnet> Modified: <LocalSubnet> <Name>VPN Test Network 1</Name> <Gateway> </Gateway> <Netmask> </Netmask> </LocalSubnet> <LocalSubnet> <Name>VPN Test Network 2</Name> <Gateway> </Gateway> <Netmask> </Netmask> </LocalSubnet> Adding or removing peer subnets You can use the same process to add or remove peer subnets: Orginal: <PeerSubnet> <Name> /24</Name> <Gateway> </Gateway> <Netmask> </Netmask> </PeerSubnet> Modified: <PeerSubnet> <Name> /24</Name> <Gateway> </Gateway> <Netmask> </Netmask> </PeerSubnet> <PeerSubnet> <Name> /24</Name> <Gateway> </Gateway> <Netmask> </Netmask> </PeerSubnet> UKCloud Ltd, 2017 Open Page 21 of 25

22 Amending the shared secret If you need to update or amend the shared secret on an IPsec VPN, edit the value between the opening <SharedSecret> and closing </SharedSecret> tags. Original: <SharedSecret>UKCloudIPSECVPNDemoSharedSecretKey</SharedSecret> Modified: <SharedSecret>4dae850771fbe3f06588b49772c0b8eb</SharedSecret> Note! The shared secret must be at least 32 characters in length. To enhance the security of the tunnel, we highly recommend that you avoid using dictionary words in the shared secret key. Applying the new configuration When you ve updated the relevant sections of the configuration, you can apply it to the edge gateway. 1. enclose the new configuration in a pair of <EdgeGatewayServiceConfiguration> tags, as shown in the following example. <?xml version="1.0" encoding="utf-8"?> <EdgeGatewayServiceConfiguration xmlns=" <GatewayIpsecVpnService> <IsEnabled>true</IsEnabled> <Endpoint> <Network type="application/vnd.vmware.admin.network+xml" href=" 3c284ec ba77-098c-7f697a3d8769"/> <PublicIp> </PublicIp> </Endpoint> <Tunnel> <Name>ukcloud IPSEC VPN Demo</Name> <Description/> <IpsecVpnThirdPartyPeer> <PeerId> </PeerId> </IpsecVpnThirdPartyPeer> <PeerIpAddress> </PeerIpAddress> <PeerId> </PeerId> <LocalIpAddress> </LocalIpAddress> <LocalId> </LocalId> <LocalSubnet> <Name>VPN Test Network 1</Name> <Gateway> </Gateway> <Netmask> </Netmask> </LocalSubnet> <LocalSubnet> <Name>VPN Test Network 2</Name> <Gateway> </Gateway> <Netmask> </Netmask> </LocalSubnet> <PeerSubnet> UKCloud Ltd, 2017 Open Page 22 of 25

23 <Name> /24</Name> <Gateway> </Gateway> <Netmask> </Netmask> </PeerSubnet> <PeerSubnet> <Name> /24</Name> <Gateway> </Gateway> <Netmask> </Netmask> </PeerSubnet> <SharedSecret>4dae850771fbe3f06588b49772c0b8eb</SharedSecret> <SharedSecretEncrypted>false</SharedSecretEncrypted> <EncryptionProtocol>AES256</EncryptionProtocol> <Mtu>1500</Mtu> <IsEnabled>true</IsEnabled> <IsOperational>true</IsOperational> </Tunnel> </GatewayIpsecVpnService> </EdgeGatewayServiceConfiguration> 2. Copy and paste this configuration into the Body section of the REST Client. 3. Click the Method drop down menu and select POST. 4. Append the following to the URL displayed in the URL box: /action/configureservices In our example, the contents of the URL were: So, the updated URL would be: 5. You must also add one more Header to the REST Client prior to submitting the new configuration. Click the Headers drop down menu at the top of the REST Client and select Custom Header. 6. In the Name box enter Content-Type. 7. In the Value box enter the following: application/vnd.vmware.admin.edgegatewayserviceconfiguration+xml 8. The REST Client should now look similar to the screenshot below: UKCloud Ltd, 2017 Open Page 23 of 25

24 9. To submit the new configuration, click SEND. 10. The status of the edge gateway as viewed from vcloud Director will briefly show as Updating Configuration. Once this process has completed, right click the edge gateway and select Configure Services. 11. In the Configure Services window select the VPN tab. 12. You should see the new configuration settings. Verify the status of the IPsec VPN tunnel on your remote device to ensure that the tunnel has been established successfully. What s next? If you need any further assistance, or if you want to discuss any aspect of this service or settings specific to your domain, log a support ticket via the UKCloud Portal. Feedback If you have any comments on this document or any other aspect of your UKCloud experience, please send them to feedback@ukcloud.com. UKCloud Ltd, 2017 Open Page 24 of 25

25 UKCloud Ltd A8 Cody Technology Park Ively Road, Farnborough Hampshire, GU14 0LX T E info@ukcloud.com ukcloudltd ukcloud-ltd Reasonable efforts have been made to ensure the accuracy of the information contained in this document. No advice given or statements or recommendations made shall in any circumstances constitute or be deemed to constitute a warranty by UKCloud Ltd as to the accuracy of such advice, statements or recommendations. UKCloud Ltd shall not be liable for any loss, expense, damage or claim howsoever arising out of the advice given or not given or statements made or omitted to be made in connection with this document. No part of this document may be copied, reproduced, adapted or redistributed in any form or by any means without the express prior written consent of UKCloud Ltd. UKCloud Ltd 2017 All Rights Reserved. UKC-GEN /2017

getting started guide

getting started guide Pure commitment. getting started guide Cloud GPU Compute version 2.0 Contents Introduction... 3 Intended audience... 3 Cloud GPU overview... 3 Before you begin... 4 Creating your virtual machine... 5 Provisioning

More information

Pure commitment. Manipulating Power States with PowerCLI

Pure commitment. Manipulating Power States with PowerCLI Pure commitment. Manipulating Power States with PowerCLI UKC-GEN-339 OVERVIEW PowerCLI is a command line interface tool developed by VMware and built upon Microsoft PowerShell. The tool is designed to

More information

getting started guide

getting started guide Pure commitment. getting started guide Cloud Native Infrastructure version 2.0 Contents Introduction... 3 Intended audience... 3 Logging in to the Cloud Native Infrastructure dashboard... 3 Creating your

More information

A comparison of UKCloud s platform against other public cloud providers

A comparison of UKCloud s platform against other public cloud providers Pure commitment. A comparison of UKCloud s platform against other public cloud providers version 1.0 (Based upon August 2017 data) The evolution of UKCloud UKCloud has long been known for its VMware powered

More information

FUJITSU Cloud Service S5

FUJITSU Cloud Service S5 FUJITSU Cloud Service S5 Basic System Setup Windows 2008 and 2012 VMs This guide documents the basic configuration that should be performed to a vsys and VM in order to configure the standard London East

More information

Bomgar PA Integration with ServiceNow

Bomgar PA Integration with ServiceNow Bomgar PA Integration with ServiceNow 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of

More information

Partner Integration Portal (PIP) Installation Guide

Partner Integration Portal (PIP) Installation Guide Partner Integration Portal (PIP) Installation Guide Last Update: 12/3/13 Digital Gateway, Inc. All rights reserved Page 1 TABLE OF CONTENTS INSTALLING PARTNER INTEGRATION PORTAL (PIP)... 3 DOWNLOADING

More information

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation Agent and Agent Browser Updated Friday, January 26, 2018 2018 Autotask Corporation Table of Contents Table of Contents 2 The AEM Agent and Agent Browser 3 AEM Agent 5 Privacy Mode 9 Agent Browser 11 Agent

More information

Blackboard Learn: Basics

Blackboard Learn: Basics Blackboard Learn: Basics This document includes the following topics: 1. Log in Page 2 2. Find Your Courses Page 2 3. View Course Content Page 3 4. Add a Folder Page 3 5. Add a File Page 5 6. Add a Web

More information

Using VMware vrealize Orchestrator with VMware vcloud Availability for vcloud Director Version 1.0 April 2017

Using VMware vrealize Orchestrator with VMware vcloud Availability for vcloud Director Version 1.0 April 2017 Using VMware vrealize Orchestrator with VMware vcloud Availability for vcloud Director Version 1.0 April 2017 Page 1 of 53 This product is protected by U.S. and international copyright and intellectual

More information

VPN Quick Configuration Guide. D-Link

VPN Quick Configuration Guide. D-Link VPN Quick Configuration Guide D-Link 2017 equinux AG and equinux USA, Inc. All rights reserved. Under copyright law, this configuration guide may not be copied, in whole or in part, without the written

More information

Ingate Firewall. interworking with. SSH Sentinel

Ingate Firewall. interworking with. SSH Sentinel Ingate Firewall interworking with SSH Sentinel 1 Tested versions: Ingate Firewall 3.2.0 SSH Sentinel 1.4 (build 177, 190) and 1.4.1 (build 79) on Windows XP 1. Install the SSH Sentinel software on the

More information

AT&T Cloud Web Security Service

AT&T Cloud Web Security Service AT&T Cloud Web Security Service Troubleshooting Guide Table of Contents 1 Summary... 3 2 Explicit Proxy Access Method... 4 2.1 Explicit Proxy Flow Diagram... 4 3 Proxy Forwarding Access Method... 6 3.1

More information

ITSM SQL Reports. Installation and Configuration Guide. Date: November Page 1 of 18

ITSM SQL Reports. Installation and Configuration Guide. Date: November Page 1 of 18 ITSM SQL Reports Installation and Configuration Guide Date: November 2017 Page 1 of 18 All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, or stored

More information

NIELSEN API PORTAL USER REGISTRATION GUIDE

NIELSEN API PORTAL USER REGISTRATION GUIDE NIELSEN API PORTAL USER REGISTRATION GUIDE 1 INTRODUCTION In order to access the Nielsen API Portal services, there are three steps that need to be followed sequentially by the user: 1. User Registration

More information

Colligo Engage Outlook App 7.1. Connected Mode - User Guide

Colligo Engage Outlook App 7.1. Connected Mode - User Guide 7.1 Connected Mode - User Guide Contents Colligo Engage Outlook App 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Engage Outlook App 2 Checking for Updates 3 Updating

More information

H3C SecBlade SSL VPN Card

H3C SecBlade SSL VPN Card H3C SecBlade SSL VPN Card Super Administrator Web Configuration Guide Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Document version: 5PW105-20130801 Copyright 2003-2013, Hangzhou H3C Technologies

More information

Read the following information carefully, before you begin an upgrade.

Read the following information carefully, before you begin an upgrade. Read the following information carefully, before you begin an upgrade. Review Supported Upgrade Paths, page 1 Review Time Taken for Upgrade, page 1 Review Available Cisco APIC-EM Ports, page 2 Securing

More information

SecureAssist IntelliJ Plug-in User Guide June 2016

SecureAssist IntelliJ Plug-in User Guide June 2016 SecureAssist IntelliJ Plug-in User Guide June 2016 Copyright 2016 by Codiscope, LLC. All rights reserved. No part or parts of this documentation may be reproduced, translated, stored in any electronic

More information

SonicWall Global VPN Client Getting Started Guide

SonicWall Global VPN Client Getting Started Guide SonicWall Global VPN Client 4.10 Getting Started Guide Copyright 2017 SonicWall Inc. All rights reserved. SonicWall is a trademark or registered trademark of SonicWall Inc. and/or its affiliates in the

More information

Installation Guide. 3CX CRM Plugin for ConnectWise. Single Tenant Version

Installation Guide. 3CX CRM Plugin for ConnectWise. Single Tenant Version Installation Guide 3CX CRM Plugin for ConnectWise Single Tenant Version "Copyright VoIPTools, LLC 2011-2016" Information in this document is subject to change without notice. No part of this document may

More information

GARDiS Installation. Install Guide SM007_8. Unit 10 Concept Park Innovation Close Poole Dorset BH12 4QT

GARDiS Installation. Install Guide SM007_8. Unit 10 Concept Park Innovation Close Poole Dorset BH12 4QT GARDiS Installation Install Guide SM007_8 Unit 10 Concept Park Innovation Close Poole Dorset BH12 4QT t: +44 (0) 1202 723535 w: www.tdsi.co.uk e: sales@tdsi.co.uk e: support@tdsi.co.uk Foreword Copyright

More information

The Connector Version 2.0 Microsoft Project to Atlassian JIRA Connectivity

The Connector Version 2.0 Microsoft Project to Atlassian JIRA Connectivity The Connector Version 2.0 Microsoft Project to Atlassian JIRA Connectivity User Manual Ecliptic Technologies, Inc. Copyright 2011 Page 1 of 99 What is The Connector? The Connector is a Microsoft Project

More information

DBXL AZURE INSTALLATION GUIDE

DBXL AZURE INSTALLATION GUIDE Page 1 of 48 DBXL AZURE INSTALLATION GUIDE LAST UPDATED: October 25, 2016 ADDING A VIRTUAL MACHINE ON MICROSOFT AZURE Login to your Microsoft Azure site. Create a new Virtual Machine instance by clicking

More information

Configuration Guide. How to set up the IPSec site-to-site Tunnel between the D-Link DSR Router and the SonicWall Firewall.

Configuration Guide. How to set up the IPSec site-to-site Tunnel between the D-Link DSR Router and the SonicWall Firewall. Configuration Guide How to set up the IPSec site-to-site Tunnel between the D-Link DSR Router and the SonicWall Firewall Overview This document describes how to implement IPsec with pre-shared secrets

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

This quick reference guide is designed for consumers of the Program Dashboard and provides details on how to: Log in

This quick reference guide is designed for consumers of the Program Dashboard and provides details on how to: Log in This quick reference guide is designed for consumers of the Program Dashboard and provides details on how to: Log in Filter data using input controls Access the Dashboard Access Collibra/ Definitions Glossary

More information

Quick guide to the SmartSimple on-line portal (making an application)

Quick guide to the SmartSimple on-line portal (making an application) EPA Research Programme 2014-2020 Quick guide to the SmartSimple on-line portal (making an application) POWERED BY SMARTSIMPLE Disclaimer Please read this document carefully prior to using the on-line portal.

More information

Using a VPN with Niagara Systems. v0.3 6, July 2013

Using a VPN with Niagara Systems. v0.3 6, July 2013 v0.3 6, July 2013 What is a VPN? Virtual Private Network or VPN is a mechanism to extend a private network across a public network such as the Internet. A VPN creates a point to point connection or tunnel

More information

How to Configure Mobile VPN for Forcepoint NGFW TECHNICAL DOCUMENT

How to Configure Mobile VPN for Forcepoint NGFW TECHNICAL DOCUMENT How to Configure Mobile VPN for Forcepoint NGFW TECHNICAL DOCUMENT Table of Contents TABLE OF CONTENTS 1 BACKGROUND 2 WINDOWS SERVER CONFIGURATION STEPS 2 CONFIGURING USER AUTHENTICATION 3 ACTIVE DIRECTORY

More information

Deltek Touch Expense for Ajera. Touch 1.0 Technical Installation Guide

Deltek Touch Expense for Ajera. Touch 1.0 Technical Installation Guide Deltek Touch Expense for Ajera Touch 1.0 Technical Installation Guide June 01, 2018 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

Windows Authentication for Velocity Web service Client

Windows Authentication for Velocity Web service Client Windows Authentication for Velocity Web service Client Copyright 2019, Identiv. Overview Prior to Velocity 3.7 SP1 releases, the Velocity Web Service Client (VWSC) application used Anonymous Authentication

More information

How to Import a Certificate When Using Microsoft Windows OS

How to Import a Certificate When Using Microsoft Windows OS How to Import a Certificate When Using Microsoft Windows OS This document explains the process of importing your digital certificate for use in Microsoft Internet Explorer (IE) and/or Mozilla Firefox.

More information

Secure Entry CE Client & Watchguard Firebox 700 A quick configuration guide to setting up the NCP Secure Entry CE Client in a simple VPN scenario

Secure Entry CE Client & Watchguard Firebox 700 A quick configuration guide to setting up the NCP Secure Entry CE Client in a simple VPN scenario Secure Entry CE Client & Watchguard Firebox 700 A quick configuration guide to setting up the NCP Secure Entry CE Client in a simple VPN scenario PDA Client-to-Gateway using pre-shared secrets Typical

More information

July 9, Installation Guide

July 9, Installation Guide July 9, 2017 Installation Guide This two-step installation guide will help you create a VPNconnection to our servers. This is only needs to be done once after you start using our service. Part 1: Create

More information

API Portal Version December User Guide

API Portal Version December User Guide API Portal Version 7.5.4 8 December 2017 User Guide Copyright 2017 Axway All rights reserved. This documentation describes the following Axway software: Axway API Portal 7.5.4 No part of this publication

More information

Table of Contents 1 Cisco AnyConnect...1

Table of Contents 1 Cisco AnyConnect...1 Table of Contents 1 Cisco AnyConnect...1 2 Introduction...2 3 Cisco AnyConnect Integration...3 4 Cisco AnyConnect Client Integration...4 4.1 Configure the Cisco ASA...4 4.2 Install the Cisco AnyConnect

More information

OneSecure VPN Remote User Installation & Configuration Guide

OneSecure VPN Remote User Installation & Configuration Guide OneSecure VPN Remote User Installation & Configuration Guide 3/11/2015 CONTENTS Download Client Software 02 Install Client Software 03 Enable Client Software 07 Configure the Connection 08 WELCOME Welcome

More information

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ]

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] Version 5.3 [ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] https://help.pentaho.com/draft_content/version_5.3 1/30 Copyright Page This document supports Pentaho Business Analytics

More information

Wireless Data Privacy Configuration Guide. HP ProCurve Secure Access 700wl Series.

Wireless Data Privacy Configuration Guide. HP ProCurve Secure Access 700wl Series. Wireless Data Privacy Configuration Guide HP ProCurve Secure Access 700wl Series www.hp.com/go/hpprocurve HP PROCURVE SECURE ACCESS 700WL SERIES WIRELESS DATA PRIVACY CONFIGURATION GUIDE Copyright 2003

More information

Silver Peak EC-V and Microsoft Azure Deployment Guide

Silver Peak EC-V and Microsoft Azure Deployment Guide Silver Peak EC-V and Microsoft Azure Deployment Guide How to deploy an EC-V in Microsoft Azure 201422-001 Rev. A September 2018 2 Table of Contents Table of Contents 3 Copyright and Trademarks 5 Support

More information

LAB: Configuring LEAP. Learning Objectives

LAB: Configuring LEAP. Learning Objectives LAB: Configuring LEAP Learning Objectives Configure Cisco ACS Radius server Configure a WLAN to use the 802.1X security protocol and LEAP Authenticate with an access point using 802.1X security and LEAP

More information

vcloud Director User's Guide

vcloud Director User's Guide vcloud Director 5.6 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of

More information

9.4 Authentication Server

9.4 Authentication Server 9 Useful Utilities 9.4 Authentication Server The Authentication Server is a password and account management system for multiple GV-VMS. Through the Authentication Server, the administrator can create the

More information

Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management

Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management Contents Best Practices for Implementing Adobe Target using Dynamic Tag Management.3 Dynamic Tag Management Implementation...4

More information

SecureAssist Eclipse Plugin User Guide December 2015

SecureAssist Eclipse Plugin User Guide December 2015 SecureAssist Eclipse Plugin User Guide December 2015 Copyright 2015 by Codiscope, LLC. All rights reserved. No part or parts of this documentation may be reproduced, translated, stored in any electronic

More information

Data Management Unit, V3.1 University of Pennsylvania Treatment Research Center, 2010 Page 2

Data Management Unit, V3.1 University of Pennsylvania Treatment Research Center, 2010 Page 2 Welcome to the Data Entry System User s Manual. This manual will cover all of the steps necessary for you to successfully navigate and operate the Data Management Unit s Web based data entry system. We

More information

Cloud Access Manager Overview

Cloud Access Manager Overview Cloud Access Manager 8.1.3 Overview Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

One Identity Active Roles 7.2. Web Interface Administrator Guide

One Identity Active Roles 7.2. Web Interface Administrator Guide One Identity Active Roles 7.2 Web Interface Administrator Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

The Connector. Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual

The Connector.  Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual The Connector Version 1.2 Microsoft Project to Atlassian JIRA Connectivity User Manual Ecliptic Technologies, Inc. Copyright 2008 www.the-connector.com Page 1 of 86 Copyright and Disclaimer All rights

More information

3.1 Getting Software and Certificates

3.1 Getting Software and Certificates 3 Configuring the Remote Client On the remote client you have to download the Sophos SSL VPN Client software including configuration data from the UTM User Portal. Then you install the software package

More information

We start by providing you with an overview of the key feature of the IBM BPM Process Portal.

We start by providing you with an overview of the key feature of the IBM BPM Process Portal. Lab 1 Process Portal 1.1 Overview This lab exercise will make you familiar with the key capabilities of the ready-to-use Process Portal included with IBM Business Process Manager (BPM). You will experience

More information

Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3

Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3 Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3 From Cisco s website, here are the minimum requirements for CCP 2.7 and CCP 2.8: The following info comes from many

More information

DPX8000 Series Deep Service Switching Gateway User Configuration Guide BRAS Service Board Module v1.0

DPX8000 Series Deep Service Switching Gateway User Configuration Guide BRAS Service Board Module v1.0 DPX8000 Series Deep Service Switching Gateway User Configuration Guide BRAS Service Board Module v1.0 i Hangzhou DPtech Technologies Co., Ltd. provides full- range technical support. If you need any help,

More information

Tivoli Common Reporting V Cognos report in a Tivoli Integrated Portal dashboard

Tivoli Common Reporting V Cognos report in a Tivoli Integrated Portal dashboard Tivoli Common Reporting V2.1.1 Cognos report in a Tivoli Integrated Portal dashboard Preethi C Mohan IBM India Ltd. India Software Labs, Bangalore +91 80 40255077 preethi.mohan@in.ibm.com Copyright IBM

More information

NetExtender for SSL-VPN

NetExtender for SSL-VPN NetExtender for SSL-VPN Document Scope This document describes how to plan, design, implement, and manage the NetExtender feature in a SonicWALL SSL-VPN Environment. This document contains the following

More information

Poet Image Description Tool: Step-by-step Guide

Poet Image Description Tool: Step-by-step Guide Poet Image Description Tool: Step-by-step Guide Introduction This guide is designed to help you use the Poet image description tool to add image descriptions to DAISY books. The tool assumes you have access

More information

ForeScout Extended Module for MobileIron

ForeScout Extended Module for MobileIron Version 1.8 Table of Contents About MobileIron Integration... 4 Additional MobileIron Documentation... 4 About this Module... 4 How it Works... 5 Continuous Query Refresh... 5 Offsite Device Management...

More information

Integration Guide. LoginTC

Integration Guide. LoginTC Integration Guide LoginTC Revised: 21 November 2016 About This Guide Guide Type Documented Integration WatchGuard or a Technology Partner has provided documentation demonstrating integration. Guide Details

More information

Remote Access via Cisco VPN Client

Remote Access via Cisco VPN Client Remote Access via Cisco VPN Client General Information This guide describes step by step the configuration of a remote access to the Astaro Security Gateway by using the Cisco VPN Client. The Cisco VPN

More information

VI. Corente Services Client

VI. Corente Services Client VI. Corente Services Client Corente Release 9.1 Manual 9.1.1 Copyright 2014, Oracle and/or its affiliates. All rights reserved. Table of Contents Preface... 5 I. Introduction... 6 II. Corente Client Configuration...

More information

Colligo Manager 5.4 SP3. User Guide

Colligo  Manager 5.4 SP3. User Guide 5.4 SP3 User Guide Contents Enterprise Email Management for SharePoint 2010 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 4 Updating

More information

User Guide Using AuraPlayer

User Guide Using AuraPlayer User Guide Using AuraPlayer AuraPlayer Support Team Version 2 2/7/2011 This document is the sole property of AuraPlayer Ltd., it cannot be communicated to third parties and/or reproduced without the written

More information

Never Reset Your Password before?

Never Reset Your Password before? This document was created for those who will need to reset their password from the generic password. The generic password was provided in the Admissions Letter which all first time students receive. Please

More information

Workspace ONE UEM Certificate Authentication for EAS with ADCS. VMware Workspace ONE UEM 1902

Workspace ONE UEM Certificate Authentication for EAS with ADCS. VMware Workspace ONE UEM 1902 Workspace ONE UEM Certificate Authentication for EAS with ADCS VMware Workspace ONE UEM 1902 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

goremote.carolinas.org

goremote.carolinas.org Detailed instructions for goremote.carolinas.org Section 1. Registering your account in the goremote portal To setup your access to goremote.carolinas.org, please follow these steps: Open a browser window

More information

V7610 TELSTRA BUSINESS GATEWAY

V7610 TELSTRA BUSINESS GATEWAY V7610 TELSTRA BUSINESS GATEWAY VPN Configuration Guide Date: Oct 16, 2015 Revision Num: 1.0 1 V7610 VPN Configuration Guide Rev1.0, October 2015 Revision History Date Release Author Description Oct 16,

More information

UI-9 OS Installation Guide in SmartCLOUD Director. CITIC Telecom CPC. OS Installation Guide in SmartCLOUD Director

UI-9 OS Installation Guide in SmartCLOUD Director. CITIC Telecom CPC. OS Installation Guide in SmartCLOUD Director CITIC Telecom CPC OS Installation Guide in SmartCLOUD Director February 2016 This is a quick start guide for user who is totally new to SmartCLOUD Director. In this guide, we will demonstrate 2 ways on

More information

Sostenuto 4.1 title page. System Management User s Guide

Sostenuto 4.1 title page. System Management User s Guide Sostenuto 4.1 title page System Management User s Guide Date: November 2013 All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, or stored in any

More information

SonicOS Enhanced Release Notes

SonicOS Enhanced Release Notes SonicOS Contents Platform Compatibility... 1 Known Issues... 2 Resolved Known Issues... 3 Upgrading SonicOS Enhanced Image Procedures... 4 Related Technical Documentation...7 Platform Compatibility The

More information

RED IM Integration with Bomgar Privileged Access

RED IM Integration with Bomgar Privileged Access RED IM Integration with Bomgar Privileged Access 2018 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the

More information

MYPLACE USER GUIDE User Guide for myplace.hexagon.com March 08, 2017

MYPLACE USER GUIDE User Guide for myplace.hexagon.com March 08, 2017 MYPLACE USER GUIDE User Guide for myplace.hexagon.com March 08, 2017 General Contents General... 3 1 Requirements... 4 1.1 Citrix client... 4 1.2 Citrix NetScaler (Access Gateway) plugin... 4 1.3 SMS Passcode...

More information

European Market Infrastructure Regulation (EMIR)

European Market Infrastructure Regulation (EMIR) European Market Infrastructure Regulation (EMIR) User Guide Post Trade Portal: HSBC EMIR Delegated Reporting Service August 2016 Published: August 2016 1 Disclaimer This document is issued by HSBC Bank

More information

vcloud Director User's Guide

vcloud Director User's Guide vcloud Director 8.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.6.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

Server Installation Guide

Server Installation Guide Server Installation Guide Server Installation Guide Legal notice Copyright 2018 LAVASTORM ANALYTICS, INC. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS HEREOF MAY NOT BE REPRODUCED OR DISTRIBUTED IN ANY

More information

Registering at the PNC Developer Portal

Registering at the PNC Developer Portal Registering at the PNC Developer Portal 1.) Navigate to the Developer Portal at: https://developer.pnc.com 2.) Click the Join button on the upper right corner of the Developer Portal page: 3.) Enter in

More information

HotDocs Document Services. Administrator s Guide

HotDocs Document Services. Administrator s Guide HotDocs Document Services Administrator s Guide Copyright 2014 HotDocs Limited. All rights reserved. No part of this product may be reproduced, transmitted, transcribed, stored in a retrieval system, or

More information

Image Recognition. SDK Reference. Issue 09 Date HUAWEI TECHNOLOGIES CO., LTD.

Image Recognition. SDK Reference. Issue 09 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 09 Date 2019-01-31 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Early Data Analyzer Web User Guide

Early Data Analyzer Web User Guide Early Data Analyzer Web User Guide Early Data Analyzer, Version 1.4 About Early Data Analyzer Web Getting Started Installing Early Data Analyzer Web Opening a Case About the Case Dashboard Filtering Tagging

More information

Guide to add as trusted site in Java 8 Update 51. Version of 24 OCBC Bank. All Rights Reserved

Guide to add   as trusted site in Java 8 Update 51. Version of 24 OCBC Bank. All Rights Reserved Velocity@ocbc Guide to add https://bbmy.ocbc.com as trusted site in Java 8 Update 51 Version 1.1 220815 1 of 24 Contents Java 8 Update 60 (difficulty logging into Velocity@ocbc)... 3 Uninstall Java Prior

More information

Contents Overview... 2 Part I Connecting to the VPN via Windows OS Accessing the Site with the View Client Installing...

Contents Overview... 2 Part I Connecting to the VPN via Windows OS Accessing the Site with the View Client Installing... CSEC 640 Lab Access Contents Overview... 2 Part I Connecting to the VPN via Windows OS... 2 Accessing the Site with the View Client... 2 Installing... 3 Launching Your Client... 4 Part II Windows Access

More information

Using the vrealize Orchestrator Operations Client. vrealize Orchestrator 7.5

Using the vrealize Orchestrator Operations Client. vrealize Orchestrator 7.5 Using the vrealize Orchestrator Operations Client vrealize Orchestrator 7.5 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Table of Contents HOL-1757-MBL-5

Table of Contents HOL-1757-MBL-5 Table of Contents Lab Overview - - VMware AirWatch: Mobile App Management and App Development... 2 Lab Guidance... 3 Module 1 - Introduction to AppConfig (30 minutes)... 8 Login to the AirWatch Console...

More information

Integration Guide. SafeNet Authentication Service. Strong Authentication for Juniper Networks SSL VPN

Integration Guide. SafeNet Authentication Service. Strong Authentication for Juniper Networks SSL VPN SafeNet Authentication Service Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3 Enterprise Vault.cloud CloudLink Google Account Synchronization Guide CloudLink 4.0.1 to 4.0.3 Enterprise Vault.cloud: CloudLink Google Account Synchronization Guide Last updated: 2018-06-08. Legal Notice

More information

Enerdeq Technical IHS Enerdeq Browser Version 2.12 Release Notes

Enerdeq Technical IHS Enerdeq Browser Version 2.12 Release Notes Enerdeq Technical IHS Enerdeq Browser Version 2.12 Release Notes October 18th, 2016 2016, IHS IHS Enerdeq Browser Release Notes v.2.12 October 18th, 2016 2016 IHS. For internal use only. No portion of

More information

Administration Guide. 05 Apr TM and copyright Imagicle spa

Administration Guide. 05 Apr TM and copyright Imagicle spa Administration Guide 05 Apr 2019 TM and copyright 2010-2019 Imagicle spa Table of Contents Administration Guide...1/5 Jabber Gadgets Setup...1/5 Administration Guide Jabber Gadgets Setup The Imagicle Gadget

More information

vcloud Director Tenant Portal Guide vcloud Director 8.20

vcloud Director Tenant Portal Guide vcloud Director 8.20 vcloud Director Tenant Portal Guide vcloud Director 8.20 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this documentation,

More information

Manual. bintec elmeg GmbH. Manual. bintec elmeg Dime Manager. Copyright Version 1.3.8, 2013 bintec elmeg GmbH

Manual. bintec elmeg GmbH. Manual. bintec elmeg Dime Manager. Copyright Version 1.3.8, 2013 bintec elmeg GmbH Manual Manual Copyright Version 1.3.8, 2013 1 Manual Legal Notice Warranty This publication is subject to change. offers no warranty whatsoever for information contained in this manual. is not liable for

More information

Compliance Document Manager User Guide

Compliance Document Manager User Guide Compliance Document Manager User Guide Contents OVERVIEW... 3 SYSTEM REQUIREMENTS... 3 VENDORMATE PASSWORD REQUIREMENTS... 3 LOGIN... 4 THE HOME SCREEN... 5 BA Screening... 5 BA Oversight... 5 My Screening

More information

Using SourceTree on the Development Server

Using SourceTree on the Development Server Using SourceTree on the Development Server This content has been modified to exclude client information. Such omissions include the client name and details of the client s infrastructure, such as domain

More information

Colligo Engage Outlook App 7.1. Offline Mode - User Guide

Colligo Engage Outlook App 7.1. Offline Mode - User Guide Colligo Engage Outlook App 7.1 Offline Mode - User Guide Contents Colligo Engage Outlook App 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Engage Outlook App 3 Checking

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

VPN Configuration Guide SonicWALL

VPN Configuration Guide SonicWALL VPN Configuration Guide SonicWALL SonicOS Enhanced 2010 equinux AG and equinux USA, Inc. All rights reserved. Under copyright law, this manual may not be copied, in whole or in part, without the written

More information

<Partner Name> RSA ARCHER GRC Platform Implementation Guide. RiskLens <Partner Product>

<Partner Name> RSA ARCHER GRC Platform Implementation Guide. RiskLens <Partner Product> RSA ARCHER GRC Platform Implementation Guide 2.4.1 Wesley Loeffler, RSA Engineering Last Modified: April 25 th, 2018 2.4 Solution Summary The & Archer integration connects

More information

Using the vcenter Orchestrator Plug-In for vcloud Director 5.5. vrealize Orchestrator 5.5

Using the vcenter Orchestrator Plug-In for vcloud Director 5.5. vrealize Orchestrator 5.5 Using the vcenter Orchestrator Plug-In for vcloud Director 5.5 vrealize Orchestrator 5.5 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you

More information

ForeScout Extended Module for VMware AirWatch MDM

ForeScout Extended Module for VMware AirWatch MDM ForeScout Extended Module for VMware AirWatch MDM Version 1.7.2 Table of Contents About the AirWatch MDM Integration... 4 Additional AirWatch Documentation... 4 About this Module... 4 How it Works... 5

More information

BASICS OF PORT FORWARDING ON A ROUTER

BASICS OF PORT FORWARDING ON A ROUTER BASICS OF PORT FORWARDING ON A ROUTER FOR SECURITY DVRS 192.168.1.100 Internet Public IP Address 72.248.26.116 Private IP Address 192.168.1.1 192.168.1.150 192.168.1.200 www.nightowlsp.com Basics of Port

More information

Guide for Windows users with Internet Explorer and Firefox

Guide for Windows users with Internet Explorer and Firefox Velocity@ocbc Guide for Windows users with Internet Explorer and Firefox Version 2.0 070513 1 of 18 Check the Java version 1. Launch a browser and go to http://www.java.com/en/download/installed.jsp?detect=jre

More information