Reference Data Collections

Size: px
Start display at page:

Download "Reference Data Collections"

Transcription

1 Juniper Secure Analytics Release Juniper Networks, Inc North Mathilda Avenue Sunnyvale, CA USA Published:

2 Copyright Notice Copyright 2015 Juniper Networks, Inc. All rights reserved. Juniper Networks, Junos, Steel-Belted Radius, NetScreen, and ScreenOS are registered trademarks of Juniper Networks, Inc. in the United States and other countries. The Juniper Networks Logo, the Junos logo, and JunosE are trademarks of Juniper Networks, Inc. The following terms are trademarks or registered trademarks of other companies: Java TM and all Java-based trademarks and logos are trademarks or registered trademarks of Oracle and/or its affiliates. All other trademarks, service marks, registered trademarks, or registered service marks are the property of their respective owners. All specifications are subject to change without notice. Juniper Networks assumes no responsibility for any inaccuracies in this document or for any obligation to update information in this document. Juniper Networks reserves the right to change, modify, transfer, or otherwise revise this publication without notice. FCC Statement The following information is for FCC compliance of Class A devices: This equipment has been tested and found to comply with the limits for a Class A digital device, pursuant to part 15 of the FCC rules. These limits are designed to provide reasonable protection against harmful interference when the equipment is operated in a commercial environment. The equipment generates, uses, and can radiate radio-frequency energy and, if not installed and used in accordance with the instruction manual, may cause harmful interference to radio communications. Operation of this equipment in a residential area is likely to cause harmful interference, in which case users will be required to correct the interference at their own expense. The following information is for FCC compliance of Class B devices: The equipment described in this manual generates and may radiate radio-frequency energy. If it is not installed in accordance with Juniper Networks installation instructions, it may cause interference with radio and television reception. This equipment has been tested and found to comply with the limits for a Class B digital device in accordance with the specifications in part 15 of the FCC rules. These specifications are designed to provide reasonable protection against such interference in a residential installation. However, there is no guarantee that interference will not occur in a particular installation. If this equipment does cause harmful interference to radio or television reception, which can be determined by turning the equipment off and on, the user is encouraged to try to correct the interference by one or more of the following measures: Reorient or relocate the receiving antenna. Increase the separation between the equipment and receiver. Consult the dealer or an experienced radio/tv technician for help. Connect the equipment to an outlet on a circuit different from that to which the receiver is connected. Caution: Changes or modifications to this product could void the user's warranty and authority to operate this device. Disclaimer THE SOFTWARE LICENSE AND LIMITED WARRANTY FOR THE ACCOMPANYING PRODUCT, SUBJECT TO THE MODIFICTAIONS SET FORTH BELOW ON THIS PAGE, ARE SET FORTH IN THE INFORMATION PACKET THAT SHIPPED WITH THE PRODUCT AND ARE INCORPORATED HEREIN BY THIS REFERENCE. IF YOU ARE UNABLE TO LOCATE THE SOFTWARE LICENSE OR LIMITED WARRANTY, CONTACT YOUR JUNIPER NETWORKS REPRESENTATIVE FOR A COPY. Release Copyright 2015, Juniper Networks, Inc. All rights reserved. Printed in USA. Revision History March 2015 The information in this document is current as of the date listed in the revision history. END USER LICENSE AGREEMENT The Juniper Networks product that is the subject of this technical documentation consists of (or is intended for use with) Juniper Networks software. Use of such software is subject to the terms and conditions of the End User License Agreement ( EULA ) posted at as modified by the following text, which shall be treated under the EULA as an Entitlement Document taking precedence over any conflicting provisions of such EULA as regards such software: As regards software accompanying the STRM products (the Program ), such software contains software licensed by Q1 Labs and is further accompanied by third-party software that is described in the applicable documentation or materials provided by Juniper Networks. 2

3 For the convenience of Licensee, the Program may be accompanied by a third party operating system. The operating system is not part of the Program, and is licensed directly by the operating system provider (e.g., Red Hat Inc., Novell Inc., etc.) to Licensee. Neither Juniper Networks nor Q1 Labs is a party to the license between Licensee and the third party operating system provider, and the Program includes the third party operating system AS IS, without representation or warranty, express or implied, including any implied warranty of merchantability, fitness for a particular purpose or non-infringement. For an installed Red Hat operating system, see the license file: /usr/share/doc/redhat-release-server-6server/eula. By downloading, installing or using such software, you agree to the terms and conditions of that EULA as so modified. 3

4 4

5 CONTENTS 1 REFERENCE DATA COLLECTIONS About Creating a Reference Data Collection Utility Command Reference

6

7 1 REFERENCE DATA COLLECTIONS Use the ReferenceDataUtil.sh utility to make complex reference data collections, such as a Reference Map, Reference Map of Sets, and Reference Map of Maps. This technical note applies to Juniper Secure Analytics (JSA) and Log Manager. About Reference Data Collections Reference data collections enable the storage, retrieval and testing of complex data structures. You can create the following reference data collection types: Reference Map - In a Reference Map, data is stored in records that map a key to a value. For example, to correlate user activity on your network, you can create a reference map that uses the Username parameter as a key and the user s global ID as a value. Reference Map of Sets - In a Reference Map of Sets, data is stored in records that map a key to multiple values. For example, to test for authorized access to a patent, you can create a Map of Sets that uses a custom event property for Patent ID as the key and the Username parameter as the value to populate a list of authorized users. Reference Map of Maps - In a Reference Map of Maps, data is stored in records that map one key to another key, which is then mapped to single value. For example, to test for network bandwidth violations, you can create a Map of Maps that uses the Source IP parameter as the first key, the Application parameter as the second key, and the Total Bytes parameter as the value. For each reference data collection, you specify what the element type is for the collection. You can specify the following element types: Alphanumeric Alphanumeric Ignore Case IP Numeric Port Date

8 8 REFERENCE DATA COLLECTIONS Creating a Reference Data Collection Using the ReferenceDataUtil.sh utility, you can create a reference data collection. Before you begin If you plan to load an external file containing data elements, ensure that the file is in Comma Separated Value (CSV) format. Also ensure that you have copied the file to your JSA system. The file must follow the format in the following examples reference data collections: Example 1 ReferenceMap key1,data key1,value1 key2,value2 Example 2 ReferenceMapOfSets key1,data key1,value1 key1,value2 Example 3 ReferenceMapOfMaps key1,key2,data map1,key1,value1 map1,key2,value2 The symbol in the first column indicates a comment line.the first non-comment line is the column header and identifies the column name (ie., key1, key2, data). Then each non-commented line after that is a data record that gets added to the map. Keys are alphanumeric strings. About this task See Utility Command Reference for a list of all commands and parameters you can use to manage your reference data collections. You can also type./referencedatautil.sh and press Enter to access a list these commands

9 Creating a Reference Data Collection 9 Step 1 Step 2 Step 3 Procedure Using SSH, log in to JSA as the root user: Username: root Password: <password> Create a reference data collection: a To change to the /opt/qradar/bin directory, type the following command: b cd /opt/qradar/bin To create the reference data collection, type the following command:./referencedatautil.sh create <name> <count> [MAP MAPofSETS MAPofMAPS] [ALN NUM IP PORT ALNic DATE] [timeout_type] [timetolive] To populate the map with data from an external file, type the following command:./referencedatautil.sh load <name> <filename> [-encoding=...] [-sdf="... "] What to do next Log in to the JSA user interface to create rules that add data to your reference data collections or rule tests that detect activity from elements in your reference data collection. For more information on creating rules and rule tests, see the Juniper Secure Analytics Users Guide.

10 10 REFERENCE DATA COLLECTIONS Utility Command Reference Use the following commands to manage your reference data collections: Table 1-1 Command Reference Command create Parameters <name> is the name of the reference data collection. <count> is the maximum number of elements that the reference data collection can contain. [timeout_type] specifies whether the timetolive is from the time the element was inserted (0) or last seen (1). [timetolive] specifies the amount of time reference data collection elements remain in the collection. [MAP MAPofSETS MAPofMAPS] specifies the type of reference data collection. [ALN NUM IP PORT DATE] is the type of data in the reference set, where: update add ALN specifies a reference data collection of alphanumeric values. This data type supports IPv4 and IPv6 addresses. ALNic specifies a reference data collection of alphanumeric values but tests ignore the case. This data type supports IPv4 and IPv6 addresses. NUM specifies a reference data collection of numeric values. IP specifies a reference data collection of IP addresses. This data type supports only IPv4 address. PORT specifies a reference data collection of PORT addresses. DATE specifies a reference data collection of DATE values. <name> is the name of the reference data collection. <count> is the maximum number of elements that the reference data collection can contain. [timeout_type] specifies whether the timetolive is from the time the element was inserted (0) or last seen (1). [timetolive] specifies the amount of time reference data collection elements remain in the collection. <name> is the name of the reference data collection. <value key1 [key2]> specifies the values you want to add. Key1 is required for MAP, MAPofSETS and key2 is required for MAPofMAPS. Keys are alphanumeric strings.

11 Utility Command Reference 11 Table 1-1 Command Reference Command delete remove purge get getall load Parameters <name> is the name of the reference data collection <value key1 [key2]> specifies the values you want to delete. Key1 are required for MAP, MAPofSETS and key2 is required for MAPofMAPS [-sdf="... "] specifies the Simple Date Format string used to parse the date data. <name> is the name of the reference data collection. <name> is the name of the reference data collection. <name> is the name of the reference data collection [loadelements] displays all elements in the specified reference data collection. [loadelements] displays all elements in all reference data collections. <name> is the name of the reference data collection <filename> is a fully qualified filename to be loaded, with each line in the file representing a record to be added to the reference data collection [-encoding=...] specifies encoding to use when reading the file. [-sdf="... "] specifies the Simple Date Format string used to parse the date data.

Adaptive Log Exporter Service Update

Adaptive Log Exporter Service Update Juniper Secure Analytics Release 2014.6 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2016-04-21 Copyright Notice Copyright 2016 Juniper

More information

REPLACING THE SSL CERTIFICATE

REPLACING THE SSL CERTIFICATE Juniper Secure Analytics REPLACING THE SSL CERTIFICATE Release 2014.1 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2014-03-14 Copyright

More information

Migrating Log Manager to JSA

Migrating Log Manager to JSA Juniper Log Manager Release 2014.4 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2015-03-02 Copyright Notice Copyright 2015 Juniper Networks,

More information

Using the Content Management Tool

Using the Content Management Tool Security Threat Response Manager Release 2013.1 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2013-03-15 Copyright Notice Copyright 2013

More information

Installing JSA Using a Bootable USB Flash Drive

Installing JSA Using a Bootable USB Flash Drive Juniper Secure Analytics Installing JSA Using a Bootable USB Flash Drive Release 2014.1 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published:

More information

NSM Plug-In Users Guide

NSM Plug-In Users Guide Juniper Secure Analytics Release 2014.1 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2014-03-14 Copyright Notice Copyright 2014 Juniper

More information

Custom E-mail Notifications

Custom E-mail Notifications Security Threat Response Manager Custom E-mail Notifications Release 2013.2 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2013-07-19

More information

STRM Log Manager Administration Guide

STRM Log Manager Administration Guide Security Threat Response Manager Release 2013.1 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2013-03-15 Copyright Notice Copyright 2013

More information

Managing Vulnerability Assessment

Managing Vulnerability Assessment Security Threat Response Manager Release 2012.1 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2013-03-12 Copyright Notice Copyright 2013

More information

WinCollect User Guide

WinCollect User Guide Juniper Secure Analytics Release 2014.1 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2014-03-14 Copyright Notice Copyright 2014 Juniper

More information

Log Sources Users Guide

Log Sources Users Guide Security Threat Response Manager Release 2013.1 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2013-03-15 Copyright Notice Copyright 2013

More information

Adaptive Log Exporter Users Guide

Adaptive Log Exporter Users Guide Security Threat Response Manager Release 2012.0 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2012-05-30 Copyright Notice Copyright 2012

More information

QUICK START GUIDE CX-MC200LE-VZ

QUICK START GUIDE CX-MC200LE-VZ QUICK START GUIDE CX-MC200LE-VZ LTE/EV-DO Business-Grade Modem For use with Juniper Networks CX111 3G/4G Bridge with Enhanced Performance and Reliability GETTING READY TO USE YOUR CX-MC200LE-VZ MODEM Thank

More information

Configuring Offboard Storage Guide

Configuring Offboard Storage Guide Juniper Secure Analytics Release 2014.1 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2014-12-03 Copyright Notice Copyright 2014 Juniper

More information

STRM Log Manager Users Guide

STRM Log Manager Users Guide Security Threat Response Manager Release 2012.1 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2013-01-08 Copyright Notice Copyright 2012

More information

After you have created your text file, see Adding a Log Source.

After you have created your text file, see Adding a Log Source. TECHNICAL UPLOADING TEXT FILES INTO A REFERENCE SET MAY 2012 This technical note provides information on how to upload a text file into a STRM reference set. You need to be comfortable with writing regular

More information

TECHNICAL NOTE SETTING UP A STRM UPDATE SERVER. Configuring your Update Server

TECHNICAL NOTE SETTING UP A STRM UPDATE SERVER. Configuring your Update Server TECHNICAL NOTE SETTING UP A STRM UPDATE SERVER AUGUST 2012 STRM uses system configuration files to provide useful characterizations of network data flows. Updates to the system configuration files, available

More information

Wireless Travel Mouse with 5-Buttons User Manual

Wireless Travel Mouse with 5-Buttons User Manual Wireless Travel Mouse with 5-Buttons User Manual Product Features 1. Radio frequency 27MHz wireless transmission 2. Use of 256 ID codes to prevent interference between several wireless mice being used

More information

Tuning Guide. Release 2014.1. Juniper Secure Analytics. Juniper Networks, Inc. www.juniper.net

Tuning Guide. Release 2014.1. Juniper Secure Analytics. Juniper Networks, Inc. www.juniper.net Juniper Secure Analytics Release 2014.1 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2014-12-05 Copyright Notice Copyright 2014 Juniper

More information

By default, STRM provides an untrusted SSL certificate. You can replace the untrusted SSL certificate with a self-signed or trusted certificate.

By default, STRM provides an untrusted SSL certificate. You can replace the untrusted SSL certificate with a self-signed or trusted certificate. TECHNICAL NOTE REPLACING THE SSL CERTIFICATE AUGUST 2012 By default, STRM provides an untrusted SSL certificate. You can replace the untrusted SSL certificate with a self-signed or trusted certificate.

More information

ADMINISTRATOR S GUIDE

ADMINISTRATOR S GUIDE ADMINISTRATOR S GUIDE NetScreen-Statistical Report Server Version FP2 P/N 093-1386-000 Rev.A Copyright Notice Copyright 2004 Juniper Networks, Inc. All rights reserved. Juniper Networks, the Juniper Networks

More information

Unless otherwise noted, all references to STRM refer to STRM, STRM Log Manager, and STRM Network Anomaly Detection.

Unless otherwise noted, all references to STRM refer to STRM, STRM Log Manager, and STRM Network Anomaly Detection. TECHNICAL NOTE INSTALLING STRM USING A BOOTABLE USB FLASH-DRIVE JULY 2013 This technical note provides information on how to re-install STRM software on the STRM appliances using a bootable USB flash-drive.

More information

Unless otherwise noted, all references to STRM refer to STRM, STRM Log Manager, and STRM Network Anomaly Detection.

Unless otherwise noted, all references to STRM refer to STRM, STRM Log Manager, and STRM Network Anomaly Detection. TECHNICAL USING NFS FOR STRM BACKUPS SEPTEMBER 2013 This technical note provides guidelines and procedures for using a Network File System (NFS) storage solution in your STRM deployment. Unless otherwise

More information

Unless otherwise noted, all references to STRM refer to STRM, STRM Log Manager, and STRM Network Anomaly Detection.

Unless otherwise noted, all references to STRM refer to STRM, STRM Log Manager, and STRM Network Anomaly Detection. TECHNICAL NOTE FORWARDING LOGS USING TAIL2SYSLOG MARCH 2013 The Tail2Syslog support script provides a method for monitoring and forwarding events to STRM using syslog for real-time correlation. Tail2Syslog

More information

This technical note provides information on how to customize your email notifications. This section includes the following topics:

This technical note provides information on how to customize your email notifications. This section includes the following topics: TECHNICAL NOTE CONFIGURING CUSTOM EMAIL NOTIFICATIONS AUGUST 2012 When configuring rules in STRM, you can specify that each time the rule generates a response, an email notification is sent to recipients

More information

WBSn Family. FW Upgrade

WBSn Family. FW Upgrade WBSn Family FW Upgrade WBSn-2400 and WBSn-2450 Software Version: 1.3.2 Doc version: v1 Jan 2013 WBSn Family FW Upgrade Procedure Copyright 2013 Alvarion All rights reserved. FCC Statement Federal Communication

More information

Skyus 3G. Quick Start Guide Verizon

Skyus 3G. Quick Start Guide Verizon Skyus 3G TM Quick Start Guide Verizon Preface Copyright 2016 Feeney Wireless, LLC a Novatel Wireless Company. All rights reserved. This document may not be copied in part or otherwise reproduced without

More information

Installation Guide 1-port USB 2.0 Print Server 1 GPSU21

Installation Guide 1-port USB 2.0 Print Server 1 GPSU21 Installation Guide 1-port USB 2.0 Print Server 1 GPSU21 2 Welcome Thank you for purchasing this 1-port USB 2.0 Print Server that allows any networked computer to share a USB printer. It complies with USB

More information

Installation Guide USB Laptop KVM Switch GCS661U

Installation Guide USB Laptop KVM Switch GCS661U Installation Guide USB Laptop KVM Switch 1 GCS661U 2 Table of Contents Table of Contents 3 Package Contents 4 System Requirements 5 Overview 6 Before You Start 7 Software Installation 8 Hardware Installation

More information

Dual-Cool Notebook Cooler Pad. User s Manual

Dual-Cool Notebook Cooler Pad. User s Manual Dual-Cool Notebook Cooler Pad Model #: CF4500U User s Manual Rev. 060801 User s Record: To provide quality customer service and technical support, it is suggested that you keep the following information

More information

RocketRAID 600 Series 6Gb/s SATA RAID Host Adapters (RocketRAID 620 and RocketRAID 622)

RocketRAID 600 Series 6Gb/s SATA RAID Host Adapters (RocketRAID 620 and RocketRAID 622) RocketRAID 600 Series 6Gb/s SATA RAID Host Adapters (RocketRAID 620 and RocketRAID 622) Quick Installation Guide HighPoint RocketRAID 600 Series PCI-Express 2.0 SATA Revision 3.0, provides dramatically

More information

Optical Wireless Mouse. User s Manual

Optical Wireless Mouse. User s Manual Optical Wireless Mouse Model : OM4000W User s Manual 110935-109154 Rev. 061101 User s Record: To provide quality customer service and technical support, it is suggested that you keep the following information

More information

User guide. Miracast Wireless Display IM10

User guide. Miracast Wireless Display IM10 User guide Miracast Wireless Display IM10 Contents Miracast Wireless Display User guide...3 Setting up the Miracast Wireless Display...4 Hardware overview...4 Turning on and connecting the Miracast Wireless

More information

Web Publisher s Kit Getting Started Guide FOR WINDOWS

Web Publisher s Kit Getting Started Guide FOR WINDOWS Web Publisher s Kit Getting Started Guide FOR WINDOWS COPYRIGHT INFORMATION Web Publisher s Kit for Windows. Copyright 1998 Visioneer, Inc. All rights reserved. Reproduction, adaptation, or translation

More information

USB 2.0 4-Port Hub with USB Power Cable. User s Manual

USB 2.0 4-Port Hub with USB Power Cable. User s Manual USB 2.0 4-Port Hub with USB Power Cable Model: UH2500 User s Manual 251104-109159 Rev. 061107 User s Record: To provide quality customer service and technical support, it is suggested that you keep the

More information

AG MacOS Standalone Array Client Administration Guide

AG MacOS Standalone Array Client Administration Guide AG MacOS Standalone Array Client Administration Guide Copyright Statement Copyright Statement Copyright 2015 Array Networks, Inc., 1371 McCarthy Blvd, Milpitas, California 95035, USA. All rights reserved.

More information

Dual Ports Serial PC Card User Manual

Dual Ports Serial PC Card User Manual Dual Ports Serial PC Card User Manual FCC COMPLIANCE STATEMENTS This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant to Part 15 of the FCC Rules. These

More information

1394 CardBus Quick Installation Guide

1394 CardBus Quick Installation Guide 1394 CardBus Quick Installation Guide Introducing the 1394 Cardbus The 1394 CardBus is designed to add FireWire (1394) interface to notebook computers for easy connection to DV camcorders, hard disk drives

More information

USB 2.0 to 10/100Mbps Ethernet Adapter UE-9521. User Manual

USB 2.0 to 10/100Mbps Ethernet Adapter UE-9521. User Manual USB 2.0 to 10/100Mbps Ethernet Adapter UE-9521 User Manual 1 Copyright Copyright 2004 by PLANET Technology Corp. All rights reserved. No part of this publication may be reproduced, transmitted, transcribed,

More information

AVerMedia AVerKey imicro User s Manual

AVerMedia AVerKey imicro User s Manual FCC NOTICE This device has been tested and found to comply with the limits for a Class B digital device, pursuant to Part 15 of the FCC Rules. These limits are designed to provide reasonable protection

More information

FortiFone QuickStart Guide for FON-370i

FortiFone QuickStart Guide for FON-370i FortiFone QuickStart Guide for FON-370i FortiFone QuickStart Guide for FON-370i Revision 2 August 17, 2015 Copyright 2015 Fortinet, Inc. All rights reserved. Fortinet, FortiGate, FortiCare and FortiGuard,

More information

Pebble. E-Paper Watch for iphone and Android. 1 Button A. 4 Button B. 5 Button C. 2 Display. 6 Button D. 3 Charge Port

Pebble. E-Paper Watch for iphone and Android. 1 Button A. 4 Button B. 5 Button C. 2 Display. 6 Button D. 3 Charge Port 2 4 4 5 3 6 Button A 2 Display 4 Button B 5 Button C 3 Charge Port 6 Button D Page of 4 Certifications and Safety Approvals FCC Compliance Statement This device complies with Part 5 of the FCC Rules. Operation

More information

USB 2.0 USB 2.0 ETHERNET AUDIO JACK AND RCA VIDEO HDMI MICRO SD CARD MICRO USB POWER

USB 2.0 USB 2.0 ETHERNET AUDIO JACK AND RCA VIDEO HDMI MICRO SD CARD MICRO USB POWER 3 USB 2.0 USB 2.0 ETHERNET 4 1 MICRO SD CARD HDMI MICRO USB POWER AUDIO JACK AND RCA VIDEO 2 TO SET UP YOUR RASPBERRY PI YOU WILL NEED: ITEM MINIMUM RECOMMENDED SPECIFICATION & NOTES 1 microsd card Minimum

More information

PIR-1 Owner s Manual

PIR-1 Owner s Manual PIR-1 Owner s Manual PIR-1 Owner s Manual 2010 Universal Remote Control, Inc. The information in this manual is copyright protected. No part of this manual may be copied or reproduced in any form without

More information

RocketStor SMART RAID

RocketStor SMART RAID RocketStor SMART RAID User Guide v1.0 1 Copyright HighPoint Technologies Inc., 1995-2012. All rights reserved. OS X and Macintosh are registered trademarks of Apple Corporation. All other trademarks and

More information

Getting started with Coin

Getting started with Coin Getting started with Coin Setting Up Coin For App version 1.5+, follow these steps to start using Coin. Coin Device Sync VISA 4783 01/15 Sync Coin Add your cards to the Coin app Open the app and add your

More information

ST122VGAU. Instruction Manual. VGA Video Switch. 2-Port Automatic VGA Video Switch

ST122VGAU. Instruction Manual. VGA Video Switch. 2-Port Automatic VGA Video Switch VGA Video Switch ST122VGAU Instruction Manual 2-Port Automatic VGA Video Switch FCC Compliance Statement This equipment has been tested and found to comply with the limits for a Class B digital device,

More information

Wireless Mouse USER GUIDE. for Mac. www.targus.com/us/formac ONE YEAR LIMITED WARRANTY N2953

Wireless Mouse USER GUIDE. for Mac. www.targus.com/us/formac ONE YEAR LIMITED WARRANTY N2953 AMW43US / 410-1514-001C N2953 www.targus.com/us/formac 2008 Manufactured or imported by Targus Group International, Inc. (for U.S. sales: 1211 North Miller Street, Anaheim, CA 92806 USA, for Australia

More information

SmartDock for Xperia ion User guide

SmartDock for Xperia ion User guide SmartDock for Xperia ion User guide Contents Introduction...3 SmartDock overview...3 Charging SmartDock...3 Getting started...5 LiveWare manager...5 Upgrading LiveWare manager...5 Selecting a launch application...5

More information

IFS SP-PoE Splitter User Manual

IFS SP-PoE Splitter User Manual IFS SP-PoE Splitter User Manual P/N 1069176-EN REV 1.01 ISS 01JUL10 2011 UTC Fire & Security. All rights reserved. Content Overview 2 Package contents 2 Introduction 3 Product Specifications 3 Hardware

More information

P-660HN-51. 802.11n Wireless ADSL2+ 4-port Gateway DEFAULT LOGIN DETAILS. Firmware Version 1.10 Edition 1, 9/2010. IP Address: http://192.168.1.

P-660HN-51. 802.11n Wireless ADSL2+ 4-port Gateway DEFAULT LOGIN DETAILS. Firmware Version 1.10 Edition 1, 9/2010. IP Address: http://192.168.1. P-660HN-51 802.11n Wireless ADSL2+ 4-port Gateway Firmware Version 1.10 Edition 1, 9/2010 DEFAULT LOGIN DETAILS IP Address: http://192.168.1.1 User Name: admin Password: 1234 www.zyxel.com Copyright 2010

More information

mysensors mysensors Wireless Sensors and Ethernet Gateway Quick Start Guide Information to Users Inside the Box mysensors Ethernet Gateway Quick Start

mysensors mysensors Wireless Sensors and Ethernet Gateway Quick Start Guide Information to Users Inside the Box mysensors Ethernet Gateway Quick Start mysensors Information to Users mysensors Wireless Sensors and Ethernet Gateway Quick Start Guide This equipment has been tested and found to comply with the limits for a Class B digital devices, pursuant

More information

Rocket 640L/644L 6Gb/s SATA Host Adapter Quick Installation Guide

Rocket 640L/644L 6Gb/s SATA Host Adapter Quick Installation Guide Rocket 640L/644L 6Gb/s SATA Host Adapter Quick Installation Guide v1.1 1 Contents HighPoint Rocket640L/644L...3 Hardware Installation...3 Using the Rocket64xL Adapter...4 Rocket 64xL BIOS...4 Driver and

More information

Wireless Stow-N-Go Keypad USER GUIDE

Wireless Stow-N-Go Keypad USER GUIDE Wireless Stow-N-Go Keypad USER GUIDE Table of Contents Introduction...3 System Requirements...3 Installing the Battery...4 Connecting the Receiver and Installing the Default Drivers...5 Turning the Keypad

More information

Package Checklist. Overview. Features. USB Data Link Cable User s Manual. USB Data Link Cable User s Manual 1

Package Checklist. Overview. Features. USB Data Link Cable User s Manual. USB Data Link Cable User s Manual 1 USB Data Link Cable User s Manual Congratulations on your purchase of the USB Data Link Cable adapter. This unique cable allows you to easily connect two computers with USB port and instantly transfer

More information

Wave/PC Interactive System USB Adapter Kit. Installation Guide

Wave/PC Interactive System USB Adapter Kit. Installation Guide Wave/PC Interactive System USB Adapter Kit Installation Guide Safety Information 1. Read these instructions for all components before using this product. 2. Keep these instructions for future reference.

More information

SanDisk Connect Wireless Flash Drive QUICK START GUIDE

SanDisk Connect Wireless Flash Drive QUICK START GUIDE SanDisk Connect Wireless Flash Drive QUICK START GUIDE GET STARTED 1. Charge your Wireless Drive Plug the Drive into a computer or USB-AC adaptor. A full charge can take up to 2 hours. 2) Turn on the

More information

USB to IDE or SATA Adapter

USB to IDE or SATA Adapter USB to IDE or SATA Adapter USB 2.0 to IDE or SATA Adapter Cable USB2SATAIDE Instruction Manual Actual product may vary from photo FCC Compliance Statement This equipment has been tested and found to comply

More information

User guide. Stereo Bluetooth Headset SBH50

User guide. Stereo Bluetooth Headset SBH50 User guide Stereo Bluetooth Headset SBH50 Contents Stereo Bluetooth Headset User guide...3 Introduction...4 Function overview...4 Hardware overview...4 Status icon overview...5 Basics...6 Charging the

More information

Juniper Secure Analytics

Juniper Secure Analytics Juniper Secure Analytics Log Sources Users Guide Release 2014.1 Modified: 2015-11-30 Juniper Networks, Inc. 1133 Innovation Way Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net All rights reserved.

More information

Pad. Quick Start Guide

Pad. Quick Start Guide Pad Quick Start Guide Copyright 2008 Mimio Congratulations on your mimio Pad purchase! mimio Pad is a 4 GHz wireless pad. To configure mimio Pad for use, install the mimio Studio software and plug the

More information

Creatix 802.11g Adapter CTX405 V.1/V.2 User Manual

Creatix 802.11g Adapter CTX405 V.1/V.2 User Manual Creatix 802.11g Adapter CTX405 V.1/V.2 User Manual 1 Safety instructions for Creatix 802.11g Adapter This equipment has been designed and tested in accordance with the requirements of Standard EN60950.

More information

USB2VGA. Instruction Manual. USB to VGA Adapter. USB 2.0 to VGA External Multi Monitor Video Adapter

USB2VGA. Instruction Manual. USB to VGA Adapter. USB 2.0 to VGA External Multi Monitor Video Adapter USB to VGA Adapter USB2VGA Instruction Manual USB 2.0 to VGA External Multi Monitor Video Adapter FCC Compliance Statement This equipment has been tested and found to comply with the limits for a Class

More information

2GB MP3 Player USER GUIDE

2GB MP3 Player USER GUIDE DO NOT FORMAT UNIT under FAT. 2GB MP3 Player USER GUIDE Jazwares, Inc. 2010 CONTENTS Please read the instructions along with the MP3 Player carefully before you use it, so that you can operate it conveniently.

More information

ES-3305P V2 / ES-3308P V2. Quick Installation Guide. 09-2013 / v1.0

ES-3305P V2 / ES-3308P V2. Quick Installation Guide. 09-2013 / v1.0 ES-3305P V2 / ES-3308P V2 Quick Installation Guide 09-2013 / v1.0 1 COPYRIGHT Copyright Edimax Technology Co., Ltd. all rights reserved. No part of this publication may be reproduced, transmitted, transcribed,

More information

USER MANUAL VS92A / VS94A / VS98A

USER MANUAL VS92A / VS94A / VS98A Video Splitter USER MANUAL VS92A / VS94A / VS98A FCC Information This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant to Part 15 of the FCC Rules. These

More information

Juniper Secure Analytics

Juniper Secure Analytics Juniper Secure Analytics Big Data Management Guide Release 2014.2 Published: 2014-08-12 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net All

More information

File Share Cable USER GUIDE. for Mac. www.targus.com/us/formac ONE YEAR LIMITED WARRANTY N2953

File Share Cable USER GUIDE. for Mac. www.targus.com/us/formac ONE YEAR LIMITED WARRANTY N2953 N2953 USER GUIDE ACC9602US / 410-1486-001A www.targus.com/us/formac 2008 Manufactured or imported by Targus Group International, Inc. (for U.S. sales: 1211 North Miller Street, Anaheim, CA 92806 USA, for

More information

Junos Space. Junos Space Security Director Restful Web Services API Reference. Modified: 2016-06-10. Copyright 2016, Juniper Networks, Inc.

Junos Space. Junos Space Security Director Restful Web Services API Reference. Modified: 2016-06-10. Copyright 2016, Juniper Networks, Inc. Junos Space Junos Space Security Director Restful Web Services API Reference Modified: 2016-06-10 Juniper Networks, Inc. 1133 Innovation Way Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net

More information

Juniper Secure Analytics

Juniper Secure Analytics Juniper Secure Analytics Big Data Management Guide Release 2014.1 Published: 2014-03-17 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net All

More information

ASUS GX900 Gaming Mouse

ASUS GX900 Gaming Mouse ASUS GX900 Gaming Mouse User Manual 15G06S002000 E5887 First Edition (V1) July 20 Copyright 20 ASUSTeK Computer Inc. All Rights Reserved. No part of this manual, including the products and software described

More information

User Manual USB Laptop KVM Switch. GCS661U Part No. M1069

User Manual USB Laptop KVM Switch. GCS661U Part No. M1069 User Manual USB Laptop KVM Switch 1 GCS661U Part No. M1069 2 Table of Contents User Notice 4 A Note About Terminology 5 Overview 6 Features 7 Package Contents 8 Requirements 9 Operating System Support

More information

IBM Security QRadar Version 7.1.0 (MR1) Checking the Integrity of Event and Flow Logs Technical Note

IBM Security QRadar Version 7.1.0 (MR1) Checking the Integrity of Event and Flow Logs Technical Note IBM Security QRadar Version 7.1.0 (MR1) Checking the Integrity of Event and Flow Logs Technical Note Note: Before using this information and the product that it supports, read the information in Notices

More information

Key. ➍ Micro USB Port ➎ Operating System Toggle Keys ➏ Foam Screen Protectors. ➊ On/Off switch ➋ Bluetooth Connect Button (flashes when searching)

Key. ➍ Micro USB Port ➎ Operating System Toggle Keys ➏ Foam Screen Protectors. ➊ On/Off switch ➋ Bluetooth Connect Button (flashes when searching) INSTRUCTION MANUAL ➏ ➋ ➊ Product Features ➎ ➍ ➌ Built-in wireless Bluetooth 3.0 keyboard Compatible across ios, Android, and Windows, enabling you to mix and match with devices Ultra-thin, lightweight

More information

User Guide. Cordless Optical Mouse N2953

User Guide. Cordless Optical Mouse N2953 Cordless Optical Mouse 410-XXXXXXXXXXX 1 YEAR LIMITED WARRANTY: We pride ourselves on the quality of our products. For complete warranty details and a list of our worldwide offices, please visit www.targus.com.

More information

Laser Wireless Rechargeable Mouse. User s Manual

Laser Wireless Rechargeable Mouse. User s Manual Laser Wireless Rechargeable Mouse Model #: LM8000WR User s Manual Rev. 060801 User s Record: To provide quality customer service and technical support, it is suggested that you keep the following information

More information

Usage, Installation, Warranty and Service Information

Usage, Installation, Warranty and Service Information T13C Table Updater for Seating Management U S E R M A N UA L Usage, Installation, Warranty and Service Information Long Range Systems, LLC 4550 Excel Parkway, Suite 200 Addison, TX 75001 800.437.4996 www.lrsus.com

More information

QUICK INSTALLATION. 8-Port Telephony Gateway. Model: SPA8000

QUICK INSTALLATION. 8-Port Telephony Gateway. Model: SPA8000 QUICK INSTALLATION 8-Port Telephony Gateway Model: SPA8000 Table of Contents Connect................................................. 4 Regulatory Information....................................12 WEEE

More information

Cisco Unified SIP Phone 3905 User Guide for Cisco Unified Communications Manager 8.6

Cisco Unified SIP Phone 3905 User Guide for Cisco Unified Communications Manager 8.6 Cisco Unified SIP Phone 3905 User Guide for Cisco Unified Communications Manager 8.6 First Published: January 01, 2012 Last Modified: March 30, 2015 Americas Headquarters Cisco Systems, Inc. 170 West Tasman

More information

Junos Pulse. Windows In-Box Junos Pulse Client Quick Start Guide. Published: 2013-10-18. Copyright 2013, Juniper Networks, Inc.

Junos Pulse. Windows In-Box Junos Pulse Client Quick Start Guide. Published: 2013-10-18. Copyright 2013, Juniper Networks, Inc. Junos Pulse Windows In-Box Junos Pulse Client Quick Start Guide Published: 2013-10-18 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net All

More information

User Manual TuneCast Auto for ipod

User Manual TuneCast Auto for ipod User Manual TuneCast Auto for ipod Introduction Congratulations and thank you for purchasing the innovative TuneCast Auto from Belkin. This product is designed to power, charge, and transmit audio from

More information

USB Serial Adapter ICUSB232SM3. Instruction Manual. 1-Port 3ft USB to RS232 DB9 Serial Adapter Cable

USB Serial Adapter ICUSB232SM3. Instruction Manual. 1-Port 3ft USB to RS232 DB9 Serial Adapter Cable ICUSB232SM3 Instruction Manual USB Serial Adapter 1-Port 3ft USB to RS232 DB9 Serial Adapter Cable Manual Revision:07/25/2011 For the most up-to-date information, please visit www.startech.com FCC Compliance

More information

etoken Single Sign-On

etoken Single Sign-On etoken Single Sign-On Version 5.1 Rev A User s Guide All attempts have been made to make the information in this document complete and accurate. Aladdin is not responsible for any direct or indirect damages

More information

FortiFone QuickStart Guide for FON-670i and FON-675i

FortiFone QuickStart Guide for FON-670i and FON-675i FortiFone QuickStart Guide for FON-670i and FON-675i FortiFone QuickStart Guide for FON-670i and FON-675i Revision 2 September 25, 2015 Copyright 2015 Fortinet, Inc. All rights reserved. Fortinet, FortiGate,

More information

Cisco Expressway CE500 Appliance

Cisco Expressway CE500 Appliance Cisco Expressway CE500 Appliance Installation Guide First Published: April 2014 Last Updated: November 2015 X8.2 or later Cisco Systems, Inc. www.cisco.com Introduction About This Document This document

More information

Identity-Based Application and Network Profiling

Identity-Based Application and Network Profiling Application Note Identity-Based Application and Network Profiling Using UAC in Conjunction with NSM, IDP and Infranet Enforcers Permits User-Identified Application and Network Profiling Juniper Networks,

More information

Customer VFD pole display JP-8034 USB OPERATION MANUAL

Customer VFD pole display JP-8034 USB OPERATION MANUAL ISO 9001 Certified Lead with technology Win customers with service Customer VFD pole display JP-8034 USB OPERATION MANUAL Jarltech International Inc. 2007. All rights reserved. Under the copyright laws,

More information

Identity-Based Traffic Logging and Reporting

Identity-Based Traffic Logging and Reporting Application Note Identity-Based Traffic Logging and Reporting Using UAC in Conjunction with NSM and Infranet Enforcers to Give Additional, User-Identified Visibility into Network Traffic Juniper Networks,

More information

User Guide Microsoft Screen Sharing for Lumia Phones (HD-10)

User Guide Microsoft Screen Sharing for Lumia Phones (HD-10) User Guide Microsoft Screen Sharing for Lumia Phones (HD-10) Issue 1.1 EN-US User Guide Microsoft Screen Sharing for Lumia Phones (HD-10) Contents Safety 3 About your accessory 4 Keys and parts 5 Connect

More information

Kinivo 301BN HDMI Switch

Kinivo 301BN HDMI Switch Kinivo 301BN HDMI Switch User Manual 2012 Kinivo LLC. All rights reserved. Kinivo is a trademark of Kinivo LLC. Bluetooth word mark and the Bluetooth logo are registered trademarks of Bluetooth SIG. All

More information

USB KVM Switch USER MANUAL CS62US / CS64US

USB KVM Switch USER MANUAL CS62US / CS64US USB KVM Switch USER MANUAL CS62US / CS64US EMC Information FEDERAL COMMUNICATIONS COMMISSION INTERFERENCE STATEMENT: This equipment has been tested and found to comply with the limits for a Class B digital

More information

Setting up an icap Server for ISG- 1000/2000 AV Support

Setting up an icap Server for ISG- 1000/2000 AV Support Application Note Setting up an icap Server for ISG- 1000/2000 AV Support Version 1.1 Ronald Ng AJTAC Engineer AV/DI/UF Specialist Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA

More information

XTEND 900 MHZ WIRELESS MODEM For use with VEEDER-ROOT EMR³ DATALINK INSTALLATION INSTRUCTIONS Manual 577013-859, Rev. B

XTEND 900 MHZ WIRELESS MODEM For use with VEEDER-ROOT EMR³ DATALINK INSTALLATION INSTRUCTIONS Manual 577013-859, Rev. B INTRODUCTION This Installation Guide Contains the necessary information to Connect the Wireless Modems to the EMR³ Interconnect Box and the Office Computer for running the EMR³ Datalink Program. For Specific

More information

NFC Communication Tray Model: HHX-IT3-Z

NFC Communication Tray Model: HHX-IT3-Z INSTRUCTION MANUAL NFC Communication Tray Model: HHX-IT3-Z ENGLISH CONTENTS Introduction...3 Important safety information...4 Know your unit...6 Transferring data to the PC...7 Care and maintenance...8

More information

Alarm Clock USER GUIDE

Alarm Clock USER GUIDE Alarm Clock USER GUIDE Jazwares, Inc. 2010 1 CONTENTS Please read the instructions along with the alarm clock carefully before you use it, so that you can operate it conveniently. WELCOME, Safety Tips

More information

TECHNICAL NOTE INSTALLING AND CONFIGURING ALE USING A CLI. Installing the Adaptive Log Exporter

TECHNICAL NOTE INSTALLING AND CONFIGURING ALE USING A CLI. Installing the Adaptive Log Exporter TECHNICAL NOTE INSTALLING AND CONFIGURING ALE USING A CLI NOVEMBER 2010 If you want to install the Adaptive Log Exporter without the installation wizard, this document provides information about installing

More information

USER GUIDE. Access to the Server is via the following webpage: www.admin.airgoosignage.co.uk

USER GUIDE. Access to the Server is via the following webpage: www.admin.airgoosignage.co.uk USER GUIDE The A+K Airgoo Digital Signage MicroPlayer is a totally new generation of product with wireless capabilities and innovative features. It is designed to operate with our Digital Signage Server

More information

IBM Security QRadar Version 7.1.0 (MR1) Replacing the SSL Certificate Technical Note

IBM Security QRadar Version 7.1.0 (MR1) Replacing the SSL Certificate Technical Note IBM Security QRadar Version 7.1.0 (MR1) Technical Note Note: Before using this information and the product that it supports, read the information in Notices and Trademarks on page 5 Copyright IBM Corp.

More information

READ FIRST! Universal Car/Air Adapter User Manual

READ FIRST! Universal Car/Air Adapter User Manual AutoAir Manual 1/9/03 2:03 PM Page 1 READ FIRST! Universal Car/Air Adapter User Manual Congratulations! Your new Kensington Universal Car/Air Adapter is a highly efficient Universal Car/Air Adapter for

More information