Deployment Guide. Policy Engine (PE) Deployment Guide. A Technical Reference

Size: px
Start display at page:

Download "Deployment Guide. Policy Engine (PE) Deployment Guide. A Technical Reference"

Transcription

1 Deployment Guide Policy Engine (PE) Deployment Guide A Technical Reference

2 Deployment Guide Notice: The information in this publication is subject to change without notice. THIS PUBLICATION IS PROVIDED AS IS WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT. CITRIX SYSTEMS, INC. ( CITRIX ), SHALL NOT BE LIABLE FOR TECHNICAL OR EDITORIAL ERRORS OR OMISSIONS CONTAINED HEREIN, NOR FOR DIRECT, INCIDENTAL, CONSEQUENTIAL OR ANY OTHER DAMAGES RESULTING FROM THE FURNISHING, PERFORMANCE, OR USE OF THIS PUBLICATION, EVEN IF CITRIX HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES IN ADVANCE. This publication contains information protected by copyright. Except for internal distribution, no part of this publication may be photocopied or reproduced in any form without prior written consent from Citrix. The exclusive warranty for Citrix products, if any, is stated in the product documentation accompanying such products. Citrix does not warrant products other than its own. Product names mentioned herein may be trademarks and/or registered trademarks of their respective companies. Copyright 2008 Citrix Systems, Inc., 851 West Cypress Creek Road, Ft. Lauderdale, Florida U.S.A. All rights reserved.

3 Table of Contents Introduction...4 Prerequisites...5 Policy Expressions (PE)...6 Components of Policy Expression...6 Qualifiers...6 Operators...7 Operands...7 Policy Limitations...8 Performance Considerations...8 Important Policy Behavior - Policy Engine (PE)...9 Sample Expressions using the CLI...10 Sample Expressions using the GUI...10 Compound Expressions...12 Sample Compound Expressions using the CLI...12 Sample Compound Expressions using the GUI...12

4 Introduction Citrix NetScaler optimizes the delivery of web applications increasing security and improving performance and Web server capacity. This approach ensures the best total cost of ownership (TCO), security, availability, and performance for Web applications. The Citrix NetScaler solution is a comprehensive network system that combines high-speed load balancing and content switching with state-of-the-art application acceleration, layer 4-7 traffic management, data compression, dynamic content caching, SSL acceleration, network optimization, and robust application security into a single, tightly integrated solution. Deployed in front of application servers, the system significantly reduces processing overhead on application and database servers, reducing hardware and bandwidth costs. Policies are used to configure various Application Switch features. For example, the parameters for compressing content are defined in a compression policy. The features that use policies are: Content Switching Content Filtering AppCompress Cache Redirection SSL VPN Priority Queuing DoS Protection Sure Connect Policy expressions are applied to content that enters the system. Expressions are shared among features, but actions are feature-specific. For example, you can create an expression to identify.pdf files being sent through the system. You can then create a compression policy that uses this expression to compress those files. The Policy Engine refers to the architecture in the Citrix NetScaler Application Switch for versions up to 8.x. The architecture for Policy Engine and the manner in which it operates is presented in this guide. 4

5 Prerequisites Citrix NetScaler Application Switch, running version 8.x, (Quantity x 1 for single deployment, Quantity x 2 for HA deployment). Client laptop/workstation running Internet Explorer 6.0+, Ethernet port 9-pin serial cable -or- USB-to-serial cable NOTE: The policies in this guide are based on the Policy Engine (PE) architecture in NetScaler version 8.0. The policies for NetScaler version 9.0+ use the Policy Infrastructure (PI) architecture which are different in syntax and methodology. Policy Infrastructure (PI) is not discussed in this guide. 5

6 Policy Expressions (PE) Components of Policy Expression The Policy Expressions (PE) language is a basic expressions language that is used to define policy conditions on the NetScaler Application Switch. Because it is the original expressions language on the NetScaler, the expressions written in it are often called classic expressions. A Policy consists of an expression and an action. Expressions are shared among features on the switch. Actions are feature-specific. For example you can create an expression to identify.pdf files being sent through the system. You can then create a compression policy that uses this expression to compress (take action) those files. Policy Expressions are like an If-Then-Else language. The Expression is the If, the Action is the Then. Expressions consist of the following components: Name: expression name Qualifier: The information to be tested. Operator: Operation to perform. Operand: Values to compare to Qualifiers. Expression Syntax: add expression <name> <qualifier> <operator> <operand> Example: add expression mpost REQ.HTTP.METHOD == POST Qualifiers Qualifiers are directional, or flow based. In other words they are relevant to requests coming from clients and responses being sent from backend servers. Most often they are based on components of HTTP flows. In the Policy Expression language you will see flow based expressions start with REQ for request based expressions and RES for response based expressions. The qualifier format is: [<flow.type>.<protocol>.]qualifier For example: REQ.HTTP.METHOD REQ.HTTP.URL REQ.HTTP.HEADER 6

7 Operators The Operator identifies the operation to perform on the operands. The following table defines the operators. Operator Description ==,!=, EQ, NEQ Test for exact matches. These are case sensitive. GT CONTAINS, NOTCONTAINS EXIST, NOTEXISTS CONTENTS Use for numerical comparisons on the length of the URLs and query strings. Determine if the specified string is contained in the qualifier. These are not case sensitive. Checks for the existence of particular qualifier. For example, to check is a specific HTTP header exists or if a URL query exists. Checks for the existence of the qualifier and it s contents. Operands An Operand defines the values for the corresponding qualifiers, or the values being compared to the corresponding qualifiers. Wildcard characters can sometimes be used in Operands. For example /*. gif. 7

8 Policy Limitations The Cache Redirection feature has a maximum of 128 expressions and Content Switching has a maximum of 512 expressions, which are hard-coded and cannot be changed. For the remaining features, there is a built-in maximum limit of 1024 expressions in the NetScaler Application Switch, but this can be changed by entering the following through the command line interface: nsapimgr -ys maxexpr=<new limit number Performance Considerations Some operators behave differently, so you might want to take note of the behavior and the potential impact to performance. The operator == is: Case Sensitive Accepts Wildcards * Is not CPU intensive The operator CONTAINS is: Not Case Sensitive Does Not Accept Wildcards * Is CPU Intensive 8

9 Requests SSL Decryption AAA App Fw Responder Caching TCP Buffering SSL Encryption TCP Compression Responses Important Policy Behavior - Policy Engine (PE) Policies get evaluated in the order that they are classified in, that is with their priority numbers. Policies operate on a first-match principle. In a policy classification, the action associated with the first policy that matches gets applied. Once a match is determined, the policy evaluation exits the evaluation logic tree and no more policies are evaluated. If there is no match, the GOTO expression is evaluated, which can be goto the END of the logic tree, or go to the NEXT priority number, or goto a specific priority number. Each Feature has it s own set of priority numbers for it s own set of policies. Policy priority numbers don t overlap between feature sets. Having a policy for rewrite with priority 20 doesn t interfere with a policy for caching with priority 20 or 10 or 30. Request flow policy priorities come before (lower numbers) Response flow policy priorities (higher numbers). Priority numbers increment in units of 10. Content Switching Caching Load Balancing HTTP Compression Content Filtering App Fw HTTP DoS Response Rewrite Sure Connect Content Filtering Priority Queueing SSL Decryption Request Rewrite SSL Encryption 9

10 Sample Expressions using the CLI add policy expression mget REQ.HTTP.METHOD == GET add policy expression uhtml REQ.HTTP.URL == /*.html add policy expression hhdr REQ.HTTP.HEADER Host CONTAINS myhost.com add policy expression srcip REQ.IP.SOURCEIP == add policy expression dstip REQ.IP.DESTIP == Sample Expressions using the GUI To add a expression in the NetScaler GUI, navigate to NetScaler System Expressions Add. Add each expression and click on Create. 10

11 11

12 Compound Expressions Compound expressions check for multiple conditions. Compound expression logic is formed with one or more expressions connected using the logical operators && and, and are grouped for order of evaluation using the symbols ( and ). Processing of compound expressions is done from left to right, and is done with lazy evaluation, i.e. once the final result is known, evaluation is terminated. Sample Compound Expressions using the CLI Sample using and && operators: add policy expression not_get REQ.HTTP.METHOD!= GET add policy expression not_post REQ.HTTP.METHOD!= POST add policy expression not_head REQ.HTTP.METHOD!= HEAD add policy expression not_normal_method not_get && not_post && not_head Sample using or operators: add policy expression no_hdr_host REQ.HTTP.HEADER Host NOTEXISTS add policy expression no_hdr_user_agent REQ.HTTP.HEADER User-Agent NOTEXISTS add policy expression not_normal_hdrs no_hdr_host no_hdr_user_agent add policy expression bad_request not_normal_method not_normal_hdrs Sample Compound Expressions using the GUI Sample using and && operators: 12

13 13

14 14 Sample using or operators:

15 15

16 Citrix Worldwide Worldwide headquarters Citrix Systems, Inc. 851 West Cypress Creek Road Fort Lauderdale, FL USA T T Regional headquarters Americas Citrix Silicon Valley 4988 Great America Parkway Santa Clara, CA USA T Europe Citrix Systems International GmbH Rheinweg Schaffhausen Switzerland T Asia Pacific Citrix Systems Hong Kong Ltd. Suite 3201, 32nd Floor One International Finance Centre 1 Harbour View Street Central Hong Kong T Citrix Online division 5385 Hollister Avenue Santa Barbara, CA USA T About Citrix Citrix Systems, Inc. (Nasdaq:CTXS) is the global leader and the most trusted name in application delivery infrastructure. More than 200,000 organizations worldwide rely on Citrix to deliver any application to users anywhere with the best performance, highest security and lowest cost. Citrix customers include 100% of the Fortune 100 companies and 98% of the Fortune Global 500, as well as hundreds of thousands of small businesses and prosumers. Citrix has approximately 6,200 channel and alliance partners in more than 100 countries. Annual revenue in 2006 was $1.1 billion. Citrix, NetScaler, GoToMyPC, GoToMeeting, GoToAssist, Citrix Presentation Server, Citrix Password Manager, Citrix Access Gateway, Citrix Access Essentials, Citrix Access Suite, Citrix SmoothRoaming and Citrix Subscription Advantage and are trademarks of Citrix Systems, Inc. and/or one or more of its subsidiaries, and may be registered in the U.S. Patent and Trademark Office and in other countries. UNIX is a registered trademark of The Open Group in the U.S. and other countries. Microsoft, Windows and Windows Server are registered trademarks of Microsoft Corporation in the U.S. and/or other countries. All other trademarks and registered trademarks are property of their respective owners.

DEPLOYMENT GUIDE Amazon EC2 Security Groups. Deployment Guide. Security Groups Amazon EC2.

DEPLOYMENT GUIDE Amazon EC2 Security Groups. Deployment Guide. Security Groups Amazon EC2. Deployment Guide Security Groups Amazon EC2 www.citrix.com Table of Contents Introduction...3 Solution Requirements...4 Prerequisites...4 Additional Information...4 Network Diagram...5 IP Addresses...6

More information

DEPLOYMENT GUIDE XenApp, Avaya 1X Agent. Deployment Guide. Avaya 1X Agent R2 SP2. XenApp 6.0.

DEPLOYMENT GUIDE XenApp, Avaya 1X Agent. Deployment Guide. Avaya 1X Agent R2 SP2. XenApp 6.0. Deployment Guide Avaya 1X Agent R2 SP2 XenApp 6.0 www.citrix.com Table of Contents Introduction...3 Solution Requirements...4 Prerequisites...4 Usage Modes...4 Network Diagram...5 Compatibility Matrix...6

More information

Installation Guide. Citrix License Server VPX v1.01

Installation Guide. Citrix License Server VPX v1.01 Installation Guide Citrix License Server VPX Installation Guide Citrix License Server VPX v1.01 This document provides step-by-step instructions for installing and running the Citrix License Server Appliance

More information

Deployment Guide. ICA Proxy for Citrix Receiver with SMS Authentication. Access Gateway Enterprise Edition XenApp XenDesktop

Deployment Guide. ICA Proxy for Citrix Receiver with SMS Authentication. Access Gateway Enterprise Edition XenApp XenDesktop Mobile Device Deployment Guide ICA Proxy for Citrix Receiver with SMS Authentication Access Gateway Enterprise Edition XenApp XenDesktop www.citrix.com Table of Contents Introduction...3 Solution Requirements...4

More information

Deployment Guide. ICA Proxy for Citrix Receiver. Access Gateway Enterprise Edition XenApp XenDesktop

Deployment Guide. ICA Proxy for Citrix Receiver. Access Gateway Enterprise Edition XenApp XenDesktop Windows Mac Thin Client ipad iphone WinMo Android Deployment Guide ICA Proxy for Citrix Receiver Access Gateway Enterprise Edition XenApp XenDesktop www.citrix.com Table of Contents Introduction...3 Solution

More information

Deployment Guide. Compression. Deployment Guide. A Step-by-Step Technical Guide

Deployment Guide. Compression. Deployment Guide. A Step-by-Step Technical Guide Deployment Guide Compression Deployment Guide A Step-by-Step Technical Guide Deployment Guide Notice: The information in this publication is subject to change without notice. THIS PUBLICATION IS PROVIDED

More information

Citrix Consulting. Guide to Consulting Methodology and Services

Citrix Consulting. Guide to Consulting Methodology and Services Citrix Consulting Fact Sheet Citrix Consulting Guide to Consulting Methodology and Services 2010 www.citrix.com/consulting Citrix Consulting Methodology Through the use of proven methodologies, tools and

More information

WHITE PAPER. Citrix NetScaler VPX. NetScaler VPX: Harness the Power of Virtualized Web App Delivery.

WHITE PAPER. Citrix NetScaler VPX. NetScaler VPX: Harness the Power of Virtualized Web App Delivery. NetScaler VPX: Harness the Power of Virtualized Web App Delivery www.citrix.com Executive summary As Web applications have evolved from simple publishing applications to straightforward transactional applications

More information

Five reasons to choose Citrix XenServer

Five reasons to choose Citrix XenServer Five reasons to choose Citrix XenServer The installation process, server management, workload performance, desktop and application delivery and cost of XenServer make it the clear choice in server virtualization

More information

Guide to Deploying NetScaler as an Active Directory Federation Services Proxy

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

More information

Windows 7 made easier with Citrix XenDesktop

Windows 7 made easier with Citrix XenDesktop WHITE PAPER Citrix XenDesktop Windows 7 made easier with Citrix XenDesktop Windows 7 presents both an opportunity and a challenge for enterprises and their IT organizations. After years of delayed investments

More information

White paper. The three levels of high availability Balancing priorities and cost

White paper. The three levels of high availability Balancing priorities and cost White paper The three levels of high availability Balancing priorities and cost Table of contents Executive summary Availability Goals and metrics Evaluating downtime... 3 Availability levels... 4 Availability

More information

Deploying NetScaler with Microsoft Exchange 2016

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

More information

Azure MFA Integration with NetScaler

Azure MFA Integration with NetScaler Azure MFA Integration with NetScaler This guide focuses on describing the configuration required for integrating Azure MFA (Multi-Factor Authentication) with NetScaler. Citrix.com 1 NetScaler is a world-class

More information

Desktop virtualization for all

Desktop virtualization for all Desktop virtualization for all 2 Desktop virtualization for all Today s organizations encompass a diverse range of users, from road warriors using laptops and mobile devices as well as power users working

More information

High availability and disaster recovery with Microsoft, Citrix and HP

High availability and disaster recovery with Microsoft, Citrix and HP High availability and disaster recovery White Paper High availability and disaster recovery with Microsoft, Citrix and HP Using virtualization, automation and next-generation storage to improve business

More information

How to buy or cancel the XenDesktop Essentials Service

How to buy or cancel the XenDesktop Essentials Service How to buy or cancel the XenDesktop Essentials Service V2 October 2017 Table of Contents What is the Citrix XenDesktop Essentials Service... 3 Get started with the XenDesktop Essentials Service... 3 Change

More information

Citrix SD-WAN for Optimal Office 365 Connectivity and Performance

Citrix SD-WAN for Optimal Office 365 Connectivity and Performance Solution Brief Citrix SD-WAN for Optimal Office 365 Connectivity and Performance Evolving Needs for WAN Network Architecture Enterprise networks have historically been architected to provide users access

More information

White paper. Keys to Oracle application acceleration: advances in delivery systems.

White paper. Keys to Oracle application acceleration: advances in delivery systems. White paper Keys to Oracle application acceleration: advances in delivery systems. Table of contents The challenges of fast Oracle application delivery...3 Solving the acceleration challenge: why traditional

More information

Optimizing Citrix XenApp high availability A new approach. Using tiered availability to achieve your SLAs with fewer resources and lower costs

Optimizing Citrix XenApp high availability A new approach. Using tiered availability to achieve your SLAs with fewer resources and lower costs Optimizing Citrix XenApp high availability A new approach Using tiered availability to achieve your SLAs with fewer resources and lower costs www.citrix.com everrun VM is a gamechanging availability offering.

More information

Adding XenMobile Users to an Existing XenDesktop Environment

Adding XenMobile Users to an Existing XenDesktop Environment XenMobile and XenDesktop Design Guide Adding XenMobile Users to an Existing XenDesktop Environment Understanding the Impact XenMobile and XenDesktop Design Guide 2 Table of Contents Project Overview 3

More information

Citrix ADC Web App Firewall Service

Citrix ADC Web App Firewall Service Citrix ADC Web App Firewall Service Citrix Product Documentation docs.citrix.com October 15, 2018 Contents Getting started 3 Step 1: Sign Up for Citrix Cloud.................................. 3 Step 2:

More information

Citrix Education Learning Journey

Citrix Education Learning Journey Citrix Education Learning Journey The road to becoming Citrix Certified doesn t need to be long and winding. Use our simple-to-follow learning paths to guide your Learning Journey. Getting started is easy.

More information

XenApp 7.x on Oracle Cloud Infrastructure

XenApp 7.x on Oracle Cloud Infrastructure 2018-032 XenApp 7.x on Oracle Cloud Infrastructure OUT OF BAND DEPLOYMENT GUIDE CITRIX SYSTEMS, INC. Citrix.com 1 Deploying Citrix Cloud XenApp and XenDesktop Service with Oracle Cloud Infrastructure Deploying

More information

What is an application delivery controller?

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

More information

Oracle PeopleSoft 9.2 with NetScaler for Global Server Load Balancing

Oracle PeopleSoft 9.2 with NetScaler for Global Server Load Balancing Oracle PeopleSoft 9.2 with NetScaler for Global Server Load Balancing This solution guide focuses on defining the deployment process for Oracle PeopleSoft with Citrix NetScaler for GSLB (Global Server

More information

Citrix Tech Zone Citrix Product Documentation docs.citrix.com November 13, 2018

Citrix Tech Zone Citrix Product Documentation docs.citrix.com November 13, 2018 Citrix Product Documentation docs.citrix.com November 13, 2018 Contents Citrix Tech Zone - Learn 3 Tech Insights 3 Tech Briefs 3 Diagrams and Posters 4 Citrix Tech Zone - Design 4 Design Decisions 4 Citrix

More information

Comprehensive Citrix HDX visibility powered by NetScaler Management and Analytics System

Comprehensive Citrix HDX visibility powered by NetScaler Management and Analytics System Solution Brief HDX Insight powered by Citrix Comprehensive Citrix HDX visibility powered by NetScaler Management and Analytics System HDX Insight is the only tool in the market that provides endto-end

More information

Citrix XenDesktop White Paper. How to provide unmatched availability, performance and security for Citrix XenDesktop.

Citrix XenDesktop White Paper. How to provide unmatched availability, performance and security for Citrix XenDesktop. How to provide unmatched availability, performance and security for Citrix XenDesktop www.citrix.com Introduction Enterprise networks have traditionally been designed to optimize the delivery of applications

More information

Configuring and Delivering ServiceNow as a managed application to XenMobile Users with 3 rd Party SAML IDP (Identity Provider)

Configuring and Delivering ServiceNow as a managed application to XenMobile Users with 3 rd Party SAML IDP (Identity Provider) Solution Guide ios Managed Configuration Configuring and Delivering ServiceNow as a managed application to XenMobile Users with 3 rd Party SAML IDP (Identity Provider) Solution Guide 1 Introduction Organizations,

More information

Your Adoption Kit for Citrix Workspace Standard

Your Adoption Kit for Citrix Workspace Standard Your Adoption Kit for Citrix Workspace Standard Thank you for choosing Citrix as your workspace and secure SaaS partner. We put together this kit of promotional materials to help you prepare and onboard

More information

Welcome to the new Citrix Product Documentation site

Welcome to the new Citrix Product Documentation site Welcome to the new Citrix Product Documentation site The Citrix Information Experience team is pleased to bring you a redesigned product documentation site! The site was redesigned with our customers in

More information

Citrix Education Learning Journey

Citrix Education Learning Journey Citrix Education Learning Journey The road to becoming Citrix Certified doesn t need to be long and winding. Use our simple-to-follow learning paths to guide your Learning Journey. Getting started is easy.

More information

Configuring and Delivering Salesforce as a managed application to XenMobile Users with 3 rd Party SAML IDP (Identity Provider)

Configuring and Delivering Salesforce as a managed application to XenMobile Users with 3 rd Party SAML IDP (Identity Provider) Solution Guide ios Managed Configuration Configuring and Delivering Salesforce as a managed application to XenMobile Users with 3 rd Party SAML IDP (Identity Provider) Solution Guide Citrix.com Solutions

More information

Citrix CloudBridge Product Overview

Citrix CloudBridge Product Overview Product Overview Product Overview Businesses rely on branch offices to serve customers, to be near partners and suppliers and to expand into new markets. As server and desktop virtualization increase and

More information

XenApp, XenDesktop and XenMobile Integration

XenApp, XenDesktop and XenMobile Integration XA, XD and XM Integration XenApp, XenDesktop and XenMobile Integration for a Comprehensive Mobility and Digital Workspace Solution Citrix.com 1 Desktop and application virtualization have enhanced mobility

More information

Configuring and Delivering Salesforce as a managed application to XenMobile Users with NetScaler as the SAML IDP (Identity Provider)

Configuring and Delivering Salesforce as a managed application to XenMobile Users with NetScaler as the SAML IDP (Identity Provider) Solution Guide ios Managed Configuration Configuring and Delivering Salesforce as a managed application to XenMobile Users with NetScaler as the SAML IDP (Identity Provider) Solution Guide 1 Introduction

More information

Accelerate Graphics in Virtual Environments

Accelerate Graphics in Virtual Environments Accelerate Graphics in Virtual Environments Deliver rich graphics capabilities to more users through virtualized graphics technology from Citrix, Dell, and NVIDIA. Virtualization of graphics applications

More information

Citrix EdgeSight TM BRIDGING THE GAP BETWEEN SYSTEM PERFORMANCE

Citrix EdgeSight TM BRIDGING THE GAP BETWEEN SYSTEM PERFORMANCE P R O D U C T O V E R V I E W Citrix EdgeSight TM BRIDGING THE GAP BETWEEN SYSTEM PERFORMANCE AND USER EXPERIENCE The Citrix EdgeSight product line extends and improves IT management capabilities, enabling

More information

Empower a Mobile Workforce with Secure App Delivery

Empower a Mobile Workforce with Secure App Delivery Empower a Mobile Workforce with Secure App Delivery Empowering people to use Windows applications on any type of device with full security. For convenience and productivity, many people expect to use their

More information

A comprehensive security solution for enhanced mobility and productivity

A comprehensive security solution for enhanced mobility and productivity A comprehensive security solution for enhanced mobility and productivity coupled with NetScaler Unified Gateway and StoreFront lets organizations upgrade their business security beyond usernames and passwords,

More information

The Citrix guide to desktop virtualisation

The Citrix guide to desktop virtualisation The Citrix guide to desktop virtualisation February 2010 www.citrix.com Market overview Desktop virtualisation refers to the concept of being able to separate a personal desktop software environment from

More information

NetScaler 2048-bit SSL Performance

NetScaler 2048-bit SSL Performance WHITE PAPER NetScaler Performance NetScaler 2048-bit SSL Performance July 2010 www.citrix.com/netscaler Overview NetScaler 9.2 boosts SSL performance with 2048-bit keys 5X to meet the needs of customers

More information

Citrix XenApp and XenDesktop 7.15 LTSR FIPS Sample Deployments

Citrix XenApp and XenDesktop 7.15 LTSR FIPS Sample Deployments Citrix XenApp and XenDesktop 7.15 LTSR FIPS 140-2 Sample Deployments Contents Introduction... 2 Audience... 2 Security features introduced in XenApp and XenDesktop 7.15 LTSR... 2 FIPS 140-2 with XenApp

More information

A10 Thunder ADC with Oracle E-Business Suite 12.2 DEPLOYMENT GUIDE

A10 Thunder ADC with Oracle E-Business Suite 12.2 DEPLOYMENT GUIDE A10 Thunder ADC with Oracle E-Business Suite 12.2 DEPLOYMENT GUIDE Table of Contents 1. Introduction... 2 2 Deployment Prerequisites... 2 3 Oracle E-Business Topology... 3 4 Accessing the Thunder ADC Application

More information

ShareFile Account Admin Guide

ShareFile Account Admin Guide ShareFile ShareFile Account Admin Guide A quick guide to get you started with managing your ShareFile account! Intended for: Master Admins, Employees with Admin-level permissions Admin Guide 1 Contents

More information

Remote access to enterprise PCs

Remote access to enterprise PCs Design Guide Remote access to enterprise PCs XenDesktop 7.5 Design Guide Table of Contents About FlexCast Services Design Guides 3 Project overview 3 Objective 3 Assumptions 4 Conceptual architecture 5

More information

White Paper Taking Windows Mobile on Any Device Taking Windows Mobile on Any Device

White Paper Taking Windows Mobile on Any Device Taking Windows Mobile on Any Device White Paper Taking Windows Mobile on Any Device Taking Windows Mobile on Any Device Citrix.com As the adoption of mobile devices continues to expand, IT organizations are challenged to keep up with the

More information

Citrix XenApp and XenDesktop 7.6 LTSR FIPS Sample Deployments

Citrix XenApp and XenDesktop 7.6 LTSR FIPS Sample Deployments Citrix XenApp and XenDesktop 7.6 LTSR FIPS 140-2 Sample Deployments Table of contents Introduction... 2 Audience... 2 Security features introduced in XenApp and XenDesktop 7.6 LTSR... 2 FIPS 140-2 with

More information

10 ways to securely optimize your network. Integrate WAN acceleration with next-gen firewalls to enhance performance, security and control

10 ways to securely optimize your network. Integrate WAN acceleration with next-gen firewalls to enhance performance, security and control 10 ways to securely optimize your network Integrate WAN acceleration with next-gen firewalls to enhance performance, security and control Table of Contents Secure network optimization 3 #1. Application

More information

SAP NetWeaver Server with NetScaler for Load Balancing(SSL offload), Application Firewall and- Integrated Caching

SAP NetWeaver Server with NetScaler for Load Balancing(SSL offload), Application Firewall and- Integrated Caching SAP NetWeaver Server with NetScaler for Load Balancing(SSL offload), Application Firewall and- This solution guide focuses on deploying Citrix NetScaler with Load balancing(ssl offload), Application Firewall

More information

Deploying Virtual Apps and Desktops with Citrix Provisioning using Oracle Cloud Infrastructure

Deploying Virtual Apps and Desktops with Citrix Provisioning using Oracle Cloud Infrastructure Deploying Virtual Apps and Desktops with Citrix Provisioning using Oracle Cloud Infrastructure Citrix Virtual Apps and Desktops (formerly XenApp and XenDesktop) on Oracle Cloud (also known as Oracle Cloud

More information

Cisco Jabber for Android 10.5 Quick Start Guide

Cisco Jabber for Android 10.5 Quick Start Guide Cisco Jabber for Android 10.5 Quick Start Guide Revised: August 21, 2014, Cisco Jabber Welcome to Cisco Jabber. Use this guide to set up the app and use some key features. After setup, learn more by viewing

More information

Welcome to your Citrix User Adoption Kit

Welcome to your Citrix User Adoption Kit Guide Welcome to your Citrix User Adoption Kit Thank you for choosing Citrix as your cloud and virtualization partner. We put together this kit of promotional materials to help you prepare and onboard

More information

Top three reasons to deliver web apps with application virtualization

Top three reasons to deliver web apps with application virtualization Top three reasons to deliver web apps with application virtualization Securely deliver browser-based apps while improving manageability and user experience Web browsers can cause many of the same headaches

More information

By Anthony di Donato. Citrix Systems, Inc.

By Anthony di Donato. Citrix Systems, Inc. How to install NFuse Components and Web Extensions on the same Server? By Anthony di Donato Citrix Systems, Inc. Notice The information in this publication is subject to change without notice. THIS PUBLICATION

More information

Secure app and data delivery across devices, networks and locations

Secure app and data delivery across devices, networks and locations Secure app and data delivery across devices, networks and locations How XenApp dramatically simplifies data protection, access control and other critical security tasks. citrix.com Most discussions of

More information

Citrix StoreFront 2.0

Citrix StoreFront 2.0 White Paper Citrix StoreFront 2.0 Citrix StoreFront 2.0 Proof of Concept Implementation Guide www.citrix.com Contents Contents... 2 Introduction... 3 Architecture... 4 Installation and Configuration...

More information

Features. HDX WAN optimization. QoS

Features. HDX WAN optimization. QoS May 2013 Citrix CloudBridge Accelerates, controls and optimizes applications to all locations: datacenter, branch offices, public and private clouds and mobile users Citrix CloudBridge provides a unified

More information

NetScaler Management and Analytics System service trial account checklist

NetScaler Management and Analytics System service trial account checklist Trial Account Checklist NetScaler Management and Analytics System service trial account checklist The NetScaler Management and Analytics System (MAS) service trial on Citrix Cloud demonstrates the value

More information

Configuring and Delivering AetherPal as a managed application to XenMobile ios Users for Mobile Support.

Configuring and Delivering AetherPal as a managed application to XenMobile ios Users for Mobile Support. Solution Guide ios Managed Configuration Configuring and Delivering AetherPal as a managed application to XenMobile ios Users for Mobile Support. Solution Guide 1 Introduction Remote Support enables IT

More information

Cisco 1000 Series Connected Grid Routers QoS Software Configuration Guide

Cisco 1000 Series Connected Grid Routers QoS Software Configuration Guide Cisco 1000 Series Connected Grid Routers QoS Software Configuration Guide January 17, 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

Printing Enhancements to Citrix Presentation Server 4.0

Printing Enhancements to Citrix Presentation Server 4.0 Printing Enhancements to Citrix Presentation Server 4.0 Overview of Feature Citrix Presentation Server 4.0 includes three new major printing enhancements: Revamped printing engine Universal printer driver

More information

SAML SSO Okta Identity Provider 2

SAML SSO Okta Identity Provider 2 SAML SSO Okta Identity Provider SAML SSO Okta Identity Provider 2 Introduction 2 Configure Okta as Identity Provider 2 Enable SAML SSO on Unified Communications Applications 4 Test SSO on Okta 4 Revised:

More information

Configuring and Delivering Notate for Enterprise as a managed application to XenMobile Users

Configuring and Delivering Notate for Enterprise as a managed application to XenMobile Users Solution Guide ios Managed Configuration Configuring and Delivering Notate for Enterprise as a managed application to XenMobile Users Solution Guide 1 Introduction Organizations, large and small, leverage

More information

Cisco FindIT Plugin for Kaseya Quick Start Guide

Cisco FindIT Plugin for Kaseya Quick Start Guide First Published: 2017-10-23 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 THE

More information

Deploying Oracle Hyperion 11.1 with NetScaler

Deploying Oracle Hyperion 11.1 with NetScaler Deploying Oracle Hyperion 11.1 with NetScaler This deployment guide focuses on defining the deployment process for Oracle Hyperion 9.2 with Citrix NetScaler. It includes information on setting up basic

More information

Citrix ShareFile Enterprise: a technical overview citrix.com

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

More information

Overview. Compatibility Requirements and Caveats. XenServer-Nutanix Integration Guide. December 2017

Overview. Compatibility Requirements and Caveats. XenServer-Nutanix Integration Guide. December 2017 XenServer-Nutanix Integration Guide December 2017 Overview XenServer introduces a seamless integration of the XenServer hypervisor with the Nutanix Hyperconverged Infrastructure (HCI) offering. The XenServer-Nutanix

More information

Validated Reference Design NetScaler SSL Profiles

Validated Reference Design NetScaler SSL Profiles Validated Reference Design NetScaler SSL Profiles This guide focuses on providing guidelines to customers on implementing NetScaler SSL Profiles based on their use cases. Citrix.com 1 Table of Contents

More information

Cisco UCS C-Series IMC Emulator Quick Start Guide. Cisco IMC Emulator 2 Overview 2 Setting up Cisco IMC Emulator 3 Using Cisco IMC Emulator 9

Cisco UCS C-Series IMC Emulator Quick Start Guide. Cisco IMC Emulator 2 Overview 2 Setting up Cisco IMC Emulator 3 Using Cisco IMC Emulator 9 Cisco UCS C-Series IMC Emulator Quick Start Guide Cisco IMC Emulator 2 Overview 2 Setting up Cisco IMC Emulator 3 Using Cisco IMC Emulator 9 Revised: October 6, 2017, Cisco IMC Emulator Overview About

More information

Citrix Netscaler configuration for Receiver

Citrix Netscaler configuration for Receiver Citrix Netscaler configuration for Receiver Contents 1 Introduction 2 Prerequisites 3 Netscaler 10.x Configuration for Receiver 4 Citrix Access Standard Edition Gateway RADIUS authentication 5 Citrix Access

More information

Cisco Unified Communications Self Care Portal User Guide, Release 11.5(1)

Cisco Unified Communications Self Care Portal User Guide, Release 11.5(1) Cisco Unified Communications Self Care Portal User Guide, Release 11.5(1) Unified Communications Self Care Portal 2 Unified Communications Self Care Settings 2 Phones 4 Additional Settings 12 Revised:

More information

Citrix Shifts Your SAP Solutions into High Gear

Citrix Shifts Your SAP Solutions into High Gear W H I T E P A P E R Citrix Shifts Your SAP Solutions into High Gear As a professional, you know that the increasingly advanced business processes required for competitive advantage, and the rich GUI experience

More information

By Jorge Gomez. Citrix Consulting Services. Citrix Systems, Inc.

By Jorge Gomez. Citrix Consulting Services. Citrix Systems, Inc. PeopleSoft 8 Network Bandwidth Consumption By Jorge Gomez Citrix Systems, Inc. Disclaimer The objective of this white paper is to compare consumption of bandwidth between different PeopleSoft 8 deployment

More information

IP Switching Configuring Fast Switching Configuration Guide Cisco IOS Release 15SY

IP Switching Configuring Fast Switching Configuration Guide Cisco IOS Release 15SY IP Switching Configuring Fast Switching Configuration Guide Cisco IOS Release 15SY Configuring Fast Switching 2 Finding Feature Information 2 Information About Configuring Fast Switching 2 How to Configure

More information

Cisco ACI and Citrix NetScaler: Opening the Way to Data Center Agility

Cisco ACI and Citrix NetScaler: Opening the Way to Data Center Agility White Paper Cisco ACI and Citrix NetScaler: Opening the Way to Data Center Agility Business Agility Requires Data Center Agility Today s successful enterprises innovate and respond to change faster than

More information

Citrix NetScaler LLB Deployment Guide

Citrix NetScaler LLB Deployment Guide Deployment Guide Citrix NetScaler Citrix NetScaler LLB Deployment Guide Deployment Guide for Using a NetScaler Appliance for Outbound Link Load Balancing www.citrix.com Contents Introduction... 3 Solution

More information

Deploying Oracle ATG with NetScaler

Deploying Oracle ATG with NetScaler Deploying Oracle ATG with NetScaler This guide focuses on defining the process for deploying Oracle ATG with Citrix NetScaler Citrix.com 1 Table of Contents Introduction 3 Configuration 3 NetScaler features

More information

Windows Server 2003 Migration with Citrix App and Desktop Delivery

Windows Server 2003 Migration with Citrix App and Desktop Delivery Windows Server 2003 Migration with Citrix App and Desktop Delivery As you transition from Windows Server 2003, transform your app and desktop delivery strategy with the industry s leading solutions Citrix

More information

DesktopPlayer for Windows

DesktopPlayer for Windows DesktopPlayer for Windows Getting Started Version 2.3.0 February 2017 Table of Contents About this Release... 3 About the Citrix DesktopPlayer for Windows Solution... 3 Remote versus Local Desktops...

More information

Mobilizing Windows apps

Mobilizing Windows apps Mobilizing Windows apps About FlexCast Services design guides Citrix FlexCast Services design guides provide an overview of a validated architecture based on many common scenarios. Each design guide is

More information

Cisco Discovery Protocol Configuration Guide, Cisco IOS XE Release 3S (Cisco ASR 920 Series)

Cisco Discovery Protocol Configuration Guide, Cisco IOS XE Release 3S (Cisco ASR 920 Series) Cisco Discovery Protocol Configuration Guide, Cisco IOS XE Release 3S (Cisco ASR 920 Series) Cisco Discovery Protocol Version 2 2 Finding Feature Information 2 Prerequisites for Using Cisco Discovery Protocol

More information

WHITEPAPER. Security overview. podio.com

WHITEPAPER. Security overview. podio.com WHITEPAPER Security overview Podio security White Paper 2 Podio, a cloud service brought to you by Citrix, provides a secure collaborative work platform for team and project management. Podio features

More information

By Citrix Consulting Services. Citrix Systems, Inc.

By Citrix Consulting Services. Citrix Systems, Inc. Citrix ICA Priority Packet Tagging By Citrix Consulting Services Citrix Systems, Inc. Notice The information in this publication is subject to change without notice. THIS PUBLICATION IS PROVIDED AS IS

More information

Self-Service Password Reset

Self-Service Password Reset Citrix Product Documentation docs.citrix.com September 21, 2018 Contents Self-Service Password Reset 1.1.x 3 What s new 3 What s new in version 1.1.20................................... 3 What s new in

More information

Technical Guide for Upgrading/Migrating to XenApp 6

Technical Guide for Upgrading/Migrating to XenApp 6 Technical Guide for Upgrading/Migrating to XenApp 6 Citrix released XenApp 6 for Windows Server 2008 R2, on March 24, 2010. This document provides a brief technical overview of new XenApp 6 functionality

More information

DaaS Market Report Workspace Services and Desktops-as-a-Service Global Market Trends: The Service Provider Perspective

DaaS Market Report Workspace Services and Desktops-as-a-Service Global Market Trends: The Service Provider Perspective DaaS Market Report 2017 2017 Workspace Services and Desktops-as-a-Service Global Market Trends: The Service Provider Perspective Survey shows jump in traditional Value Added Resellers (VARs) embracing

More information

White paper. Security Beyond Corporate Boundaries. Using Citrix Application Delivery to Protect Corporate Information Anywhere Business Happens

White paper. Security Beyond Corporate Boundaries. Using Citrix Application Delivery to Protect Corporate Information Anywhere Business Happens White paper Security Beyond Corporate Boundaries Using Citrix Application Delivery to Protect Corporate Information Anywhere Business Happens Table of contents Security Beyond Corporate Boundaries Using

More information

Design and deliver cloud-based apps and data for flexible, on-demand IT

Design and deliver cloud-based apps and data for flexible, on-demand IT White Paper Design and deliver cloud-based apps and data for flexible, on-demand IT Design and deliver cloud-based apps and data for flexible, on-demand IT Discover the fastest and easiest way for IT to

More information

Solutions Brief. Unified Communications with XenApp and XenDesktop. citrix.com

Solutions Brief. Unified Communications with XenApp and XenDesktop. citrix.com Solutions Brief Unified Communications with XenApp and XenDesktop The modern workforce is global, demanding real-time collaboration through unified communications solutions such as Microsoft Skype for

More information

Recovery Guide for Cisco Digital Media Suite 5.4 Appliances

Recovery Guide for Cisco Digital Media Suite 5.4 Appliances Recovery Guide for Cisco Digital Media Suite 5.4 Appliances September 17, 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408

More information

Citrix, Dell and Intel

Citrix, Dell and Intel Optimized virtualization with Citrix, Dell and Intel Together, Citrix, Intel and Dell are making it easier for IT professionals to provision, manage and secure their entire IT infrastructure while providing

More information

DesktopPlayer for Windows

DesktopPlayer for Windows DesktopPlayer for Windows Getting Started Version 2.5.0 August 2017 Table of Contents About this release... 3 About the Citrix DesktopPlayer for Windows solution... 3 Remote versus local desktops... 3

More information

White Paper. Citrix NetScaler Deployment Guide

White Paper. Citrix NetScaler Deployment Guide Citrix NetScaler Deployment Guide 2 Table of Contents Citrix NetScaler ADC Overview...3 Standard Edition...3 Enterprise Edition...3 Platinum Edition...4 Software Options...4 NetScaler ADC Features and

More information

Cisco IOS HTTP Services Command Reference

Cisco IOS HTTP Services Command Reference Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 THE SPECIFICATIONS AND INFORMATION

More information

Cisco Jabber IM for iphone Frequently Asked Questions

Cisco Jabber IM for iphone Frequently Asked Questions Frequently Asked Questions Cisco Jabber IM for iphone Frequently Asked Questions Frequently Asked Questions 2 Basics 2 Connectivity 3 Contacts 4 Calls 4 Instant Messaging 4 Meetings 5 Support and Feedback

More information

Security in Higher Education: A Model for the Modern Institution

Security in Higher Education: A Model for the Modern Institution Security in Higher Education: A Model for the Modern Institution The University of Florida protects apps and data while freeing students, faculty and staff to work anywhere on any device Introduction Institutions

More information

White Paper. Deployment Practices and Guidelines for NetScaler 10.1 on Amazon Web Services. citrix.com

White Paper. Deployment Practices and Guidelines for NetScaler 10.1 on Amazon Web Services. citrix.com White Paper Deployment Practices and Guidelines for NetScaler 10.1 on Amazon Web Services Citrix NetScaler on Amazon Web Services (AWS) enables enterprises to rapidly and cost-effectively leverage world-class

More information

A simple, cost-effective way to transition your workloads to the cloud

A simple, cost-effective way to transition your workloads to the cloud Data Sheet NetScaler Pooled Capacity Hardware and Software A simple, cost-effective way to transition your workloads to the cloud Introducing NetScaler pooled capacity hardware and software Organizations

More information