Developing Networked Data Acquisition Systems with NI-DAQ

Size: px
Start display at page:

Download "Developing Networked Data Acquisition Systems with NI-DAQ"

Transcription

1 Application Note 116 Developing Networked Data Acquisition Systems with NI-DAQ Tim Hayles What Is Remote Device Access? With the NI-DAQ Remote Device Access (RDA ) feature, you can run LabVIEW or LabWindows /CVI programs that access and control National Instruments data acquisition devices located in other computers on your network. Programs written in LabVIEW or in the CVI Easy I/O library need no modifications to use this feature. Access to remote devices is transparent to your program. There is nothing new to learn. Take advantage of your existing network infrastructure and your existing programming investment to install a remote data acquisition system. RDA works on every product controlled by NI-DAQ for Windows. The term RDA Client refers to the computer in front of you. This computer must be running a LabVIEW or CVI Easy I/O application and have NI-DAQ 6.0 or later installed. It does not need to have any DAQ hardware installed. The term RDA Server refers to the computer elsewhere on the network. This computer must have NI-DAQ 6.0 or later and some DAQ hardware installed. It does not need any application software installed. What Can I Do with RDA? Basically, you can do anything with a DAQ board installed in an RDA Server elsewhere on your network that you can do with it installed in the computer in front of you. If you have written the DAQ portion of your application in LabVIEW or in the CVI Easy I/O Library, that application will work remotely over the network immediately after installing NI-DAQ. You can take snapshots of data remotely and analyze and display the data locally. You can easily collect data from two or more remote computers for analysis and display on a single local computer. You can send analog and digital data to your remote computer(s) for purposes of remote control. RDA works with the Internet. However, sometimes you encounter firewalls that won t let you connect. If you don t have an existing network to plug into, you can easily create your own local network. See the section below entitled Creating Your Own Local Network for details. Transfer rates across the network via RDA may surprise you. During testing, we have routinely run the Cont Acq&Chart (buffered).vi at 100,000 scans/s, scanning a single channel. Ordinarily this is not cause for celebration. However, when the VI is running on one computer and the MIO board is in another computer and both machines are using an ordinary network connection for communication, it is! Your own maximum transfer rates will depend on the speed of your network and amount of traffic on it, as well as the speed of the computers used. Product and company names are trademarks or trade names of their respective companies A-01 Copyright 1998 National Instruments Corporation. All rights reserved. March 1998

2 We have acquired data from an RDA Server in Austin using RDA Clients from as far away as Japan and Australia. It took about three seconds from the click of the LabVIEW Run arrow for the 1000 data points acquired in Austin to appear on the computer in Japan. The time to actually acquire the data in Austin was about 10 ms. A single RDA Client can access remote devices in several RDA servers. You are able to monitor conditions at many places from a single computer. The RDA Client can use a local DAQ board as well. A remote device in an RDA server can be used by several RDA clients. There are some considerations to keep in mind, however. For example, if client A configures Analog Input Channel 3 in group 0, and client B configures Analog Input Channel 5 on the same remote device and also using group 0, the readings taken by client A will be from channel 5 and not channel 3. Both clients will be passing the same taskid to the server. If both clients are reading from the same channel using immediate I/O, things will work fine. Buffered I/O is more of a problem for multiple accesses because of its asynchronous nature. If client B calls AI Group Config on the remote device after client A has called AI Control to start its acquisition, the client A acquisition will be halted. Ordinarily, the NI-DAQ per-process state tables would prevent this sort of interference. However, every call to NI-DAQ on the server comes from the same process, the NI-DAQ RDA Server executable. So, even though the different calls may originate from different computers, they all look as though they are coming from the same place to NI-DAQ installed on the RDA server. Here is one scenario that takes advantage of this behavior. If you start a continuous acquisition on an RDA server from a client using group number 0 in the call to AI Group Config, then any number of clients can call AI Buffer Read to read data from the server. They need only to use the device number (whichever local device number they have assigned on that client to the remote device on the server) in the calls. The clients must account for the fact that NI-DAQ on the server is maintaining only one read pointer for the acquisition buffer. Unless the clients work around this, each read will advance the read pointer on the server computer and the reads will not begin where a client believes they should. To work around this situation, each client needs only to remember the value of the read mark scan in the mark locations cluster in the AI Buffer Read vi after its call. Then, with each subsequent call, each client will reposition the read mark there again by setting the read/search mode to relative to start of buffer and the read/search offset to the desired position. Both of these controls are in the read/search location cluster of AI Buffer Read vi. How Does It Work? RDA extends the NI-DAQ model across the network. Upon receiving a call from LabVIEW or the CVI Easy I/O Library, one of the first things NI-DAQ does is to check the device number and decide which family of products this device belongs to. We have added remote devices as another product family. Any National Instruments DAQ product can belong to the remote family. When NI-DAQ sees that the device is remote, the call is packaged up and sent via Remote Procedure Calls (RPC) (see Technical Background section) to the remote computer. There, the RDA Server application receives the call, unpackages it and sends it to NI-DAQ, this time on the remote computer. To NI-DAQ on the remote computer, the call is a normal NI-DAQ call. The device number used on the remote computer is the actual device number of the board. When NI-DAQ checks the device number on the remote computer to see which family of products it belongs to, it does not come up with the answer remote device. Rather, it sees that this is a PCI-MIO device, or a USB device, etc. The call then executes normally on the remote computer. When it is finished, the results are sent back to the client computer and back to LabVIEW or CVI. This process is totally transparent to you! How Do I Use It? If you have a TCP/IP based network already at your facility you are ready to go. Just follow these instructions. If not, then skip to the section entitled Creating Your Own Local Network and then come back here. You must designate one or more computers, running Windows 95 or Windows NT 4.0, as NI-DAQ RDA Servers. These computers must be connected to a network using the TCP\IP protocol. You must know either the name or the IP address of these computers. 2

3 Follow these steps to turn an ordinary computer into an NI-DAQ RDA Server. 1. Install NI-DAQ. 2. Install and configure your data acquisition devices. 3. Make sure your devices are working properly by testing their resources with the Test Panels. 4. Launch the NI-DAQ RDA Server Utility. A shortcut to this utility is in your Start menu under the NI-DAQ for Windows selection. If you want this computer to become an RDA server every time it starts up, place a shortcut to the NI-DAQ RDA Server Utility in your Startup folder. There is no interface to interact with. The window will say only that the RDA Server is in operation. Next, you must designate one or more computers, running Windows 95 or Windows NT 4.0, as NI-DAQ RDA Clients. These computers also must be connected to a network using TCP\IP protocol. Follow these steps to turn an ordinary computer into an NI-DAQ RDA Client. 1. Install either LabVIEW or LabWindows/CVI. 2. Install NI-DAQ. 3. Start the NI-DAQ RDA Configuration Utility. A shortcut to this utility is in your Start menu under the NI-DAQ for Windows selection. Note: Beginning with NI-DAQ 6.1, the RDA Configuration Utility will not exist as a stand-alone executable. Instead, it has become another tab in the NI-DAQ Configuration Utility tabbed dialog interface. So, if you have NI-DAQ 6.1 or newer, launch the NI-DAQ Configuration Utility and select the tab marked RDA Devices. 4. Locate the computer that you have turned into an RDA Server using either of the following steps: If you know the name or the IP address of the RDA Server computer, simply enter it into the Remote Name/IP Address field of the RDA Configuration Utility and click on the Connect button. Use the network tree interface at the left of the utility to explore your network (or click the Browse button if you are using NI-DAQ 6.1 or newer). Click on the Network label to reveal your network names and continue clicking to find your domain names and computer names. When you find the name of the computer you need, highlight it by clicking once on its name. The name will appear in the Remote Name/IP Address field. Now, click on the Connect button. Or, if you already know the computer name, just type it in and connect. If you also know the domain name, you can append it to the computer name as well (example: mycomputer.natinst.com). 5. Once you have connected to your RDA server, a list of remote devices installed on that server appears in the box on the lower right of the utility. Select one of these devices by clicking once on its listing (you must click on the entry in the Remote Device # column) and then click on the Assign button. A dialog box will appear with a list of possible local device numbers. Select one of these and click on OK. Then click on Exit and you are done. The local device number you have chosen will be the one you will use in your local programs. 6. If you wish to connect to a different computer, click on the Disconnect button (instead of Exit) and follow step 4 to connect tor another computer. Once you have finished these steps you are ready to go. You can write an application that uses a single remote device, multiple remote devices on a single remote computer, multiple remote devices on multiple remote computers, or all of the above plus devices in your local computer. All of the DAQ or Easy I/O Library example programs will work with RDA. If you wish to undo your local device number assignment to a remote device, first start the RDA Configuration Utility. Disconnect from the remote computer to which you are connected. The box on the lower right lists the remote devices currently configured on your RDA client when the RDA Configuration Utility is not connected to an RDA Server. Highlight the device you want to undo and click on the Delete button. 3

4 Creating Your Own Local Network What if you do not have an Internet connection or some kind of local area network already in your building? Well, you can rather easily network two or more computers directly to form your own local area network. First, you need to buy plug-in network adapter cards for each computer. There are many vendors who make reliable network adapter cards. Some PCs even have these adapters built into the motherboard. Ethernet adapters come with various types of connectors twisted-pair (looks like big modular phone jacks), coaxial, or AUI (looks like serial port). All these types will work with RDA, but this note covers only twisted-pair wiring. If you are connecting only two computers (just one RDA server and one RDA client), you can get by with connecting the computers to each other directly with a special crossover cable. You can purchase such a cable for about $15 at a computer store. The pinouts on each end do not match, similar to a null-modem cable. These cables are terminated with RJ-45 jacks. They are identical to normal twisted pair 10Base-T cables except for the different pinouts at either end. You can build such a cable yourself if you follow this wiring: pin 1 3, 2 6, 3 1, 6 2. Some 100 Mbp (100Base-T) networks do not work with crossover cables. If you are connecting more than two computers, or you want the option of expanding in the future, you will need to buy a hub. Reliable hubs are available from many vendors. A hub typically has four to 16 ports (sometimes even more). With a 4-port hub, you can connect four computers together. Maximum length for 10Base-T connections is 100 m from hub to PC. That makes 200 m safe between two PCs. Cables come with different ratings. Consider using Category 5 cables, which are commonly available and not much more expensive than cables with inferior ratings. 100Base-T Ethernets (Fast Ethernets) are becoming common. These networks transfer data at 100 Mbps instead of 10 Mbps, but they require 100Base-T hubs. Because your computers are not on the network, you will have to assign them IP addresses. Go to the Control Panel, open the Network applet and double-click on the TCP/IP entry. If you do not see the TCP/IP entry, you will need to add that protocol using the Windows 95 CD. Select Specify an IP address and enter something like the following: IP Address: Subnet mask: Because your computers are not part of a larger network, you can assign any IP address you want. However, there are some IP Addresses and Submasks that are special. Implications of certain special IP Addresses and Subnet masks are beyond the scope of this article. So if you do not have any reason to set these addresses to something else, save yourself some headaches and use these suggested numbers. Now reboot both your client and server computers. The first three addresses of your client and server should have the same numbers ( in this example). Afterwards, you should be able to connect to your RDA server by entering its IP address into the RDA Configuration dialog on the client. For an independent way to test the TCP/IP connection you have just made, use the ping command. Type ping where is the IP of the other computer. If you receive four replies of 32 bytes each from your other computer, the connection is good. SCXI Considerations The RDA configuration utility will show you which DAQ products that have device numbers on your RDA servers. Once you assign a local device number you no longer need to know what the actual device number is on the remote machine. However, the RDA configuration utility will not tell you anything about any SCXI products configured on your RDA server. 4

5 When you want to use SCXI equipment on a remote computer via RDA from a local computer, you will have to use the exact chassis IDs and module slot numbers that are assigned to the SCXI products on the remote computer. For example, lets say you have an SCXI-1100 in module slot 3 in an SCXI-1000 chassis with chassis ID 2 connected to a PCI-MIO card with device number 1 on a remote computer. Running the RDA configuration utility on the client computer you assign the remote PCI-MIO card a local device number of 10. Then you run Acquire N Scans. You enter your device number of 10. The channel string you enter must be sc2!md3!ch0. Thus, you must remember your SCXI configurations on your RDA servers when you use SCXI in a program on an RDA client. There is a special consideration when using any of the SCXI-116x digital modules via RDA. The taskid produced by the DIO Port Config.vi for an SCXI-116x module does not have the local device number embedded in it. In place of the device number, NI-DAQ places the SCXI chassis ID number. We made this change when we eliminated the limit of 16 SCXI-116x devices that are usable at one time. NI-DAQ uses the SCXI chassis ID to look up the local device number. So, if you have more than one server that has an SCXI chassis containing SCXI-116x modules, you must assign unique chassis IDs to all of them. Because there are more than 32,000 chassis IDs to go around, this should not be a problem. Channel Wizard Considerations To use the Channel Wizard in an RDA application you must remember to follow two rules. 1. Run the Channel Wizard on the RDA server (not the RDA client). 2. When you use the named channels in your application on your RDA client, you must also supply the local device number of the device on the RDA server. Let s say you have a PCI-MIO on your server. You configure a named channel on your server called channel 1. Next, you run the RDA config utility on your client. You assign a local device number of 10 to that PCI-MIO on your server. Now, you want to run Acquire N Scans and you want to use the named channel. To do so, just be sure to enter the local device number of 10 into the device control. Type in the named channel ( channel 1 ) into the channel string and run. The reason you must use the local device number even though you are using named channels is that the information needed by NI-DAQ to translate the named channel to a device number and a channel number exists only on the server. In order for NI-DAQ to realize the call is supposed to go to a server it must have access to the local device number. You cannot use the Channel Wizard on your client to configure named channels on a server because the Channel Wizard is unaware of any remote devices. What Are the Precautions? To use RDA, the computers must be running Windows 95 and/or Windows NT 4.0 (any combination will do) and the network protocol used must be TCP/IP. Although programs need no modifications to use RDA, there are four VIs that are not supported. The DAQ Occurrence Config vi is not supported, thus, if your program uses the messaging feature of NI-DAQ, it will not work properly when run on a remote device. Get SCXI Information, SCXI Cal Constants, and Set SCXI Information are also not supported. If your program uses one of these it may not work properly when run on remote devices. However, acquisition and control with SCXI products is fully compatible with RDA along with all other PCI, PXI, PCMCIA, USB, ISA, VXI, and parallel port products. NI-DAQ does not attempt to connect to the RDA server computer until you first use the remote device in a program running on your client. When the connection fails, any attempt to use the remote device will result in a (unknowndeviceterror) status code. If the initial attempt at making a connection succeeds but the connection disappears at a later time (if the RDA server program is terminated for example), any attempt to use the remote device while the connection is gone will produce the error. 5

6 It s important to remember that your RDA Server computer (the remote computer) is a slave to your client computer. It can do nothing on its own without responding to a request from the RDA client computer. Technical Background RDA uses Remote Procedure Calls, also known as RPC. Microsoft s implementation of RPC is based on the Open Software Foundation s definition as part of their Distributed Computing Environment (DCE). RPC is designed to be both operating system and hardware independent. Although RPC works with all popular protocols TCP/IP, NetBEUI, IPX/SPX, Named Pipe and Windows Sockets RDA currently works with TCP/IP only.

LabVIEW Real-Time Module for Mac OS X User Manual Addendum

LabVIEW Real-Time Module for Mac OS X User Manual Addendum LabVIEW Real-Time Module for Mac OS X User Manual Addendum Contents Installing the Software This addendum supplements the LabVIEW Real-Time Module User Manual with information specific to running the LabVIEW

More information

SETTING UP NETWORKING FOR LOOKOUT 4.0

SETTING UP NETWORKING FOR LOOKOUT 4.0 NOTE TO USER SETTING UP NETWORKING FOR LOOKOUT 4.0 Contents Testing TCP/IP Capability The purpose of this document is to help you with basic configuration of your computers in order to run Lookout 4. This

More information

Install the Software and Hardware

Install the Software and Hardware WHERE TO START WITH YOUR NI 4350/4351 This document explains how to begin using your National Instruments 4350/4351 high-precision temperature and voltage meters. The NI 4350/4351 (NI 435x) products include

More information

Simulation and Emulation of the Display and Control Unit of Advance Optima

Simulation and Emulation of the Display and Control Unit of Advance Optima Advance Operation Optima Remote HMI Simulation and Emulation of the Display and Control Unit of Technical Information 30/24-311-1 EN Table of Contents Page Chapter 1 Chapter 2 Chapter 3 Survey Description

More information

NI-DAQ mx Base 1.x. Contents GETTING STARTED GUIDE

NI-DAQ mx Base 1.x. Contents GETTING STARTED GUIDE GETTING STARTED GUIDE NI-DAQ mx Base 1.x Contents This guide describes how to install and configure the NI-DAQmx Base 1.x software and a data acquisition (DAQ) device. This guide also describes how to

More information

Bridge Cable User s Guide

Bridge Cable User s Guide Bridge Cable User s Guide Table of Contents Overview -------------------------------------------------------------------- 2 Driver Installation --------------------------------------------------------

More information

Getting Started with the NI 783x R

Getting Started with the NI 783x R Getting Started with the NI 783x R Introduction This document explains how to install and configure the National Instruments 783xR. The NI 783xR devices are R Series Reconfigurable I/O (RIO) devices with

More information

VXIPC 800/700 SERIES FOR WINDOWS 95/NT

VXIPC 800/700 SERIES FOR WINDOWS 95/NT READ ME FIRST VXIPC 800/700 SERIES FOR WINDOWS 95/NT Contents This document contains information to help you understand the components of your kit, determine where to start setting up your kit, and learn

More information

ADSL Router Quick Setup Guide

ADSL Router Quick Setup Guide ADSL Router Quick Setup Guide RTA300 Important This Guide is intended to get you started quickly. The factory default profile of this Router is customised for New Zealand users. Please follow through the

More information

Home Networking. A home network generally conforms to one of the following configurations

Home Networking. A home network generally conforms to one of the following configurations Home Networking A home network generally conforms to one of the following configurations A stand-alone computer connected to the Internet. A peer-to-peer network containing two or more computers with no

More information

Using Alta ENET Products on Microsoft Windows Systems (Rich Wade, 6 SEP 13)

Using Alta ENET Products on Microsoft Windows Systems (Rich Wade, 6 SEP 13) Using Alta ENET Products on Microsoft Windows Systems (Rich Wade, 6 SEP 13) This document applies to all Alta ENET products (ENET-1553, ENET2-1553, ENET-A429, etc.) and provides step-by-step instructions

More information

ProjectorNetTM Adapter Quick Start Guide

ProjectorNetTM Adapter Quick Start Guide ProjectorNetTM Adapter Quick Start Guide Adapter networking 1. Quick Start The ProjectorNet Adapter kit contains the following items: ProjectorNet Serial to Ethernet Adapter Cable Adapter, ProjectorNet

More information

Part # Quick-Start Guide. SpeedStream Residential Gateway 5450 Four-Port Router

Part # Quick-Start Guide. SpeedStream Residential Gateway 5450 Four-Port Router Part # 007-6560-001 Quick-Start Guide SpeedStream Residential Gateway 5450 Four-Port Router Before you begin, Verify that the following items came with your DSL kit: 1 SpeedStream Device 2 Documentation

More information

LabVIEW Real-Time Module Release and Upgrade Notes

LabVIEW Real-Time Module Release and Upgrade Notes LabVIEW Real-Time Module Release and Upgrade Notes Version 8.0 Contents This document provides installation instructions, system requirements, upgrade information, and descriptions of the new features

More information

INSTALLATION AND STARTUP

INSTALLATION AND STARTUP MCL TOOL 5.3 - SECTION TWO INSTALLATION AND STARTUP Chapters 1. MCL Tool Software Installation 2. Hardware Installation 3. Getting Started 2003 Johnson Controls, Inc. Literature # - TD-2059 Installation

More information

Getting Started with the LabVIEW Real-Time Module

Getting Started with the LabVIEW Real-Time Module Getting Started with the LabVIEW Real-Time Module Contents This document provides exercises to teach you how to develop a real-time project and VIs, from setting up RT targets to building, debugging, and

More information

Using Desktop PCs as RT Targets with the LabVIEW Real-Time Module

Using Desktop PCs as RT Targets with the LabVIEW Real-Time Module Using Desktop PCs as RT Targets with the LabVIEW Real-Time Module Contents The LabVIEW Real-Time Module can execute VIs on RT targets running the real-time operating system of Ardence Phar Lap Embedded

More information

ESPSX3 Ethernet Serial Port Server X 3 Users Guide

ESPSX3 Ethernet Serial Port Server X 3 Users Guide ESPSX3 Ethernet Serial Port Server X 3 Users Guide The ESPSX3 is an Ethernet Serial Port Sever with two RS-232 ports and one port that can be configured for RS-232, RS-485, or RS-422. The RS-485/RS-422

More information

A+ Guide to Hardware: Managing, Maintaining, and Troubleshooting, 5e. Chapter 10 Networking Essentials

A+ Guide to Hardware: Managing, Maintaining, and Troubleshooting, 5e. Chapter 10 Networking Essentials A+ Guide to Hardware: Managing, Maintaining, and Troubleshooting, 5e Chapter 10 Networking Essentials Objectives Learn about hardware devices used for networking Learn about the different types of networks

More information

TABLE OF CONTENTS COPYRIGHT INTRODUCTION...3 PRODUCT OVERVIEW...3 COMPONENTS AND FEATURES...3 HARDWARE INSTALLATION

TABLE OF CONTENTS COPYRIGHT INTRODUCTION...3 PRODUCT OVERVIEW...3 COMPONENTS AND FEATURES...3 HARDWARE INSTALLATION TABLE OF CONTENTS COPYRIGHT...2 1. INTRODUCTION...3 PRODUCT OVERVIEW...3 COMPONENTS AND FEATURES...3 HARDWARE INSTALLATION...3 2. MFP SERVER INSTALLATION...5 PREPARATION...5 CONFIGURATION SOLUTION TABLE...5

More information

10 How to Setup a Home or Small Network

10 How to Setup a Home or Small Network How to Setup a Home or Small Network Objectives.1 Installing a Network Interface Card (NIC).2 Installing Network Components.3 Identifying Ports and Cable Types.4 Preparing Straight-through Network Cables.5

More information

Table of Contents. D-Link SharePort Plus... 4 Introduction...4 System Requirements...4 Features...5. Installation... 6

Table of Contents. D-Link SharePort Plus... 4 Introduction...4 System Requirements...4 Features...5. Installation... 6 Table of Contents D-Link SharePort Plus... 4 Introduction...4 System Requirements...4 Features...5 Installation... 6 SharePort Plus Utility... 11 Utility Overview... 11 Device Server View... 12 Utility

More information

Getting Started with R Series Intelligent DAQ

Getting Started with R Series Intelligent DAQ Getting Started with R Series Intelligent DAQ This document explains how to install and configure National Instruments PCI/PXI-781xR, PCI/PXI-783xR, PXI-784xR, and PXI-785xR (NI 78xxR) devices. This document

More information

DocuPrint C55/C55mp Quick Network Install Guide

DocuPrint C55/C55mp Quick Network Install Guide DocuPrint C55/C55mp Quick Network Install Guide Windows for Workgroups / Windows 95 Peer-to-Peer Network Windows NT 3.5X Network Windows NT 4.X Network Macintosh EtherTalk/TokenTalk Network Novell NetWare

More information

READ ME FIRST. Windows NT. *DSL Equipment Installation Guide: Efficient Networks 5260

READ ME FIRST. Windows NT. *DSL Equipment Installation Guide: Efficient Networks 5260 READ ME FIRST Windows NT *DSL Equipment Installation Guide: Efficient Networks 5260 *Digital Subscriber Line Part Number: 5260NT02A Version 1.2-A. Table of Contents Follow Steps 1 through 8 to complete

More information

Excalibur Installation Instructions

Excalibur Installation Instructions Excalibur Installation Instructions 311 Meacham Ave Elmont NY 11003 tel. (516) 327-0000 fax (516) 327-4645 e-mail: excalibur@mil-1553.com website: www.mil-1553.com Copyright 2018 Excalibur Systems. All

More information

A+ Guide to Software: Managing, Maintaining, and Troubleshooting, 5e. Chapter 9 Networking Practices

A+ Guide to Software: Managing, Maintaining, and Troubleshooting, 5e. Chapter 9 Networking Practices : Managing, Maintaining, and Troubleshooting, 5e Chapter 9 Networking Practices Objectives Learn how to connect a computer or small network to the Internet using a broadband, satellite, or dialup connection

More information

Hardware: Acquiring Data and Communicating with Instruments

Hardware: Acquiring Data and Communicating with Instruments Hardware: Acquiring Data and Communicating with Instruments 4 Acquiring a Signal This chapter introduces you to the Express VIs you use to acquire data and communicate with instruments on Windows. These

More information

Packet: Data can be broken into distinct pieces or packets and then reassembled after delivery. Computers on the Internet communicate via packets.

Packet: Data can be broken into distinct pieces or packets and then reassembled after delivery. Computers on the Internet communicate via packets. Broadband Setup from A to Z Print out all the info below and get to work...have fun!! A word of caution! It is very important that you SECURE your wireless network using WEP or WPA encryption (password).

More information

Foundation Fieldbus Hardware and NI-FBUS Software for Windows 2000/XP

Foundation Fieldbus Hardware and NI-FBUS Software for Windows 2000/XP Foundation Fieldbus Hardware and NI-FBUS Software for Windows 2000/XP Contents Install the NI-FBUS Software Install the NI-FBUS Software... 1 Install the PCMCIA-FBUS Board... 2 Install the AT-FBUS Board...

More information

NI-Industrial Communications for EtherCAT

NI-Industrial Communications for EtherCAT INSTALLATION GUIDE NI-Industrial Communications for EtherCAT This document explains how to install the NI-Industrial Communications for EtherCAT software and describes the hardware and software requirements.

More information

Chapter 15: Advanced Networks

Chapter 15: Advanced Networks Chapter 15: Advanced Networks IT Essentials: PC Hardware and Software v4.1 1 Chapter 15 Objectives 15.1 Identify potential safety hazards and implement proper safety procedures related to networks 15.2

More information

Longshine Technologie Europe GmbH LCS-MFP101-2 Multifunction Printserver

Longshine Technologie Europe GmbH LCS-MFP101-2 Multifunction Printserver Longshine Technologie Europe GmbH LCS-MFP101-2 Multifunction Printserver www.longshine.de TABLE OF CONTENTS COPYRIGHT...2 1. INTRODUCTION...3 PRODUCT OVERVIEW...3 COMPONENTS AND FEATURES...3 HARDWARE INSTALLATION...3

More information

Data Acquisition. Software and Hardware. Demonstration Guide. For: NetDAQ Logger for Windows Hydra Logger for Windows Trend Link for Fluke

Data Acquisition. Software and Hardware. Demonstration Guide. For: NetDAQ Logger for Windows Hydra Logger for Windows Trend Link for Fluke Data Acquisition Software and Hardware Demonstration Guide For: NetDAQ Logger for Windows Hydra Logger for Windows Trend Link for Fluke Introduction This demonstration guide contains exercises designed

More information

Programming for the LabVIEW Real-Time Module Using LabWindows/CVI

Programming for the LabVIEW Real-Time Module Using LabWindows/CVI Application Note 182 Programming for the LabVIEW Real-Time Module Using LabWindows/CVI Introduction This document discusses using LabWindows/CVI to interface with RT Series hardware and to write DLLs to

More information

Using Measurement & Automation Explorer (MAX) with VXI

Using Measurement & Automation Explorer (MAX) with VXI Using Measurement & Automation Explorer (MAX) with VXI Introduction Measurement & Automation Explorer (MAX) provides access to all your National Instruments DAQ, GPIB, IMAQ, IVI, Motion, VISA, and VXI

More information

ZyWALL 10W. Internet Security Gateway. Quick Start Guide Version 3.62 December 2003

ZyWALL 10W. Internet Security Gateway. Quick Start Guide Version 3.62 December 2003 Internet Security Gateway Quick Start Guide Version 3.62 December 2003 Introducing the ZyWALL The is the ideal secure gateway for all data passing between the Internet and the LAN. By integrating NAT,

More information

Lab IP Addresses and Network Communication

Lab IP Addresses and Network Communication Lab 3.5.2 IP Addresses and Network Communication Objectives Build a simple peer-to-peer network and verify physical connectivity. Assign various IP addresses to hosts and observe the effects on network

More information

Wireless LAN Adapter

Wireless LAN Adapter ANSEL Wireless LAN Adapter 2302-wl360r User s Guide Version 1.1 08/04/2003 User s Guide 0 Copyright statement No part of this publication may be reproduced, stored in a retrieval system, or transmitted

More information

Longshine Technologie Europe GmbH

Longshine Technologie Europe GmbH Longshine Technologie Europe GmbH www.longshine.de TABLE OF CONTENTS COPYRIGHT...2 1. INTRODUCTION...3 PRODUCT OVERVIEW...3 COMPONENTS AND FEATURES...3 HARDWARE INSTALLATION...3 2. MFP SERVER INSTALLATION...5

More information

VXI/VME-PCI8000 SERIES

VXI/VME-PCI8000 SERIES READ ME FIRST VXI/VME-PCI8000 SERIES FOR WINDOWS 95/NT Contents This document contains information to help you understand the components of your kit, determine where to start setting up your kit, and learn

More information

Home Networking. Copyright 2006 Bill Knight. All rights reserved.

Home Networking. Copyright 2006 Bill Knight. All rights reserved. Home Networking Copyright 2006 Bill Knight. All rights reserved. Why Home Networking? Why Home Networking? Share! Internet (broadband, even dial-up!) Why Home Networking? Share! Internet (broadband, even

More information

Vision Express Vision VE810 Installation Guide Vision Engraving & Routing Systems

Vision Express Vision VE810 Installation Guide Vision Engraving & Routing Systems Vision Express Vision VE810 Installation Guide Vision Express - Vision VE810 Installation Guide All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic,

More information

This document provides additional information for the installation and use of the Keithley I/O Layer.

This document provides additional information for the installation and use of the Keithley I/O Layer. Keithley Instruments KIOL-850C07 Release Notes for Version C07 Keithley I/O Layer, including the Keithley Configuration Panel and Wizard, Keithley Communicator, and VISA runtime 3/30/2015 This document

More information

Data Acquisition Software and Hardware Demonstration Guide

Data Acquisition Software and Hardware Demonstration Guide Data Acquisition Software and Hardware Demonstration Guide For: NetDAQ Logger for Windows Hydra Logger for Windows Trend Link for Fluke Introduction This demonstration guide contains exercises designed

More information

Getting Started With LXI

Getting Started With LXI Getting Started With LXI Detailed Installation Guide Issue 1.0 July 2016 pickeringtest.com pickering LXI COMPLIANT CHASSIS 60-100/101 Page 1 pickering HARDWARE SET-UP Before you begin, take a moment to

More information

Keithley Instruments ExceLINX-3A ExceLINX software for the Model 2000 Release Note for Version C02 3/26/2015

Keithley Instruments ExceLINX-3A ExceLINX software for the Model 2000 Release Note for Version C02 3/26/2015 Keithley Instruments ExceLINX-3A ExceLINX software for the Model 2000 Release Note for Version C02 3/26/2015 IMPORTANT: To work properly with ExceLINX, your instrument must have a compatible version of

More information

PCI/PXI Gigabit Ethernet Adapters

PCI/PXI Gigabit Ethernet Adapters INSTALLATION GUIDE PCI/PXI Gigabit Ethernet Adapters Installing Your PXI Board National Instruments gigabit Ethernet adapters are based on the Intel 82540-compatible Ethernet controller. This document

More information

IMAQ Vision Deployment Engine Note to Users

IMAQ Vision Deployment Engine Note to Users IMAQ Vision Deployment Engine Note to Users The IMAQ Vision Deployment Engine provides everything you need to deploy custom IMAQ Vision applications to target computers. The IMAQ Vision Deployment Engine

More information

IMAQ Vision Deployment Engine Note to Users

IMAQ Vision Deployment Engine Note to Users IMAQ Vision Deployment Engine Note to Users The IMAQ Vision Deployment Engine provides everything you need to deploy custom IMAQ Vision applications to target computers. The IMAQ Vision Deployment Engine

More information

ZyAIR B-500 Wireless Access Point Quick Installation Guide

ZyAIR B-500 Wireless Access Point Quick Installation Guide ZyAIR B-500 Wireless Access Point Quick Installation Guide Version 3.50 June 2004 Table of Contents 1 Introducing the ZyAIR... 4 2 Hardware Connections... 4 2.1 Rear Panel and Connections... 4 2.2 The

More information

Notebook Network Card

Notebook Network Card Notebook Network Card Connect your PC to a network or broadband modem network F5D5020 Table of Contents Introduction.........................................1 Installing the Hardware.................................2

More information

Homework Assignment 9 LabVIEW tutorial

Homework Assignment 9 LabVIEW tutorial Homework Assignment 9 LabVIEW tutorial Due date: Wednesday, December 8 (midnight) For this homework assignment, you will complete a tutorial on the LabVIEW data acquistion software. This can be done on

More information

Quick Start Guide. Cole-Parmer USB-based Data Acquisition Software

Quick Start Guide. Cole-Parmer USB-based Data Acquisition Software Quick Start Guide Cole-Parmer USB-based Data Acquisition Software Cole-Parmer Instrument Company 625 East Bunker Court Vernon Hills, Illinois 60061-1844 (847) 549-7600 (847) 247-2929 (Fax) 800-323-4340

More information

User Manual. Printed: 11/6/2013 Filename: NATUM1 - National Instruments I/O Device for V+ User Manual, V1.1 Copyright 2003, SimPhonics Incorporated

User Manual. Printed: 11/6/2013 Filename: NATUM1 - National Instruments I/O Device for V+ User Manual, V1.1 Copyright 2003, SimPhonics Incorporated National Instruments I/O Device for V+ User Manual SimPhonics Incorporated Printed: 11/6/2013 Filename: NATUM1 - National Instruments I/O Device for V+ User Manual, V1.1 Copyright 2003, SimPhonics Incorporated

More information

BIPAC-6500 / 6500W (Wireless) Broadband VPN Firewall Router with 4-port 10/100M Switch Quick Start Guide

BIPAC-6500 / 6500W (Wireless) Broadband VPN Firewall Router with 4-port 10/100M Switch Quick Start Guide BIPAC-6500 / 6500W (Wireless) Broadband VPN Firewall Router with 4-port 10/100M Switch Quick Start Guide Billion BIPAC-6500 / 6500W (Wireless) Broadband VPN Firewall Router For more detailed instructions

More information

Figure 1-1. When we finish Part 2, our server will be ready to have workstations join the domain and start sharing files. Now here we go!

Figure 1-1. When we finish Part 2, our server will be ready to have workstations join the domain and start sharing files. Now here we go! 1 of 18 9/6/2008 4:05 AM Configuring Windows Server 2003 for a Small Business Network, Part 2 Written by Cortex Wednesday, 16 August 2006 Welcome to Part 2 of the "Configuring Windows Server 2003 for a

More information

LAN-505 Ethernet Communication

LAN-505 Ethernet Communication Ethernet Communication 1.0 Purpose of this Document This document discusses how to setup, configure, and use the Universal Device Server to provide LAN/WAN Ethernet connectivity between Doors and one or

More information

User Manual. Unpacking and Setup

User Manual. Unpacking and Setup User Manual USB Print Server LPV2-USB-TX1 Unpacking and Setup This section provides unpacking and setup information for the USB Print Server. Unpacking Open the shipping carton of the Switch and carefully

More information

C5100 Computer Connections & Software Install Guide

C5100 Computer Connections & Software Install Guide C5100 Computer Connections & Software Install Guide Installation Checklist Network Install: Hardware...4 Connect to the Network Port...4 Network Install: Software...5 TCP/IP...5 Local Install: USB, Hardware...7

More information

NI-VISA for Windows 3.x WIN and GWIN Frameworks. The VXIplug&play software kit contains the following software and documentation components.

NI-VISA for Windows 3.x WIN and GWIN Frameworks. The VXIplug&play software kit contains the following software and documentation components. NATIONAL INSTRUMENTS The Software is the Instrument Read Me First Save this document for future reference. VXIplug&play Software Kit NI-VISA for Windows 3.x WIN and GWIN Frameworks Thank you for purchasing

More information

LABVIEW REAL-TIME. Contents. About LabVIEW Real-Time (RT) RELEASE NOTES. Version 6.1

LABVIEW REAL-TIME. Contents. About LabVIEW Real-Time (RT) RELEASE NOTES. Version 6.1 RELEASE NOTES LABVIEW REAL-TIME Version 6.1 Contents These release notes provide information about LabVIEW Real-Time (RT), related documentation, special installation considerations, compatibility with

More information

Getting Results with CompactRIO and LabVIEW

Getting Results with CompactRIO and LabVIEW Getting Results with CompactRIO and LabVIEW Getting Started This tutorial demonstrates how to develop a CompactRIO application in LabVIEW. The application uses a CompactRIO R Series Expansion system or

More information

LabVIEW Basics I: Introduction Course

LabVIEW Basics I: Introduction Course www.ni.com/training LabVIEW Basics I Page 1 of 4 LabVIEW Basics I: Introduction Course Overview The LabVIEW Basics I course prepares you to develop test and measurement, data acquisition, instrument control,

More information

Release Notes. LabVIEW Application Builder for Windows. Contents

Release Notes. LabVIEW Application Builder for Windows. Contents Release Notes Contents LabVIEW Application Builder for Windows Version 4.1 The LabVIEW Application Builder is an add-on package you can use to create executable programs with LabVIEW. Additionally, you

More information

CALIBRATION PROCEDURE SCXI Contents. Software Requirements. ni.com/manuals

CALIBRATION PROCEDURE SCXI Contents. Software Requirements. ni.com/manuals CALIBRATION PROCEDURE SCXI -10 Français Deutsch ni.com/manuals Contents This document contains information for verifying and adjusting the SCXI-10 module using NI-DAQmx 8.1 or later. For more information

More information

Installation Guide: Quanser Rapid Control Prototyping Toolkit 2016 for NI myrio

Installation Guide: Quanser Rapid Control Prototyping Toolkit 2016 for NI myrio Installation Guide: Quanser Rapid Control Prototyping Toolkit 2016 for NI myrio STEP 1 Install NI LabVIEW and Add-on Requirements The Quanser Rapid Control Prototyping (QRCP) toolkit supports either 32-bit

More information

Table of Contents. 1 Introduction. 2 Wireless Configurations. 3 Setting Up your LAN Administrator Station

Table of Contents. 1 Introduction. 2 Wireless Configurations. 3 Setting Up your LAN Administrator Station Table of Contents 1 Introduction About Avaya Wireless 1-1 About Avaya Wireless Tools 1-2 About Avaya Wireless Access Points 1-5 About This User s Guide 1-6 About Icons used in this Document 1-7 On-line

More information

AKELA Vector Network Analyzer (VNA) Quick Start Guide

AKELA Vector Network Analyzer (VNA) Quick Start Guide AKELA Vector Network Analyzer (VNA) Quick Start Guide Copyright AKELA, Inc. 2012, all rights reserved http:\\akelainc.com LabVIEW and LabWindows are registered trademarks of National Instruments Incorporated

More information

The reasons for this problem might be: some special settings in the router itself or the switch might not be working properly.

The reasons for this problem might be: some special settings in the router itself or the switch might not be working properly. TROUBLESHOOTING If the Ethernet light is not on when the PC is connected to the switch by cable, please refer to this FAQ: What can I do if the Ethernet LED indicators on the Unmanaged Switch are off?

More information

NI-ModInst Help Contents Index Search

NI-ModInst Help Contents Index Search NI-ModInst Help May 2008, 371474C-01 The NI-ModInst API provides a way to programmatically query for devices installed in your system that are supported by a specific instrument driver. This help file

More information

Software-Defined Test Fundamentals. Understanding the Architecture of Modular, High-Performance Test Systems

Software-Defined Test Fundamentals. Understanding the Architecture of Modular, High-Performance Test Systems Software-Defined Test Fundamentals Understanding the Architecture of Modular, High-Performance Test Systems Contents Executive Summary 4 Architecture Layer No. 5: System Management/Test Executive 5 Architecture

More information

XP: Backup Your Important Files for Safety

XP: Backup Your Important Files for Safety XP: Backup Your Important Files for Safety X 380 / 1 Protect Your Personal Files Against Accidental Loss with XP s Backup Wizard Your computer contains a great many important files, but when it comes to

More information

Keithley Instruments ExceLINX-2A ExceLINX software for the Model 6485,6487 and 6514 Release Note for Version C04 9/4/2013

Keithley Instruments ExceLINX-2A ExceLINX software for the Model 6485,6487 and 6514 Release Note for Version C04 9/4/2013 Keithley Instruments ExceLINX-2A ExceLINX software for the Model 6485,6487 and 6514 Release Note for Version C04 9/4/2013 IMPORTANT: To work properly with ExceLINX, your instrument must have a compatible

More information

Installation Guide. Installation Instructions for Models: DI-148 Series DI-158 Series DI-710 Series DI-715B Series DI-718B(x) Series.

Installation Guide. Installation Instructions for Models: DI-148 Series DI-158 Series DI-710 Series DI-715B Series DI-718B(x) Series. Installation Guide Installation Instructions for Models: DI-148 Series DI-158 Series DI-710 Series DI-715B Series DI-718B(x) Series Revision G M-101030 Hardware and Software Installation Guide DI-148,

More information

PXI The PXI-8220 is a two-slot PC Card (PCMCIA) carrier for the PXI/CompactPCI bus.

PXI The PXI-8220 is a two-slot PC Card (PCMCIA) carrier for the PXI/CompactPCI bus. INSTALLATION GUIDE PXI -8220 The PXI-8220 is a two-slot PC Card (PCMCIA) carrier for the PXI/CompactPCI bus. Table of Contents Hardware Overview PXI-8220 Features Hardware Overview... 1 PXI-8220 Features...

More information

BEFCMU10 EtherFast Cable Modem with USB and Ethernet Connection. 12V-DC (0.6A min) power is connected. OFF

BEFCMU10 EtherFast Cable Modem with USB and Ethernet Connection. 12V-DC (0.6A min) power is connected. OFF LED Table LED Color Mode Function Power Green ON 12V-DC (0.6A min) power is connected. OFF Power is not connected, power supply is incorrect or bad, or BEFCMU10 is bad. Activity Green ON Connection to

More information

NVM-Professional NVM-Server NVM-Server Desktop NVM-Server XL. Windows 2000 Platform Description and Installation Instructions

NVM-Professional NVM-Server NVM-Server Desktop NVM-Server XL. Windows 2000 Platform Description and Installation Instructions NVM-Professional NVM-Server NVM-Server Desktop NVM-Server XL Windows 2000 Platform Description and Installation Instructions This manual has been developed by NEC America, Inc. It is intended for the use

More information

USING THE XPERT2 / 9210B ON A TCP/IP NETWORK

USING THE XPERT2 / 9210B ON A TCP/IP NETWORK 1 USING THE XPERT2 / 9210B ON A TCP/IP NETWORK Prepared by: R&D January, 2009 Updated September 26, 2013 Sutron Corporation 22400 Davis Drive Sterling, Virginia 20164 TEL: (703) 406-2800 FAX: (703) 406-2801

More information

Getting Started with the LabWindows /CVI Real-Time Module

Getting Started with the LabWindows /CVI Real-Time Module Getting Started with the LabWindows /CVI Real-Time Module This document provides an introduction to the LabWindows /CVI Real-Time Module. Refer to this document for installation and configuration instructions

More information

AVG INTERNET SECURITY 8.5 Installation, Configuration and Use for AARP Tax-Aide

AVG INTERNET SECURITY 8.5 Installation, Configuration and Use for AARP Tax-Aide The following pages show how to install and configure version 8.5 of the AVG Internet Security suite, including the Antivirus and Firewall components, for use on AARP purchased and donated computers used

More information

Wireless LAN PC Card AWL-100. User Manual. Version 1.1 June BENQ Corporation

Wireless LAN PC Card AWL-100. User Manual. Version 1.1 June BENQ Corporation Wireless LAN PC Card AWL-100 User Manual Version 1.1 June 2002 i Notice I Copyright Statement This manual cannot be reproduced in any form or by any means or used to make any derivative such as translation,

More information

The following conventions appear in this document:

The following conventions appear in this document: CALIBRATION PROCEDURE NI PXI-4220 Conventions This document contains the information and instructions needed to calibrate the NI PXI-4220. You should calibrate the NI PXI-4220 at a regular interval as

More information

PC-based data acquisition I

PC-based data acquisition I FYS3240 PC-based instrumentation and microcontrollers PC-based data acquisition I Spring 2016 Lecture #8 Bekkeng, 20.01.2016 General-purpose computer With a Personal Computer (PC) we mean a general-purpose

More information

READ ME FIRST Windows 95/98/Me/2000

READ ME FIRST Windows 95/98/Me/2000 READ ME FIRST Windows 95/98/Me/2000 *DSL Equipment Installation Guide: Efficient Networks 5260 *Digital Subscriber Line Part Number: 52609x02 Version 1.2-A Table of Contents Follow Steps 1 through 8 to

More information

Instructions for Installing FlashUpdate and Downloading Updates for Super Buddy Satellite Meter

Instructions for Installing FlashUpdate and Downloading Updates for Super Buddy Satellite Meter Instructions for Installing FlashUpdate and Downloading Updates for Super Buddy Satellite Meter Updates to the Field Guide and to the instrument firmware are available from the Applied Instruments website.

More information

Getting Started with the LabVIEW Robotics Module Version 2011

Getting Started with the LabVIEW Robotics Module Version 2011 Getting Started with the LabVIEW Robotics Module Version 2011 Contents The LabVIEW Robotics Module is a software package that allows you to develop and deploy a robotics application using LabVIEW, other

More information

EDS8/16/32PR Quick Start Guide

EDS8/16/32PR Quick Start Guide Quick Start Guide 2007 Copyright Lantronix is a trademark of Lantronix. All rights reserved. 900-458 Rev. B 01/07 QUICK START GUIDE CONTENTS What s In the Box..........................................................2

More information

Created on 2/16/ :33:00 AM CPAS-3000 TROUBLESHOOTING GUIDE. Contents

Created on 2/16/ :33:00 AM CPAS-3000 TROUBLESHOOTING GUIDE. Contents CPAS-3000 TROUBLESHOOTING GUIDE Contents I QUICK CHECKLIST FOR TROUBLESHOOTING CPAS-3000 PROBLEMS II DETAILED TROUBLESHOOTING BY SYMPTOM After clicking refresh targets, no targets are available in the

More information

QUICK START. DevCom2000 User Manual

QUICK START. DevCom2000 User Manual QUICK START DevCom2000 uses Device Descriptions (DDs) to access data stored in the memory of the smart field device. These DDs are developed by the manufacturer for their products and, in turn, distributed

More information

Sharing Data between Applications Connecting 2 PC s running ic/icontrol

Sharing Data between Applications Connecting 2 PC s running ic/icontrol Sharing Data between Applications Connecting 2 PC s running ic/icontrol To connect two PC s running ic or icontrol products, you must have an Ethernet connection between them. The common situations are:

More information

ADSL2+ 4-Port Modem Router Quick Setup Guide RTA1335

ADSL2+ 4-Port Modem Router Quick Setup Guide RTA1335 ADSL2+ 4-Port Modem Router Quick Setup Guide RTA1335 Important This Guide is intended to get you started quickly. We have made the factory default setting of this router suitable for New Zealand 1. All

More information

Answers to Frequently Asked Questions about NI-DAQmx and Traditional NI-DAQ (Legacy)

Answers to Frequently Asked Questions about NI-DAQmx and Traditional NI-DAQ (Legacy) Answers to Frequently Asked Questions about NI-DAQmx and Traditional NI-DAQ (Legacy) Introduction This document answers the most frequently asked questions about NI-DAQmx and Traditional NI-DAQ (Legacy).

More information

Power Xpert Meter 2000 Gateway Card Kit

Power Xpert Meter 2000 Gateway Card Kit Quick Start Guide IL02601011E PXM 2250 PXM 2260 IQ 250 IQ 260 Power Xpert Meter 2000 Gateway Card Kit Table of Contents Remove the Meter From Service... 2 Disconnect Power Connections, CTs, and Modbus....

More information

CSA8000 & TDS8000 Instruments CSA8000B & TDS8000B Instruments Using National Instruments LabVIEW

CSA8000 & TDS8000 Instruments CSA8000B & TDS8000B Instruments Using National Instruments LabVIEW Supplement CSA8000 & TDS8000 Instruments CSA8000B & TDS8000B Instruments Using National Instruments LabVIEW This document applies to software version 1.3 and above. www.tektronix.com Copyright Tektronix,

More information

KIT NI-VISA FOR WINDOWS 95/NT: WIN95, GWIN95, WINNT, AND GWINNT FRAMEWORKS

KIT NI-VISA FOR WINDOWS 95/NT: WIN95, GWIN95, WINNT, AND GWINNT FRAMEWORKS READ ME FIRST VXIplug&play SOFTWARE KIT NI-VISA FOR WINDOWS 95/NT: WIN95, GWIN95, WINNT, AND GWINNT FRAMEWORKS Thank you for purchasing a National Instruments VXIplug&play-compliant controller. To comply

More information

4-Port Router. Share your broadband Internet connection. E Wired. Ethernet. Ethernet. User Manual. F5D5231-4_uk

4-Port Router. Share your broadband Internet connection. E Wired. Ethernet. Ethernet. User Manual. F5D5231-4_uk 4-Port Router Share your broadband Internet connection User Manual E Wired Ethernet Ethernet 10/100 Mbps F5D5231-4_uk Table of Contents 1 Introduction............................................. 1 Benefits

More information

Lab: Install a NIC in Windows XP

Lab: Install a NIC in Windows XP 11.4.1 Lab: Install a NIC in Windows XP Introduction Print and complete this lab. In this lab, you will install a NIC, verify NIC operation, and manually configure an IP address. Recommended Equipment

More information

INTRODUCTION TO LABVIEW

INTRODUCTION TO LABVIEW INTRODUCTION TO LABVIEW 2nd Year Microprocessors Laboratory 2012-2013 INTRODUCTION For the first afternoon in the lab you will learn to program using LabVIEW. This handout is designed to give you an introduction

More information

C5150n, C5200ne & C5200n Computer Connections & Software Install Guide

C5150n, C5200ne & C5200n Computer Connections & Software Install Guide C5150n, C5200ne & C5200n Computer Connections & Software Install Guide Installation Overview: Windows Windows TCP/IP Network Installation: C5150n & C5200ne Ethernet Connection... 2 Software... 3 Windows

More information