Configuring and Integrating LDAP
|
|
|
- Ami Terry
- 10 years ago
- Views:
Transcription
1 Cnfiguring and Integrating LDAP The Basics f LDAP 3 LDAP Key Terms and Cmpnents 3 Basic LDAP Syntax 4 The LDAP User Experience Mnitr 6 This dcument includes infrmatin abut LDAP and its rle with SlarWinds SAM.
2 2 Cnfiguring and Integrating LDAP Cpyright SlarWinds. All rights reserved wrldwide. N part f this dcument may be reprduced by any means nr mdified, decmpiled, disassembled, published r distributed, in whle r in part, r translated t any electrnic medium r ther means withut the written cnsent f SlarWinds. All right, title and interest in and t the sftware and dcumentatin are and shall remain the exclusive prperty f SlarWinds and its licensrs. SlarWinds Orin, SlarWinds Cirrus, and SlarWinds Tlset are trademarks f SlarWinds and SlarWinds.net and the SlarWinds lg are registered trademarks f SlarWinds All ther trademarks cntained in this dcument and in the Sftware are the prperty f their respective wners. SOLARWINDS DISCLAIMS ALL WARRANTIES, CONDITIONS OR OTHER TERMS, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, ON SOFTWARE AND DOCUMENTATION FURNISHED HEREUNDER INCLUDING WITHOUT LIMITATION THE WARRANTIES OF DESIGN, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SOLARWINDS, ITS SUPPLIERS OR ITS LICENSORS BE LIABLE FOR ANY DAMAGES, WHETHER ARISING IN TORT, CONTRACT OR ANY OTHER LEGAL THEORY EVEN IF SOLARWINDS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. Micrsft and Windws 2000 are either registered trademarks r trademarks f Micrsft Crpratin in the United States and/r ther cuntries. Graph Layut Tlkit and Graph Editr Tlkit Tm Sawyer Sftware, Oakland, Califrnia. All Rights Reserved. Prtins Cpyright CmpnentOne, LLC All Rights Reserved. Dcument Revised 6/14/2012- DJR
3 Cnfiguring and Integrating LDAP 3 The Basics f LDAP Lightweight Directry Access Prtcl (LDAP) is a prtcl fr accessing directry servers. In ther wrds, LDAP is a directry, nt a database. There are n rws r tables in LDAP s directry and there are n relatinal links. The result is a simple yet structured directry design that is easy t navigate. Every bject in LDAP can cntain ne r mre sub-bjects, much like the flder and sub-flder relatinship used in Windws perating systems. LDAP runs directly ver TCP prt 389 by default. It is used t stre infrmatin abut users, including the netwrk privileges assigned t each user. Revking r changing privileges can be dne frm ne entry in the LDAP directry, rather than at many machines acrss the netwrk. LDAP als supprts SSL and TLS fr security. LDAP Key Terms and Cmpnents Fllwing is a list f key terms and cmpnents alng with their respective definitins. Distinguished Names Distinguished Names (DNs) are a fundamental part f LDAP. LDAP uses path syntax t identify bjects in the stre. Typical Windws path syntax: C:\Files\Pictures\Pic1.jpg DNs wrk in reverse rder, meaning the mst specific nde is n the left f the path syntax. Typical example f a DN: CN=SmeUser,OU=SmeCntainer,DC=SmeDmain,DC=cm This DN is cmpsed f fur Relative Distinguished Name (RDN) parts: CN=SmeUser OU=SmeCntainer DC=SmeDmain DC=cm Each RDN is a child f the bject whse RDN is t its right. The bject deepest in the tree in this DN example is the bject, CN=SmeUser. Each RDN is cmpsed f tw parts: the name f the attribute that prvides the primary name f the bject, and the value f that attribute. In this example, CN, which stands fr Cmmn Name, is the name f the attribute that prvides the primary name fr bjects f its class. SmeUser is the value f this attribute. There are als RDN attributes fr OU (Organizatinal Unit) and DC (Dmain Cmpnent). Like any file system, the name fr an bject in an LDAP cntainer must be unique. Thus, CN=Kate uniquely identifies this bject within its cntainer, OU=CustmerSupprt. As a result, the entire DN uniquely identifies this particular bject in the entire directry tree.
4 4 Cnfiguring and Integrating LDAP Search Operatin The mst imprtant peratin in LDAP is the ability t search. This is hw bjects are fund in the directry tree and hw values are read. The syntax is smewhat different frm mre familiar query syntaxes such as SQL. Hwever, LDAP is als much simpler than SQL with SQL's jins, sub-queries, rdering, and gruping. An LDAP query is cmpsed f fur basic parts: a search rt, a search scpe, a filter, and a list f attributes t return. There are mre parameters and ptins, but these basic fur are enugh fr mst cases. Search Rt The search rt determines the place in the tree frm which the search will start. This value is passed as a DN in string frmat. T search the entire directry, pass the DN f the bject that is the rt f the tree. T search lwer in the hierarchy, specify a lwer-level DN. Search Filter The search filter determines which bjects will be returned in the query. It is analgus t the Where clause in a SQL statement. Each bject in the scpe f the query will be evaluated against the filter t determine whether r nt it matches. Objects that d nt meet the filter criteria are eliminated frm the search. Basic LDAP Syntax The fllwing table utlines basic peratrs fr use with LDAP: Operatr Operatr Definitin Definitin Example = Equal t This argument means an attribute must be equal t a certain value t be true. (givenname=kate) This will return all bjects that have the first name f "Kate." Nte: Because there is nly ne argument in this example, it is surrunded with parentheses fr illustratin. & And Use & when yu have mre than ne cnditin and yu want all cnditins t be true. Fr example, if yu want t find all f the peple that have the first name f Kate and live in Austin, yu wuld use the example in the right-hand clumn.! Nt The! peratr is used t exclude bjects that have a certain attribute. If yu need t find all bjects except thse that have the first name f Kate, yu wuld use the example in the right-hand clumn. This wuld find all bjects that d nt have the first name f Kate. (&(givenname=kate)(l=austin)) (!givenname=kate) Nte: Because there is nly ne argument in this example, it is surrunded with parentheses fr illustratin. Nte: The! peratr ges directly in frnt f the argument and inside the argument's set f parentheses. * Wildcard Use the * peratr t represent a value that culd be equal t anything. If yu (title=*)
5 Cnfiguring and Integrating LDAP 5 wanted t find all bjects that have a value fr title, yu wuld then use the example in the right-hand clumn. This wuld return all bjects that have the title attribute ppulated with any value. * Wildcard This wuld apply t all bjects whse first name starts with "Ka." (givenname=ka*) Advanced Examples f LDAP Syntax: Yu need a filter t find all bjects that are in NYC r Austin, and that have the first name f "Kate." This wuld be: (&(givenname=kate)( (l=nyc)(l=austin))) Yu have received 9,360 events in the Applicatin lg and yu need t find all f the bjects that are causing this lgging event. In this case, yu need t find all f the disabled users (msexchuseraccuntcntrl=2) that d nt have a value fr msexchmasteraccuntsid. This wuld be: (&(msexchuseraccuntcntrl=2)(!msexchmasteraccuntsid=*)) Nte: Using the! peratr with the * peratr will lk fr bjects where that attribute is nt set t anything. The LDAP User Experience Mnitr Use the LDAP Mnitr t test that: An LDAP client can pen a cnnectin with an LDAP server. Specified bjects exist and can be lcated in the LDAP catalgue. The server respnds within a required time frame. The LDAP Mnitr supprts LDAP versin 2, which is the mst cmmnly supprted versin. Mst LDAP versin 3 servers will supprt LDAP versin 2 client requests. Hw this Mnitr Wrks: 1. It creates an instance f the LDAP Cnnectin class using the specified directry identifier. 2. It cnfigures the cnnectin which can be encrypted. 3. It establishes an LDAP cnnectin and passes user authenticatin with the bind peratin. 4. It prepares and sends an LDAP search request. LDAP Search Rt and LDAP Filter mnitr settings are used. 5. It reads and prceeds with an LDAP respnse. The mnitr returns the number f fund entries as statistic data. It als calculates and shws the server respnse time.
6 6 Cnfiguring and Integrating LDAP LDAP User Experience Mnitr Prerequisites The target LDAP server IP address and name must be successfully DNS reslved frm the SlarWinds server. Fields Defined The fields highlighted belw are unique t this mnitr, therefre, nly they are defined immediately fllwing this illustratin: Prt Number: Prt 389 is the default prt fr a nn-encrypted cnnectin. Use prt 636 if yu use encryptin. Encryptin Methd: Chse either SSL r StartTLS t encrypt yur data. Authenticatin Methd: Belw are the five available ptins: Annymus: Indicates that the cnnectin shuld be made withut passing credentials. Simple: Indicates that basic authenticatin shuld be used with the cnnectin. This nly requires a valid username and passwrd. NTLM: Indicates that Windws NT Challenge/Respnse (NTLM) authenticatin shuld be used n the cnnectin. This requires user name, passwrd, and dmain (Realm). Kerbers: Indicates that Kerbers authenticatin shuld be used n the cnnectin. This requires a user name, passwrd and dmain (Realm). Negtiate: Indicates that Micrsft's Negtiate authenticatin shuld be used with the cnnectin. This nly requires a valid username and passwrd. Realm (User Dmain): This is the user's dmain (e.g. fr DC=slarwinds,DC=cm the realm wuld be slarwinds). LDAP Search Rt: This is the place in the LDAP tree that yu want t start yur search. (e.g. The Users flder, as illustrated belw): This example is based n the Active Directry Dmain Cntrller lab.ri. The LDAP search rt wuld be CN=Users,DC=lab,DC=ri because the cntext name Flder is Users, and the dmain DC is lab.ri. In general, yu may specify just the dmain rt (DC=lab,DC=ri) t begin a search because the mnitr always applies the SearchScpe.Subtree request ptin. The query will search the entire dmain tree fr the requested bject frm the specified rt.
7 Cnfiguring and Integrating LDAP 7 LDAP Filter: This describes the search cnditin fr an LDAP query and matching attributes. Credentials Credentials shuld be used withut the dmain because the Realm field is defined with this infrmatin. LDAP Mnitr Statistics. The fllwing illustrates typical field entries fr a wrking LDAP User Experience mnitr within SAM: In the illustratin belw, the Statistic and the Respnse Time values are highlighted. A statistic f 1 is returned indicating that 1 user was fund that matched the filter criteria. This query tk 259 millisecnds, as indicated by the Respnse Time value f 259.
How To Install An Orin Failver Engine On A Network With A Network Card (Orin) On A 2Gigbook (Orion) On An Ipad (Orina) Orin (Ornet) Ornet (Orn
SlarWinds Technical Reference Preparing an Orin Failver Engine Installatin Intrductin t the Orin Failver Engine... 1 General... 1 Netwrk Architecture Optins and... 3 Server Architecture Optins and... 4
Configuring BMC AREA LDAP Using AD domain credentials for the BMC Windows User Tool
Cnfiguring BMC AREA LDAP Using AD dmain credentials fr the BMC Windws User Tl Versin 1.0 Cnfiguring the BMC AREA LDAP Plugin fr Dmain Username and Passwrds Intrductin...3 LDAP Basics...4 What is LDAP and
X7500 Series, X4500 Scanner Series MFPs: LDAP Address Book and Authentication Configuration and Basic Troubleshooting Tips
X7500 Series, X4500 Scanner Series MFPs: LDAP Address Bk and Authenticatin Cnfiguratin and Basic Trubleshting Tips Lexmark Internatinal 1 Prerequisite Infrm atin In rder t cnfigure a Lexmark MFP fr LDAP
TaskCentre v4.5 Send Message (SMTP) Tool White Paper
TaskCentre v4.5 Send Message (SMTP) Tl White Paper Dcument Number: PD500-03-17-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 GLOBAL CONFIGURATION
Configuring and Monitoring AS400 Servers. eg Enterprise v5.6
Cnfiguring and Mnitring AS400 Servers eg Enterprise v5.6 Restricted Rights Legend The infrmatin cntained in this dcument is cnfidential and subject t change withut ntice. N part f this dcument may be reprduced
HOWTO: How to configure SSL VPN tunnel gateway (office) to gateway
HOWTO: Hw t cnfigure SSL VPN tunnel gateway (ffice) t gateway Hw-t guides fr cnfiguring VPNs with GateDefender Integra Panda Security wants t ensure yu get the mst ut f GateDefender Integra. Fr this reasn,
TaskCentre v4.5 MS SQL Server Trigger Tool White Paper
TaskCentre v4.5 MS SQL Server Trigger Tl White Paper Dcument Number: PD500-03-02-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT... 1 TRADEMARKS... 1 INTRODUCTION... 2 Overview... 2 Features...
ROSS RepliWeb Operations Suite for SharePoint. SSL User Guide
ROSS RepliWeb Operatins Suite fr SharePint SSL User Guide Sftware Versin 2.5 March 18, 2010 RepliWeb, Inc., 6441 Lyns Rad, Ccnut Creek, FL 33073 Tel: (954) 946-2274, Fax: (954) 337-6424 E-mail: [email protected],
Configuring and Monitoring SysLog Servers
Cnfiguring and Mnitring SysLg Servers eg Enterprise v5.6 Restricted Rights Legend The infrmatin cntained in this dcument is cnfidential and subject t change withut ntice. N part f this dcument may be reprduced
StarterPak: Dynamics CRM Opportunity To NetSuite Sales Order
StarterPak: Dynamics CRM Opprtunity T NetSuite Sales Order Versin 1.0 7/20/2015 Imprtant Ntice N part f this publicatin may be reprduced, stred in a retrieval system, r transmitted in any frm r by any
Click Studios. Passwordstate. RSA SecurID Configuration
Passwrdstate RSA SecurID Cnfiguratin This dcument and the infrmatin cntrlled therein is the prperty f Click Studis. It must nt be reprduced in whle/part, r therwise disclsed, withut prir cnsent in writing
ScaleIO Security Configuration Guide
ScaleIO Security Cnfiguratin Guide 1 Intrductin This sectin prvides an verview f the settings available in ScaleIO t ensure secure peratin f the prduct: Security settings are divided int the fllwing categries:
AvePoint High Speed Migration Supplementary Tools
AvePint High Speed Migratin Supplementary Tls User Guide Issued April 2016 1 Table f Cntents Intrductin... 3 MD5 Value Generatr Tl... 3 Azure Data Uplad Tl... 3 Dwnlading and Unpacking the Tl... 4 Using
MaaS360 Cloud Extender
MaaS360 Clud Extender Installatin Guide Cpyright 2012 Fiberlink Cmmunicatins Crpratin. All rights reserved. Infrmatin in this dcument is subject t change withut ntice. The sftware described in this dcument
Monitor Important Windows Security Events using EventTracker
Mnitr Imprtant Windws Security Events using EventTracker White Paper Publicatin Date: Mar 14, 2014 EventTracker 8815 Centre Park Drive Clumbia MD 21045 www.eventtracker.cm EventTracker: Mnitr Imprtant
BackupAssist SQL Add-on
WHITEPAPER BackupAssist Versin 6 www.backupassist.cm 2 Cntents 1. Requirements... 3 1.1 Remte SQL backup requirements:... 3 2. Intrductin... 4 3. SQL backups within BackupAssist... 5 3.1 Backing up system
Introduction LIVE MAPS UNITY PORTAL / INSTALLATION GUIDE. 2015 Savision B.V. savision.com All rights reserved.
Rev 7.5.0 Intrductin 2 LIVE MAPS UNITY PORTAL / INSTALLATION GUIDE 2015 Savisin B.V. savisin.cm All rights reserved. This manual, as well as the sftware described in it, is furnished under license and
TaskCentre v4.5 File Transfer (FTP) Tool White Paper
TaskCentre v4.5 File Transfer (FTP) Tl White Paper Dcument Number: PD500-03-22-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 GLOBAL CONFIGURATION
Configuring and Monitoring Network Elements
Cnfiguring and Mnitring Netwrk Elements eg Enterprise v5.6 Restricted Rights Legend The infrmatin cntained in this dcument is cnfidential and subject t change withut ntice. N part f this dcument may be
CallRex 4.2 Installation Guide
CallRex 4.2 Installatin Guide This dcument describes hw t install CallRex 4.2. It cvers the fllwing: CallRex 4.2 Cmpnents. Server Prerequisites. Perfrming the Installatin. Changing the Accunt Used by CallRex
StarterPak: Dynamics CRM On-Premise to Dynamics Online Migration - Option 2. Version 1.0
StarterPak: Dynamics CRM On-Premise t Dynamics Online Migratin - Optin 2 Versin 1.0 1/7/2016 Imprtant Ntice N part f this publicatin may be reprduced, stred in a retrieval system, r transmitted in any
LogMeIn Rescue Web SSO via SAML 2.0 Configuration Guide
LgMeIn Rescue Web SSO via SAML 2.0 LgMeIn Rescue Web SSO via SAML 2.0 Cnfiguratin Guide 02-19-2014 Cpyright 2015 LgMeIn, Inc. 1 LgMeIn Rescue Web SSO via SAML 2.0 Cntents 1 Intrductin... 3 1.1 Dcument
How To Upgrade A Crptocard To A 6.4 Migratin Tl (Cpl) For A 6Th Generation Of A Crntl (Cypercoder) On A Crperd (Cptl) 6.
BlackShield ID Upgrade and Migratin Guide Fr CRYPTO-Server 6.4 Users Cpyright 2010 CRYPTOCard Inc. website: http://www.cryptcard.cm Trademarks CRYPTOCard and the CRYPTOCard lg are registered trademarks
Attunity RepliWeb SSL Guide
Attunity RepliWeb SSL Guide Sftware Versin 5.2 June 25, 2012 RepliWeb, Inc., 6441 Lyns Rad, Ccnut Creek, FL 33073 Tel: (954) 946-2274, Fax: (954) 337-6424 E-mail: [email protected], Supprt: http://supprt.repliweb.cm
Learn More Cloud Extender Requirements Cheat Sheet
MaaS360.cm > Learn Mre Learn Mre Clud Extender Requirements Cheat Sheet OVERVIEW This dcument defines all requirements t ensure a successfully installatin f the Clud Extender t enable use f ActiveSync
Implementing ifolder Server in the DMZ with ifolder Data inside the Firewall
Implementing iflder Server in the DMZ with iflder Data inside the Firewall Nvell Cl Slutins AppNte www.nvell.cm/clslutins JULY 2004 OBJECTIVES The bjectives f this dcumentatin are as fllws: T cnfigure
Exercise 5 Server Configuration, Web and FTP Instructions and preparatory questions Administration of Computer Systems, Fall 2008
Exercise 5 Server Cnfiguratin, Web and FTP Instructins and preparatry questins Administratin f Cmputer Systems, Fall 2008 This dcument is available nline at: http://www.hh.se/te2003 Exercise 5 Server Cnfiguratin,
.Net Strong Authentication API
.Net Strng Authenticatin API fr Pwerful Authenticatin Management fr Service Prviders and Enterprises Authenticatin Service Delivery Made EASY Micrsft Windws Lgn with BlackShield Cpyright Cpyright 2011.
Remote Setup and Configuration of the Outlook Email Program Information Technology Group
Remte Setup and Cnfiguratin f the Outlk Email Prgram Infrmatin Technlgy Grup The fllwing instructins will help guide yu in the prper set up f yur Outlk Email Accunt. Please nte that these instructins are
FINRA Regulation Filing Application Batch Submissions
FINRA Regulatin Filing Applicatin Batch Submissins Cntents Descriptin... 2 Steps fr firms new t batch submissin... 2 Acquiring necessary FINRA accunts... 2 FTP Access t FINRA... 2 FTP Accunt n FINRA s
Creating automated reports using VBS AN 44
Creating autmated reprts using VBS AN 44 Applicatin Nte t the KLIPPEL R&D and QC SYSTEM Publishing measured results is imprtant t custmers and clients. While the KLIPPEL database cntains all infrmatin
Serv-U Distributed Architecture Guide
Serv-U Distributed Architecture Guide Hrizntal Scaling and Applicatin Tiering fr High Availability, Security, and Perfrmance Serv-U Distributed Architecture Guide v14.0.1.0 Page 1 f 16 Intrductin Serv-U
o 1.1 - How AD Query Works o 1.2 - Installation Requirements o 2.1 - Inserting your License Key o 2.2 - Selecting and Changing your Search Domain
SysOp Tls Active Directry Management sftware Active Directry Query v1.x Sftware Installatin and User Guide Updated September 29, 2008 In This Dcument: 1.0 Intrductin 1.1 - Hw AD Query Wrks 1.2 - Installatin
Click Studios. Passwordstate. SafeNet Two-Factor Configuration
Passwrdstate SafeNet Tw-Factr Cnfiguratin This dcument and the infrmatin cntrlled therein is the prperty f Click Studis. It must nt be reprduced in whle/part, r therwise disclsed, withut prir cnsent in
ISAM TO SQL MIGRATION IN SYSPRO
118 ISAM TO SQL MIGRATION IN SYSPRO This dcument is aimed at assisting yu in the migratin frm an ISAM data structure t an SQL database. This is nt a detailed technical dcument and assumes the reader has
Corente Cloud Services Exchange (CSX) Corente Cloud Services Gateway Site Survey Form
Crente Clud Services Exchange (CSX) Crente Clud Services Gateway Site Survey Frm Use this site survey frm t prvide yur Crente CSX administratr r service prvider with the necessary infrmatin t register
McAfee Enterprise Security Manager. Data Source Configuration Guide. Infoblox NIOS. Data Source: September 2, 2014. Infoblox NIOS Page 1 of 8
McAfee Enterprise Security Manager Data Surce Cnfiguratin Guide Data Surce: Infblx NIOS September 2, 2014 Infblx NIOS Page 1 f 8 Imprtant Nte: The infrmatin cntained in this dcument is cnfidential and
Traffic monitoring on ProCurve switches with sflow and InMon Traffic Sentinel
An HP PrCurve Netwrking Applicatin Nte Traffic mnitring n PrCurve switches with sflw and InMn Traffic Sentinel Cntents 1. Intrductin... 3 2. Prerequisites... 3 3. Netwrk diagram... 3 4. sflw cnfiguratin
Pronestor Room & Catering
Prnestr Rm Prnestr Rm & Catering Mdule 1 Technical requirements & installatin - Prnestr Rm & Catering Page 1.0 1.5 A guide t all the necessary server preparatins fr the installatin f Prnestr Rm & Catering.
Exercise 5 Server Configuration, Web and FTP Instructions and preparatory questions Administration of Computer Systems, Fall 2008
Exercise 5 Server Cnfiguratin, Web and FTP Instructins and preparatry questins Administratin f Cmputer Systems, Fall 2008 This dcument is available nline at: http://www.hh.se/te2003 Exercise 5 Server Cnfiguratin,
Webalo Pro Appliance Setup
Webal Pr Appliance Setup 1. Dwnlad the Webal virtual appliance apprpriate fr yur virtualizatin infrastructure, using the link yu were emailed. The virtual appliance is delivered as a.zip file that is n
Improved Data Center Power Consumption and Streamlining Management in Windows Server 2008 R2 with SP1
Imprved Data Center Pwer Cnsumptin and Streamlining Management in Windws Server 2008 R2 with SP1 Disclaimer The infrmatin cntained in this dcument represents the current view f Micrsft Crpratin n the issues
Instant Chime for IBM Sametime Quick Start Guide
Instant Chime fr IBM Sametime Quick Start Guide Fall 2014 Cpyright 2014 Instant Technlgies. All rights reserved. Cpyright and Disclaimer This dcument, as well as the sftware described in it, is furnished
Preparing to Deploy Reflection : A Guide for System Administrators. Version 14.1
Preparing t Deply Reflectin : A Guide fr System Administratrs Versin 14.1 Table f Cntents Table f Cntents... 2 Preparing t Deply Reflectin 14.1:... 3 A Guide fr System Administratrs... 3 Overview f the
Helpdesk Support Tickets & Knowledgebase
Helpdesk Supprt Tickets & Knwledgebase User Guide Versin 1.0 Website: http://www.mag-extensin.cm Supprt: http://www.mag-extensin.cm/supprt Please read this user guide carefully, it will help yu eliminate
User Manual Brainloop Outlook Add-In. Version 3.4
User Manual Brainlp Outlk Add-In Versin 3.4 Cntent 1. Summary... 3 2. Release Ntes... 3 2.1 Prerequisites... 3 2.2 Knwn Restrictins... 4 3. Installatin and Cnfiguratin... 4 3.1 The installatin prgram...
Diagnosis and Troubleshooting
Diagnsis and Trubleshting DataDirect Cnnect Series ODBC Drivers Intrductin This paper discusses the diagnstic tls that are available t cnfigure and trublesht yur ODBC envirnment and prvides a trubleshting
ABELMed Platform Setup Conventions
ABELMed Platfrm Setup Cnventins 1 Intrductin 1.1 Purpse f this dcument The purpse f this dcument is t prvide prspective ABELMed licensees and their hardware vendrs with the infrmatin that they will require
Installation Guide Marshal Reporting Console
INSTALLATION GUIDE Marshal Reprting Cnsle Installatin Guide Marshal Reprting Cnsle March, 2009 Cntents Intrductin 2 Supprted Installatin Types 2 Hardware Prerequisites 3 Sftware Prerequisites 3 Installatin
Connector for Microsoft Dynamics Installation Guide
Micrsft Dynamics Cnnectr fr Micrsft Dynamics Installatin Guide June 2014 Find updates t this dcumentatin at the fllwing lcatin: http://g.micrsft.cm/fwlink/?linkid=235139 Micrsft Dynamics is a line f integrated,
NETWRIX CHANGE NOTIFIER
NETWRIX CHANGE NOTIFIER FOR ACTIVE DIRECTORY, EXCHANGE AND GROUP POLICY QUICK-START GUIDE Prduct versin: 7.5.873 February 2014 February 2014. Legal Ntice The infrmatin in this publicatin is furnished fr
Instructions for Configuring a SAFARI Montage Managed Home Access Expansion Server
Instructins fr Cnfiguring a SAFARI Mntage Managed Hme Access Expansin Server ~ Please read these instructins in their entirety befre yu begin. ~ These instructins explain hw t add a SAFARI Mntage Managed
Licensing Windows Server 2012 for use with virtualization technologies
Vlume Licensing brief Licensing Windws Server 2012 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents This
TaskCentre v4.5 SMTP Tool White Paper
TaskCentre v4.5 SMTP Tl White Paper Dcument Number: PD500-03-04-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT... 1 TRADEMARKS... 1 INTRODUCTION... 2 Overview... 2 Features... 2 GLOBAL CONFIGURATION...
SolarWinds Technical Reference
SlarWinds Technical Reference Using Orin Grups and Dependencies Intrductin The Need t Manage Netwrks t Meet Business Gals... 3 Orin Service Grups (Grups)... 3 Nested Grups... 4 Grup Status... 5 Dependencies...
Setup O365 mailbox access on MACs
Setup O365 mailbx access n MACs Yu can use a web brwser r an email prgram n yur cmputer t cnnect t yur email accunt. Web brwser access Yu cnnect yur Apple cmputer t yur email accunt by using a web brwser
Configuring an Email Client for your Hosting Support POP/IMAP mailbox
Cnfiguring an Email Client fr yur Hsting Supprt POP/IMAP mailbx This article lists the email settings and prt numbers fr pp and imap cnfiguratins, as well as fr SSL. It cntains instructins fr setting up
1 GETTING STARTED. 5/7/2008 Chapter 1
5/7/2008 Chapter 1 1 GETTING STARTED This chapter intrduces yu t the web-based UIR menu system. Infrmatin is prvided abut the set up necessary t assign users permissin t enter and transmit data. This first
Email Server Settings
Email Server Settings All email accunts we hst, regardless f the dmain name, will use the fllwing server settings. T use a secure cnnectin, use the settings marked "SSL." Incming Server Type: Server Name:
2. When logging is used, which severity level indicates that a device is unusable?
Last updated by Admin at March 3, 2015. 1. What are the mst cmmn syslg messages? thse that ccur when a packet matches a parameter cnditin in an access cntrl list link up and link dwn messages utput messages
Deployment Overview (Installation):
Cntents Deplyment Overview (Installatin):... 2 Installing Minr Updates:... 2 Dwnlading the installatin and latest update files:... 2 Installing the sftware:... 3 Uninstalling the sftware:... 3 Lgging int
Junos Pulse Instructions for Windows and Mac OS X
Juns Pulse Instructins fr Windws and Mac OS X When yu pen the Juns client fr the first time yu get the fllwing screen. This screen shws yu have n cnnectins. Create a new cnnectin by clicking n the + icn.
Best Practice - Pentaho BA for High Availability
Best Practice - Pentah BA fr High Availability This page intentinally left blank. Cntents Overview... 1 Pentah Server High Availability Intrductin... 2 Prerequisites... 3 Pint Each Server t Same Database
Introduction Getting help Getting started Prerequisites 5 Installation 6 Entering License Key 8 Checking Current License
Email Migratr Guide 3.0 Cpyright 2014 Metalgix Internatinal GmbH This sftware is prtected by cpyright law and internatinal treaties. Unauthrized reprductin r distributin f this sftware, r any prtin f it,
Diagnostic Manager Change Log
Diagnstic Manager Change Lg Updated: September 8, 2015 4.4.4090 Features and Issues Supprt fr Office 365 Tenants Yu can nw: Mnitr the status f Office 365 Services (including SharePint Online, Exchange
Readme File. Purpose. Introduction to Data Integration Management. Oracle s Hyperion Data Integration Management Release 9.2.
Oracle s Hyperin Data Integratin Management Release 9.2.1 Readme Readme File This file cntains the fllwing sectins: Purpse... 1 Intrductin t Data Integratin Management... 1 Data Integratin Management Adapters...
STIOffice Integration Installation, FAQ and Troubleshooting
STIOffice Integratin Installatin, FAQ and Trubleshting Installatin Steps G t the wrkstatin/server n which yu have the STIDistrict Net applicatin installed. On the STI Supprt page at http://supprt.sti-k12.cm/,
Pervasive Data Integrator. REST Invoker 2.0 Guide
Pervasive Data Integratr REST Invker 2.0 Guide Pervasive Sftware Inc. 12365 Riata Trace Parkway Building B Austin, Texas 78727 USA Telephne: (512) 231-6000 r (800) 287-4383 Fax: (512) 231-6010 Email: [email protected]
:: EMAIL ADMIN HELP AT A GLANCE Contents
:: EMAIL ADMIN HELP AT A GLANCE Cntents Email Admin Dmain Inf... 2 POP Accunts... 3 Edit POP Accunts... 4 Search Accunts... 5 Frwards... 6 Spam Cntrl... 7 CatchAll... 8 EMAIL ADMIN HELP AT A GLANCE ::
Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010
Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010 0. Nte that frm LISTSERV versin 15.5, LISTSERV supprts using an external LDAP directry (r Windws Active Directry) fr lgin authenticatin in additin t
RDS Directory Synchronization. SSL Guide
RDS Directry Synchrnizatin SSL Guide Sftware Versin 3.1.1 Fr Windws, Linux and UNIX perating systems August 4, 2009 RepliWeb, Inc., 6441 Lyns Rad, Ccnut Creek, FL 33073 Tel: (954) 946-2274, Fax: (954)
CMT for Coexistence 3.4.3. Release Notes
CMT fr Cexistence 3.4.3 Release Ntes May 2015 Table f Cntents What s New in Versin 3.4.3... 3 Release Ntes 3.4.3... 3 On the Fly Decryptin and Encryptin... 4 Prerequisites & Settings... 4 Hw it Wrks...
Security Guidance ArcGIS Server 9.3 Windows Security Requirements
Envirnmental Systems Research Institute, Inc., 380 New Yrk St., Redlands, CA 92373-8100 USA TEL 909-793-2853 FAX 909-307-3014 Security Guidance ArcGIS Server 9.3 Windws Security Requirements Versin 1.0
SBClient and Microsoft Windows Terminal Server (Including Citrix Server)
SBClient and Micrsft Windws Terminal Server (Including Citrix Server) Cntents 1. Intrductin 2. SBClient Cmpatibility Infrmatin 3. SBClient Terminal Server Installatin Instructins 4. Reslving Perfrmance
Licensing the Core Client Access License (CAL) Suite and Enterprise CAL Suite
Vlume Licensing brief Licensing the Cre Client Access License (CAL) Suite and Enterprise CAL Suite Table f Cntents This brief applies t all Micrsft Vlume Licensing prgrams. Summary... 1 What s New in This
E-Biz Web Hosting Control Panel
1 f 38 E-Biz Web Hsting Cntrl Panel This dcument has been created t give yu a useful insight in t the Hsting Cntrl Panel available with E-Biz hsting services. Please nte: Optins available are dependent
Lab 12A Configuring Single Sign On Service
Lab 12A Cnfiguring Single Sign On Service Intrductin In this lab exercise we will see hw t cnfigure the Single Sign On Service and cnfigure Individual and Grup Enterprise Applicatin Definitins. The lab
SQL 2005 Database Management Plans
SQL 2005 Database Management Plans Overview STI recmmends that users create database maintenance plans fr Micrsft SQL 2005 t maintain the integrity f the system s database. Database maintenance plans are
User Guide Version 3.9
User Guide Versin 3.9 Page 2 f 22 Summary Cntents 1 INTRODUCTION... 3 1.1 2 CREATE A NEW ACCOUNT... 4 2.1 2.2 3 NAVIGATION... 3 CREATE AN EMAIL ACCOUNT... 4 CREATE AN ALIAS ACCOUNT... 6 MODIFYING AN EXISTING
AccessData Corporation AD Lab System Specification Guide v1.1
AccessData Crpratin AD Lab System Specificatin Guide v1.1 The AD Lab system specificatin guide was created t ensure the apprpriate is in place supprt an enterprise deplyment f AccessData Lab. The AccessData
Blue Link Solutions Terminal Server Configuration How to Install Blue Link Solutions in a Terminal Server Environment
Blue Link Slutins Terminal Server Cnfiguratin Hw t Install Blue Link Slutins in a Terminal Server Envirnment Prepared by: Darren Myher April 9, 2002 Table f Cntents Backgrund... 2 Applicatin Server mde
Installation Guide Marshal Reporting Console
Installatin Guide Installatin Guide Marshal Reprting Cnsle Cntents Intrductin 2 Supprted Installatin Types 2 Hardware Prerequisites 2 Sftware Prerequisites 3 Installatin Prcedures 3 Appendix: Enabling
TaskCentre v4.5 Send Fax (Tobit) Tool White Paper
TaskCentre v4.5 Send Fax (Tbit) Tl White Paper Dcument Number: PD500-03-19-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 GLOBAL CONFIGURATION
User Guide. Excel Data Management Pack (EDM-Pack) OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES. Date: December 2015
PROFESSIONAL SERVICES User Guide OnCmmand Wrkflw Autmatin (WFA) Excel Data Management Pack (EDM-Pack) Date: December 2015 Dcument Versin: 1.0.0 Abstract The EDM-Pack includes a general-purpse Data Surce
WatchDox for Windows User Guide
WatchDx fr Windws User Guide Versin 3.9.7 Cnfidentiality This dcument cntains cnfidential material that is prprietary WatchDx. The infrmatin and ideas herein may nt be disclsed t any unauthrized individuals
Regions File Transmission
Regins File Transmissin Getting Started with FTPS Regins Bank Member FDIC Revised 022113 It s time t expect mre. Table f Cntents Getting Started with FTPS Setting Up FTPS Cnnectin in FTP Client 3 4 9 Regins
Serv-U Distributed Architecture Guide
Serv-U Distributed Architecture Guide Hrizntal Scaling and Applicatin Tiering fr High Availability, Security, and Perfrmance Serv-U Distributed Architecture Guide v15.1.2.0 Page 1 f 20 Intrductin Serv-U
Licensing Windows Server 2012 R2 for use with virtualization technologies
Vlume Licensing brief Licensing Windws Server 2012 R2 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 R2 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents
KronoDesk Migration and Integration Guide Inflectra Corporation
/ KrnDesk Migratin and Integratin Guide Inflectra Crpratin Date: September 24th, 2015 0B Intrductin... 1 1B1. Imprting frm Micrsft Excel... 2 6B1.1. Installing the Micrsft Excel Add-In... 2 7B1.1. Cnnecting
AvePoint Discovery Tool 2.1.1. User Guide
AvePint Discvery Tl 2.1.1 User Guide Issued January 2016 Table f Cntents What s New in this Guide... 4 Abut Discvery Tl... 5 Why Use the AvePint Discvery Tl... 5 Frequently Asked Questins... 6 Which reprts
NASDAQ BookViewer 2.0 User Guide
NASDAQ BkViewer 2.0 User Guide NASDAQ BkViewer 2.0 ffers a real-time view f the rder depth using the NASDAQ Ttalview prduct fr NASDAQ and ther exchange-listed securities including: The tp buy and sell
risk2value System Requirements
aveds business slutins gmbh risk2value System Requirements March 2014 aveds business slutins gmbh Page 1 RISK2VALUE SYSTEM REQUIREMENTS aveds risk2value is based n Micrsft-Technlgy. This dcument gives
Pexip Infinity and Cisco UCM Deployment Guide
Intrductin Pexip Infinity and Cisc UCM Deplyment Guide The Cisc Unified Cmmunicatins Manager (CUCM) is a SIP registrar and call cntrl device. This guide describes hw t integrate a single Pexip Infinity
990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free.
990 e-pstcard FAQ Fr frequently asked questins abut filing the e-pstcard that are nt listed belw, brwse the FAQ at http://epstcard.frm990.rg/frmtsfaq.asp# (cpy and paste this link t yur brwser). General
