Application & Quick-Start Guide

Size: px
Start display at page:

Download "Application & Quick-Start Guide"

Transcription

1 Model: CRMWIC Web Intelligent Controller 1

2 This document will illustrate various ways to connect and use a CRM-WIC as well as programming examples. When connecting CRM-WIC, the installer has several interface options. These include but are not limited to: Connecting a computer to a CRM-WIC Connecting Xantech CSPLCD Touch Panels to a CRM-WIC Programming examples are included and will cover the following topics: Logging into the CRM-WIC Quick Setup Guide For devices that you have to query in order to get a response Ex. Power Status Displaying Status on CSPLCD Touch Panel For Devices that do not need to be Queried Ex. Volume Feedback Response Displaying Dynamic Volume Level on CSPLCD Touch Panel Passing RS-232 data from Port1 of the CRM-WIC to Port2 of the CRM-WIC When connecting a computer to a CRM-WIC: Connect the CRM-WIC to a network or stand alone computer using a standard Ethernet cable connected to the LAN port of the CRM-WIC. The green LED on the LAN port indicates that a network has been detected. The yellow LED on the LAN port indicates that data is being transmitted through the port. 2

3 When connecting a Xantech CSPLCD Touch Panel to a CRM-WIC (Typical Application): Connect a Xantech SPLCD Touch Panel using a standard Ethernet cable to a Xantech RS converter up to 4000 feet away (Note: using the converter is optional) Connect the serial output from the RS converter to one of the available serial ports on the CRM-WIC using a nine pin serial null modem cable. Or Connect the Serial Output of the CSPLCD Touch Panel directly to the Serial Input of the CRMWIC over CAT5 via RS422 3

4 Once the connection is made between the computer and the SPLCD Touch Panel, devices connected to the serial port can now be monitored with feedback and controlled using a SPLCD Touch Panel as illustrated below: 4

5 Quick Start Web Intelligent Controller [Model: CRMWIC] This section describes how to power up your CRM-WIC and access the configuration options over an IP Network or using a CAT5 Network Crossover Cable. STEP 1: Powering Up 1. Connect the Power Supply to the 2.1mm Jack on the CRMWIC labeled POWER 2. Plug the Power Supply into a 110vAC Outlet 3. CRMWIC should begin to boot. After about 10 Seconds the Blue Status LED should begin to blink slowly. STEP 2: Determine CRM-WIC Connection The CRMWIC should boot to it s default Network IP Address ( ). You will now need to decide how you would like to connect to your CRM-WIC to configure it: Connection Type Connect the CRM-WIC to a LAN Network and configure it using a PC on the Network. Why use this connection type? This is the typical set up for general CRM-WIC use. Of course you will need a LAN network. Connection Diagram Connect the CRM-WIC directly to a PC using a crossover Ethernet cable. You do not have a LAN network, and you need to access all Admin Web Pages for configuration. 5

6 In either of the above cases you will need to set you PC s IP address to the following parameters: IP Address Subnet Mask Gateway To change the settings of your PC to the above settings using Windows XP you will need to do the following: 1. Click on the START button on the task bar 2. Select SETTINGS > NETWORK CONNECTIONS > Local Area Connection 3. The Local Area Connection Properties window should now open. Select the Internet Protocol (TCP/IP) item in the window so it is highlighted and click on the Properties button. 4. Change the Internet Protocol Property to Use the following IP Address and enter the following: IP Address Subnet Mask Gateway Click on OK in the Internet Protocol Properties window 6. Click on CLOSE in the Local Area Connection Properties window. You should now be able to connect to the CRMWIC by opening your Browser and pointing it to If you have any difficulties connecting, please try a RESET to return to the Default Settings with DHCP disabled. 6

7 Enabling / Disabling DHCP by Reset If you have a DHCP server on your network, you may enable or disable the DHCP setting on the CRM-WIC by pressing and holding the reset button for about 30 seconds. Look for ONE (1) or TWO (2) flashes on the blue Status LED before ALL the LEDs flash once. If the blue LED flashes ONCE before ALL the red LEDs flash once, DHCP is DISABLED, and the settings revert to the factory default settings. You should now be able to connect to the CRM-WIC using the procedure outlined above. This is the desired configuration DHCP Disabled. If the blue LED flashes TWICE before ALL the LEDs flash once, DHCP is ENABLED, and the Network settings are now configured to: DHCP Enabled IP Address Subnet Mask Gateway Yes Automatic Automatic Automatic After all the LEDs flash once, wait for the blue LED to start blinking slowly. The CRM-WIC will then be ready to accept connections. Setting up the CRMWIC DHCP Disabled Configuring the CRM-WIC is done by opening a web browser and typing in the IP address of the CRM-WIC. By default the address is The login for the CRM-WIC is left blank and the initial password is set as admin. After successfully connecting to the CRM-WIC you will now be at the default screen as shown below: 7

8 Click on SETUP to configure the proper IP address, Date, Time as shown in the following screen: Changing the Host Name as shown above will allow you to enter the NAME as opposed to the IP address when accessing the event manager for configuration (i.e. enter 8

9 Application Examples: Web Intelligent Controller [Model: CRMWIC] The following Examples all assume feedback to a CSPLCD Touch Panel as shown on page 5. Connecting Xantech CSPLCD Touch Panels to a CRM-WIC Example #1: Power Status For devices that you have to query in order to get a response: You will need to create a timed event in order to query the device at a particular interval. In the below example an event will be created to query the power status for a device every 1 Minute. Note: All RS232 commands specific to a Manufactures device must be obtained from the Manufacturer of the product being communicated to/from. 1. Open the Event Manager by clicking on the Event Manager icon 2. Create an Event in the Event Manager called Get Power Status by clicking on the Add Event button Name: Get_PowerStatus Type: Timer Every : 1 Minute 3. Add an Action to the Get Power Status Event by clicking on the Add Action button Name: Get Power Status Type: Serial Output To: Port 2 (or whichever port is connected to the device being communicated with) Output Value: (The Power Query string for the device: Example?PWR%0D ) Note: For all HEX Commands, you must use a % switch before the 2-digit Hex value: i.e. to enter a terminating character of 0x0Dh you must enter it as %0D as shown below. ASCII can be entered in standard ASCII form. 9

10 4. To capture the response, we must first create a Variable to save it to. Click on ADD VARIABLE Name: powerstatus (no spaces allowed) Type: String 5. Create a 2 nd ACTION under the event get_powerstatus called savestatus. This ACTION will pass the resulting string to the Variable created powerstatus. Note: In this example the RS232 response from this projector is ~PWRON%0D. The part of the string we are interested in is the ON portion. To extract this we must use an expression to get rid of the unwanted portion of the string. Name: savedstatus Type: Variable Output To: powerstatus Expression Output Value: \g ~PWR %0D In this way you are taking the entire string of data (stored in \g) and removing the ~PWR part of the string represented by ~PWR and the %0D part of the string represented by %0D leaving on the power status ON represented by ON. Now that we got the information we need, the next step is to pass this information to the CSPLCD Touch Panel and have it displayed on the screen. For this example we will create a TEXT Box on the CSPLCD Touch Panel and have the CRMWIC fill in the information (i.e. ON or OFF). We will be outputting a string from Port 1 on the CRMWIC that will be!1tv ON + 6. Since the CRMWIC uses a quotation ( ) as an expression character, we will need to create a Variable with a ( ) to pass to the CSPLCD as the Touch Panel also requires this in its expression. The reason for this will become clear in Step 7!!!! a. Click ADD VARIABLE 10

11 Name: quote Type: String Persist: Default Value: Current Value: Web Intelligent Controller [Model: CRMWIC] 7. Create a 3 rd ACTION to pass the information to the CSPLCD Touch Panel. Make sure the EVENT Get_PowerStatus is highlighted. An example of this appears below. 8. Click on ADD ACTION. Name: passstatus Type: String Output to: Port 1 Expression Output Value:!1TV + quote + powerstatus 11

12 Example #2: Displaying Power Status on the CSPLCD Panel To display information on the CSPLCD Touch Panels, you must program the panel s Data Dictionary feature using Universal Dragon Version 1.85 or higher. For a full explanation of Data Dictionary, please see under the Download Software section. 1. Open the Touch Panel project being connected to the CRMWIC in Universal Dragon. 2. Right-click on a blank area and select Insert Objects Text Box from the drop-down menu. 3. Move the Text Box to the desired location on the screen and select the Properties Tab. 4. Select the Feedback Driver Tab in the properties window. 5. Under DEVICE select Dictionary 6. Enter the Identifier number for this feedback object (in this example, Identifier will be set to 1 ) 7. Set FORMATTING to Stored Value This will allow the value stored in the Variable to be passed directly into the Text Box you create. Sagtikos School District This is one example of how to display Power Status on the CSPLCD using the CRMWIC Web Intelligent Controller. Other methods can be using a Graphic indicator to display on or off status. Please visit the Xantech Commercial web site under SOFTWARE for more information on using the Data Dictionary feature. 12

13 Example #3: Getting and Storing Volume Level Information For devices that that output status without the need to be queried: You will need to create an event to store the data. If, for example whenever the volume changes to 72 on device the string ~VOL72%0D is automatically sent out and only the volume level (72) is needed to be stored, the following steps are required: 1. Open the Event Manager by clicking on the Event Manager icon 2. Create an Event in the Event Manager called Get Volume by clicking on the Add Event button a. Name: get_volumelevel b. Type: Serial c. Trigger: ~VOL*(In this example the device outputs the string ~VOL72%0D whenever the volume changes) 3. Create a Variable to store the Volume Level called VolumeLevel by clicking on the Add Variable button a. Name: VolumeLevel b. Type: Number 4. Add an Action to the get_volumelevel Event by clicking on the Add Action button a. Name: store_volumelevel b. Type: Variable c. Output To: VolumeLevel Expression (Volume Level is the variable created in the previous step) d. Output Value: \g ~VOL %0D In this way you are taking the entire string of data (stored in \g) and removing the ~VOL part of the string represented by ~VOL and the %0D part of the string represented by %0D leaving only the volume level. It is now time to pass this value to the CSPLCD for display. 5. Create a 2 nd ACTION to pass the information to the CSPLCD Touch Panel. Make sure the EVENT get_volumelevel is highlighted. An example of this appears below. 6. Click on ADD ACTION. Name: passvolume Type: String Output to: Port 1 Expression Output Value:!2DV + VolumeLevel

14 Example #4: Displaying Dynamic Volume Level on the CSPLCD Panel 1. Open the Touch Panel project being connected to the CRMWIC in Universal Dragon. 2. Right-click on a blank area and select Insert Objects Horizontal Bar (or Vertical) from the drop-down menu. 3. Move the Horizontal Bar to the desired location on the screen and select the Properties Tab. 4. Select the Feedback Driver Tab in the properties window. 5. Under DEVICE select Dictionary 6. Enter the Identifier number for this feedback object (in this example, Identifier will be set to 2 ) 7. Enter the Minimum and Maximum values for the Vertical or Horizontal Bar (in this case the minimum and maximum volume levels i.e. min= 0 ; max= 100 Sagtikos School District 14

15 Example #5: Passing Serial Strings from Port 1 to Port 2 on the CRMWIC To pass RS-232 data from Port1 of the CRM-WIC to Port2 of the CRM-WIC follow the steps below: 1. Open the Event Manager by clicking on the Event Manager tab 2. Create an Event in the Event Manager called PassRS232 a. Name: PassRS232 b. Type: Serial c. Origin: Port1 d. Trigger: \g Note: I the strings to be passed have a terminating character, i.e. strings ending in a [CR] (0x0Dh) or [LF] (0x0Ah) a more efficient method is to enter *[terminating character] i.e. *%0D instead of \g 3. Create an Action for the PassRS232 Event a. Name: PassRS232 b. Type: Serial c. Output to: Port2 d. Output Value: \g In this way all data that enters Serial Port 1 will pass out through Serial Port 2. 15

Actiontec GT784WN Router

Actiontec GT784WN Router Table of Contents General Information...1 Verify Computer Settings...1 Router Installation...3 Configuring Your Router...3 Configuring Your Computer...7 Configuring Your Email...9 General Information Router

More information

ON HOLD ANNOUNCER. Once you receive your audio announcer, check the packaging to ensure that all of the following items are enclosed:

ON HOLD ANNOUNCER. Once you receive your audio announcer, check the packaging to ensure that all of the following items are enclosed: ON HOLD ANNOUNCER The is a high quality digital on-hold announcer. It is designed to be attached to a 100BASE-T Ethernet network to receive audio production updates via the Internet. These instructions

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

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

You may refer the Quick Installation Guide in the package box for more information.

You may refer the Quick Installation Guide in the package box for more information. Hardware Installation: 1. Turn off your modem. 2. Use one Ethernet cable to connect your modem to WAN port (Blue) port of BR-6228nC. 3. Use another Ethernet cable to connect your PC to one LAN Port (Yellow)

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

DVG-2101SP VoIP Telephone Adapter

DVG-2101SP VoIP Telephone Adapter This product can be set up using any current web browser, i.e., Internet Explorer 6 or Netscape Navigator 6.2.3. DVG-2101SP VoIP Telephone Adapter Before You Begin 1. If you purchased this VoIP Telephone

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

If you need additional assistance please contact our Technical Support Center at 24 hours a day, 7 days a week.

If you need additional assistance please contact our Technical Support Center at 24 hours a day, 7 days a week. Cisco SPA 2100 Phone Adapter Installation Manual Index Installation of the Cisco SPA 2100 Phone Adapter to NationPhone P. 1 Index, before you begin, and what is included P.2 Installing the NationPhone

More information

While every effort was made to verify the following information, no warranty of accuracy or usability is expressed or implied.

While every effort was made to verify the following information, no warranty of accuracy or usability is expressed or implied. AG082411 Objective: How to set up a 3G connection using Static and Dynamic IP addressing Equipment: SITRANS RD500 Multitech rcell MTCBAH4EN2 modem PC with Ethernet card Internet explorer 6.0 or higher

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

IP Power Stone 4000 User Manual

IP Power Stone 4000 User Manual IP Power Stone 4000 User Manual Two Outlet Remote AC Power Controller Multi Link, Inc. 122 Dewey Drive Nicholasville, KY 40356 USA Sales and Tech Support 800.535.4651 FAX 859.885.6619 techsupport@multi

More information

Prestige 650R-31/33 Read Me First

Prestige 650R-31/33 Read Me First Prestige 650R-31/33 Read Me First Prestige Rear Panel Connections PORT DSL CONSOLE LAN 10/100M POWER Connect to a telephone jack using a telephone wire. CONNECTION Connect to a serial port (COM port) on

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

Quick Installation Guide DSL-2750U/NRU. 3G/ADSL/Ethernet Router with Wi-Fi and Built-in Switch

Quick Installation Guide DSL-2750U/NRU. 3G/ADSL/Ethernet Router with Wi-Fi and Built-in Switch DSL-2750U/NRU 3G/ADSL/Ethernet Router with Wi-Fi and Built-in Switch BEFORE YOU BEGIN Delivery Package Router DSL-2750U/NRU Power adapter RJ-11 telephone cable Straight-through Ethernet cable (CAT 5E)

More information

Prestige 314 Read Me First

Prestige 314 Read Me First Prestige 314 Read Me First Console WAN 10M PORT Prestige Rear Panel Connections CONNECTION Use an RS-232 console cable. Use the cable that came with your broadband modem. LAN 10/100M Port Number COMPUTER

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

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

STATIC IP SET UP GUIDE VERIZON 7500 WIRELESS ROUTER/MODEM

STATIC IP SET UP GUIDE VERIZON 7500 WIRELESS ROUTER/MODEM STATIC IP SET UP GUIDE VERIZON 7500 WIRELESS ROUTER/MODEM Verizon High Speed Internet for Business Verizon High Speed Internet for Business SETTING UP YOUR NEW STATIC IP CONNECTION AND IP ADDRESS(ES) This

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

Ethernet. Customer Provided Equipment Configuring the Ethernet port.

Ethernet. Customer Provided Equipment Configuring the Ethernet port. Installing the RDSP-3000A-NIST Master Clock. Ethernet Connect the RJ-45 connector to a TCP/IP network. Equipment The following equipment comes with the clock system: RDSP-3000A-NIST Master Clock Module.

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

Quick Start Guide. RV 120W Wireless-N VPN Firewall. Cisco Small Business

Quick Start Guide. RV 120W Wireless-N VPN Firewall. Cisco Small Business Quick Start Guide Cisco Small Business RV 120W Wireless-N VPN Firewall Package Contents Wireless-N VPN Firewall Ethernet Cable Power Adapter Quick Start Guide Documentation and Software on CD-ROM Welcome

More information

PePWave Surf Series PePWave Surf Indoor Series: Surf 200, AP 200, AP 400

PePWave Surf Series PePWave Surf Indoor Series: Surf 200, AP 200, AP 400 PePWave Surf Series PePWave Surf Indoor Series: Surf 200, AP 200, AP 400 PePWave Surf Outdoor Series: Surf AP 200/400-X, PolePoint 400-X, Surf 400-DX User Manual Document Rev. 1.2 July 07 COPYRIGHT & TRADEMARKS

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

1 Serial RS232 to Ethernet Adapter Installation Guide

1 Serial RS232 to Ethernet Adapter Installation Guide Installation Guide 10/100 Mbps LED (amber color ) Link/Activity LED (green color ) 1. Introduction Thank you for purchasing this 1-port RS232 to Ethernet Adapter (hereinafter referred to as Adapter ).

More information

Prestige 2002 Series. VoIP Analog Telephone Adaptor. Quick Start Guide

Prestige 2002 Series. VoIP Analog Telephone Adaptor. Quick Start Guide VoIP Analog Telephone Adaptor Quick Start Guide Version 3.60 5/2005 Overview The Prestige allows you to use an analog telephone to make phone calls over the Internet (Voice over IP or VoIP). It uses SIP

More information

Please use only wired network connections to configure the router.

Please use only wired network connections to configure the router. Note Please use only wired network connections to configure the router. Connect the WAN port on your Router to the Modem s LAN port with an Ethernet cable. Note If connecting the TL-WR543G to the WISP

More information

Turn off all of your network devices, including your computer, Modem and the Router.

Turn off all of your network devices, including your computer, Modem and the Router. Note Please use only wired network connections to configure the Router. Turn off all of your network devices, including your computer, Modem and the Router. Connect the WAN port on your Router to the Modem

More information

Home Wi-Fi Gateway Instructions

Home Wi-Fi Gateway Instructions Home Wi-Fi Gateway Instructions 1. Connect the gateway. Use the coaxial cable provided by BendBroadband to connect the cable port (A) to your cable outlet. 2. Connect your computer to the cable modem gateway

More information

Turn off all of your network devices, including your computer, Modem and the Router.

Turn off all of your network devices, including your computer, Modem and the Router. Note The product model shown in this part is TL-R460, as an example. Turn off all of your network devices, including your computer, Modem and the Router. Connect the WAN port on your Router to the Modem

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

Enabling Internet Connection Sharing on Windows 2000 15. Enabling ICS On Windows XP As The Host 4 Enabling ICS On Windows XP As The Client 11

Enabling Internet Connection Sharing on Windows 2000 15. Enabling ICS On Windows XP As The Host 4 Enabling ICS On Windows XP As The Client 11 Sharing an Internet Connection with SatDirect Plus Table of Contents Contents Section 1: Section 2: Section 3: Introduction... 1 Physical Setup......2 Enabling Internet Connection Sharing on Windows XP

More information

Debugging Network Communications. 1 Check the Network Cabling

Debugging Network Communications. 1 Check the Network Cabling Debugging Network Communications Situation: you have a computer and your NetBurner device on a network, but you cannot communicate between the two. This application note provides a set of debugging steps

More information

TELUS Internet set up guide. Read me first

TELUS Internet set up guide. Read me first TELUS Internet set up guide Read me first Welcome Thank you for choosing TELUS. The 8 simple steps in this guide will help you set up your wireless gateway and quickly connect to the Internet. If you have

More information

Model:BL-WDR3750 750Mbps Wireless Dual Band 11AC Router

Model:BL-WDR3750 750Mbps Wireless Dual Band 11AC Router Quick Installation Guide Model:BL-WDR3750 750Mbps Wireless Dual Band 11AC Router 1.Connecting the device Note: Please use wired network connections only to configure the Router. 1 Connect the WAN port

More information

Full Install Setup Guide Actiontec F2250 Gateway

Full Install Setup Guide Actiontec F2250 Gateway Full Install Setup Guide tec F2250 Gateway ACTIONTEC F2250 GATEWAY... 2 OVERVIEW... 2 AVAILABLE TRAINING... 2 REQUIRED INSTALL STEPS... 2 GOOD THINGS TO KNOW... 2 SETUP GUIDE: RESIDENTIAL, DYNAMIC AND

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

TP-LINK TD-W8901G. Wireless Modem Router. Advanced Troubleshooting Guide

TP-LINK TD-W8901G. Wireless Modem Router. Advanced Troubleshooting Guide TP-LINK TD-W8901G Wireless Modem Router Advanced Troubleshooting Guide Released on 2009.09.25 Version 1.0 Content Summary... 3 Troubleshooting Flow Chart and Resolutions... 3 Check 1... 3 Check 2... 4

More information

BASLER ACE QUICK INSTALLATION GUIDE

BASLER ACE QUICK INSTALLATION GUIDE BASLER ACE QUICK INSTALLATION GUIDE Rev. 01 Quick installation Guide V1 1 Introduction The installation procedures in this guide assume that you want to get your camera operational and begin capturing

More information

DSL Installation Guide

DSL Installation Guide DSL Installation Guide Thank you for choosing Integra Telecom s DSL service! Introduction This guide will walk you through the DSL installation process and will help you configure a computer to access

More information

Quick Installation Guide DIR-620. Multifunction Wireless Router Supporting GSM, CDMA, WiMAX with Built-in 4-port Switch

Quick Installation Guide DIR-620. Multifunction Wireless Router Supporting GSM, CDMA, WiMAX with Built-in 4-port Switch DIR-620 Multifunction Wireless Router Supporting GSM, CDMA, WiMAX with Built-in 4-port Switch BEFORE YOU BEGIN Delivery Package Multifunction wireless router DIR-620 Power adapter DC 5V/2.5A Ethernet cable

More information

DSL- G604T Frequently asked Questions.

DSL- G604T Frequently asked Questions. DSL- G604T Frequently asked Questions. Cannot get connection to the router.... 2 Router is not communicating with the ISP... 6 Router shows connected but cannot browse the Internet.... 6 Part of the web

More information

Kramer Electronics, Ltd. Site-CTRL and Web Access Online User Guide (Documentation Revision 2)

Kramer Electronics, Ltd. Site-CTRL and Web Access Online User Guide (Documentation Revision 2) Kramer Electronics, Ltd. Site-CTRL and Web Access Online User Guide (Documentation Revision 2) Software Version 1.9. 2902 To check that you have the latest version, go to the DOWNLOADS section of our Web

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

Chapter 7 Troubleshooting

Chapter 7 Troubleshooting Chapter 7 Troubleshooting This chapter provides troubleshooting tips and information for your ProSafe VPN Firewall 200. After each problem description, instructions are provided to help you diagnose and

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

Connecting to the Internet. LAN Hardware Requirements. Computer Requirements. LAN Configuration Requirements

Connecting to the Internet. LAN Hardware Requirements. Computer Requirements. LAN Configuration Requirements Connecting to the Internet LAN Hardware Requirements Computer Requirements LAN Configuration Requirements Installation Performed by Time Warner Cable Technician Connecting via Ethernet Connecting via USB

More information

DRO-210i LOAD BALANCING ROUTER. Review Package Contents

DRO-210i LOAD BALANCING ROUTER. Review Package Contents DRO-210i LOAD BALANCING ROUTER Review Package Contents Make sure that the package contains the following items. DRO-210i Load Balancing Router 2 Straight Ethernet Cables 1 Cross Over Ethernet Cable 1 Power

More information

ACT High Speed WiMAX Internet

ACT High Speed WiMAX Internet ACT High Speed WiMAX Internet Internet Configuration Manual This manual walks you through the steps of configuring your computer for High Speed WiMAX Internet service with Windows 7, Vista, XP, 2000, And

More information

DI-634M. Check Your Package Contents. This product can be set up using any current web browser, i.e., Internet Explorer 6 or Netscape Navigator 7.

DI-634M. Check Your Package Contents. This product can be set up using any current web browser, i.e., Internet Explorer 6 or Netscape Navigator 7. This product can be set up using any current web browser, i.e., Internet Explorer 6 or Netscape Navigator 7. DI-634M 108G MIMO Wireless Router Before You Begin 1. If you purchased this router to share

More information

Chapter 1 Installing the Gateway

Chapter 1 Installing the Gateway Chapter 1 Installing the Gateway This chapter describes how to set up the wireless voice gateway on your Local Area Network (LAN), connect to the Internet, and perform basic configuration. For information

More information

DNS-312H Network Attached Storage

DNS-312H Network Attached Storage This product can be set up using any current web browser, i.e., Internet Explorer 5x, and Netscape Navigator 4x or above. DNS-312H Network Attached Storage Before You Begin 1. If you purchased this storage

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

DOORKING SYSTEMS 1830 SERIES NETWORK WORKSHOP LAN APPLICATIONS ACCESS CONTROL SOLUTIONS LOCAL AREA NETWORK (LAN) CONNECTION REV 04.

DOORKING SYSTEMS 1830 SERIES NETWORK WORKSHOP LAN APPLICATIONS ACCESS CONTROL SOLUTIONS LOCAL AREA NETWORK (LAN) CONNECTION REV 04. DOORKING SYSTEMS ACCESS CONTROL SOLUTIONS 1830 SERIES NETWORK WORKSHOP LAN APPLICATIONS REV 04.11 LOCAL AREA NETWORK (LAN) CONNECTION Ethernet Connection: An Ethernet Cable, or wireless connection must

More information

Wireless G Broadband quick install

Wireless G Broadband quick install Wireless G Broadband Router quick install guide Model 503693 INT-503693-QIG-0608-02 Thank you for purchasing the INTELLINET NETWORK SOLUTIONS Wireless G Broadband Router, Model 503693. This quick install

More information

Starting Guide - Poseidon 3265 First steps for remote monitoring with Poseidon & GSM

Starting Guide - Poseidon 3265 First steps for remote monitoring with Poseidon & GSM Poseidon 3265 starting guide Poseidon 3265 Starting Guide - Poseidon 3265 First steps for remote monitoring with Poseidon & GSM 1) Connecting Poseidon 3265 1.1) Check DIP switches settings. For installation

More information

Please use only wired network connections to configure the Router.

Please use only wired network connections to configure the Router. Note Please use only wired network connections to configure the Router. Power down all of your network devices, including your computer(s) and the Modem Router. If you currently use a modem, disconnect

More information

Setting up Digi Connect Wi-SP or Digi ConnectPort TS W Devices On a Secured Wireless Network for use with Veriteq viewlinc

Setting up Digi Connect Wi-SP or Digi ConnectPort TS W Devices On a Secured Wireless Network for use with Veriteq viewlinc Setting up Digi Connect Wi-SP or Digi ConnectPort TS W Devices On a Secured Wireless Network for use with Veriteq viewlinc Contents Before You Start the Installation...2 Introduction...2 Veriteq vnet and

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

Additional Requirements for ARES-G2 / RSA-G2. One Ethernet 10 Base T/100 Base TX network card required for communication with the instrument.

Additional Requirements for ARES-G2 / RSA-G2. One Ethernet 10 Base T/100 Base TX network card required for communication with the instrument. TA Instruments TRIOS Software Installation Instructions Installation Requirements Your TRIOS Instrument Control software includes all the components necessary to install or update the TRIOS software, as

More information

GV-Data Capture V3 Series User's Manual

GV-Data Capture V3 Series User's Manual GV-Data Capture V3 Series User's Manual Before attempting to connect or operate this product, please read these instructions carefully and save this manual for future use. 2006 GeoVision, Inc. All rights

More information

Prestige 202H Plus. Quick Start Guide. ISDN Internet Access Router. Version 3.40 12/2004

Prestige 202H Plus. Quick Start Guide. ISDN Internet Access Router. Version 3.40 12/2004 Prestige 202H Plus ISDN Internet Access Router Quick Start Guide Version 3.40 12/2004 Table of Contents 1 Introducing the Prestige...3 2 Hardware Installation...4 2.1 Rear Panel...4 2.2 The Front Panel

More information

Software Installation Guide

Software Installation Guide Software Installation Guide This manual explains how to install the software over a USB or network connection. Network connection is not available for models SP 200/200S/203S/203SF/204SF. Flowchart The

More information

Quick Installation Guide DAP-1360. Wireless N 300 Access Point & Router

Quick Installation Guide DAP-1360. Wireless N 300 Access Point & Router DAP-1360 Wireless N 300 Access Point & Router BEFORE YOU BEGIN Delivery Package Access point DAP-1360 Power adapter DC 12V Ethernet cable (CAT 5E) (brochure). If any of the items are missing, please contact

More information

Manual Wireless Extender Setup Instructions. Before you start, there are two things you will need. 1. Laptop computer 2. Router s security key

Manual Wireless Extender Setup Instructions. Before you start, there are two things you will need. 1. Laptop computer 2. Router s security key 1 Manual Wireless Extender Setup Instructions Before you start, there are two things you will need. 1. Laptop computer 2. Router s security key Setting up LAN Static IP on PC We need to set up a Static

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 DSL-2750U. 3G/ADSL/Ethernet Router with Wi-Fi and Built-in Switch

Quick Installation Guide DSL-2750U. 3G/ADSL/Ethernet Router with Wi-Fi and Built-in Switch DSL-2750U 3G/ADSL/Ethernet Router with Wi-Fi and Built-in Switch BEFORE YOU BEGIN Delivery Package Router DSL-2750U Power adapter DC 12V/1A RJ-11 telephone cable Ethernet cable (CAT 5E) Splitter (brochure).

More information

Volume. Instruction Manual

Volume. Instruction Manual Volume 1 Instruction Manual Networking EVERFOCUS ELECTRONICS CORPORATION Networking Instruction Guide 2004 Everfocus Electronics Corp 2445 Huntington Drive Phone 626.844.8888 Fax 626.844.8838 All rights

More information

If no telephone is needed, please connect the LINE port of the Modem Router to the wall jack using the telephone line directly.

If no telephone is needed, please connect the LINE port of the Modem Router to the wall jack using the telephone line directly. Note Please use only wired network connections to configure the Router. Power down all of your network devices, including your computer(s) and the Modem Router. If you currently use a modem, disconnect

More information

Business Wireless Internet quick install guide

Business Wireless Internet quick install guide Read me first Business Wireless Internet quick install guide Wi-Fi and email set-up instructions included Actiontec Wireless Gateway TELUS Internet account information Record your personal account information

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

Internet Guide. Prepared for 55 John Street

Internet Guide. Prepared for 55 John Street Internet Guide Prepared for 55 John Street I. Internet Service How do I connect to the Internet? WiFi (Wireless Connectivity) is available throughout the building. In order to connect, you will need a

More information

Configuring NXT Hardware with Mercury Inside into Doors.NET TM Application Note

Configuring NXT Hardware with Mercury Inside into Doors.NET TM Application Note 1.0 Installing the Mercury SCP Gateway The MSC/SCP gateway must be installed to interface with Mercury hardware. This gateway must be chosen during the installation of the software, or it can be added

More information

Installation. Note Please use only wired network connections to configure the router.

Installation. Note Please use only wired network connections to configure the router. Installation Note Please use only wired network connections to configure the router. Power down all your network devices, including your computer(s) and the Modem Router. If you currently use a modem,

More information

Quick Note 32. Using Digi RealPort with a Digi TransPort Router. UK Support September 2012

Quick Note 32. Using Digi RealPort with a Digi TransPort Router. UK Support September 2012 Quick Note 32 Using Digi RealPort with a Digi TransPort Router UK Support September 2012 1 Contents 1 Introduction... 3 1.1 Outline... 3 1.2 Assumptions... 3 1.3 Version... 3 2 Configuration & scenario...

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

1 You will need the following items to get started:

1 You will need the following items to get started: QUICKSTART GUIDE 1 Getting Started You will need the following items to get started: A desktop or laptop computer Two ethernet cables (one ethernet cable is shipped with the _ Blocker, and you must provide

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

Chapter 2 Preparing Your Network

Chapter 2 Preparing Your Network Chapter 2 Preparing Your Network This document describes how to prepare your network to connect to the Internet through a router and how to verify the readiness of your broadband Internet service from

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

ADSL MODEM. User Manual V1.0

ADSL MODEM. User Manual V1.0 ADSL MODEM User Manual V1.0 CONTENTS 1.OVERVIEW... 3 1.1 ABOUT ADSL... 3 1.2 ABOUT ADSL2/2+... 3 1.3 FEATURES... 3 2 SPECIFICATION... 4 2.1 INTERFACE INTRODUCTION... 4 2.1.1 INDICATOR AND INTERFACE...

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

Internet for Everyone In-Room Instructions January 2011 Version 1.3

Internet for Everyone In-Room Instructions January 2011 Version 1.3 Internet for Everyone In-Room Instructions January 2011 Version 1.3 Everywhere Internet 2006 Page 1 of 17 Connecting your computer to the Everywhere Internet network in your room 1. You need a network

More information

Section 5: Installing the Print Driver

Section 5: Installing the Print Driver Section 5: Installing the Print Driver In This Section Print Driver Installation for USB Connection Using the Ethernet Connection and a Crossover Cable Print Driver: The Epilog print driver is the software

More information

Prestige 2302R Series

Prestige 2302R Series VoIP Station Gateway Quick Start Guide Version 3.60 6/2005 Overview This Quick Start Guide covers the Prestige (P2302R) and (P2302RL) models. It explains how to use your Prestige to make phone calls through

More information

Wireless Presentation System User s Manual

Wireless Presentation System User s Manual Wireless Presentation System User s Manual (Model Name: WPS-Dongle) Version: 3.0 Date: August 19, 2009 Table of Contents 1. Overview...3 2. Quick Start...4 3. Windows Client Utility...7 3.1 Starting Program...7

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

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

Broadband Phone Gateway BPG510 Technical Users Guide

Broadband Phone Gateway BPG510 Technical Users Guide Broadband Phone Gateway BPG510 Technical Users Guide (Firmware version 0.14.1 and later) Revision 1.0 2006, 8x8 Inc. Table of Contents About your Broadband Phone Gateway (BPG510)... 4 Opening the BPG510's

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

Hands-on MESH Network Exercise Workbook

Hands-on MESH Network Exercise Workbook Hands-on MESH Network Exercise Workbook Santa Clara County RACES Date: 18 March 2015 Version: 1.0 scco_wifi_intro_exonly_v150318.docx 1 Table of Contents HANDS ON! Exercise #1: Looking at your Network

More information

Internet Access to a DVR365

Internet Access to a DVR365 Configuration Details : Internet Access to DVR365 Page : 1 Internet Access to a DVR365 These instructions will show you how to connect your DVR365 to the internet via an ADSL broadband modem/router. The

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

Static Business Class HSI Basic Installation NETGEAR 7550

Static Business Class HSI Basic Installation NETGEAR 7550 Static Business Class HSI Basic Installation Table of Contents Multiple LAN Support... 3 Full BHSI Install Summary... 7 Physical Connections... 8 Auto Configuration... 9 Auto Configuration... 9 Gateway

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

Option nv, Gaston Geenslaan 14, B-3001 Leuven Tel +32 16 317 411 Fax +32 16 207 164 http://www.option.com Page 1 of 14

Option nv, Gaston Geenslaan 14, B-3001 Leuven Tel +32 16 317 411 Fax +32 16 207 164 http://www.option.com Page 1 of 14 Page 1 of 14 ! " #!"#$ % &&' Page 2 of 14 1 INTRODUCTION One of the highly desirable features of the GlobeSurfer III device is the ability to network together Printers and External Hard Disk drives (aka

More information

3.5 Mobile LAN Disk. User Guide

3.5 Mobile LAN Disk. User Guide 3.5 Mobile LAN Disk User Guide Contents 1. Hardware...2 1.1 Power...2 1.2 Ports...2 1.3 Reset Button...2 1.4 LEDs...2 1.5 Front View...3 1.6 Rear View...3 2. Installation....... 4 2.1 Requirements 4 2.2

More information

4-441-095-12 (1) Network Camera

4-441-095-12 (1) Network Camera 4-441-095-12 (1) Network Camera SNC easy IP setup Guide Software Version 1.0 Before operating the unit, please read this manual thoroughly and retain it for future reference. 2012 Sony Corporation Table

More information