LAB IC13 Integrating DeepSight Intelligence into 3 rd Party Solutions Hands-On Lab

Size: px
Start display at page:

Download "LAB IC13 Integrating DeepSight Intelligence into 3 rd Party Solutions Hands-On Lab"

Transcription

1 LAB IC13 Integrating DeepSight Intelligence into 3 rd Party Solutions Hands-On Lab Description You ve installed Snort, Splunk, or ArcSight to collect log data, now what? Session attendees will learn how DeepSight DataFeed can be integrated into their existing log management solution to identify which threats are revelant and help prioritize mitigation activities, enabling you to increase the value from your existing investment. Attendees should be familiar with 3 rd party products, data integration processes and technologies such as SOAP. At the end of this lab, you should be able to Understand how to Access DeepSight data feeds Understand the types of 3 rd party products they integrate with and how the integration takes place Automatation of DeepSight data feeds with Microsoft Integration Services Use of Symantec integration technologies to such as Symantec workflow to assist with integration Understand how to perform integration with other products such as Bind9 and MS DNS Services using the Domain/URL Reputation DataFeed Notes A presentation will introduce this lab session and discuss key concepts. Due to licensing restrictions the class will be shown the 3 rd party products by the instructor. The lab will be directed and provide you with step-by-step walkthroughs of key features. Feel free to follow the lab using the instructions on the following pages. You can optionally perform this lab at your own pace. Thank you for coming to our lab session.

2 This LAB is broken into three main sections, working with UNIX and a DNS SInkhole, then working with Windows and a DNS Sinkhole, then finally a look at using other Symantec tools such as Workflow that can assist with integration into an environment. The concept here is to show multiple methods of obtaining data minimalizing on the time needed to perform a full development project using standiard development tools such as Microsoft C#. The LAB Instructor will also present numerous topics that will assist you in understanding the other 3 rd party products and how they can assist you in your environment. Using DeepSight to Perform a DNS Sinkhole with MS DNS In this lab, because of the extra steps involved with setting up processes to integrate with MS SQL, we have created only some steps for you to follow to gain an understanding of how this process works. Update File for DNS Processing Ensure you are in the command prompt. Change directory to C:\Data\DSIntProj From the prompt type notepad AddZone.vbs and press <enter> Modify the line with??????.xml to domainblacklist.txt as indicated below: 2 of 35

3 Creating Command Script for DNS Processing Form the command prompt type the following Notepad AddZones.cmd Update the command script with the following off echo Processing domainlist... cscript //NoLogo //U addzone.vbs echo Processing domainlist complete... Later this script will be tied into the process we are building here. Create the MS SQL Agent Job for the DTS Package From your computer Desktop click on Start->SQL Server Management Studio. Click on Connect to continue logging into the SQL Server. 3 of 35

4 First lets take a quick look at the data that was imported into the StagingDB. To do this drill down onto Databases->StagingDB->Tables->dbo.ImportReady and then right click on the table ImportReady and choose Select Top 1000 Rows. 4 of 35

5 You will see a screen open up on your right with the query command and then the output of the data. Drill down to the Jobs under the SQL Server Agent. Right click on the Jobs folder and select New Job Give the Job a meaningful name like DeepSight Integration Reputation Feed. Click on Steps. 5 of 35

6 Click on the New button locsted on the bottom middle of the screen. 6 of 35

7 Modify the Step name to Run DTS Script and then selet the Type as Operating system (CmdExec). Type the following into the Command line area on the screen: "C:\Program Files (x86)\microsoft SQL Server\100\DTS\Binn\DTExec.exe" /FILE "C:\Users\Administrator\Documents\Visual Studio 2008\Projects\DSIntProj\DSIntProj\bin\DSProcess.dtsx" /MAXCONCURRENT " -1 " /CHECKPOINTING OFF 7 of 35

8 Click on Advanced and modify the On success action to Quit the job reporting success. Then click the OK button bottom right. Click on Schedules on the left of the screen. Then click on New found at the bottom of the screen to setup a New Job Schedule. 8 of 35

9 Give the Job a name. Set the frequency and then click OK You will see a schedule like the following created: Click OK again to return the Jobs folder. 9 of 35

10 Now the Job can be tested by simply right clicking and selecting Start Job at Step You will see the Job start executing, it will take some time to finish as it processes the data. 10 of 35

11 If you execute the command within a command window you will see the following output, notice esch task is operated on with a % Complete indicated. This concludes the automation steps required to bring the data from the datafeeds to your system. 11 of 35

12 Building the DNS SinkHole for Microsoft DNS Server Start the MS SQL Server Management Studio and access the ImportReady table under the StagingDB database. Right click and run the Select Top 1000 Rows. You ll see the following SQL. Modify this SQL to the following: SELECT Distinct [domain] FROM [StagingDB].[dbo].[ImportReady] WHERE [reputation] >= 7 and [domain] not like '%.%.%.1%' and [domain] not like '%.%.%.2%' and [domain] not like '%.%.%.3%' and [domain] not like '%.%.%.4%' and [domain] not like '%.%.%.5%' and [domain] not like '%.%.%.6%' and [domain] not like '%.%.%.7%' and [domain] not like '%.%.%.8%' and [domain] not like '%.%.%.9%' and [domain] not like '%.%.%.0%' 12 of 35

13 Execute the Query to test that it returns a result, it should look like this. 13 of 35

14 Now we need to crate a simple package based on the above query to export out to a CSV file. To do this we use MS SQL Server Management to generate a DTS package that we will then call from our project. To start right click on StagingDB and select Export Data under the Tasks menu. Click Next 14 of 35

15 Set the following to the local database: Select Flat File Destination and type in C:\DSIntProj\domainblacklist.csv 15 of 35

16 Select to Write a query Place the query in the form: SELECT Distinct [domain] FROM [StagingDB].[dbo].[ImportReady] WHERE [reputation] >= 7 and [domain] not like '%.%.%.1%' and [domain] not like '%.%.%.2%' and [domain] not like '%.%.%.3%' and [domain] not like '%.%.%.4%' and [domain] not like '%.%.%.5%' and [domain] not like '%.%.%.6%' and [domain] not like '%.%.%.7%' and [domain] not like '%.%.%.8%' and [domain] not like '%.%.%.9%' and [domain] not like '%.%.%.0%' 16 of 35

17 Click Next Selct to Save SSIS Package to the File System Then click Next Type CreateBlacklist and notice that this file name is labeled the same within the documents directory. Then click Next 17 of 35

18 Click Finish Look for a successful creation of the domainblacklist.csv file. 18 of 35

19 Note that the dtsx file was created in the documents directory during the process. Locate the domainblacklist.csv file in C:\Data\DSIntProj directory. Now that we have the package automated we need to go back into the designer and make a couple of updates. We have automated our content to be placed directly into an MS SQL table which gives us automation tools that we can use to extract the data. Open the SQL Server Business Intelligence Devepement Studio.and then open your project DSIntProj. 19 of 35

20 Drag Execute Package Task onto the workarea and double click on the task. You can update the name and description. Click on Package and then select File System and then <New Connection> 20 of 35

21 Browse to the Documents directory and select CreateDomainBlackList.dtsx. Then click OK Check the package by right clicking and then selecting Execute Task Exit back to the Desinger and close the Tab for the CreateDomain process. 21 of 35

22 Link up all the processes like the following. You now have a process that will take a feed and deliver a txt file with the D/URL feed with any website with a reputation of 7 or above. Finally lets write and run the script that is needed to update the DNS Server to finalize the MS DNS SinkHole Senario. First drag another Execute Process Task and place it on the design page, then double click on it. 22 of 35

23 Fill in the general details. Uopdate the details by adding AddZones.cmd the working directory C:\Data\DSIntProj and indicating the the window be Hidden. Join your tasks to complete the process. 23 of 35

24 Try running the Process watching that all pieces are created. Startup the DNS Manager to view the items updated. Please note that to process this data could take up to 5 to 10 minutes depending on the speed of your system. Using the Symantec Management Platform to Pull Data and Run Reports Here we will see how to integrate the data that was created by the DeepSight feed into an existing Symantec product, SMP 7.1 (Altiris Symantec Management Platform). Keep in mind that these simple concepts can be extended into Symantec Workflow as well, which provides numerous ways for you to integrate this data into other products that provide API or database calls. First start up the Symantec Management Console. 24 of 35

25 Now startup the SQL Server Management Studio. Locate the Symantec_CMDB and right click on it and select Import Data. Select Next to continue. 25 of 35

26 Fill out the remote server name NS71 and table StagingDB. Select the local databse. and database Symantec_CMDB. Select to Copy the data. 26 of 35

27 Leave the displayed default settings. Leave the displayed default settings and click on Next. Please note that you could also save this as an SSIS package. If you remember in the previous section, we ran an SSIS package form another SSIS package. This is a method for creating a simple package that could run on a schedule from this MS SQL Server. You should see something like the following. 27 of 35

28 28 of 35

29 After you execute you will see the processing screen. This may take a little while to process, you shouldn t see any errors during this phase. Now swicth to the SMP Console and select All Reports. 29 of 35

30 You should be at the Reports Screen, we are going to create a simple report to demonstrate the integration with SMP and the simplicity at which this can be achieved. Select to create a new SQL Report. 30 of 35

31 Delete the SQL Code. Type the following simple SQL Code: Use Symantec_CMDB Select * from dbo.importready Give the report a Name. 31 of 35

32 Save Changes. You have just created a simple report within the Symantec Management Platform from the DeepSight datafeed. Please note that all tasks shown within this LAB can be completely automated. Thank you for your participation. The following section is an example of performing the DNS Sinhole process using Bind9. Please note that this is an advance process and requires you to understand how to use VI and how to restart services and manipulate files within the Unix environment. Please modify the VMWare settings appropriately so that this VM can access the Internet. PLEASE NOTE: We do not expect people to be able to complete the following portion of this LAB during class because of time constraints, it is provided for informational purposes so that you can use and test it in your environment. 32 of 35

33 Using DeepSight to perform a DNS Sinkhole with Bind9 As the Unix environment is a Server environment there is no GUI, as such the first half of this guide will just walk through the process showing the scripts and methods you need to call within the Unix environment to perform these functions. Prepare the configuration file and pull down Reputation DataFeed Information: Build the following configuration files: File 1: GetDataFeeds: <?xml version="1.0" encoding="utf-8"?> <soap:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap=" <soap:body> <GetDataFeeds xmlns=" <loginname>username</loginname> <password>password</password> </GetDataFeeds> </soap:body> </soap:envelope> File 2: GetBaseline: <?xml version="1.0" encoding="utf-8"?> <soap:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap=" <soap:body> <GetLatestBaseline xmlns=" <loginname>[your USERNAME]</loginName> <password>[your PASSWORD]</password> <feedidentifier>[feed IDENTIFIER]</feedIdentifier> </GetLatestBaseline> </soap:body> </soap:envelope> Pull down the configuration files: curl -vvv -H"POST /CustomerDataFeeds.asmx HTTP/1.1" -H"Host: localhost" -H"Content-Type: text/xml; charset=utf-8" H "SOAPAction: 33 of 35

34 > GetDataFeeds.out View the Results: cat GetDataFeeds.out Get the Latest Version of the Domain/URL Reputation Feed and Build the Watchlist: Pull down the latest version of the Domain/URL Reputation Feed: curl -vvv -H"POST /CustomerDataFeeds.asmx HTTP/1.1" -H"Host: localhost" -H"Content-Type: text/xml; charset=utf-8" - H"SOAPAction: line" -d@getlatestbaseline > GetLatestBaseLine.out Verify that the Domain/URL Reputation DataFeed pulled down correctly: cat GetLatestBaseLine.out Extract and decode the Domain/URL BaseLine: cat GetLatestBaseLine.out sed 's/.*<contents>\(.*\)<\/contents>.*/\1/' base64 -d - > black_list.zip Unpack the zip file: unzip black_list.zip 34 of 35

35 Create the Domain Watchlist: sed -n -e 's/.*<domain name\=\"\(.*\)" reputation.*/\1/p' [FILE NAME].xml > domain.out View the Watchlist: cat domain.out Add the Watchlist to BIND and Create the Sinkhole: Edit named.conf to add a separate entry for the malware zone files: include /var/named/bad/reputation_domains.conf ; Create a new zone file called malware.zone: $TTL 1D IN SOA localhost root ( 42 ; serial 24H ; refresh 24H ; retry 24H ; expiry 24H ) ; minimum IN * IN A Add in master zone file references around the domain names in the watchlist: sed 's/^/zone "/;s:$:" IN { type master; file "/var/named/bad/malware.zone";};:' domain.out > reputation_domains.conf Verify that reputation_domains.conf looks similar to this: zone "005im9t.dns2.us" IN { type master; file "/var/named/bad/malware.zone";}; zone "00zzqcd.ns1.name" IN { type master; file "/var/named/bad/malware.zone";}; zone " kt.io" IN { type master; file "/var/named/bad/malware.zone";}; zone " kt.io" IN { type master; file "/var/named/bad/malware.zone";}; zone " kt.io" IN { type master; file "/var/named/bad/malware.zone";}; Restart BIND 9 and the Sinkhole is now running: su service named start 35 of 35

IC L17 Strategic Understanding using Symantec Protection Center Hands-On Lab

IC L17 Strategic Understanding using Symantec Protection Center Hands-On Lab IC L17 Strategic Understanding using Symantec Protection Center Hands-On Lab Description In this session, the attendee will have the opportunity to install SPC Enterprise, configure external data connections,

More information

EM L04 Using Workflow to Manage Your Patch Process and Follow CISSP Best Practices

EM L04 Using Workflow to Manage Your Patch Process and Follow CISSP Best Practices EM L04 Using Workflow to Manage Your Patch Process and Follow CISSP Best Practices Hands-On Lab Description Most corporations today have some form of patch process in place. In this session, you will learn

More information

UP L11 Using IT Analytics as an Alternative Reporting Platform Hands-On Lab

UP L11 Using IT Analytics as an Alternative Reporting Platform Hands-On Lab UP L11 Using IT Analytics as an Alternative Reporting Platform Hands-On Lab Description IT Analytics has a diverse and powerful way of displaying data to your users. In this lab, you will learn how to

More information

EML10 Best Practces for Implementing Deployment Solution Hands-On Lab

EML10 Best Practces for Implementing Deployment Solution Hands-On Lab EML10 Best Practces for Implementing Deployment Solution Hands-On Lab Description This hands-on lab demonstrates the steps necessary to configure and use the latest version of Deployment Solution. You

More information

Xton Access Manager GETTING STARTED GUIDE

Xton Access Manager GETTING STARTED GUIDE Xton Access Manager GETTING STARTED GUIDE XTON TECHNOLOGIES, LLC PHILADELPHIA Copyright 2017. Xton Technologies LLC. Contents Introduction... 2 Technical Support... 2 What is Xton Access Manager?... 3

More information

WHITE PAPER: DELL MANAGEMENT CONSOLE TRIGGERS NETBACKUP 7 JOBS

WHITE PAPER: DELL MANAGEMENT CONSOLE TRIGGERS NETBACKUP 7 JOBS WHITE PAPER: DELL MANAGEMENT CONSOLE TRIGGERS NETBACKUP 7 JOBS White Paper: Dell Management Console Integrates with NetBackup 7 March 2010 Third-party information brought to you courtesy of Dell. Revision

More information

Learning vrealize Orchestrator in action V M U G L A B

Learning vrealize Orchestrator in action V M U G L A B Learning vrealize Orchestrator in action V M U G L A B Lab Learning vrealize Orchestrator in action Code examples If you don t feel like typing the code you can download it from the webserver running on

More information

IBM DB Getting started with Data Studio Hands-On Lab. Information Management Cloud Computing Center of Competence.

IBM DB Getting started with Data Studio Hands-On Lab. Information Management Cloud Computing Center of Competence. IBM DB2 9.7 Getting started with Data Studio Hands-On Lab I Information Management Cloud Computing Center of Competence IBM Canada Lab Contents 1. INTRODUCTION...2 2. OBJECTIVES...2 3. SUGGESTED READING...3

More information

Lab 3. On-Premises Deployments (Optional)

Lab 3. On-Premises Deployments (Optional) Lab 3 On-Premises Deployments (Optional) Overview This Lab is considered optional to the completion of the API-Led Connectivity Workshop. Using Runtime Manager, you can register and set up the properties

More information

Introduction Installation and Startup JMeter GUI

Introduction Installation and Startup JMeter GUI Introduction Apache JMeter is the industry s most popular open-source performance testing tool, offering load testing through different processing protocols, e.g. HTML, JDBC, WCF. With the right personnel

More information

NetBackup 7.6 Replication Director A Hands On Experience

NetBackup 7.6 Replication Director A Hands On Experience NetBackup 7.6 Replication Director A Hands On Experience Description Through this hands on lab you can test drive Replication Director and experience for yourself this easy to use, powerful feature. Once

More information

A Quick Tour GETTING STARTED WHAT S IN THIS CHAPTER?

A Quick Tour GETTING STARTED WHAT S IN THIS CHAPTER? 1 A Quick Tour WHAT S IN THIS CHAPTER? Installing and getting started with Visual Studio 2012 Creating and running your fi rst application Debugging and deploying an application Ever since software has

More information

IA L16 - Hands-On Lab Hands on with Instant Backup and Recovery Features of NetBackup 7.6 for VMware

IA L16 - Hands-On Lab Hands on with Instant Backup and Recovery Features of NetBackup 7.6 for VMware IA L16 - Hands-On Lab Hands on with Instant Backup and Recovery Features of NetBackup 7.6 for VMware Description NetBackup 7.6 offers terrific new technologies that provide faster VMware backups and restores

More information

Lab 12-1 Lab Kofax Capture Import Connector -- XML

Lab 12-1 Lab Kofax Capture Import Connector -- XML In the following lab instructions, you are going to configure using Kofax Capture Import Connector -- XML (KCIC XML) to import documents into Kofax Capture. An XML file will provide the information for

More information

Akana API Platform: Upgrade Guide

Akana API Platform: Upgrade Guide Akana API Platform: Upgrade Guide Version 8.0 to 8.2 Akana API Platform Upgrade Guide Version 8.0 to 8.2 November, 2016 (update v2) Copyright Copyright 2016 Akana, Inc. All rights reserved. Trademarks

More information

Build the application using Rational Build Forge

Build the application using Rational Build Forge Build the application using Rational Build Forge In this lab, as the Build Engineer, you will run a formal build of Release 2.0 of the RatlBankWeb application. After the build completes, you will be able

More information

UP L12: Still on SEP 11? Let us show you how to simplify migration to SEP.

UP L12: Still on SEP 11? Let us show you how to simplify migration to SEP. UP L12: Still on SEP 11? Let us show you how to simplify migration to SEP. Description Migrating to Symantec Endpoint Protection (SEP)? Want to upgrade to the latest SEP technology? In this Lab, see how

More information

Contents. Anaplan Connector for MuleSoft

Contents. Anaplan Connector for MuleSoft SW Version 1.1.2 Contents 1 Overview... 3 2 Mulesoft Prerequisites... 4 3 Anaplan Prerequisites for the Demos... 5 3.1 export demo mule-app.properties file...5 3.2 import demo mule-app.properties file...5

More information

Oracle Access Manager 10g - Oracle Enterprise Gateway Integration Guide

Oracle Access Manager 10g - Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 Oracle Access Manager 10g - Oracle Enterprise Gateway Integration Guide 1/26 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Appendix A: Courseware setup

Appendix A: Courseware setup Training Course System Requirements This class requires the following minimal machine configuration: Single-Core CPU, 2Ghz+ 2GB RAM 5 GB Free hard disk space Microsoft Windows XP or Vista Firefox 3.x or

More information

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Course 6235A: Three days; Instructor-Led Introduction This three-day instructor-led course teaches students how to implement

More information

Introduction to MATLAB

Introduction to MATLAB Introduction to MATLAB This note will introduce you to MATLAB for the purposes of this course. Most of the emphasis is on how to set up MATLAB on your computer. The purposes of this supplement are two.

More information

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature There is a custom feature available in Query Viewer that allows files to be created from queries and copied to a user s PC. This feature doesn t have the same size limitations as running a query to HTML

More information

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Course 6235A: Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Course Details Course Outline Module 1: Introduction to SQL Server 2008 Integration Services The students will

More information

Pearl Echo.Suite Quick Start Installation Guide

Pearl Echo.Suite Quick Start Installation Guide WORKSTATION SERVER Pearl Echo.Suite Quick Start Installation Guide Your initial test setup should take between 5 and 15 minutes. For detailed automated deployment instructions and configuration settings

More information

Send the Ctrl-Alt-Delete key sequence to the Guest OS one of two ways: Key sequence: Ctlr-Alt-Ins Menu Sequence: VM / Guest / Send Ctrl-Alt-Delete

Send the Ctrl-Alt-Delete key sequence to the Guest OS one of two ways: Key sequence: Ctlr-Alt-Ins Menu Sequence: VM / Guest / Send Ctrl-Alt-Delete CIS 231 Windows 2008 Server Install Lab #1 (Virtual Machines) Keys to Remember when using the vsphere client. Send the Ctrl-Alt-Delete key sequence to the Guest OS one of two ways: Key sequence: Ctlr-Alt-Ins

More information

COGNOS BI I) BI introduction Products Introduction Architecture Workflows

COGNOS BI I) BI introduction Products Introduction Architecture Workflows COGNOS BI I) BI introduction Products Architecture Workflows II) Working with Framework Manager (Modeling Tool): Architecture Flow charts Creating Project Creating Data Sources Preparing Relational Metadata

More information

Very Important: Conversion Pre-Planning Creating Your Single User Database Converting from Version 1.x, 2.x, or 3.x...

Very Important: Conversion Pre-Planning Creating Your Single User Database Converting from Version 1.x, 2.x, or 3.x... INTRODUCTION... 2 INSTALLATION PRE-PLANNING... 2 Very Important:... 2 Conversion Pre-Planning... 2 INSTALLATION STAGE... 3 CONFIGURATION STAGE... 3 Creating Your Single User Database... 4 Opening an Existing

More information

Demo Lab Guide Compellent

Demo Lab Guide Compellent Demo Lab Guide Compellent Replay Manager SQL Server Product Domain: Storage Author: Joseph Correia Version: 1.01 Date: 28/01/2016 Table of Contents 1 Product Overview... 3 1.1 Lab Preparation Considerations

More information

In this lab, you will build and execute a simple message flow. A message flow is like a program but is developed using a visual paradigm.

In this lab, you will build and execute a simple message flow. A message flow is like a program but is developed using a visual paradigm. Lab 1 Getting Started 1.1 Building and Executing a Simple Message Flow In this lab, you will build and execute a simple message flow. A message flow is like a program but is developed using a visual paradigm.

More information

Building Self-Service BI Solutions with Power Query. Written By: Devin

Building Self-Service BI Solutions with Power Query. Written By: Devin Building Self-Service BI Solutions with Power Query Written By: Devin Knight DKnight@PragmaticWorks.com @Knight_Devin CONTENTS PAGE 3 PAGE 4 PAGE 5 PAGE 6 PAGE 7 PAGE 8 PAGE 9 PAGE 11 PAGE 17 PAGE 20 PAGE

More information

EM L23 - Implementing Client and Server Management with Site Services Hands-On Lab

EM L23 - Implementing Client and Server Management with Site Services Hands-On Lab EM L23 - Implementing Client and Server Management with Site Services Hands-On Lab Description If you are new to the Symantec Management Technologies or are just looking to reinforce your existing knowledge

More information

MySQL On Crux Part II The GUI Client

MySQL On Crux Part II The GUI Client DATABASE MANAGEMENT USING SQL (CIS 331) MYSL ON CRUX (Part 2) MySQL On Crux Part II The GUI Client MySQL is the Structured Query Language processor that we will be using for this class. MySQL has been

More information

1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu. FireFox

1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu. FireFox CIS 231 Windows 7 Install Lab #2 1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu CHROME At the your connection is not private message, click Advanced

More information

Windows 2000 Safe Mode

Windows 2000 Safe Mode LAB PROCEDURE 29 Windows 2000 Safe Mode OBJECTIVES 1. Restart and try various startup options. RESOURCES Troubleshooting 1. Marcraft 8000 Trainer with Windows 2000 installed 2. A PS2 mouse 3. A LAN connection

More information

Form Builder - User Guide

Form Builder - User Guide Orckestra 2017-02-10 Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.orckestra.com Contents 1 INTRODUCTION... 3 1.1 Who Should Read This Guide? 5 1.2 Getting Started 5 2 INSERTING

More information

WebSphere MQ V7 STEW. JMS Setup Lab. October 2008 V2.3

WebSphere MQ V7 STEW. JMS Setup Lab. October 2008 V2.3 Copyright IBM Corporation 2008 All rights reserved WebSphere MQ V7 STEW JMS Setup Lab October 2008 V2.3 LAB EXERCISE JMS Setup JMS Setup Page 2 of 47 JMS Setup Overview The purpose of this lab is to show

More information

Lab: Implementing SMS 2003 SP1 Features

Lab: Implementing SMS 2003 SP1 Features Lab: Implementing SMS 2003 SP1 Features Objectives After completing this lab, you will be able to: Identify an SMS 2003 SP1 site. Implement SMS 2003 SP1 folders. Implement a configurable HTTP port in SMS

More information

Part I. Integrated Development Environment. Chapter 2: The Solution Explorer, Toolbox, and Properties. Chapter 3: Options and Customizations

Part I. Integrated Development Environment. Chapter 2: The Solution Explorer, Toolbox, and Properties. Chapter 3: Options and Customizations Part I Integrated Development Environment Chapter 1: A Quick Tour Chapter 2: The Solution Explorer, Toolbox, and Properties Chapter 3: Options and Customizations Chapter 4: Workspace Control Chapter 5:

More information

Table of Contents HOL-PRT-1464

Table of Contents HOL-PRT-1464 Table of Contents Lab Overview - - Applying Data Center Security with Symantec & VMware NSX... 2 Lab Guidance... 3 About Symantec Data Center Security: Server... 4 Module 1 - Configure policies, Test Virtual

More information

FireFox. CIS 231 Windows 10 Install Lab # 3. 1) Use either Chrome of Firefox to access the VMware vsphere web Client.

FireFox. CIS 231 Windows 10 Install Lab # 3. 1) Use either Chrome of Firefox to access the VMware vsphere web Client. CIS 231 Windows 10 Install Lab # 3 1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu CHROME At the your connection is not private message, click Advanced

More information

Composer Help. Import and Export

Composer Help. Import and Export Composer Help Import and Export 2/7/2018 Import and Export Contents 1 Import and Export 1.1 Importing External Files into Your Composer Project 1.2 Importing Composer Projects into Your Workspace 1.3 Importing

More information

DAITSS Demo Virtual Machine Quick Start Guide

DAITSS Demo Virtual Machine Quick Start Guide DAITSS Demo Virtual Machine Quick Start Guide The following topics are covered in this document: A brief Glossary Downloading the DAITSS Demo Virtual Machine Starting up the DAITSS Demo Virtual Machine

More information

Example Instructional Files: Code Artifacts

Example Instructional Files: Code Artifacts Chen, Hanck, Hanck, Hertel, Lissarrague, Médaille Example Instructional Files: Code Artifacts from SAP Data Services: The Comprehensive Guide This supplement contains three documents that each provide

More information

Installation of Actiheart Data Analysis Suite:

Installation of Actiheart Data Analysis Suite: Installation of Actiheart Data Analysis Suite: Currently software is only compatible with XP platform and version 6 of Java. Installation requires: - Windows XP platform - MySQL installation - Folders:

More information

Infoblox Authenticated DHCP

Infoblox Authenticated DHCP Infoblox Authenticated DHCP Unified Visitor Management amigopod Technical Note Revision 1.1 5 July 2010 United States of America +1 (888) 590-0882 Europe, Middle East & Asia +34 91 766 57 22 Australia

More information

OpsCenter Basics Why Aren t You Using It?

OpsCenter Basics Why Aren t You Using It? OpsCenter Basics Why Aren t You Using It? This is a SELF-GUIDED LAB if you prefer. You are welcome to get started and leave when you are finished, or you can play with the OC instance to gain more knowledge.

More information

VMware Horizon Session Recording Fling:

VMware Horizon Session Recording Fling: VMware Horizon Session Recording Fling: The VMware Horizon Session Recording fling allows administrators to record VMware Blast Extreme sessions to a central server for playback. These recordings can be

More information

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database For multiple versions Have documentation feedback? Submit a Documentation Feedback support ticket using

More information

LiveNX Upgrade Guide from v5.2.0 to v5.2.1

LiveNX Upgrade Guide from v5.2.0 to v5.2.1 LIVEACTION, INC. LiveNX Upgrade Guide from v5.2.0 to v5.2.1 UPGRADE LiveAction, Inc. 3500 Copyright WEST BAYSHORE 2016 LiveAction, ROAD Inc. All rights reserved. LiveAction, LiveNX, LiveUX, the LiveAction

More information

FIT 100 More Microsoft Access and Relational Databases Creating Views with SQL

FIT 100 More Microsoft Access and Relational Databases Creating Views with SQL FIT 100 More Microsoft Access and Relational Databases Creating Views with SQL Creating Views with SQL... 1 1. Query Construction in SQL View:... 2 2. Use the QBE:... 5 3. Practice (use the QBE):... 6

More information

Introduction to Windows

Introduction to Windows Introduction to Windows Naturally, if you have downloaded this document, you will already be to some extent anyway familiar with Windows. If so you can skip the first couple of pages and move on to the

More information

Cisco Virtual Application Container Services 2.0 Lab v1

Cisco Virtual Application Container Services 2.0 Lab v1 Cisco Virtual Application Container Services 2.0 Lab v1 Last Updated: 02-SEP-2015 About This Solution Cisco Virtual Application Container Services (VACS) enables simplified deployment of Secure Application

More information

Tzunami Deployer AquaLogic Exporter Guide Supports extraction of Web Components on the server and guides migration to Microsoft SharePoint.

Tzunami Deployer AquaLogic Exporter Guide Supports extraction of Web Components on the server and guides migration to Microsoft SharePoint. Tzunami Deployer AquaLogic Exporter Guide Supports extraction of Web Components on the server and guides migration to Microsoft SharePoint. Version 2.7 Table of Content PREFACE... I INTENDED AUDIENCE...

More information

SOA Software API Gateway Appliance 6.3 Administration Guide

SOA Software API Gateway Appliance 6.3 Administration Guide SOA Software API Gateway Appliance 6.3 Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names, logos,

More information

CollabNet Desktop - Microsoft Windows Edition

CollabNet Desktop - Microsoft Windows Edition CollabNet Desktop - Microsoft Windows Edition User Guide 2009 CollabNet Inc. CollabNet Desktop - Microsoft Windows Edition TOC 3 Contents Legal fine print...7 CollabNet, Inc. Trademark and Logos...7 Chapter

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

07/20/2016 Blackbaud Altru 4.91 Reports US 2016 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any

07/20/2016 Blackbaud Altru 4.91 Reports US 2016 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any Reports Guide 07/20/2016 Blackbaud Altru 4.91 Reports US 2016 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,

More information

Automating Administration with Windows PowerShell 2.0

Automating Administration with Windows PowerShell 2.0 Automating Administration with Windows PowerShell 2.0 Course No. 10325 5 Days Instructor-led, Hands-on Introduction This course provides students with the knowledge and skills to utilize Windows PowerShell

More information

WA2031 WebSphere Application Server 8.0 Administration on Windows. Student Labs. Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc.

WA2031 WebSphere Application Server 8.0 Administration on Windows. Student Labs. Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc. WA2031 WebSphere Application Server 8.0 Administration on Windows Student Labs Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc. 1 Table of Contents Directory Paths Used in Labs...3 Lab Notes...4

More information

Installation Guide Worksoft Analyze

Installation Guide Worksoft Analyze Installation Guide Worksoft Analyze Worksoft, Inc. 15851 Dallas Parkway, Suite 855 Addison, TX 75001 www.worksoft.com 866-836-1773 Worksoft Analyze Installation Guide Version 1.0.0 Copyright 2018 by Worksoft,

More information

Tzunami Deployer Oracle WebCenter Interaction Exporter Guide

Tzunami Deployer Oracle WebCenter Interaction Exporter Guide Tzunami Deployer Oracle WebCenter Interaction Exporter Guide Supports extraction of Oracle WebCenter Interaction components and migrate to Microsoft SharePoint using Tzunami Deployer Version 2.8 Table

More information

Installing MySQL on the Command Line

Installing MySQL on the Command Line Installing MySQL on the Command Line Overview: These steps will help you get MySQL installed on a command line, which is an alternative to phpmyadmin. You can find a more comprehensive tutorial here. This

More information

Overview: Understanding the Toolbox

Overview: Understanding the Toolbox 3 Overview: Understanding the Toolbox In this chapter, we will review the different components of SQL Server Integration Services (SSIS). Our intent here is to go over the main components of SSIS, to give

More information

This document explains how to merge an Financial Close Management split database s into a single database.

This document explains how to merge an Financial Close Management split database s into a single database. Procedure to merge Oracle Hyperion Financial Close Management Single Node Environment (11.1.2.3) FCM and ARM split database s into 1 single FCM SQL Server database Purpose This document explains how to

More information

IC L19 - Consolidate Information from across your Infrastructure to create a custom report for PCI DSS Hands-On Lab

IC L19 - Consolidate Information from across your Infrastructure to create a custom report for PCI DSS Hands-On Lab IC L19 - Consolidate Information from across your Infrastructure to create a custom report for PCI DSS Hands-On Lab Description How to implement external data connectors for data relevant to PCI and map

More information

EMS MASTER CALENDAR Installation Guide

EMS MASTER CALENDAR Installation Guide EMS MASTER CALENDAR Installation Guide V44.1 Last Updated: May 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: Introduction

More information

Lab Guide for Managing Hitachi Storage With Hitachi Command Suite v8.x

Lab Guide for Managing Hitachi Storage With Hitachi Command Suite v8.x Lab Guide for Managing Hitachi Storage With Hitachi Command Suite v8.x TSI2565 Courseware Version: v2.0 Microcode Version: Hitachi Command Suit v8.5 Table of Contents Lab 1 Installation 1-1 Lab 2 Initial

More information

Notes. IS 651: Distributed Systems 1

Notes. IS 651: Distributed Systems 1 Notes Case study grading rubric: http://userpages.umbc.edu/~jianwu/is651/case-study-presentation- Rubric.pdf Each group will grade for other groups presentation No extra assignments besides the ones in

More information

Alan Davies and Sarah Perry

Alan Davies and Sarah Perry Alan Davies and Sarah Perry Administering Visual Analytics Sarah Perry Agenda Topics Loading data Auditing in Visual Analytics Row level security Supporting stored processes What s new in 7.4 Copyright

More information

IS L02-MIGRATING TO SEP 12.1

IS L02-MIGRATING TO SEP 12.1 IS L02-MIGRATING TO SEP 12.1 Description Migrating to Symantec Endpoint Protection (SEP)? Want to upgrade to the latest SEP technology? In this Lab, see how to upgrade a multi-site Symantec Endpoint Protection

More information

Learning Objectives. Description. Your AU Expert(s) Trent Earley Behlen Mfg. Co. Shane Wemhoff Behlen Mfg. Co.

Learning Objectives. Description. Your AU Expert(s) Trent Earley Behlen Mfg. Co. Shane Wemhoff Behlen Mfg. Co. PL17257 JavaScript and PLM: Empowering the User Trent Earley Behlen Mfg. Co. Shane Wemhoff Behlen Mfg. Co. Learning Objectives Using items and setting data in a Workspace Setting Data in Related Workspaces

More information

Beginning Tutorials. BT004 Enterprise Guide Version 2.0 NESUG 2003 James Blaha, Pace University, Briarcliff Manor, NY ABSTRACT: INTRODUCTION:

Beginning Tutorials. BT004 Enterprise Guide Version 2.0 NESUG 2003 James Blaha, Pace University, Briarcliff Manor, NY ABSTRACT: INTRODUCTION: BT004 Enterprise Guide Version 2.0 NESUG 2003 James Blaha, Pace University, Briarcliff Manor, NY ABSTRACT: This paper focuses on the basics for using the SAS Enterprise Guide software. The focus is on

More information

Partner Integration Portal (PIP) Installation Guide

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

More information

Preupgrade. Preupgrade overview

Preupgrade. Preupgrade overview overview, page 1 Virtual contact center upgrades, page 2 Common Ground preupgrade task flow, page 3 Technology Refresh preupgrade task flow, page 5 Common Ground preupgrade tasks, page 6 Technology Refresh

More information

WA2393 Data Science for Solution Architects. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA2393 Data Science for Solution Architects. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA2393 Data Science for Solution Architects Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Class Setup...3 Part 2 - Minimum Software Requirements

More information

eiconsole for Healthcare Getting Started Tutorial

eiconsole for Healthcare Getting Started Tutorial eiconsole for Healthcare Getting Started Tutorial https://cms.pilotfishtechnology.com/eiconsole-for-healthcare-getting-started-tutorial Welcome to the eiconsole for Healthcare Getting Started Tutorial.

More information

eiconsole for Healthcare Getting Started Tutorial

eiconsole for Healthcare Getting Started Tutorial eiconsole for Healthcare Getting Started Tutorial http://cms.pilotfishtechnology.com/eiconsole-for-healthcare-getting-started-tutorial Welcome to the eiconsole for Healthcare Getting Started Tutorial.

More information

Sun Mgt Bonus Lab 11: Auto-Tagging in PAN-OS 8.X

Sun Mgt Bonus Lab 11: Auto-Tagging in PAN-OS 8.X 1 Overview Introduced first in PAN-OS 8.0, the Dynamic IP Address and Tag Registration feature makes a significant step forward in the automation of operational, administrative, and, most importantly,

More information

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Tzunami Deployer Oracle WebCenter Interaction Exporter Guide

Tzunami Deployer Oracle WebCenter Interaction Exporter Guide Tzunami Deployer Oracle WebCenter Interaction Exporter Guide Supports extraction of Oracle WebCenter Interaction components and migrate to Microsoft SharePoint using Tzunami Deployer Version 3.2 Table

More information

Exchange Pro 4.4. User Guide. March 2017

Exchange Pro 4.4. User Guide. March 2017 Exchange Pro 4.4 User Guide March 2017 Table of Contents 1. Introduction to Exchange Pro... 5 About this Document... 5 Supported Mailbox Migration Paths... 6 Supported Public Folders Migration Paths...

More information

Technical Whitepaper. NetBackup PureDisk Technical Product Management. PureDisk Remote Office Protection. Export to NetBackup Feature

Technical Whitepaper. NetBackup PureDisk Technical Product Management. PureDisk Remote Office Protection. Export to NetBackup Feature Technical Whitepaper NetBackup PureDisk Technical Product Management PureDisk Remote Office Protection Export to NetBackup Feature 09 May 2007 Document Information Copyright The copyright to this document

More information

Financial Statements Using Crystal Reports

Financial Statements Using Crystal Reports Sessions 6-7 & 6-8 Friday, October 13, 2017 8:30 am 1:00 pm Room 616B Sessions 6-7 & 6-8 Financial Statements Using Crystal Reports Presented By: David Hardy Progressive Reports Original Author(s): David

More information

CIS 231 Windows 7 Install Lab #2

CIS 231 Windows 7 Install Lab #2 CIS 231 Windows 7 Install Lab #2 1) To avoid certain problems later in the lab, use Chrome as your browser: open this url: https://vweb.bristolcc.edu 2) Here again, to avoid certain problems later in the

More information

Reference Guide. Adding a Generic File Store - Importing From a Local or Network ShipWorks Page 1 of 21

Reference Guide. Adding a Generic File Store - Importing From a Local or Network ShipWorks Page 1 of 21 Reference Guide Adding a Generic File Store - Importing From a Local or Network Folder Page 1 of 21 Adding a Generic File Store TABLE OF CONTENTS Background First Things First The Process Creating the

More information

Computers for Beginners

Computers for Beginners Computers for Beginners Class Objective: This class will familiarize you with using computers. By the end of the session you will be familiar with: Starting programs Quitting programs Saving files Opening

More information

Customizing DAZ Studio

Customizing DAZ Studio Customizing DAZ Studio This tutorial covers from the beginning customization options such as setting tabs to the more advanced options such as setting hot keys and altering the menu layout. Introduction:

More information

Symantec Endpoint Protection Installation Guide

Symantec Endpoint Protection Installation Guide Symantec Endpoint Protection 11.0 Installation Guide SYMANTEC ENDPOINT PROTECTION 11.0 TABLE OF CONTENTS A NEW SECURITY APPLICATION... 1 INTRODUCTION... 1 WHAT IS SYMANTEC ENDPOINT PROTECTION (SEP) 11.0?...

More information

MIB Browser Version 10 User Guide

MIB Browser Version 10 User Guide MIB Browser Version 10 User Guide The ireasoning MIB browser is a powerful and easy-to-use tool powered by ireasoning SNMP API. MIB browser is an indispensable tool for engineers to manage SNMP enabled

More information

Print Station. Point-and-Click Printing WHITE PAPER

Print Station. Point-and-Click Printing WHITE PAPER Print Station Point-and-Click Printing WHITE PAPER Contents Overview 3 Printing with Print Station 4 Easy-to-use Browser Interface 4 Familiar Folder Navigation 5 Search Functionality 6 Informative Display

More information

Integration Overview, Example Data Model & Reports for Oracle Business Intelligence Cloud Service

Integration Overview, Example Data Model & Reports for Oracle Business Intelligence Cloud Service Integration Overview, Example Data Model & Reports for Oracle Business Intelligence Cloud Service Oracle Field Service Cloud Product Management November 2016 Key Objectives Integration Overview Walkthrough

More information

WHITE PAPER: INTEGRATION OPTIONS FOR DELL MANAGEMENT CONSOLE

WHITE PAPER: INTEGRATION OPTIONS FOR DELL MANAGEMENT CONSOLE asdf WHITE PAPER: INTEGRATION OPTIONS FOR DELL MANAGEMENT CONSOLE White Paper: Integration Options for Dell Management Console March 2010 Contents INTRODUCTION... 3 DMC INTEGRATION OPTIONS... 3 LINK &

More information

Module 1: Introduction RStudio

Module 1: Introduction RStudio Module 1: Introduction RStudio Contents Page(s) Installing R and RStudio Software for Social Network Analysis 1-2 Introduction to R Language/ Syntax 3 Welcome to RStudio 4-14 A. The 4 Panes 5 B. Calculator

More information

Getting Started Guide

Getting Started Guide Getting Started Guide November 2017 2 Table of Contents 1.0 Introduction to Your Vitrium Security Account... 3 1.1 About Vitrium Security... 3 1.2 Definition of Key Terms... 3 1.3 Overview of the Main

More information

Air Gap AntiVirus Guide Version 8.5 Update 2

Air Gap AntiVirus Guide Version 8.5 Update 2 Air Gap AntiVirus Guide Version 8.5 Update 2 Endpoint Security powered by HEAT Software Contents Contents 2 Requirements 3 Air Gap Software Requirements 4 Air Gap Checklist 5 AntiVirus Configuration for

More information

DEPLOY A DNS SERVER IN A SECURE WAY

DEPLOY A DNS SERVER IN A SECURE WAY DEPLOY A DNS SERVER IN A SECURE WAY BIND (Berkeley Internet Name Domain) is one of the more widely used DNS servers. This article guides readers on how to deploy a BIND DNS server in a secure way by implementing

More information

TECHNICAL DESCRIPTION

TECHNICAL DESCRIPTION TECHNICAL DESCRIPTION Product Snow Inventory Version 5 Release date 2016-09-27 Document date 2017-11-24 CONTENTS 1 Introduction... 3 1.1 What s new?... 3 2 Platform overview... 4 2.1 Architecture... 4

More information

SQL Server Integration Services

SQL Server Integration Services www.logicalimagination.com 800.657.1494 SQL Server Integration Services Course #: SS-103 Duration: 3 days Prerequisites This course assumes no prior knowledge of SQL Server Integration Services. This course

More information

Chapter 15: Using GemStone/S 64 Bit in a VMware Appliance

Chapter 15: Using GemStone/S 64 Bit in a VMware Appliance So far we have been using Pharo s Seaside One-Click Experience to learn Seaside and Smalltalk. Pharo is just one of several dialects of Smalltalk supporting Seaside, each with a unique focus. One dialect

More information