Change Log. 2 per vices corporation

Size: px
Start display at page:

Download "Change Log. 2 per vices corporation"

Transcription

1 P E R V I C E S C O R P O R AT I O N C R I M S O N Q U I C K S TA R T G U I D E

2 2 per vices corporation Change Log : Rev A: Initial Release : Rev B: Added SFP+ configuration information : Rev C: Updated IP addresses.

3 Contents What You Will Need 5 Plugging in Crimson 7 Initial Configuration 9 Generate a Waterfall Plot on GNU Radio 15

4

5 What You Will Need Required Micro SD Card This should already be included with Crimson, but please ensure that the Micro SD card slot is indeed populated. If there are any issues with this, please contact: Power cable Signal generator 50-ohm SMA coaxial cable 10G SFP+ cable RJ-45 ethernet cable Host computer with the following: GNU Radio * Please visit the GNU Radio website 1 for installation instruc- 1 tions if it is not yet installed on your computer. 10GBASE-R network card Not Essential But Nice to Have Network Analyzer This is used to view the transmitted signal from Crimson, however there is a loopback mode which can be used to reroute the transmitted signal into the receive chain and thereafter, outputted into GNU Radio.

6

7 Plugging in Crimson Before you plug anything into your Crimson, make sure you have all the required equipment listed above. Then follow these instructions: 1. Begin by ensuring the Micro SD card is fully inserted and snug inside the Micro SD card slot. 2. Next, plug in the RJ-45 ethernet cable into the port labeled MGMT. This is the management port which will allow you to configure Crimson through the web interface. 3. Connect the SFP+ cable from your host computer to the SFP+ A port on Crimson. 4. Connect the 50-ohm SMA coaxial cable from the signal generator to RXA of Crimson. 5. Plug in the power cable to the rear face of Crimson and turn on the unit! (The power switch rocker should be in the position). You should start to see Crimson flicker to life but ultimately, make sure that the front Green and Orange LED s (between MGMT and USB ) stay on!

8

9 Initial Configuration By default, there are three static IP addresses configured for use with Crimson: MGMT SFP+A SFP+B Configuring Your IP Address for Management In order to access the web interface, you shall need to configure your IP address to share the same sub net (setting your machine to an IP of , and net mask of should work), and then type the IP address into the browser; This should bring up the default connection screen for Crimson (shown in Figure 1). Figure 1: Home page of Crimson Web UI, accessible through connection to the management port. You can reconfigure the IP address, and host name, by clicking on the «Debug» tab of the home page. You can also SSH into Crimson with user name root and by default there is no password set up.

10 10 per vices corporation Arch Linux You can assign a static IP address in the console: # ip addr add XXX.XXX.XXX.XXX/YY broadcast ZZZ.ZZZ.ZZZ.ZZZ dev interface For example: # ip addr add broadcast dev eth0 Debian/Ubuntu/Kubuntu Log in as root and open a terminal Make a backup of your /etc/network/interfaces file by typing the following in the console: cp /etc/network/interfaces /etc/network/interfaces.backup Then open vi by typing: vi /etc/network/interfaces Press «i» to enter into insert (editing) mode, and scroll down until you find your network interface card in the file. This usually starts with ethx for a wired network card (wireless cards generall start with wlanx or wifix). This line generally holds a default value of «dhcp», which you need to replace with «static», after which you add the appropriate address, netmask, and network parameters. See table 1 for a specific example that illustrates the change that needs to be made. Once you have made the appropriate change, you can type «:wq» from within vi to save (write) your changes to the file and exit. After making your changes, you may need to cycle your internet adapter. You may do this by typing the following command: ifdown eth0; ifup eth0 Note: if you are remotely logged into the machine, it s possible this may bring down the network adapter you are using - therefore, ensure you have correctly identified your adapter prior to making this change. Old New <...> iface eth0 inet dhcp <...> <...> iface eth0 inet static address netmask network <...> Table 1: Sample line replacement within /etc/network/interfaces

11 crimson quick start guide 11 Windows (generic) The following describes the generic method of changing your IP address using a Windows machine. Go to Control Panel View Network Connections Right click on Local Area Connection and click on Properties Under the Networking tab select Internet Protocol Version 4 (TCP/IPv4) and click on Properties Select «Use the following IP address» Populate the IP address and subnet mask as described above Click OK Configuring Your SFP+ IP Addresses Assuming that the 10GBASE-R network card has already been installed into your host computer, the following instructions will guide you in properly configuring the SFP+ ports. From here, we will assume that the SFP+ port A is named XXXNXY. The IP address for this port will need to be configured to Arch Linux You can assign a static IP address in the console: # ip addr add XXX.XXX.XXX.XXX/YY broadcast ZZZ.ZZZ.ZZZ.ZZZ dev interface For example: # ip addr add /24 broadcast dev XXXNXY Type «ip addr show» into the console and the following output should appear to indicate that the link is up: 5: XXXNXY: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000 link/ether 6c:b3:11:3b:44:3d brd ff:ff:ff:ff:ff:ff You can now ping the SFP+ Port A address to ensure proper operation by typing the following into the console: # ping -I XXXNXY PING ( ) from XXXNXY: 56(84) bytes of data. 64 bytes from : icmp_seq=1 ttl=5 time=0.922 ms 64 bytes from : icmp_seq=2 ttl=5 time=1.03 ms...

12 12 per vices corporation In the event that is not responding, you can type the following command into the console to check which IP address the port is linked to (shown as XX.XX.XX.XX): # ping -I XXXNXY -b WARNING: pinging broadcast address PING ( ) from XXXNXY: 56(84) bytes of data. 64 bytes from XX.XX.XX.XX: icmp_seq=1 ttl=5 time=0.759 ms 64 bytes from XX.XX.XX.XX: icmp_seq=2 ttl=5 time=0.846 ms... To configure SFP+ Port B, repeat the above instructions but replace IP addresses as shown in 2. SFP+ Port Port A Port B Adapter IP Address\Mask Bits \ \24 Net Mask Source IP Address Table 2: SFP+ Port Addresses Debian/Ubuntu/Kubuntu Log in as root and open a terminal Make a backup of your /etc/network/interfaces file by typing the following in the console: cp /etc/network/interfaces /etc/network/interfaces.backup Then open vi by typing: vi /etc/network/interfaces Press «i» to enter into insert (editing) mode, and scroll down until you find your network interface card in the file. This line generally holds a default value of «dhcp», which you need to replace with «static», after which you add the appropriate address, netmask, and network parameters. See table 3 for a specific example that illustrates the change that needs to be made. Once you have made the appropriate change, you can type «:wq» from within vi to save (write) your changes to the file and exit. After making your changes, you may need to cycle your internet adapter. You may do this by typing the following command: ifdown XXXNXY; ifup XXXNXY Note: if you are remotely logged into the machine, it s possible this may bring down the network adapter you are using - therefore, ensure you have correctly identified your adapter prior to making this change. To configure SFP+ Port B, repeat the above instructions but replace IP addresses as shown in 2.

13 crimson quick start guide 13 Old New <...> iface XXXNXY inet dhcp <...> <...> iface XXXNXY inet static address netmask network <...> Table 3: Sample line replacement within /etc/network/interfaces Windows (generic) Please refer to the previous Windows (generic) IP address configuration section.

14

15 Generate a Waterfall Plot on GNU Radio In the following section, you will go through several steps in order to view a waterfall plot using Crimson and GNU Radio. 1. First you will need to tune your signal generator to output a Sine wave at MHz. 2. Next, you will need to go to the management web interface by opening a web browser and entering into the address bar. 3. This will lead you to the Crimson home page (shown in Figure 1 on page 9). 4. Click on the RX Chain tab. 5. The RX channel is disabled by default. Click the button beside Channel Enable to enable the current channel. The icon should turn from to. 6. Once the channel is enabled, click the Set button on the frequency synthesizer to set the down converting frequency to 465MHz. 7. On your host computer, launch GNU Radio Companion and open a new file.

16 16 per vices corporation 8. Add the following blocks and connect them as shown in Figure 2: (a) UDP Source (b) IShort To Complex (c) Throttle (d) WX GUI Waterfall Sink Figure 2: GNU Radio waterfall system 9. Double click on the Options block. This will bring you to a window similar to Figure 3. (a) Leave most of the fields as default but make sure that the Generate Options field is set to WX GUI. (b) The ID, Title, Author and Description fields can be edited to your preference Figure 3: GNU Radio options window

17 crimson quick start guide Double click on the Variable block and set the samp_rate to ( e6)/256 as shown in Figure 4. Figure 4: GNU Radio variable window

18 18 per vices corporation 11. Double click on the UDP Source block and set the following fields as shown in Figure 5: (a) Set IP Address to (b) Set Port to int(31337) (c) Set Payload Size to int(1400) (d) Set Null Pkt is EOF to False. (e) Set Vec Length to 2. Figure 5: GNU Radio UDP Source window

19 crimson quick start guide Double clink on the IShort To Complex block and set the Vector Input to Yes as shown in Figure 6. Figure 6: GNU Radio WX GUI Waterfall Sink window 13. Double click on the WX GUI Waterfall Sink block and set the following fields as shown in Figure 7 on the next page: (a) Set Sample Rate to samp_rate. (b) Set Baseband Freq to 10. (c) Set Dynammic Range to 100. (d) Set Reference Level to 90. (e) Set Ref Scale to 2.0. (f) Leave the rest of the fields as default.

20 20 per vices corporation Figure 7: GNU Radio WX GUI Waterfall Sink window 14. Now that you have configured all of the GNU Radio flow graph blocks, it is time to generate the flow graph! Do so by pressing on the. 15. And finally run the flow graph by pressing. 16. A waterfall plot should pop up and after you click the Autoscale button, you should get a plot similar to Figure 8. Figure 8: GNU Radio Waterfall plot 17. Congratulations! You have just used Crimson as a spectrum analyzer!

CS 326e F2002 Lab 1. Basic Network Setup & Ethereal Time: 2 hrs

CS 326e F2002 Lab 1. Basic Network Setup & Ethereal Time: 2 hrs CS 326e F2002 Lab 1. Basic Network Setup & Ethereal Time: 2 hrs Tasks: 1 (10 min) Verify that TCP/IP is installed on each of the computers 2 (10 min) Connect the computers together via a switch 3 (10 min)

More information

Introduction. Created by Richard Bell 10/29/2014

Introduction. Created by Richard Bell 10/29/2014 Introduction GNU Radio is open source software that provides built in modules for standard tasks of a wireless communications system. Within the GNU Radio framework is gnuradio-companion, which is a GUI

More information

Comodo MyDLP Software Version 2.0. Installation Guide Guide Version 2.0.010215. Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013

Comodo MyDLP Software Version 2.0. Installation Guide Guide Version 2.0.010215. Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Comodo MyDLP Software Version 2.0 Installation Guide Guide Version 2.0.010215 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Table of Contents 1.About MyDLP... 3 1.1.MyDLP Features... 3

More information

This document is intended to make you familiar with the ServersCheck Monitoring Appliance

This document is intended to make you familiar with the ServersCheck Monitoring Appliance ServersCheck Monitoring Appliance Quick Overview This document is intended to make you familiar with the ServersCheck Monitoring Appliance Although it is possible, we highly recommend not to install other

More information

CONNECTING THE RASPBERRY PI TO A NETWORK

CONNECTING THE RASPBERRY PI TO A NETWORK CLASSROOM CHALLENGE CONNECTING THE RASPBERRY PI TO A NETWORK In this lesson you will learn how to connect the Raspberry Pi computer to a network with both a wired and a wireless connection. To complete

More information

Ethernet Radio Configuration Guide

Ethernet Radio Configuration Guide Ethernet Radio Configuration Guide for Gateway, Endpoint, and Repeater Radio Units April 20, 2015 Customer Service 1-866-294-5847 Baseline Inc. www.baselinesystems.com Phone 208-323-1634 FAX 208-323-1834

More information

1. Installing The Monitoring Software

1. Installing The Monitoring Software SD7000 Digital Microphone Monitor Software manual Table of Contents 1. Installing The Monitor Software 1.1 Setting Up Receivers For Monitoring 1.2 Running The Application 1.3 Shutdown 2. The Detail Monitoring

More information

Introduction to NetGUI

Introduction to NetGUI Computer Network Architectures gsyc-profes@gsyc.escet.urjc.es December 5, 2007 (cc) 2007. Algunos derechos reservados. Este trabajo se entrega bajo la licencia Creative Commons Attribution-ShareAlike.

More information

EnGenius ERB9250 300M Range Extender. Quick Start Guide

EnGenius ERB9250 300M Range Extender. Quick Start Guide EnGenius ERB9250 300M Range Extender Quick Start Guide Package Contents One ERB9250 300M Range Extender One 12V/1A power adapter Two 2dBi 2.4GHz SMA antennas One Ethernet cable One CD-ROM with user s manual

More information

SecureLinx Spider Duo Quick Start Guide

SecureLinx Spider Duo Quick Start Guide SecureLinx Spider Duo Quick Start Guide SecureLinx Spider Duo Quick Start Guide SecureLinx Spider Duo QUICK START GUIDE CONTENTS Overview... 2 What s In The Box... 3 Installation and Network Settings...

More information

Workshop on Scientific Applications for the Internet of Things (IoT) March 16-27 2015

Workshop on Scientific Applications for the Internet of Things (IoT) March 16-27 2015 Workshop on Scientific Applications for the Internet of Things (IoT) March 16-27 2015 IPv6 in practice with RPi Alvaro Vives - alvaro@nsrc.org Contents 1 Lab topology 2 IPv6 Configuration 2.1 Linux commands

More information

Chapter1. Interface Introduction

Chapter1. Interface Introduction Robustel GoRugged R3000 Quick Guide Chapter1. Interface Introduction 1.1 LED Indicators After inserting the SIM card into the router and power on, the LED indicators status should be as follow when work

More information

Guideline for setting up a functional VPN

Guideline for setting up a functional VPN Guideline for setting up a functional VPN Why do I want a VPN? VPN by definition creates a private, trusted network across an untrusted medium. It allows you to connect offices and people from around the

More information

E-Mon Communication Gateway Utility Instructions for BACnet/mstp

E-Mon Communication Gateway Utility Instructions for BACnet/mstp E-Mon Communication Gateway Utility Instructions for BACnet/mstp The E-Mon Communication Gateway utility will allow you to configure the Device Instance (Node ID) and other parameters needed for your BACnet/mstp

More information

UBIQUITI BRIDGE CONFIGURATION PROCEDURE (PowerStation & NanoStation Units ONLY)

UBIQUITI BRIDGE CONFIGURATION PROCEDURE (PowerStation & NanoStation Units ONLY) UBIQUITI BRIDGE CONFIGURATION PROCEDURE (PowerStation & NanoStation Units ONLY) Hardware Installation 1. Initial placement for programming and configuration purposes should be performed in an indoor environment.

More information

1 PC to WX64 direction connection with crossover cable or hub/switch

1 PC to WX64 direction connection with crossover cable or hub/switch 1 PC to WX64 direction connection with crossover cable or hub/switch If a network is not available, or if it is desired to keep the WX64 and PC(s) completely separated from other computers, a simple network

More information

SNMP Web card. User s Manual. Management Software for Uninterruptible Power Supply Systems

SNMP Web card. User s Manual. Management Software for Uninterruptible Power Supply Systems SNMP Web card User s Manual Management Software for Uninterruptible Power Supply Systems Table of Contents 1. Overview... 3 1.1 Introduction... 3 1.2 Features... 3 1.3 Overlook... 3 1.4 Installation and

More information

ADSL Router Quick Installation Guide Revised, edited and illustrated by Neo

ADSL Router Quick Installation Guide Revised, edited and illustrated by Neo ADSL Router Quick Installation Guide Revised, edited and illustrated by Neo A typical set up for a router PCs can be connected to the router via USB or Ethernet. If you wish to use a telephone with the

More information

TECHNICAL BULLETIN. Configuring Wireless Settings in an i-stat 1 Wireless Analyzer

TECHNICAL BULLETIN. Configuring Wireless Settings in an i-stat 1 Wireless Analyzer i-stat TECHNICAL BULLETIN Configuring Wireless Settings in an i-stat 1 Wireless Analyzer Before configuring wireless settings, please enable the wireless functionality by referring to the Technical Bulletin

More information

2 Setting Up the Hardware for a Wired Ethernet Network... 13. 3 Setting Up the Software for an Ethernet Network... 21

2 Setting Up the Hardware for a Wired Ethernet Network... 13. 3 Setting Up the Software for an Ethernet Network... 21 Contents 1 Networking Basics............................................... 1 Selecting a network connection........................................ 2 Wired Ethernet network...........................................

More information

Phone Adapter. with 2 Ports for Voice-over-IP. Installation and Troubleshooting Guide. Model No. PAP2 Ver. 2. Voice

Phone Adapter. with 2 Ports for Voice-over-IP. Installation and Troubleshooting Guide. Model No. PAP2 Ver. 2. Voice Phone Adapter with 2 Ports for Voice-over-IP Voice Installation and Troubleshooting Guide Model No. PAP2 Ver. 2 Copyright and Trademarks Specifications are subject to change without notice. Linksys is

More information

Network Setup & Options

Network Setup & Options 3.0 Network Setup & Options 3.3 TABLE OF CONTENTS 3.1 INTRODUCTION... 5 3.2 DISABLING NETWORK SECURITY SETTINGS... 6 3.2.1 Aftermarket Internet Security and Firewalls... 6 3.2.2 Windows Firewall... 6

More information

Special Note Ethernet Connection Problems and Handling Methods (CS203 / CS468 / CS469)

Special Note Ethernet Connection Problems and Handling Methods (CS203 / CS468 / CS469) Special Note Connection Problems and Handling Methods (CS203 / CS468 / CS469) Sometimes user cannot find the RFID device after installing the CSL Demo App and the RFID reader is connected. If user cannot

More information

NNAS-D5 Quick Installation Guide

NNAS-D5 Quick Installation Guide NNAS-D5 Quick Installation Guide NOTE: By default, LAN0 (eth0) is set to DHCP. If a DHCP server is available or detected, LAN0 will be assigned a DHCP IP address. If a DHCP server is not available, LAN0

More information

To perform Ethernet setup and communication verification, first perform RS232 setup and communication verification:

To perform Ethernet setup and communication verification, first perform RS232 setup and communication verification: PURPOSE Verify that communication is established for the following products programming option (488.2 compliant, SCPI only): DCS - M9C & DCS M130, DLM M9E & DLM-M9G & DLM M130, DHP - M9D, P series, SG,

More information

Quick Installation Guide Network Management Card

Quick Installation Guide Network Management Card Rev.1.1 www.cyberpowersystems.com Quick Installation Guide Network Management Card Intelligent Network Management Card allows UPS to be managed, monitored, and configured via SNMP Card Configuration Tool

More information

Easy Setup Guide for the Sony Network Camera

Easy Setup Guide for the Sony Network Camera -878-191-11 (1) Easy Setup Guide for the Sony Network Camera For setup, a computer running the Microsoft Windows Operating System is required. For monitoring camera images, Microsoft Internet Explorer

More information

Cloud Storage Quick Start Guide

Cloud Storage Quick Start Guide Cloud Storage Quick Start Guide Copyright - GoGrid Cloud Hosting. All rights reserved Table of Contents 1. About Cloud Storage...3 2. Configuring RHEL and CentOS Servers to Access Cloud Storage...3 3.

More information

BR-800. ProHD Broadcaster. Easy Set-Up Guide V 1.01

BR-800. ProHD Broadcaster. Easy Set-Up Guide V 1.01 BR-800 ProHD Broadcaster Easy Set-Up Guide V 1.01 BR-800 EASY SET-UP GUIDE BEFOREYOUBEGIN! Pleasedeterminethetypeofconfigurationbyselectingthescenariothatbest describesthewayyouwillbeusingyourbr-800prohdbroadcaster.onceyouhavedeterminedyour

More information

QOS 8 High-Speed RAID System Guide

QOS 8 High-Speed RAID System Guide QOS 8 High-Speed RAID System Guide Not for Redistribution 1 Introduction The QOS is a standalone storage array, part of a file- based workflow involving numerous users sharing the same files in real time.

More information

Prestige 660R-6x Read Me First

Prestige 660R-6x Read Me First Prestige 660R-6x Read Me First Prestige Rear Panel Connections DSL PORT CONNECTION Connect the DSL port on the Prestige to the wall jack using the included DSL cable (telephone wire). Connect the micro

More information

Building a Penetration Testing Virtual Computer Laboratory

Building a Penetration Testing Virtual Computer Laboratory Building a Penetration Testing Virtual Computer Laboratory User Guide 1 A. Table of Contents Collaborative Virtual Computer Laboratory A. Table of Contents... 2 B. Introduction... 3 C. Configure Host Network

More information

SNMP Web Management. User s Manual For SNMP Web Card/Box

SNMP Web Management. User s Manual For SNMP Web Card/Box SNMP Web Management User s Manual For SNMP Web Card/Box Management Software for Off-Grid Inverter Version: 1.2 Table of Contents 1. Overview... 1 1.1 Introduction... 1 1.2 Features... 1 1.3 Overlook...

More information

Self Help Guide IMPORTANT! Configuring Your Router With Your Modem. Please read the following carefully; This Guide refers to the following Products:

Self Help Guide IMPORTANT! Configuring Your Router With Your Modem. Please read the following carefully; This Guide refers to the following Products: IMPORTANT! This Guide refers to the following Products: Configuring Your Router With Your Modem Please read the following carefully; Synopsis: A standard (Wireless) Router does not come equipped with the

More information

Broadband Router ESG-103. User s Guide

Broadband Router ESG-103. User s Guide Broadband Router ESG-103 User s Guide FCC Warning This equipment has been tested and found to comply with the limits for Class A & Class B digital device, pursuant to Part 15 of the FCC rules. These limits

More information

Quick Note 53. Ethernet to W-WAN failover with logical Ethernet interface.

Quick Note 53. Ethernet to W-WAN failover with logical Ethernet interface. Quick Note 53 Ethernet to W-WAN failover with logical Ethernet interface. Digi Support August 2015 1 Contents 1 Introduction... 2 1.1 Introduction... 2 1.2 Assumptions... 3 1.3 Corrections... 3 2 Version...

More information

Link Link sys E3000 sys RE1000

Link Link sys E3000 sys RE1000 User Guide High Performance Extender Wireless-N Router Linksys Linksys RE1000 E3000Wireless-N Table of Contents Contents Chapter 1: Product Overview 1 Front 1 Top 1 Bottom 1 Back 2 Chapter 2: Advanced

More information

MIP 5000 VoIP Radio Console. Quick Installation Guide. Documentation MIP 5000 VoIP Radio Console Installation CD

MIP 5000 VoIP Radio Console. Quick Installation Guide. Documentation MIP 5000 VoIP Radio Console Installation CD MIP 5000 VoIP Radio Console intelligence everywhere Quick Installation Guide Documentation MIP 5000 VoIP Radio Console Installation CD MIP 5000 VoIP Radio Console Installation and Configuration Manual

More information

AlienVault. Unified Security Management (USM) 4.8-5.x Initial Setup Guide

AlienVault. Unified Security Management (USM) 4.8-5.x Initial Setup Guide AlienVault Unified Security Management (USM) 4.8-5.x Initial Setup Guide Contents USM v4.8-5.x Initial Setup Guide Copyright AlienVault, Inc. All rights reserved. The AlienVault Logo, AlienVault, AlienVault

More information

SETTING UP REMOTE ACCESS FOR Q-SEE DVR SYSTEMS MODEL NUMBER: QC40198

SETTING UP REMOTE ACCESS FOR Q-SEE DVR SYSTEMS MODEL NUMBER: QC40198 Accessing the DVR from a Computer Attached to the Same Router: If you are only going to access the DVR from a computer that is attached to the same router as the DVR you only need to setup the information

More information

Installation and Operation Guide

Installation and Operation Guide www.aja.com Quick Start Guide Introduction This Quick Start Guide provides a basic overview of KUMO configuration. It is not meant as a substitute for the detailed information found in the KUMO Manual,

More information

Networking. General networking. Networking overview. Common home network configurations. Wired network example. Wireless network examples

Networking. General networking. Networking overview. Common home network configurations. Wired network example. Wireless network examples Networking General networking Networking overview A network is a collection of devices such as computers, printers, Ethernet hubs, wireless access points, and routers connected together for communication

More information

D-Link DAP-1360 Repeater Mode Configuration

D-Link DAP-1360 Repeater Mode Configuration D-Link DAP-1360 Repeater Mode Configuration Outline 1. Package Contents 2. System Requirements 3. Hardware Overview Connections LED s WPS LED/Button 4. Default Settings 5. Configuring your LAN Adapter

More information

HOW-TO-GUIDE. Installer Service Tool: Downloading Data and Event Logs for the Eltek Theia

HOW-TO-GUIDE. Installer Service Tool: Downloading Data and Event Logs for the Eltek Theia HOW-TO-GUIDE Installer Service Tool: Downloading Data and Event Logs for the Eltek Theia READ FIRST: In order to run the Installer Service Tool you first need a software license key. These are issued to

More information

1. MOXA NPort Express TCP/IP to RS-232 server

1. MOXA NPort Express TCP/IP to RS-232 server GS_GSR_GCR_UserManual_App_E_MOXA_V01.doc / 17.08.2009 GeoSIG Ltd. Appendix E Page E-1 1. MOXA NPort Express TCP/IP to RS-232 server 1.1. General Explanations The NPort Express RS-232/422/485 Device server

More information

Adafruit's Raspberry Pi Lesson 3. Network Setup

Adafruit's Raspberry Pi Lesson 3. Network Setup Adafruit's Raspberry Pi Lesson 3. Network Setup Created by Simon Monk Last updated on 2016-01-04 12:07:57 PM EST Guide Contents Guide Contents Overview Using a Wired Network Buying a USB WiFi Adapter Setting

More information

CMP-102U. Quick Installation Guide

CMP-102U. Quick Installation Guide CMP-102U Quick Installation Guide V1.0 http://www.cnet.com.tw 1 CMP-102U Supports One High-speed USB2.0 Port MFP Server Supports 10/100Mbps Fast Ethernet Network Quick Installation Guide 1 Package Contents:

More information

Quick Start Guide. WAP371 Wireless AC/N Dual Radio Access Point with Single Point Setup Quick Start Guide. Cisco Small Business

Quick Start Guide. WAP371 Wireless AC/N Dual Radio Access Point with Single Point Setup Quick Start Guide. Cisco Small Business Quick Start Guide Cisco Small Business WAP371 Wireless AC/N Dual Radio Access Point with Single Point Setup Quick Start Guide Versión en Español para México en el CD Version en français sur CD Versione

More information

OpenCPN Garmin Radar Plugin

OpenCPN Garmin Radar Plugin OpenCPN Garmin Radar Plugin Hardware Interface The Garmin Radar PlugIn for OpenCPN requires a specific hardware interface in order to allow the OpenCPN application to access the Ethernet data captured

More information

A Division of Cisco Systems, Inc. GHz 2.4 802.11g. Wireless-G. USB Network Adapter with RangeBooster. User Guide WIRELESS WUSB54GR. Model No.

A Division of Cisco Systems, Inc. GHz 2.4 802.11g. Wireless-G. USB Network Adapter with RangeBooster. User Guide WIRELESS WUSB54GR. Model No. A Division of Cisco Systems, Inc. GHz 2.4 802.11g WIRELESS Wireless-G USB Network Adapter with RangeBooster User Guide Model No. WUSB54GR Copyright and Trademarks Specifications are subject to change without

More information

3.5 EXTERNAL NETWORK HDD. User s Manual

3.5 EXTERNAL NETWORK HDD. User s Manual 3.5 EXTERNAL NETWORK HDD User s Manual Table of Content Before You Use Key Features H/W Installation Illustration of Product LED Definition NETWORK HDD Assembly Setup the Network HDD Home Disk Utility

More information

Networking Guide Redwood Manager 3.0 August 2013

Networking Guide Redwood Manager 3.0 August 2013 Networking Guide Redwood Manager 3.0 August 2013 Table of Contents 1 Introduction... 3 1.1 IP Addresses... 3 1.1.1 Static vs. DHCP... 3 1.2 Required Ports... 4 2 Adding the Redwood Engine to the Network...

More information

Guide for Updating Firmware and Troubleshooting Connection Issues

Guide for Updating Firmware and Troubleshooting Connection Issues Guide for Updating Firmware and Troubleshooting Connection Issues This document provides detailed instructions for updating firmware and for troubleshooting for connection issues with Raspberry Pi board.

More information

Vantage RADIUS 50. Quick Start Guide Version 1.0 3/2005

Vantage RADIUS 50. Quick Start Guide Version 1.0 3/2005 Vantage RADIUS 50 Quick Start Guide Version 1.0 3/2005 1 Introducing Vantage RADIUS 50 The Vantage RADIUS (Remote Authentication Dial-In User Service) 50 (referred to in this guide as Vantage RADIUS)

More information

RAPID BROADBAND INSTALLATION RAPID BROADBAND SUPPORT CONTACT DETAILS. support@rapidbroadband.ie AND TROUBLESHOOTING GUIDE. Email: Tel: 076 6708787

RAPID BROADBAND INSTALLATION RAPID BROADBAND SUPPORT CONTACT DETAILS. support@rapidbroadband.ie AND TROUBLESHOOTING GUIDE. Email: Tel: 076 6708787 RAPID BROADBAND INSTALLATION AND TROUBLESHOOTING GUIDE RAPID BROADBAND SUPPORT CONTACT DETAILS Email: support@rapidbroadband.ie Tel: 076 6708787 January 2008 1 INTERNET CONNECTION TROUBLESHOOTING GUIDE

More information

ProCurve Networking. Troubleshooting WLAN Connectivity. Technical White paper

ProCurve Networking. Troubleshooting WLAN Connectivity. Technical White paper ProCurve Networking Troubleshooting WLAN Connectivity Technical White paper Introduction... 3 Identifying the Problem... 3 Troubleshooting Wireless Station Connection to AP... 4 Can Any Wireless Stations

More information

CLEARONE DOCUMENT 801-000-002 (REVISION 1.0) October, 2008. with Converge Pro Units

CLEARONE DOCUMENT 801-000-002 (REVISION 1.0) October, 2008. with Converge Pro Units APPLICATION NOTES Converge Pro Products CLEARONE DOCUMENT 801-000-002 (REVISION 1.0) October, 2008. Troubleshooting USB Connections with Converge Pro Units Description This document explains how to connect

More information

Preparing the Computers for TCP/IP Networking

Preparing the Computers for TCP/IP Networking Configuration Preparing the Computers for TCP/IP Networking Configuring Windows 98, and ME for TCP/IP Networking Verifying TCP/IP Properties Configuring Windows 2000 or XP for IP Networking Install or

More information

Contents. Section A Networking Basics... 1. 1 Learning the Basics... 3. Section B Wired Ethernet Networking... 17

Contents. Section A Networking Basics... 1. 1 Learning the Basics... 3. Section B Wired Ethernet Networking... 17 Contents Section A Networking Basics...................................... 1 1 Learning the Basics............................................. 3 Selecting a network connection........................................

More information

Technical Note. Monitoring Ethernet Traffic with Tolomatic ACS & Managed Switch. Contents

Technical Note. Monitoring Ethernet Traffic with Tolomatic ACS & Managed Switch. Contents Monitoring Ethernet Traffic with Tolomatic ACS & Managed Switch Contents 1. Introduction...2 2. Equipment...2 3. Software...3 4. Definitions...3 5. Procedure...3 6. Change PC IP Address...3 7. Network

More information

Setting up a Raspberry Pi as a WiFi access point

Setting up a Raspberry Pi as a WiFi access point Setting up a Raspberry Pi as a WiFi access point Created by lady ada Last updated on 2015-03-10 04:30:11 PM EDT Guide Contents Guide Contents Overview What you'll need Preparation Check Ethernet & Wifi

More information

Chapter 3 Management. Remote Management

Chapter 3 Management. Remote Management Chapter 3 Management This chapter describes how to use the management features of your ProSafe 802.11a/g Dual Band Wireless Access Point WAG102. To access these features, connect to the WAG102 as described

More information

Chapter 4 Management. Viewing the Activity Log

Chapter 4 Management. Viewing the Activity Log Chapter 4 Management This chapter describes how to use the management features of your NETGEAR WG102 ProSafe 802.11g Wireless Access Point. To get to these features, connect to the WG102 as described in

More information

Self Help Guide. Please read the following carefully; Synopsis: Requirements: A Computer with a working RJ45 LAN Port All Belkin Modem Routers

Self Help Guide. Please read the following carefully; Synopsis: Requirements: A Computer with a working RJ45 LAN Port All Belkin Modem Routers IMPORTANT! This Guide refers to the following Products: Establishing A Connection From PC To Router Please read the following carefully; Synopsis: This Self-Help Guide is designed to assist you if you

More information

MAX T1/E1. Quick Start Guide. VoIP Gateway. Version 1.0

MAX T1/E1. Quick Start Guide. VoIP Gateway. Version 1.0 MAX T1/E1 TM VoIP Gateway Quick Start Guide Version 1.0 Contents INTRODUCTION 1 Hardware Needed Software Needed 1 1 NET2PHONE MAX SET UP Hardware Set Up Software Set Up Set Up Internet Protocol (IP) Address

More information

BIT COMMANDER. Serial RS232 / RS485 to Ethernet Converter

BIT COMMANDER. Serial RS232 / RS485 to Ethernet Converter BIT COMMANDER Serial RS232 / RS485 to Ethernet Converter (Part US2000A) Copyrights U.S. Converters 1 Contents Overview and Features... 3 Functions..5 TCP Server Mode... 5 Httpd Client Mode.5 TCP Auto mode....6

More information

Quick Start Guide NVR DS-7104NI-SL/W NVR. www.hikvision.com. First Choice For Security Professionals

Quick Start Guide NVR DS-7104NI-SL/W NVR. www.hikvision.com. First Choice For Security Professionals Quick Start Guide NVR DS-7104NI-SL/W NVR NOTE: For more detailed information, refer to the User s Manual on the CD-ROM. You must use your PC or MAC to access the files. www.hikvision.com Quick Start 1.

More information

Assign a static IP address 192.168.1.100 for your computer. Please refer to the T3 in Troubleshooting guide if you need assistance.

Assign a static IP address 192.168.1.100 for your computer. Please refer to the T3 in Troubleshooting guide if you need assistance. Assign a static IP address 192.168.1.100 for your computer. Please refer to the T3 in Troubleshooting guide if you need assistance. Connect to the Access Point with the Ethernet cable or via wireless.the

More information

NeoGate TG Series Installation Guide

NeoGate TG Series Installation Guide NeoGate TG Series Installation Guide Version: V1.1 Yeastar Technology Co., Ltd. Date: Sept. 2, 2014 http://www.yeastar.com 1/14 Contents NeoGate TG Series Installation Guide 1. Preparation before Installation...

More information

How To Connect A Raspberry Pi To The Internet On A Microsoft Moonstone 2 (Microsoft) Microsoft Powerbook 2 (Powerbook 2) (Powerboard 2) And Powerbook 3 (Powerstation 2)

How To Connect A Raspberry Pi To The Internet On A Microsoft Moonstone 2 (Microsoft) Microsoft Powerbook 2 (Powerbook 2) (Powerboard 2) And Powerbook 3 (Powerstation 2) Adafruit's Raspberry Pi Lesson 3. Network Setup Created by Simon Monk Last updated on 2013-11-06 11:45:18 AM EST Guide Contents Guide Contents Overview Using a Wired Network Buying a USB WiFi Adapter Setting

More information

Lab 8.4.2 Configuring Access Policies and DMZ Settings

Lab 8.4.2 Configuring Access Policies and DMZ Settings Lab 8.4.2 Configuring Access Policies and DMZ Settings Objectives Log in to a multi-function device and view security settings. Set up Internet access policies based on IP address and application. Set

More information

Prestige 623R-T. Quick Start Guide. ADSL Dual-link Router. Version 3.40

Prestige 623R-T. Quick Start Guide. ADSL Dual-link Router. Version 3.40 Prestige 623R-T ADSL Dual-link Router Quick Start Guide Version 3.40 February 2004 Introducing the Prestige The Prestige 623R-T ADSL Dual-link Router is the ideal all-in-one device for small networks connecting

More information

Quick Installation Guide

Quick Installation Guide 0, Total 18 Quick Installation Guide Sep, 2013 1, Total 18 Thank you for purchasing Enterprise High Gain Outdoor CPE. This manual will instruct you how to configure and manage this CPE, enable you to use

More information

Prestige 324. Prestige 324. Intelligent Broadband Sharing Gateway. Version 3.60 January 2003 Quick Start Guide

Prestige 324. Prestige 324. Intelligent Broadband Sharing Gateway. Version 3.60 January 2003 Quick Start Guide Prestige 324 Intelligent Broadband Sharing Gateway Version 3.60 January 2003 Quick Start Guide 1 Introducing the Prestige The Prestige is a broadband sharing gateway with a built-in four-port 10/100 Mbps

More information

Connecting the DG-102S VoIP Gateway to your network

Connecting the DG-102S VoIP Gateway to your network Contents of Package: DG-102S VoIP Station Gateway Power adapter CD-ROM, including User s Manual Quick Install Guide Requirements: RS-232 Console Cable Two RJ-45 CAT-5 Straight-Through Cables For more information

More information

Prestige 324 Quick Start Guide. Prestige 324. Intelligent Broadband Sharing Gateway. Version V3.61(JF.0) May 2004 Quick Start Guide

Prestige 324 Quick Start Guide. Prestige 324. Intelligent Broadband Sharing Gateway. Version V3.61(JF.0) May 2004 Quick Start Guide Prestige 324 Intelligent Broadband Sharing Gateway Version V3.61(JF.0) May 2004 Quick Start Guide 1 1 Introducing the Prestige The Prestige is a broadband sharing gateway with a built-in four-port 10/100

More information

Front LEDs... 2 Rear Ports... 3 BASIC INSTALLATION... 4 Connecting Your Router... 5 Network Configuration... 6

Front LEDs... 2 Rear Ports... 3 BASIC INSTALLATION... 4 Connecting Your Router... 5 Network Configuration... 6 0 P a g e Table of contents Front LEDs... 2 Rear Ports... 3 BASIC INSTALLATION... 4 Connecting Your Router... 5 Network Configuration... 6 Gateway Configuration... 11 Accessing your gateway... 11 Displaying

More information

HYPERLINK Internet PC setup guide. HYPERLINK Internet support helpdesk at 1-866-302-5525.

HYPERLINK Internet PC setup guide. HYPERLINK Internet support helpdesk at 1-866-302-5525. HYPERLINK Internet support helpdesk at 1-866-302-5525. Congratulations on your new residence and welcome to HYPERLINK Internet service. In a few short moments you will be connected to one of the fastest

More information

SATO Network Interface Card Configuration Instructions

SATO Network Interface Card Configuration Instructions SATO Network Interface Card Configuration Instructions Table of Contents 1. Reset of wired/wireless interface card... 3 2. Installing the All-In-One Utility (recommended)... 4 3. Configuring wired/wireless

More information

Technical Notes TN 1 - ETG 3000. FactoryCast Gateway TSX ETG 3021 / 3022 modules. How to Setup a GPRS Connection?

Technical Notes TN 1 - ETG 3000. FactoryCast Gateway TSX ETG 3021 / 3022 modules. How to Setup a GPRS Connection? FactoryCast Gateway TSX ETG 3021 / 3022 modules How to Setup a GPRS Connection? 1 2 Table of Contents 1- GPRS Overview... 4 Introduction... 4 GPRS overview... 4 GPRS communications... 4 GPRS connections...

More information

Mobile Router MR600 User Guide

Mobile Router MR600 User Guide Mobile Router MR600 User Guide HANTZ + PARTNER The Upgrade Company! www.hantz.com 1. Connections and LEDS The following pictures show you various connectors and status LED indicators on the MR600 Mobile

More information

Adding or replacing a mesh node in an existing mesh network

Adding or replacing a mesh node in an existing mesh network Adding or replacing a mesh node in an existing mesh network Use this procedure to add or replace a in an existing mesh For this procedure to work all nodes running the same firmware version. Before you

More information

MIP 5000 VoIP Radio Console VPN Solution Guide

MIP 5000 VoIP Radio Console VPN Solution Guide MIP 5000 VoIP Radio Console VPN Solution Guide 2215247G-01 OCTOBER 2010 *2215247G-01* TABLE OF CONTENTS CONTENTS.... ABOUT THIS BOOKLET Intended Audience.....ix Assumptions..........ix References............

More information

Virtual Appliance for VMware Server. Getting Started Guide. Revision 2.0.2. Warning and Disclaimer

Virtual Appliance for VMware Server. Getting Started Guide. Revision 2.0.2. Warning and Disclaimer Virtual Appliance for VMware Server Getting Started Guide Revision 2.0.2 Warning and Disclaimer This document is designed to provide information about the configuration and installation of the CensorNet

More information

How To Industrial Networking

How To Industrial Networking How To Industrial Networking Prepared by: Matt Crites Product: Date: April 2014 Any RAM or SN 6xxx series router Legacy firmware 3.14/4.14 or lower Subject: This document provides a step by step procedure

More information

MIP 5000 VoIP Radio Console. Quick Installation Guide. Documentation. MIP 5000 VoIP Radio Console Installation CD

MIP 5000 VoIP Radio Console. Quick Installation Guide. Documentation. MIP 5000 VoIP Radio Console Installation CD MIP 5000 VoIP Radio Console intelligence everywhere Quick Installation Guide Documentation MIP 5000 VoIP Radio Console Installation CD MIP 5000 VoIP Radio Console Installation and Configuration Manual

More information

Ethernet Interface Manual Thermal / Label Printer. Rev. 1.01 Metapace T-1. Metapace T-2 Metapace L-1 Metapace L-2

Ethernet Interface Manual Thermal / Label Printer. Rev. 1.01 Metapace T-1. Metapace T-2 Metapace L-1 Metapace L-2 Ethernet Interface Manual Thermal / Label Printer Rev. 1.01 Metapace T-1 Metapace T-2 Metapace L-1 Metapace L-2 Table of contents 1. Interface setting Guiding...3 2. Manual Information...4 3. Interface

More information

StarMOBILE Network Configuration Guide. A guide to configuring your StarMOBILE system for networking

StarMOBILE Network Configuration Guide. A guide to configuring your StarMOBILE system for networking StarMOBILE Network Configuration Guide A guide to configuring your StarMOBILE system for networking INTRODUCTION... 3 BEFORE YOU BEGIN... 3 1) CONFIRM YOU HAVE THE LATEST SOFTWARE... 3 2) INSTALL THE STARMOBILE

More information

IP Address: the per-network unique identifier used to find you on a network

IP Address: the per-network unique identifier used to find you on a network Linux Networking What is a network? A collection of devices connected together Can use IPv4, IPv6, other schemes Different devices on a network can talk to each other May be walls to separate different

More information

ipad Installation and Setup

ipad Installation and Setup ipad Installation and Setup INDEX ipad Features Page 2 Charging.. Page 2 User Guide... Page 3 Setup for ipad use in the office (Office wireless network) Setup Office computers Verify Remote Desktop is

More information

EASE Scan Tool Customers. SECTION I - Installation

EASE Scan Tool Customers. SECTION I - Installation Please Install Your EASE Scan Tool DVD Before Installing Any Other Software That Came With Your Package. SECTION I - Installation ATTENTION: Do NOT connect an EASE Vehicle Interface Device to your Computer

More information

This document is intended to make you familiar with the ServersCheck Monitoring Appliance

This document is intended to make you familiar with the ServersCheck Monitoring Appliance ServersCheck Monitoring Appliance Quick Overview This document is intended to make you familiar with the ServersCheck Monitoring Appliance Although it is possible, we highly recommend not to install other

More information

PC/POLL SYSTEMS Version 7 Polling SPS2000 Cash Register TCP/IP Communications

PC/POLL SYSTEMS Version 7 Polling SPS2000 Cash Register TCP/IP Communications PC/POLL SYSTEMS Version 7 Polling SPS2000 Cash Register TCP/IP Communications PC/POLL SYSTEMS supports native TCP/IP polling for the SPS2000 cash register. It is recommended users have the register updated

More information

NetLINE Wireless Broadband Gateway

NetLINE Wireless Broadband Gateway NetLINE Setup Guide Farallon s NetLINE connects to your cable/dsl modem, allowing computers on your local wired and wireless networks to share a single broadband connection to the Internet. This Setup

More information

T3 Mux M13 Multiplexer

T3 Mux M13 Multiplexer T3 Mux M13 Multiplexer User Manual [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the abstract of the document here. The abstract

More information

How to convert a wireless router to be a wireless. access point

How to convert a wireless router to be a wireless. access point How to convert a wireless router to be a wireless access point Thanks for purchasing Edimax Wireless Router. This instruction can be applied if you want to keep your wired router and you need Edimax Wireless

More information

Digicom Remote Control for the SRT

Digicom Remote Control for the SRT Digicom Remote Control for the SRT To operate the SRT remotely, use Remote Desktop; this is available free for Linux, Mac OS-X (from Microsoft), and is included with Windows XP and later. As RD uses a

More information

How to Program a Commander or Scout to Connect to Pilot Software

How to Program a Commander or Scout to Connect to Pilot Software How to Program a Commander or Scout to Connect to Pilot Software Commander and Scout are monitoring and control products that can transfer physical environmental conditions and alarm sensor electrical

More information

Almond. Quick Setup Guide

Almond. Quick Setup Guide Almond Quick Setup Guide 2 Contents 1 Introduction 1.1 Getting to know your Almond 2 Connecting your Almond as a Range Extender (Repeater) 3 Connecting your Almond as a Router 3.1 Using your Almond with

More information

V.I.P. Kit. Video Insight Pilot Kit. (Video Insight Pilot Kit).

V.I.P. Kit. Video Insight Pilot Kit. (Video Insight Pilot Kit). V.I.P. Kit (Video Insight Pilot Kit). Video Insight Pilot Kit Please follow these instructions and everything should go very smoothly. Before you begin, you will need to establish (or obtain from your

More information