Microsoft Exchange ActiveSync (EAS) Security Information and Guidance
|
|
|
- Nicholas Matthews
- 10 years ago
- Views:
Transcription
1 Microsoft Exchange ActiveSync (EAS) Security Information and Guidance Good Work Product Version: 1.5 Doc Rev Last Updated: 31-Aug-15 Good Work TM
2 Legal Notice This document, as well as all accompanying documents for this product, is published by Good Technology Corporation ( Good ). Good may have patents or pending patent applications, trademarks, copyrights, and other intellectual property rights covering the subject matter in these documents. The furnishing of this, or any other document, does not in any way imply any license to these or other intellectual properties, except as expressly provided in written license agreements with Good. This document is for the use of licensed or authorized users only. No part of this document may be used, sold, reproduced, stored in a database or retrieval system or transmitted in any form or by any means, electronic or physical, for any purpose, other than the purchaser s authorized use without the express written permission of Good. Any unauthorized copying, distribution or disclosure of information is a violation of copyright laws. While every effort has been made to ensure technical accuracy, information in this document is subject to change without notice and does not represent a commitment on the part of Good. The software described in this document is furnished under a license agreement or nondisclosure agreement. The software may be used or copied only in accordance with the terms of those written agreements. The documentation provided is subject to change at Good s sole discretion without notice. It is your responsibility to utilize the most current documentation available. Good assumes no duty to update you, and therefore Good recommends that you check frequently for new versions. This documentation is provided as is and Good assumes no liability for the accuracy or completeness of the content. The content of this document may contain information regarding Good s future plans, including roadmaps and feature sets not yet available. It is stressed that this information is non-binding and Good creates no contractual obligation to deliver the features and functionality described herein, and expressly disclaims all theories of contract, detrimental reliance and/or promissory estoppel or similar theories. Legal Information Copyright All rights reserved. All use is subject to license terms posted at GOOD, GOOD TECHNOLOGY, the GOOD logo, GOOD FOR ENTERPRISE, GOOD FOR GOVERNMENT, GOOD FOR YOU, GOOD APPCENTRAL, GOOD DYNAMICS, SECURED BY GOOD, GOOD MOBILE MANAGER, GOOD CONNECT, GOOD SHARE, GOOD TRUST, GOOD VAULT, and GOOD DYNAMICS APPKINETICS are trademarks of Good Technology Corporation and its related entities. All third-party technology products are protected by issued and pending U.S. and foreign patents. Patent Information: GFE to Good Work Transition Planning Guide ii
3 Revision History Log begins 31-Aug-15 Date 31-Aug-15 Description Initial v1.5 MR Edition published GFE to Good Work Transition Planning Guide iii
4 Table of Contents Introduction 1 Good Work EAS Workflow 1 Enabling EAS 2 Verifying Your EAS Configuration 4 Exchange Mobile Security 5 Mobile Device Access Policy 5 Mobile Device Mailbox Policy 6 Firewall 8 Restricting EAS Access 8 Enabling EAS Approval Delegation 8 Good Work EAS Enrollment 9 Short-Form Enrollment 9 Long-Form Enrollment 10 Troubleshooting 11 Additional Technical References 11 Glossary 13 Good Work iv
5 Introduction Introduction Good Work is a mobile collaboration application developed by Good Technology. Currently available for ios and Android devices, Good Work employs EAS to provide , calendar, and contact information. For more information on Good Work features and product specifications visit Good Work's respective Apple itunes and Google Play product page. Exchange ActiveSync (EAS) is a Microsoft Exchange synchronization protocol optimized to work with high-latency and low-bandwidth networks. The protocol, based on HTTP and XML, allows authorized mobile devices to access an organization's information on a server running Microsoft Exchange. Enabled by default when you install Microsoft Exchange, EAS gives mobile phone and tablet users convenient access to their , calendar, contacts, and tasks, and lets them continue to access this information while working offline. A relevant history of Microsoft EAS can be found in Wikipedia. Based on a number of Microsoft TechNet articles, Product Guides, Product Online Help, and Microsoft Press references, this document provides needed clarification regarding Microsoft Exchange ActiveSync (EAS) implementation when used with Good Work. The goal is to help you optimize the Exchange Risk Management and Operational posture in your Good Work deployment. See the Additional Technical References below for a complete listing of supporting reference materials and literature. Note: Although this document's focus is limited to EAS, not all Good Work features are provided by EAS. Please see the Good Work Datasheet for a feature summary and deployment options. Consult your Microsoft technical representative(s) for instructions and guidance on all aspects of your Exchange deployments. Good Work EAS Workflow From the perspective of the Exchange ActiveSync server, all EAS requests are sourced from the Good Proxy server. This makes proper setup of your Good Dynamics infrastructure Good Control and Good Proxy crucial to EAS connectivity with Good Work. At a high level, this workflow is captured in the following diagram and enumerated below. GFE to Good Work Transition Planning Guide 1
6 Enabling EAS 1. The Good Work client initiates an EAS request. 2. Request traverses a Wi-Fi or celluar network. 3. Request is relayed from the Good NOC to the on-premise Good Proxy server; or, alternatively, the request is sent to a Good Direct Connect environment. 4. The request is validated against the configuration in the Good Control server. 5. If permitted, the request is sent from the Good Proxy server to the EAS server. Note: Step 3 is dictated by the Good Dynamics environment, not the Good Work client. See Good Dynamics Direct Connect for additional information concerning routing options. Enabling EAS By default, Exchange ActiveSync is enabled when you install the Client Access Server (CAS) role on the computer running Microsoft Exchange Server. Notwithstanding this, in order to use the Good Work app, each user must be enabled for EAS on their respective Exchange server. If EAS is not enabled for a user, it can be enabled via the Exchange Admin GUI or via the Exchange Shell. To enable EAS from the Exchange Admin GUI: 1. In the console tree, navigate to Recipient Configuration > Mailbox. 2. Select Properties from the action pane or right-click the user's mailbox and select Properties. 3. Click Mailbox Features. 4. Select Exchange ActiveSync, then click Enable Exchange ActiveSync. 5. Click OK. GFE to Good Work Transition Planning Guide 2
7 Enabling EAS Although the example shows the Exchange 2013 Admin interface, the process readily applies to other versions of Exchange, as well. The Exchange Shell provides a lot of flexibility on how to enable EAS in an Exchange environment. The following examples highlight some of the most common ways to enable EAS with the Exchange Shell. To enable/disable EAS for a single user via the Exchange Shell: Set-CASMailbox Identity <SMTP Address of user> -ActiveSyncEnabled $true Set-CASMailbox Identity <SMTP Address of user> -ActiveSyncEnabled $false Example: Set-CASMailbox -Identity [email protected] -ActiveSyncEnabled $true To enable/disable EAS for all users: get-mailbox set-casmailbox -ActiveSyncEnabled:$True get-mailbox set-casmailbox -ActiveSyncEnabled:$False To disable/enable ActiveSync connectivity for a group of users: Use the Get-User cmdlet to change the scope of the command. For example, to disable/enable ActiveSync for all the users in the Sales department, run the following command: Get-User -RecipientTypeDetailsUserMailbox where {$_.Department -eq "Sales"} Set-CASMailbox -ActiveSyncEnabled $true Get-User -RecipientTypeDetailsUserMailbox where {$_.Department -eq "Sales"} Set-CASMailbox -ActiveSyncEnabled $False This following command will find all EAS enabled users and save the results to C:\ActiveSyncEnabled.txt. GFE to Good Work Transition Planning Guide 3
8 Verifying Your EAS Configuration Get-CASMailbox -ResultSize Unlimited where { $_.ActiveSyncEnabled -eq 'True'} ft name, activesyncenabled autosize > c:\activesyncenabled.txt You can also check on which devices are registered to a user's mailbox with this command: Get-ActiveSyncDeviceStatistics -Mailbox jsmith ft DeviceFriendlyName, DeviceType, DeviceUserAgent, LastSuccessSync In later versions of Exchange, replace Get-ActiveSyncDeviceStatistics with Get-MobileDeviceStatistics. Verifying Your EAS Configuration In default installations of Exchange the EAS virtual directory needs to be set in order for EAS to work correctly for mobile devices a requirement plainly necessary for Good Work as well. Additional background information can be found in the Exchange 2013 Client Access server configuration article available from TechNet. For Good Work, the External EAS virtual directory needs to set in Exchange 2013 as pictured here, in the Exchange admin center console. Alternatively, in environments with a large CAS array, you can use Exchange cmdlets to set the EAS virtual directory, since you can do it one time with a single cmdlet and have it apply to all your CAS machines via the following: Get-activesyncvirtualdirectory set-activesyncvirtualdirectory externalurl array>/microsoft-server-activesync Then, to verify that the External EAS virtual directory is set correctly, use the following: Get-activesyncvirtualdirectory fl *url*, identity GFE to Good Work Transition Planning Guide 4
9 Exchange Mobile Security This will produce verification output similar to the following albeit reflecting your particular CAS machine taxonomy: Exchange Mobile Security Before a mobile device can connect to an Exchange mailbox via EAS, the user s mailbox must be enabled for EAS as described above. The Exchange mobile policy associated with the user s mailbox must also permit the device to connect. Once permitted, the device is then subjected to the user s mobile device mailbox policy, which controls which EAS policies are enforced on the device. The following topics describe these policies and the corresponding affect the Good Work client. Mobile Device Access Policy The mobile device access policy in Exchange allows the administrator to control which type of devices can connect via EAS. It also allows for the quarantine of devices. In Exchange 2013, the mobile device access policy is opened by selecting Exchange admin center > mobile. GFE to Good Work Transition Planning Guide 5
10 Exchange Mobile Security The default policy allows for all devices to connect. If you are not using the default policy, please be sure to include the following Good device types in your policy. Device Type GoodiPhone GoodiPad GoodAndroid Applies To Apple iphones Apple ipads All Android Devices Mobile Device Mailbox Policy A mobile device mailbox policy allows an administrator to enforce device policies on a connecting device. All mailboxes must belong to a mobile device mailbox policy and by default, it is the default mobile device mailbox policy. Mobile device mailbox policy settings can be viewed from Exchange admin center > mobile > mobile device mailbox policies. GFE to Good Work Transition Planning Guide 6
11 Exchange Mobile Security The default policy is pictured here. As a best practice, a separate policy should be created for Good mobile device mailboxes. The Good Work app will be managed by Good Control. Therefore, EAS security policies should not be enforced for Good Work EAS clients. All security policy enforcement for Good Work clients (i.e., wipe data, lock app, jail break detection, etc.) are administered from Good Control. As mentioned, the default policy is automatically assigned to new mailbox users, and also to those mailboxes that have not been manually reassigned to a non-default policy. Somewhat confusingly, the policy that Exchange Server 2010 and 2013 created automatically during setup is called the Default. However the name Default is not the true indication of which policy is the default. Rather, it is the IsDefaultPolicy property (for Exchange 2010) or IsDefault (for Exchange 2013) which actually determines the default policy. You can see which policy is the default by using the Get-ActiveSyncMailboxPolicy or Get-MobileDevic boxPolicy cmdlet. GFE to Good Work Transition Planning Guide 7
12 Exchange Mobile Security Firewall If a firewall exists between the Exchange ActiveSync server and the Good Proxy server, TCP port 443 must be open from the Good Proxy server to the EAS server. For optimal EAS direct push performance, the timeout should be set to 30 minutes. The Good Work client utilizes direct push for EAS notifications when the GEMS Push notification service is unavailable. As such, it is important that the firewall setting noted above is configured properly. For more information about EAS direct push, refer to Restricting EAS Access To block rogue EAS clients from accessing your Exchange server, take the following steps: 1. Keep EAS access restricted to the Good Proxy server. 2. Restrict EAS access to Good devices only via a mobile device access policy. Enabling EAS Approval Delegation You can create a new mail-enabled security group responsible for receiving ActiveSync devices requests using Exchange Management Console (EMC) or using the Exchange Management Shell (EMS) shown here. GFE to Good Work Transition Planning Guide 8
13 Good Work EAS Enrollment 1. Create the new group with: New-DistributionGroup -Name "ActiveSync Approvers" -Type "Security" -OrganizationalUnit "itguydiaries.net/security_groups/" -SamAccountName "Exchange ActiveSync Approvers" -Alias "ExASapprovers" 2. Enable Exchange ActiveSync quarantine and configure the notification with: Set-ActiveSyncOrganizationSettings DefaultAccessLevel Quarantine AdminMailRecipients 3. Copy the management role containing Set-CASMailbox ActiveSyncAllowedDeviceIDs cmdlet/parameter with: New-ManagementRole -Parent "Organization Client Access" -Name "ExActiveSync Approval" 4. Remove all other management role entries from the created management role ExActiveSync Approval using: Get-ManagementRoleEntry "ExActiveSync Approval\*" Where {$_.Name -NotLike "Set-CASMailbox*"} Remove- ManagementRoleEntry 5. Create a role group and add the previously created security group [ActiveSync Approvers] with: New-RoleGroup -Name "ActiveSync Device Management" Roles "ExActiveSync Approval", "User Options" -Members "Exchange ActiveSync Approvers" -Description "Members of this management role group have the rights to approve and deny ActiveSync devices" Good Work EAS Enrollment The last step is activating the Good Work client in Exchange ActiveSync. Short-Form Enrollment In the first enrollment screen, the user is prompted for their address and password. The address should be populated automatically. What happens next depends on the Good Work application/policy configuration in Good Control. GFE to Good Work Transition Planning Guide 9
14 Good Work EAS Enrollment The Good Work application configuration in Good Control dictates how the Good Work app finds the user s Exchange ActiveSync server. The Good Control administrator has three options: 1. Hard code the Exchange ActiveSync server a useful option in simple environments for which there is only one universal URL to the Exchange ActiveSync server. 2. Hard code the Autodiscover endpoint URL suitable for environments with multiple EAS servers. This option allows the Good Work app to query the autodiscover endpoint to lookup the user s EAS server URL dynamically. 3. Enable Automated Autodiscovery suitable for environments in which the autodiscover endpoint URL is not known. With this option enabled, the Good Work app will use autodiscover to look up the autodiscover endpoint URL, which it will then use to lookup the EAS server URL for the user. Note: As a best practice, only the first or second option is recommended. Long-Form Enrollment Once the user s EAS server is found, the Good Work app will try to authenticate the user based on the address and password that was entered in the first screen. If the user s address is not the same as the user s UPN (user principal name) or the password/ combination is incorrect, the user is presented with the second enrollment screen (long form). This enrollment screen gives the user an opportunity to enter their correct credentials. If the user is ever presented with the second enrollment screen, they should always enter in their network credentials, consisting of their domain, username, and password. These are the same network credentials that users use to login to their computers. Depending on what the administrator has configured in Good Control, the EAS server field maybe optional. To avoid having users enter in the EAS server field, it is highly recommended that option 1 or 2 from above is preconfigured on the system. GFE to Good Work Transition Planning Guide 10
15 Troubleshooting For more detailed information on how to configure the Good Work Application/Policy in Good Control, please refer to the Good Work Product Guide and GEMS Administration Guide. Troubleshooting The most common issue with Good Work and EAS is connectivity. Pertinent KB articles explaining how to troubleshoot EAS issues, include: How to test EAS Connectivity How to check EAS policy block Additional Technical References The following technical references and training aids are available online at the URLs provided. Understanding Mobile Device Management Exchange High availability and Site Resilience Exchange Risk Management and Security Guidance Exchange ActiveSync Guidance Understanding Security for Exchange ActiveSync Understanding Exchange ActiveSync Mailbox Policies Exchange ActiveSync: Frequently asked questions Comparison of Exchange ActiveSync Clients GFE to Good Work Transition Planning Guide 11
16 Additional Technical References Best Practices for Mobile Messaging Deployment with Exchange Server Controlling Exchange ActiveSync Device Access Reference to Available PowerShell Cmdlets in Exchange Online Microsoft Exchange Conference TechEd GFE to Good Work Transition Planning Guide 12
17 Glossary Glossary A Access Key Part of the activation key that is different for every GD application activation. Access keys consist of 15 letters and numbers. Access keys are generated by the enterprise GC server. Activation Key All the credentials necessary for activation of a GD application for an end user. The necessary credentials are a provisioning ID and an access key. AD Active Directory ADSI Active Directory Services Interface ADT Plugin Android Development Tools Plugin Affinities The feature that enables enterprises to allocate their GP servers between their GC servers and their application servers. Allocation can be an absolute division, or based on a priority order, or both. Application Policies The feature that enables GD application developers to add policies that are specific to their application to a GC server. Application policies are defined by developers, using an XML file format. Application-Based Service A GD shared service that is provided by GD applications. An application-based service uses Good Dynamics AppKinetics for communication. Authentication Delegation The feature for transferring authentication of the end user from one application to another. An application for which authentication is delegated does not display its unlock screen, and does not have its own security password. Authentication delegation can be used between two GD applications, and between GD applications and the GFE mobile client. Authentication delegation is controlled by the enterprise administrator through the management console of the respective software product, either GC or GFE Good Mobile Control. GFE to Good Work Transition Planning Guide 13
18 Glossary C CIFS Common Internet File System - the standard way that computer users share files across corporate intranets and the Internet. An enhanced version of the Microsoft open, cross-platform Server Message Block (SMB) protocol, CIFS is a native file-sharing protocol in Windows. CLI Command Line Interface COTS Commercial Off the Shelf HTTP Proxy D DC Direct Connect DMZ Demilitarized Zone DMZ proxy for Direct Connect HTTP proxy in the enterprise perimeter network that relays DC connections. F FQDN fully qualified domain name G GC GD Good Control server. The GD server component which hosts the web-enabled Good Control management console, or GC console, for managing permissions and settings for Good Dynamics applications. GC resides on a machine belonging to your organization. Good Dynamics. Good product that gives companies a set of development tools to create their own secure apps built on the technology used to create GFE. GFE to Good Work Transition Planning Guide 14
19 Glossary GD Application ID The unique identifier used throughout GD to identify the application for the purposes of entitlement, publishing and service provider registration. GD Authentication Token mechanism A token-based single sign-on feature that enables an end user to be authenticated by an application server without the need for entry of any further credentials. GD Direct Connect The feature for relaying GD communication through a proxy in the enterprise perimeter network (also known as DMZ or demilitarised zone) instead of through the GD NOC. This feature also enables GP servers to be deployed in the enterprise perimeter network, instead of behind the firewall. GD Enterprise Servers Two GD components installed behind the enterprise firewall: Good Control (GC) and Good Proxy (GP). GD NOC Good Dynamics Network Operations Centre - provides a secure communications infrastructure between the GD Runtime on the mobile device and the GD enterprise servers behind the firewall. GD Runtime The component that is embedded in a mobile application to enable its connection to the GD platform and container. Every GD application includes an instance of the Good Dynamics Runtime. Alternative form: Good Dynamics Runtime GD SDK Good Dynamics Software Development Kit. The products that enable developers to build GD applications from source code in the native programming languages of the mobile platform. Native source code includes, for example, Objective-C on ios, and Java on Android. Other forms: Good Dynamics SDK Good Dynamics Software Development Kit GD Shared Services Framework for collaboration that includes Application-Based Services and Server- Based Services. Both types of service use a consumer-provider model. The consumer is always a GD application. The provider of an application-based service will also be a GD application. The provider of a server-based service will be an application server. Alternative forms: GD Shared Services Good Dynamics Shared Services Framework GD Shared Services Framework Shared Services Framework GFE to Good Work Transition Planning Guide 15
20 Glossary GD Wrapped Application An application in which the GD Runtime has been embedded by using the GD Wrapping process. Other form: Good Dynamics Wrapped Application GD Wrapping The product for embedding the GD Runtime in a mobile application executable without requiring access to application source code. Other form: Good Dynamics Wrapping GDN Good Developer Networking. A web portal to support app development. Download the Good Dynamics SDK Download the Good Dynamics Servers Access technical support, the Good Community, and other resources Get notifications for technical updates Get access to Good Dynamics enabled applications Connect with developers and Good ISV partners GEMS Good Enterprise Mobility Server GFE Good for Enterprise GNP Good Notification Push. Protocol that allows notification messages to be pushed from an application server to GD app. Good Dynamics AppKinetics Mechanism for secure exchange of application data between two mobile applications on the same mobile device. AppKinetics data exchange uses a consumer-provider model. One application in the exchange provides a service that is consumed by the other. GP Good Proxy. The GD server component which provides a secure bridge between the GC server and your enterprise application servers, if any exist, and delivers messages to and from GD applications. GP resides on a machine belonging to your organization. GRP Good Relay Protocol. Protocol for end-to-end secure communications between the GD app and the GP server. GUID Globally Unique Identifier - is a unique reference number used as an identifier and typically refers to various implementation of the universally unique identifier (UUID) standard. See UUID. GFE to Good Work Transition Planning Guide 16
21 Glossary GW Good Wrapping. The GD server component which can be used to wrap non-gd ios applications with GD technology, allowing you to secure your applications without the need for additional programming or access to source code. GW resides on a machine belonging to your organization. H HTML/CSS/JS Hypertext Markup Language, Cascading Style Sheet, and JavaScript, which are the languages used to code applications in the Adobe PhoneGap MEAP. I IDE Integrated Development Environment IOPS Input/Output Operations Per Second (pronounced eye-ops) is a common performance measurement used to benchmark computer storage devices like hard disk drives (HDD), solid state drives (SSD), and storage area networks (SAN). As with any benchmark, IOPS numbers published by storage device manufacturers do not guarantee real-world application performance. ISV Indepdent Software Vendor - a third-party software developer or reseller who has executed a partnership agreement with Good. J JKS Java keystore JSON JavaScript Object Notation, the format used for AppKinetics service definitions files. JSON is a standard. K KCD Kerberos Constrained Delegation. A single sign-on feature that enables an end user to be authenticated by an application server that uses Kerberos, without the need for entry of further credentials. GFE to Good Work Transition Planning Guide 17
22 Glossary KDC Key Distribution Center. A logical component of the Kerberos infrastructure L LDAP Lightweight Directory Access Protocol - a directory service protocol that runs on a layer above the TCP/IP stack LUN In computer storage, a logical unit number, or LUN, is a number used to identify a logical unit, which is a device addressed by the SCSI protocol or Storage Area Network protocols which encapsulate SCSI, such as Fibre Channel or iscsi. LUSE Logical Unit Size Expansion M MAM Mobile Application Management MMC Microsoft Management Console MyTerm O OWA Outlook Web Access P Provisioning ID Part of the activation key that is the same for all GD applications activated by the same end user at the same enterprise. The provisioning ID is typically the end user s enterprise address. GFE to Good Work Transition Planning Guide 18
23 Glossary R Relay Server Server in the NOC that provides communications between the GD app and GP servers. Repository In GEMS-Docs, a repository is shared data source designated by a Display Name, a Storage Type (File Share or SharePoint), and a Path. Each repository is defined with user access permissions. Repositories can be further organized into Lists. When a repository is member of a list, it can inherent the user access permissions defined for the whole list. RTT Round trip time S SDK Software Development Kit. Typically a set of software development tools that allows for the creation of applications for a certain software package, software framework, hardware platform, computer system, video game console, operating system, or similar platform. Server Clustering A feature within GD that enables enterprises to deploy groups of servers as single nodes in their GD infrastructure. The following servers can be deployed in clusters using this feature: GP, GC, application servers. Server-Based Service A GD shared service that is provided by application servers. A server-based service could use any communication technology, including HTTP or TCP sockets. Service Discovery Feature that enables a prospective consumer of a shared service to query for available providers of the service. The result of a service discovery query will be a list of GD applications, for an application-based service, or a list of servers, for a server- based service. Alternative forms: AppKinetics Service Discovery Service provider registration Activity of adding a GD application or application server to the list of providers of a particular service. The list of service providers is hosted in the GD NOC. GFE to Good Work Transition Planning Guide 19
24 Glossary Share In GEMS-Docs, a share is synonomous with a repository and can be one of two storage types: File Share or SharePoint. See Repository. SPN Service Principal Name SSL secure socket layer T TLS transport layer security U UI User Interface UPN - User Principal Name In Active Directory, this is the name of the system user in address format UUID Universally Unique Identifier - an identifier standard used in software construction. A UUID is simply a 128-bit value. The meaning of each bit is defined by any of several variants. For humanreadable display, many systems use a canonical format using hexadecimal text with inserted hyphen characters. For example: de305d54-75b4-431b-adb2-eb6b9e The intent of UUIDs is to enable distributed systems to uniquely identify information without significant central coordination. UX User Experience GFE to Good Work Transition Planning Guide 20
SSL/TLS Certificate Check for GEMS and Good Work
Administration Guide Supplemental SSL/TLS Certificate Check for GEMS and Good Work Product Version: 1.5 Doc Rev 1.3.1 Issued: 3-Aug-15 Last Updated: 30-Sep-15 Good Enterprise Mobility Server TM Legal Notice
Good Share Client User Guide for ios Devices
Good Share Client User Guide for ios Devices Product Version: 3.2.2 Last Updated:24-Nov-15 Good Share TM Legal Notice This document, as well as all accompanying documents for this product, is published
Cloud Deployment Guide
Cloud Deployment Guide Product Version: 1.2 Doc Rev 1.3 Last Updated: 15-Jan-15 Good Work TM Table of Contents Introduction What is the Cloud? 1 The Private Cloud 1 Good Work in the Cloud 1 Environment
Good Share Client User Guide for ios Devices
Good Share Client User Guide for ios Devices Product Version: 3.1.3 Doc Rev 3.1 Last Updated: 24-Feb-15 Good Share TM Table of Contents Introducing Good Share 1 Installing the Good Share App 1 Getting
Technical Certificates Overview
Technical Certificates Overview Version 8.2 Mobile Service Manager Legal Notice This document, as well as all accompanying documents for this product, is published by Good Technology Corporation ( Good
User Self-Service Configuration Overview
User Self-Service Configuration Overview Version 8.2 Mobile Service Manager Legal Notice This document, as well as all accompanying documents for this product, is published by Good Technology Corporation
Service Release Notes 8.2
Service Release Notes 8.2 Version 8.2.0.1.1097 Mobile Service Manager Legal Notice This document, as well as all accompanying documents for this product, is published by Good Technology Corporation ( Good
Good Connect for ios Client User Guide
Good Connect for ios Client User Guide Product Version: 2.3.6 Doc Rev 2.1 Last Update: 3-Feb-15 Good Connect TM Table of Contents Overview 1 What is Good Connect? 1 Installing the Good Connect App 1 Using
BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note
BlackBerry Enterprise Service 10 Secure Work Space for ios and Android Version: 10.1.1 Security Note Published: 2013-06-21 SWD-20130621110651069 Contents 1 About this guide...4 2 What is BlackBerry Enterprise
Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference
Architecture and Data Flow Overview BlackBerry Enterprise Service 10 721-08877-123 Version: Quick Reference Published: 2013-11-28 SWD-20131128130321045 Contents Key components of BlackBerry Enterprise
System Requirements. Version 8.2.0.1.1072. Mobile Service Manager
System s Version 8.2.0.1.1072 Mobile Service Manager Legal Notice This document, as well as all accompanying documents for this product, is published by Good Technology Corporation ( Good ). Good may have
Configuration Guide BES12. Version 12.2
Configuration Guide BES12 Version 12.2 Published: 2015-07-07 SWD-20150630131852557 Contents About this guide... 8 Getting started... 9 Administrator permissions you need to configure BES12... 9 Obtaining
Configuration Guide. BES12 Cloud
Configuration Guide BES12 Cloud Published: 2016-04-08 SWD-20160408113328879 Contents About this guide... 6 Getting started... 7 Configuring BES12 for the first time...7 Administrator permissions you need
BlackBerry Enterprise Service 10. Version: 10.2. Configuration Guide
BlackBerry Enterprise Service 10 Version: 10.2 Configuration Guide Published: 2015-02-27 SWD-20150227164548686 Contents 1 Introduction...7 About this guide...8 What is BlackBerry Enterprise Service 10?...9
Configuration Guide BES12. Version 12.1
Configuration Guide BES12 Version 12.1 Published: 2015-04-22 SWD-20150422113638568 Contents Introduction... 7 About this guide...7 What is BES12?...7 Key features of BES12... 8 Product documentation...
Introduction to PowerShell Integration
Introduction to PowerShell Integration Overview The PowerShell integrated deployment is a direct model of integration that requires a simple setup with less infrastructure. In the PowerShell model, AirWatch
Copyright 2013, 3CX Ltd. http://www.3cx.com E-mail: [email protected]
Manual Copyright 2013, 3CX Ltd. http://www.3cx.com E-mail: [email protected] Information in this document is subject to change without notice. Companies names and data used in examples herein are fictitious
Configuration Guide BES12. Version 12.3
Configuration Guide BES12 Version 12.3 Published: 2016-01-19 SWD-20160119132230232 Contents About this guide... 7 Getting started... 8 Configuring BES12 for the first time...8 Configuration tasks for managing
How to Install Microsoft Mobile Information Server 2002 Server ActiveSync. Joey Masterson
How to Install Microsoft Mobile Information Server 2002 Server ActiveSync Joey Masterson How to Install Microsoft Mobile Information Server 2002 Server ActiveSync Joey Masterson Copyright Information
Kaspersky Lab Mobile Device Management Deployment Guide
Kaspersky Lab Mobile Device Management Deployment Guide Introduction With the release of Kaspersky Security Center 10.0 a new functionality has been implemented which allows centralized management of mobile
Mobility Manager 9.5. Users Guide
Mobility Manager 9.5 Users Guide LANDESK MOBILITY MANAGER Copyright 2002-2013, LANDesk Software, Inc. and its affiliates. All rights reserved. LANDesk and its logos are registered trademarks or trademarks
Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365
Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365 May 2015 This guide describes how to configure Microsoft Office 365 for use with Dell One Identity Cloud Access Manager
Microsoft Dynamics GP. Workflow Installation Guide Release 10.0
Microsoft Dynamics GP Workflow Installation Guide Release 10.0 Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of
Mobile Device Management Version 8. Last updated: 17-10-14
Mobile Device Management Version 8 Last updated: 17-10-14 Copyright 2013, 2X Ltd. http://www.2x.com E mail: [email protected] Information in this document is subject to change without notice. Companies names
Configuration Guide. BlackBerry Enterprise Service 12. Version 12.0
Configuration Guide BlackBerry Enterprise Service 12 Version 12.0 Published: 2014-12-19 SWD-20141219132902639 Contents Introduction... 7 About this guide...7 What is BES12?...7 Key features of BES12...
Preparing for GO!Enterprise MDM On-Demand Service
Preparing for GO!Enterprise MDM On-Demand Service This guide provides information on...... An overview of GO!Enterprise MDM... Preparing your environment for GO!Enterprise MDM On-Demand... Firewall rules
Advanced Configuration Steps
Advanced Configuration Steps After you have downloaded a trial, you can perform the following from the Setup menu in the MaaS360 portal: Configure additional services Configure device enrollment settings
Security Guide. BlackBerry Enterprise Service 12. for ios, Android, and Windows Phone. Version 12.0
Security Guide BlackBerry Enterprise Service 12 for ios, Android, and Windows Phone Version 12.0 Published: 2015-02-06 SWD-20150206130210406 Contents About this guide... 6 What is BES12?... 7 Key features
BlackBerry Enterprise Service 10 version 10.2 preinstallation and preupgrade checklist
BlackBerry Enterprise Service version.2 preinstallation and preupgrade checklist Verify that the following requirements are met before you install or upgrade to BlackBerry Enterprise Service version.2.
http://docs.trendmicro.com
Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,
Microsoft Lync Server 2010
Microsoft Lync Server 2010 Scale to a Load Balanced Enterprise Edition Pool with WebMux Walkthrough Published: March. 2012 For the most up to date version of the Scale to a Load Balanced Enterprise Edition
Setup Guide Access Manager 3.2 SP3
Setup Guide Access Manager 3.2 SP3 August 2014 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE
http://docs.trendmicro.com
Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,
CA Performance Center
CA Performance Center Single Sign-On User Guide 2.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is
1. What are the System Requirements for using the MaaS360 for Exchange ActiveSync solution?
MaaS360 FAQs This guide is meant to help answer some of the initial frequently asked questions businesses ask as they try to figure out the who, what, when, why and how of managing their smartphone devices,
Dell One Identity Cloud Access Manager 8.0.1 - How to Configure for SSO to SAP NetWeaver using SAML 2.0
Dell One Identity Cloud Access Manager 8.0.1 - How to Configure for SSO to SAP NetWeaver using SAML 2.0 May 2015 About this guide Prerequisites and requirements NetWeaver configuration Legal notices About
Enterprise Self Service Quick start Guide
Enterprise Self Service Quick start Guide Software version 4.0.0.0 December 2013 General Information: [email protected] Online Support: [email protected] 1 2013 CionSystems Inc. ALL RIGHTS RESERVED.
Administration Guide. BlackBerry Enterprise Service 12. Version 12.0
Administration Guide BlackBerry Enterprise Service 12 Version 12.0 Published: 2015-01-16 SWD-20150116150104141 Contents Introduction... 9 About this guide...10 What is BES12?...11 Key features of BES12...
SOLARWINDS ORION. Patch Manager Evaluation Guide
SOLARWINDS ORION Patch Manager Evaluation Guide About SolarWinds SolarWinds, Inc. develops and markets an array of network management, monitoring, and discovery tools to meet the diverse requirements of
Quick Start and Trial Guide (Mail) Version 3 For ios Devices
Quick Start and Trial Guide (Mail) Version 3 For ios Devices Information in this document is subject to change without notice. Complying with all applicable copyright laws is the responsibility of the
Installing Management Applications on VNX for File
EMC VNX Series Release 8.1 Installing Management Applications on VNX for File P/N 300-015-111 Rev 01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright
Microsoft Dynamics AX 2009 Installation Guide. Microsoft Corporation Published: November 2009
Microsoft Dynamics AX 2009 Installation Guide Microsoft Corporation Published: November 2009 Microsoft Dynamics is a line of integrated, adaptable business management solutions that enables you and your
MaaS360 Mobile Enterprise Gateway
MaaS360 Mobile Enterprise Gateway Administrator Guide Copyright 2013 Fiberlink Communications Corporation. All rights reserved. Information in this document is subject to change without notice. The software
BlackBerry Enterprise Service 10. Version: 10.2. Installation Guide
BlackBerry Enterprise Service 10 Version: 10.2 Installation Guide Published: 2015-08-17 SWD-20150817115607897 Contents 1 About this guide...5 2 What is BlackBerry Enterprise Service 10?... 6 Key features
MicrosoftDynam ics GP 2015. TenantServices Installation and Adm inistration Guide
MicrosoftDynam ics GP 2015 TenantServices Installation and Adm inistration Guide Copyright Copyright 2014 Microsoft Corporation. All rights reserved. Limitation of liability This document is provided as-is.
MaaS360 Mobile Enterprise Gateway
MaaS360 Mobile Enterprise Gateway Administrator Guide Copyright 2014 Fiberlink, an IBM Company. All rights reserved. Information in this document is subject to change without notice. The software described
The increasing popularity of mobile devices is rapidly changing how and where we
Mobile Security BACKGROUND The increasing popularity of mobile devices is rapidly changing how and where we consume business related content. Mobile workforce expectations are forcing organizations to
CounterACT Plugin Configuration Guide for ForeScout Mobile Integration Module MaaS360 Version 1.0.1. ForeScout Mobile
CounterACT Plugin Configuration Guide for ForeScout Mobile Integration Module Version 1.0.1 ForeScout Mobile Table of Contents About the Integration... 3 ForeScout MDM... 3 Additional Documentation...
Good Share Server Installation and Administration Guide
Good Share Server Installation and Administration Guide Product Version: 3.1.3 Doc Rev 3.4 Last Updated: 30-Jun-15 Good Share TM Legal Notice This document, as well as all accompanying documents for this
Exchange Server Hybrid Deployment for Exchange Online Dedicated
Dedicated and ITAR-support Plans Hybrid Deployment for Exchange Online Dedicated Applies to: Office 365 Dedicated - Legacy 2013 Platform Release Topic Last Modified: 31-Jan-2013 Topic Last Modified: 31-Jan-2013
Introduction to the EIS Guide
Introduction to the EIS Guide The AirWatch Enterprise Integration Service (EIS) provides organizations the ability to securely integrate with back-end enterprise systems from either the AirWatch SaaS environment
MaaS360 On-Premises Cloud Extender
MaaS360 On-Premises Cloud Extender Installation Guide Copyright 2014 Fiberlink Communications Corporation. All rights reserved. Information in this document is subject to change without notice. The software
Symantec Mobile Management 7.2 SP3 MR1 Release Notes
Mobile Management 7.2 SP3 MR1 Release Notes Mobile Management 7.2 SP3 MR1 Release Notes This document includes the following topics: About What's new in 7.2 SP3 MR1 Fixed issues in 7.2 SP3 MR1 Known issues
Web Interface with Active Directory Federation Services Support Administrator s Guide
Web Interface with Active Directory Federation Services Support Administrator s Guide Web Interface with Active Directory Federation Services (ADFS) Support Citrix Presentation Server 4.0 for Windows Copyright
Ensuring the security of your mobile business intelligence
IBM Software Business Analytics Cognos Business Intelligence Ensuring the security of your mobile business intelligence 2 Ensuring the security of your mobile business intelligence Contents 2 Executive
Dell Enterprise Reporter 2.5. Configuration Manager User Guide
Dell Enterprise Reporter 2.5 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license
How To Set Up A Load Balancer With Windows 2010 Outlook 2010 On A Server With A Webmux On A Windows Vista V2.2.5.2 (Windows V2) On A Network With A Server (Windows) On
Load Balancing Exchange 2010 OWA for External Access using WebMux Published: April 2011 Information in this document, including URL and other Internet Web site references, is subject to change without
www.novell.com/documentation Server Installation ZENworks Mobile Management 2.7.x August 2013
www.novell.com/documentation Server Installation ZENworks Mobile Management 2.7.x August 2013 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of this
Configuring Single Sign-On from the VMware Identity Manager Service to Office 365
Configuring Single Sign-On from the VMware Identity Manager Service to Office 365 VMware Identity Manager JULY 2015 V1 Table of Contents Overview... 2 Passive and Active Authentication Profiles... 2 Adding
Configuring Email Notification for Business Glossary
Configuring Email Notification for Business Glossary 1993-2016 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording
Workflow approval via email
Microsoft Dynamics AX Workflow approval via email White Paper This document highlights the functionality in Microsoft Dynamics AX 2012 R2 that allows workflow to be configured so that a user can take approval
Resonate Central Dispatch
Resonate Central Dispatch Microsoft Exchange 2010 Resonate, Inc. Tel. + 1.408.545.5535 Fax + 1.408.545.5502 www.resonate.com Copyright 2013 Resonate, Inc. All rights reserved. Resonate Incorporated and
How to Secure a Groove Manager Web Site
How to Secure a Groove Manager Web Site Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless otherwise noted, the companies, organizations,
MaaS360 Cloud Extender
MaaS360 Cloud Extender Installation Guide Copyright 2013 Fiberlink Communications Corporation. All rights reserved. Information in this document is subject to change without notice. The software described
Sophos Mobile Control Installation guide. Product version: 3
Sophos Mobile Control Installation guide Product version: 3 Document date: January 2013 Contents 1 Introduction...3 2 The Sophos Mobile Control server...4 3 Set up Sophos Mobile Control...16 4 External
Step-by-Step Guide to Deploying Microsoft Exchange Server 2003 SP2 Mobile Messaging with Windows Mobile 5.0-based Devices
Step-by-Step Guide to Deploying Microsoft Exchange Server 2003 SP2 Mobile Messaging with Windows Mobile 5.0-based Devices March, 2006 Applies to: Exchange Server 2003 SP2 and Windows 5.0-based Devices
Sophos Mobile Control Installation guide. Product version: 3.5
Sophos Mobile Control Installation guide Product version: 3.5 Document date: July 2013 Contents 1 Introduction...3 2 The Sophos Mobile Control server...4 3 Set up Sophos Mobile Control...10 4 External
Sophos Mobile Control Technical guide
Sophos Mobile Control Technical guide Product version: 2 Document date: December 2011 Contents 1. About Sophos Mobile Control... 3 2. Integration... 4 3. Architecture... 6 4. Workflow... 12 5. Directory
An Overview of Samsung KNOX Active Directory and Group Policy Features
C E N T R I F Y W H I T E P A P E R. N O V E M B E R 2013 An Overview of Samsung KNOX Active Directory and Group Policy Features Abstract Samsung KNOX is a set of business-focused enhancements to the Android
Setup Guide Access Manager Appliance 3.2 SP3
Setup Guide Access Manager Appliance 3.2 SP3 August 2014 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS
Introduction to the Mobile Access Gateway
Introduction to the Mobile Access Gateway This document provides an overview of the AirWatch Mobile Access Gateway (MAG) architecture and security and explains how to enable MAG functionality in the AirWatch
Symantec Managed PKI. Integration Guide for ActiveSync
Symantec Managed PKI Integration Guide for ActiveSync ii Symantec Managed PKI Integration Guide for ActiveSync The software described in this book is furnished under a license agreement and may be used
BES10 Cloud architecture and data flows
BES10 Cloud architecture and data flows Architecture: BES10 Cloud solution Component APNs BlackBerry Cloud Connector BES10 Cloud BlackBerry Infrastructure Company directory Devices GCM Other third-party
CA Mobile Device Management 2014 Q1 Getting Started
CA Mobile Device Management 2014 Q1 Getting Started This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is
Mobile Device Management in a BYOD World. Jay Cotton Microsoft PFE
Mobile Device Management in a BYOD World Jay Cotton Microsoft PFE Mobile Device Management in a BYOD World Agenda It s a BYOD World What can I do to maintain control? How do these devices connect to Exchange?
HOTPin Integration Guide: Google Apps with Active Directory Federated Services
HOTPin Integration Guide: Google Apps with Active Directory Federated Services Disclaimer Disclaimer of Warranties and Limitation of Liabilities All information contained in this document is provided 'as
SMART Vantage. Installation guide
SMART Vantage Installation guide Product registration If you register your SMART product, we ll notify you of new features and software upgrades. Register online at smarttech.com/registration. Keep the
Microsoft Hyper-V Server 2008 R2 Getting Started Guide
Microsoft Hyper-V Server 2008 R2 Getting Started Guide Microsoft Corporation Published: July 2009 Abstract This guide helps you get started with Microsoft Hyper-V Server 2008 R2 by providing information
Radia Cloud. User Guide. For the Windows operating systems Software Version: 9.10. Document Release Date: June 2014
Radia Cloud For the Windows operating systems Software Version: 9.10 User Guide Document Release Date: June 2014 Software Release Date: June 2014 Legal Notices Warranty The only warranties for products
How To Configure A Windows 8.1 On A Windows 7.1.1 (Windows) With A Powerpoint (Windows 8) On A Blackberry) On An Ipad Or Ipad (Windows 7) On Your Blackberry Or Black
Introduction to Cloud-Based Mobile Device Management with Intune Information in this document, including URLs and other Internet Web site references, is subject to change without notice. Unless otherwise
Dell One Identity Cloud Access Manager 8.0.1- How to Configure for High Availability
Dell One Identity Cloud Access Manager 8.0.1- How to Configure for High Availability May 2015 Cloning the database Cloning the STS host Cloning the proxy host This guide describes how to extend a typical
Good Work Product Guide for Administrators
Good Work Product Guide for Administrators Product Version: 2.0 Doc Rev 2.0.1 Issued: 05-Jan-16 Last Updated: 05-Jan-16 Good Work TM Legal Notice This document, as well as all accompanying documents for
BlackBerry Enterprise Server for Microsoft Office 365 preinstallation checklist
BlackBerry Enterprise Server for Microsoft Office 365 preinstallation checklist This document lists the preinstallation requirements that must be met before you install the BlackBerry Enterprise Server
Sophos Mobile Control Installation guide
Sophos Mobile Control Installation guide Product version: 2.5 Document date: July 2012 Contents 1 Introduction... 3 2 The Sophos Mobile Control server... 4 3 Set up Sophos Mobile Control... 13 4 Running
Getting Started with Clearlogin A Guide for Administrators V1.01
Getting Started with Clearlogin A Guide for Administrators V1.01 Clearlogin makes secure access to the cloud easy for users, administrators, and developers. The following guide explains the functionality
What's New in BlackBerry Enterprise Server 5.0 SP4 for Novell GroupWise
What's New in BlackBerry Enterprise Server 5.0 SP4 for Novell GroupWise Upgrade paths Enhancements to the setup application Administrators can upgrade to BlackBerry Enterprise Server 5.0 SP4 for Novell
Sophos Mobile Control Installation prerequisites form
Sophos Mobile Control Installation prerequisites form Product version: 3 Document date: January 2013 Contents 1 About this document... 3 2 System environment... 4 3 Communication between devices and push
SOLARWINDS ORION. Patch Manager Evaluation Guide for ConfigMgr 2012
SOLARWINDS ORION Patch Manager Evaluation Guide for ConfigMgr 2012 About SolarWinds SolarWinds, Inc. develops and markets an array of network management, monitoring, and discovery tools to meet the diverse
Cisco ASA Adaptive Security Appliance Single Sign-On: Solution Brief
Guide Cisco ASA Adaptive Security Appliance Single Sign-On: Solution Brief October 2012 2012 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 1 of 21 Contents
NETWRIX USER ACTIVITY VIDEO REPORTER
NETWRIX USER ACTIVITY VIDEO REPORTER ADMINISTRATOR S GUIDE Product Version: 1.0 January 2013. Legal Notice The information in this publication is furnished for information use only, and does not constitute
BlackBerry Enterprise Service 10. Universal Device Service Version: 10.2. Administration Guide
BlackBerry Enterprise Service 10 Universal Service Version: 10.2 Administration Guide Published: 2015-02-24 SWD-20150223125016631 Contents 1 Introduction...9 About this guide...10 What is BlackBerry
How to Install SSL Certificates on Microsoft Servers
How to Install SSL Certificates on Microsoft Servers Ch apter 4: Installing SSL Certificates in Exchange Server, SharePoint, and SQL Server... 57 Co mmon Operations... 57 Step 1: Prepare the Microsoft
DIGIPASS Authentication for Microsoft ISA 2006 Single Sign-On for Outlook Web Access
DIGIPASS Authentication for Microsoft ISA 2006 Single Sign-On for Outlook Web Access With IDENTIKEY Server / Axsguard IDENTIFIER Integration Guidelines Disclaimer Disclaimer of Warranties and Limitations
RSA Authentication Manager 7.1 Basic Exercises
RSA Authentication Manager 7.1 Basic Exercises Contact Information Go to the RSA corporate web site for regional Customer Support telephone and fax numbers: www.rsa.com Trademarks RSA and the RSA logo
QuickStart Guide for Managing Mobile Devices. Version 9.2
QuickStart Guide for Managing Mobile Devices Version 9.2 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF
Product Manual. MDM On Premise Installation Version 8.1. Last Updated: 06/07/15
Product Manual MDM On Premise Installation Version 8.1 Last Updated: 06/07/15 Parallels IP Holdings GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 632 0411 Fax: + 41 52 672 2010 www.parallels.com
Flexible Identity Federation
Flexible Identity Federation Quick start guide version 1.0.1 Publication history Date Description Revision 2015.09.23 initial release 1.0.0 2015.12.11 minor updates 1.0.1 Copyright Orange Business Services
vcloud Director User's Guide
vcloud Director 5.5 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
StarWind iscsi SAN & NAS: Configuring HA File Server on Windows Server 2012 for SMB NAS January 2013
StarWind iscsi SAN & NAS: Configuring HA File Server on Windows Server 2012 for SMB NAS January 2013 TRADEMARKS StarWind, StarWind Software and the StarWind and the StarWind Software logos are trademarks
