: SOFTWARE ARCHITECTURES FOR REMOTELY OPERABLE CIVIL ENGINEERING LABORATORIES

Size: px
Start display at page:

Download "2006-1963: SOFTWARE ARCHITECTURES FOR REMOTELY OPERABLE CIVIL ENGINEERING LABORATORIES"

Transcription

1 : SOFTWARE ARCHITECTURES FOR REMOTELY OPERABLE CIVIL ENGINEERING LABORATORIES Prakash Kripakaran, North Carolina State University Prakash Kripakaran is a post-doctoral researcher in the applied computing and mechanics laboratory at Ecole Polytechnique Federale de Lausanne, Switzerland. His research interests lie broadly in the area of computing technologies and their applications to civil engineering. He is specifically interested in design optimization and decision support for structural engineering. He was formally a doctoral student in the Department of Civil, Construction and Environmental Engineering specializing in computer aided engineering. Abhinav Gupta, North Carolina State University Associate Professor in the Department of Civil, Construction and Environmental Engineering Vernon Matzen, North Carolina State University Alumni Distinguished Professor for Undergraduate Education, Department of Civil, Construction and Environmental Engineering; Director of the Center for Nuclear Power Plant Structures, Equipment and Piping American Society for Engineering Education, 2006 Page

2 Software Architectures For Remotely Operable Civil Engineering Laboratories Abstract Educators have successfully adapted many classroom courses to distance education environments via the internet and are now attempting to extend this success to laboratory courses by allowing students to remotely control and observe various experiments. A key task that arises in this process of modifying the experiments in traditional laboratories for internet-enabled control and observation is the development of a secure computational framework that uses web technologies and computer networking concepts to communicate information between the computers of the laboratory and the remote user. This framework that enables internet access to the experiment must address two main issues : (1) protection for the computers that directly operate the experiment from malignant users on the internet, and (2) portability of the framework to other experiments. In this paper, we propose a framework that addresses these concerns and illustrate it for a shaketable experiment. The framework is designed to act as an intermediary between client and server applications that are developed for data acquisition and control. The key component of the framework is a proxy server. It controls access to the computers that perform data acquisition and control. A webserver that is hosted on the proxy server serves webpages related to the experiment. The webserver has user-based authentication protocols to authenticate users attempting to access the webpages. The webserver uses a combination of perl scripts and linux networking tools to setup access to the experiment for the remote user and later, disable access for the remote user when the allotted timeslot expires. Introduction In recent years, universities have witnessed a greater number of students enrolling in distance-education classes. But as the existing computing technologies are primarily designed for video-based lectures, rarely are laboratory experiments included in these classes. Laboratory experiments can be vital for students in visualizing various engineering concepts. For instance, remotely controlling a shaketable experiment may help students gain a better understanding of vibration phenomena like resonance. There have been some suggestions to use simulations in the classes to achieve the same goal. However, researchers 1 have pointed out that There will always be an important place for simulation systems, but they cannot completely substitute for experience with actual systems. For instance, simulations do not provide any insight into calibration of measuring instruments such as pressure gages and LVDT s, or into behavioral uncertainties. Several educators have proposed solutions for creating internet-enabled experiments 1,2,3,4,5. However, these solutions fail to address the key issues of security and portability. Since the experiments are accessed via the internet, the framework has to include sufficient security protocols to ensure that only authorized users are allowed to access the experiment. Moreover, the existing solutions are primarily designed to work for the specific experiment and are often difficult to extend to other laboratory experiments. For portability, it is essential that the framework consists of components with little inter-dependency. In particular, it must decouple the experiment-specific components from the components for web security, internet access, and Page

3 web-based scheduling. To transform an experiment for remote operation, significant modifications are required. Sophisticated hardware for data acquisition and control are needed to interface measurement and control devices with a computer. Appropriate software that graphically display acquired measurements and allow manipulation of control and measurement devices must be developed. The afore-mentioned tasks pertain to the particular experiment under consideration. In addition to these tasks, novel IT architectures that create a secure web-based framework are required. The framework should also support the single controller-multiple observers concept. This capability will enable multiple users to simultaneously monitor and download measurements from the experiment as one user controls the input to the experiment. This paper focuses on the development of this generic web-based framework which together with suitably designed experiment-specific applications can transform a traditional laboratory experiment for internet-enabled control and observation. Shaketable experiment Before proceeding to describe the computational framework, we provide a brief description of the shaketable experiment for which the framework is implemented. The shaketable experiment considered in this study is primarily used as part of a laboratory course to illustrate the concepts in structural dynamics for undergraduate and graduate students. Figure 1 shows the laboratory setup of the shaketable experiment considered for illustration of the computational framework. It consists of a one-dimensional shaketable and a 100 lb electro-magnetic shaker. The test specimen is a single or multi-story shear building having wide but thin aluminum columns and heavy steel girders. Forced vibration tests are conducted by applying a harmonic excitation to the table using a function generator. The input frequency of the excitation is increased in steps from a value that is lower than the natural frequency of the structure to one that is much higher. For each input frequency, the table is excited for a reasonable duration to ensure that the structure vibrates in steady state motion. The acceleration response is measured using accelerometers mounted on the different floors and can be viewed in an oscilloscope. This shaketable experiment was previously used by Wirgau et al. 5. They proposed a framework using National Instruments (NI) hardware and software for data acquisition and control. Programs that were developed to communicate with the NI hardware were in the form of Virtual Instruments (VI) using NI s LabVIEW development system 6. Remote access to the experiment was provided using LabVIEW s Remote Panels technology 7 and the LabVIEW webserver. The generality of this implementation is limited due to the following reasons: The implementation did not separate the experiment-specific applications, which were designed in LabVIEW, from the web technologies. A higher likelihood of intentional damage to the system by malignant users on the internet existed, since the LabVIEW host PC was directly connected to the internet. Instead of a user-based authentication protocol, the system provided security by using a list of static IP addresses. Page

4 A scheduling facility did not exist. Such a facility would allow users to sign up for controlling or monitoring the experiment on a future date. The architectures presented in this paper are developed to address these issues. The scheduling facility is not described in this paper for brevity. In the following section, we describe the hardware setup that supports the proposed software architectures. Hardware setup of framework The hardware setup consists of two components - (1) A linux-based proxy server, (2) A local network consisting of computers that directly interact with the experimental equipment. The networking of the computers is illustrated in Figure 2 for the shaketable experiment. An IBM thinkpad with the fedora linux operating system is used as the proxy server. Figure 2 shows that the proxy server serves as the gateway to the experiment for a remote user on the internet. It has two network adapters one each for communication with the internet and the computers on the local network, respectively. While one of the network adapters is connected to the internet, the other is connected to an ethernet hub. The computers in the laboratory, which directly interact with the various experiment-related equipment, are connected to the ethernet hub. For the shaketable experiment, a National Instruments (NI) PXI that uses an NI 8176 controller and runs LabVIEW in a windows environment is used to perform data acquisition and control. It has a control board with a dedicated processor and memory. LabVIEW programs can be embedded into the board for real-time control as well as data acquisition. The accelerometers mounted on the test specimen are connected to this board through a BNC connector. Similarly, the board is also wired to the shaketable so that the generated waveforms may be communicated to the shaketable for real-time control. The PXI is connected to the ethernet hub as shown in Figure 2. Software architecture The software architecture of the computational framework essentially consists of two types of components - (1) Applications that are experiment-specific and (2) Web technologies for experiment scheduling and authentication. The interaction between these components is schematically illustrated in Figure 3. Experiment-specific applications The experiment-specific applications are those that enable communication of data to remote user as well as control of the experiment by the remote user. The proposed software architecture requires the implementation of two types of applications - (1) Server-side applications that are running on the laboratory computers and (2) Client applications that are used by the remote user. For data acquisition, the server-side applications are required to acquire the measurements from the different devices and make it available for remote users on an appropriate server. Multiple observers can use the client applications to download this data from the server. For control, the server-side application on the laboratory computer and the client application on the remote user s Page

5 computer are required to be in continuous communication. For remotely controlling the shaketable experiment, we have used the implementation by Wirgau et al. 5. The architecture of their VIs is schematically illustrated in Figure 4. For control of the shaketable, a VI that generates the waveform as per the input amplitude and frequency is run on the host PXI. The VI on the host PXI is made available for the remote user using LabVIEW remote panels technology and the LabVIEW webserver. The remote user can control this VI through a internet browser by connecting to the LabVIEW webserver on the host PXI. In this case, the server-side application is the LabVIEW webserver and the client application is the internet browser through which the remote user accesses the corresponding VI. For data acquisition in the shaketable experiment, we have modified the LabVIEW Remote Panels-based 7 implementation by Wirgau et al. 5 to one that uses the LabVIEW datasocket technology. The proposed framework for data acquisition is given in Figure 5. The new implementation permits multiple observers to simultaneously download and monitor the measurements from the experiment. The server-side application consists of a labview VI that runs on the PXI. This VI continuously makes the measurements and writes them to a datasocket server that is running on the same computer. All users irrespective of geographical location can obtain the measurements by using a client application that subscribes to the datasocket server. The client application is a LabVIEW executable that downloads and displays the measurements in an oscilloscope. The client application provides for saving the downloaded data in a spreadsheet file for future calculations. Web architecture The server-side applications described previously for data acquisition and control operate by listening on certain network ports. The proxy server controls access to these network ports using perl-based CGI scripts within a webserver and thereby provides security to the experiment. The key actions performed by the proxy server from the moment a user logs into the system to observe or control the experiment until the time when a user disconnects from the system is illustrated using a flowchart in Figure 6. As seen from the flowchart, the following sequence of steps are involved: 1. The remote user is authenticated by the proxy server using WRAP 8, a web-based authentication mechanism. 2. The user schedules a particular timeslot for controlling or observing the experiment on a future date. 3. On the scheduled date, the user connects to the proxy server and is authenticated. 4. The user requests access to control or monitor the experiment by running a CGI script on the webserver. 5. The CGI script checks if the user is scheduled to monitor or control the experiment during the current timeslot. Page

6 6. If the user is scheduled, the script then sets up port forwarding on the proxy server so that the user can access the appropriate server on the LabVIEW host. 7. The user runs an appropriate client application to observe or control the experiment. 8. Port forwarding that was setup in the previous step is disabled when the current timeslot expires. These steps are performed using the following components, which constitute the web architecture. User authentication North Carolina State University uses a cookie-based authentication protocol referred to as WRAP 8. This authentication protocol is used to verify the authenticity of users with access to the university s computing facilities. Students and university employees have a username and password that can be used in various computing labs around campus. Since one of the goals of this study was to make the shaketable experiment available for distance-education students, we have used the university s authentication protocol for providing internet security to the experiment. WRAP is a web-based authentication mechanism to verify the identity of a user without requiring the user to login to each individual webserver within the university domain. In this authentication mechanism, the user obtains an encrypted cookie, called the WRAP cookie, from a SSL-secured server by using his/her username and password. Whenever the user visits a WRAP-protected website, the browser sends the WRAP cookie to the website. The website verifies if the cookie is genuine and also obtains the username for that user. If the user does not already possess a WRAP cookie or possesses an invalid cookie, the user will be forwarded to the SSL-secured server that will issue a WRAP cookie to the user. WRAP cookie components like the username are available as environment variables within CGI scripts. The CGI scripts can, therefore, recognize the user making the request. The apache webserver on the proxy server is configured to use WRAP. File directories that contain the CGI scripts are protected using WRAP. Thus, the remote user is forced to obtain a WRAP cookie before attempting to run the scripts. If an authorized user is making a request, the CGI scripts use the environment variables to recognize the user. This information is later used in scheduling the user for the experiment as well as setting up remote access to the experiment for the user. Portability of framework Application of the proposed web-based framework to a new experiment involves the following tasks: Acquiring the necessary hardware that will enable the computer to communicate with the experimental equipment. Developing software applications in a client-server model for data acquisition and control. Page

7 These tasks are experiment-specific and will be required for any experiment. But once these tasks are completed, the proposed web-based framework can merge with these software applications to make the experiment available for remote observation and control. The proposed framework needs to know only the network ports on which the client-server applications communicate. Efforts are already underway to use this framework for a cantilever beam experiment and tension test in a structures and mechanics laboratory at NC State University. Summary and conclusions Recent computing advances in web technology have given rise to new ideas in web-based experimentation for supporting engineering research and education. The National Science Foundation (NSF) is sponsoring the development of a national Network for Earthquake Engineering Simulation (NEES) that will allow large-scale laboratories with seismic testing facilities available for control and observation to geographically distributed researchers. A major task in creating remotely accessible laboratories is the development of a secure web-based framework that will support experiment-specific applications for data acquisition and control. In this study, we have proposed a computational framework with software architectures that address the key issues like security and portability. The proposed framework is illustrated for a shaketable experiment. The software architecture decouples the experiment-specific applications and the web technologies for security and experiment scheduling. The experiment-specific applications for this experiment are developed using NI s LabVIEW development system 6. These applications are designed to work using a client-server software model. The computers that operate the shaketable experiment are in a local network within the laboratory. This network is protected using a proxy server. The proxy server runs a webserver that uses NC State University s WRAP authentication protocol to provide web security. The proxy server only permits authorized users to access the experiment within their timeslot for control and observation. The main conclusions from this study are: A webserver with suitable user-authentication protocol, CGI scripts and linux networking concepts are sufficient to create a secure web-based environment to control access to laboratory experiments. The web technologies and experiment-specific applications (LabVIEW VIs in the case of shaketable experiment) are decoupled to a large extent. The dependencies between the two components are primarily with respect to the TCP/IP listening ports of the LabVIEW webserver and the datasocket server. The proxy server controls access to the experiment by enabling and disabling accessing to the TCP/IP ports on which the server-side applications operate. The computational framework is fairly generic in nature that can be easily extended to other laboratory experiments. The major task in adapting the framework to a new experiment is the development of experiment-specific applications that work using a client-server model for enabling control and data acquisition with respect to the new experiment. Page

8 References [1] C. L. Bohus, A. Crowl, B. Aktan, and M. H. Shor, Running control engineering experiments over the internet, in Proceedings of the 13th IFAC World Congress, (San Francisco, CA), paper no. 4c-03. [2] M. L. Corradini, G. Ippoliti, T. Leo, and S. Longhi, An internet based laboratory for control education, in Proceedings of the 40th IEEE Conference on Decision and Control, (Orlando, FL), December [3] S. E. Poindexter and B. S. Heck, Using the web in your courses: What can you do? what should you do?, IEEE Control System, vol. 9, no. 1, pp , [4] A. Gupta, M. A. Gabr, and V. C. Matzen, Alternatives in the implementation of internet-enabled laboratory, in 2004 ASEE Annual Conference and Exposition, (Salt Lake City), June [5] S. Wirgau, A. Gupta, and V. C. Matzen, Internet-enabled remote observation and control of a shake table experiment, Journal of Computing in Civil Engineering, ASCE, In press. [6] L. Wells and J. Travis, LabVIEW for Everyone. Prentice Hall, [7] NI, NI LabVIEW Remote Panels, [8] NCSU, WRAP, Page

9 Function Generator Electromagnetic shaker Shaking table Shear building ẍ ẍ gr Power supply DAQ Oscilloscope Shaker arm Figure 1: Laboratory setup of shaketable experiment Proxy Server To Internet Ethernet hub PXI To shaketable Figure 2: Network setup of the computers Page

10 Experiment specific applications Remote Computer Lab Computer Clients Server side applications Web technologies Webserver Proxy server Linux networking CGI scripts Figure 3: Software architecture PXI host PXI RT Board VI generates waveform as per user selection TCP/IP VI sends waveform to shaker Remote user controls VI using Remote Front Panels Internet Explorer Remote computer Figure 4: Wirgau et al. s framework for shaketable control Page

11 PXI PXI host RT Board Datasocket server VI writes data to datasocket server TCP/IP VI acquires data from accelerometers Application displays data in oscilloscope Remote computer Figure 5: LabVIEW components for data acquisition To schedule Remote user connects to website During scheduled timeslot Remote user connects to website User is authorized using WRAP User is authorized using WRAP User schedules a particular timeslot User runs script to setup access User controls the shaketable via browser User runs labview application to observe experiment Controller Observer Figure 6: Flowchart showing remote user actions to access the experiment Page

Survey of LabVIEW Technologies for Building Web/Internet-Enabled Experimental Setups

Survey of LabVIEW Technologies for Building Web/Internet-Enabled Experimental Setups 2248 Survey of LabVIEW Technologies for Building Web/Internet-Enabled Experimental Setups Masoud Naghedolfeizi, Sanjeev Arora, and Singli Garcia Fort Valley State University Abstract The impact of World

More information

Distance-Learning Remote Laboratories using LabVIEW

Distance-Learning Remote Laboratories using LabVIEW Distance-Learning Remote Laboratories using LabVIEW Introduction Laboratories, which are found in all engineering and science programs, are an essential part of the education experience. Not only do laboratories

More information

Computer Integrated Experimentation in Electrical Engineering Education over Distance

Computer Integrated Experimentation in Electrical Engineering Education over Distance Session 3542 Computer Integrated Experimentation in Electrical Engineering Education over Distance Oguz A. Soysal, Frostburg State University Abstract The paper presents the implementation of computer

More information

Background: Experimental Manufacturing Cell

Background: Experimental Manufacturing Cell Session 3548 A WEB-BASED APPROACH TO AUTOMATED INSPECTION AND QUALITY CONTROL OF MANUFACTURED PARTS Immanuel Edinbarough, Manian Ramkumar, Karthik Soundararajan The University of Texas at Brownsville/Rochester

More information

Instructions for use the VPN at the Warsaw School of Economics

Instructions for use the VPN at the Warsaw School of Economics Instructions for use the VPN at the Warsaw School of Economics Dariusz Jaruga. ver. 1.1 (19-01-2011) Introduction VPN is the abbreviation for Virtual Personal Network which allows you to connect your computer

More information

DataSocket Simplifies Live Data Transfer for LabVIEW

DataSocket Simplifies Live Data Transfer for LabVIEW DataSocket Simplifies Live Data Transfer for LabVIEW Many typical instrumentation solutions involve a single local application for acquisition, logging, analysis, and presentation. However, because of

More information

JAVA-BASED FRAMEWORK FOR REMOTE ACCESS TO LABORATORY EXPERIMENTS. Department of Electrical Engineering University of Hagen D-58084 Hagen, Germany

JAVA-BASED FRAMEWORK FOR REMOTE ACCESS TO LABORATORY EXPERIMENTS. Department of Electrical Engineering University of Hagen D-58084 Hagen, Germany JAVA-BASED FRAMEWORK FOR REMOTE ACCESS TO LABORATORY EXPERIMENTS Christof Röhrig, 1 Andreas Jochheim 2 Department of Electrical Engineering University of Hagen D-58084 Hagen, Germany Abstract: This paper

More information

Savvius Insight Initial Configuration

Savvius Insight Initial Configuration The configuration utility on Savvius Insight lets you configure device, network, and time settings. Additionally, if you are forwarding your data from Savvius Insight to a Splunk server, You can configure

More information

Connection Broker Managing User Connections to Workstations, Blades, VDI, and More. Quick Start with Microsoft Hyper-V

Connection Broker Managing User Connections to Workstations, Blades, VDI, and More. Quick Start with Microsoft Hyper-V Connection Broker Managing User Connections to Workstations, Blades, VDI, and More Quick Start with Microsoft Hyper-V Version 8.1 October 21, 2015 Contacting Leostream Leostream Corporation http://www.leostream.com

More information

A Systems Approach to HVAC Contractor Security

A Systems Approach to HVAC Contractor Security LLNL-JRNL-653695 A Systems Approach to HVAC Contractor Security K. M. Masica April 24, 2014 A Systems Approach to HVAC Contractor Security Disclaimer This document was prepared as an account of work sponsored

More information

Device Log Export ENGLISH

Device Log Export ENGLISH Figure 14: Topic Selection Page Device Log Export This option allows you to export device logs in three ways: by E-Mail, FTP, or HTTP. Each method is described in the following sections. NOTE: If the E-Mail,

More information

Integrating a Hitachi IP5000 Wireless IP Phone

Integrating a Hitachi IP5000 Wireless IP Phone November, 2007 Avaya Quick Edition Integrating a Hitachi IP5000 Wireless IP Phone This application note explains how to configure the Hitachi IP5000 wireless IP telephone to connect with Avaya Quick Edition

More information

Setting Up One Search

Setting Up One Search Your teachers and students can take advantage of your school s subscription databases all in one place through Destiny One Search. One Search saves staff and patrons time and effort by letting them search

More information

Arun Veeramani. Principal Marketing Manger. National Instruments. ni.com

Arun Veeramani. Principal Marketing Manger. National Instruments. ni.com Arun Veeramani Principal Marketing Manger National Instruments New Enterprise Solution for Condition Monitoring Applications NI InsightCM Enterprise NI History of Condition Monitoring Order Analysis Toolkit

More information

Preparing for GO!Enterprise MDM On-Demand Service

Preparing for GO!Enterprise MDM On-Demand Service Preparing for GO!Enterprise MDM On-Demand Service This guide provides information on...... An overview of GO!Enterprise MDM... Preparing your environment for GO!Enterprise MDM On-Demand... Firewall rules

More information

Deploying Windows Streaming Media Servers NLB Cluster and metasan

Deploying Windows Streaming Media Servers NLB Cluster and metasan Deploying Windows Streaming Media Servers NLB Cluster and metasan Introduction...................................................... 2 Objectives.......................................................

More information

X Series Application Note 43:

X Series Application Note 43: X Series Application Note 43: Using the Remote Viewing & Web Pages of the X - Series & GR Series Recorders The Remote Viewing function of the X-Series and GR Series Recorders provide the user with the

More information

Integrating the Internet into Your Measurement System. DataSocket Technical Overview

Integrating the Internet into Your Measurement System. DataSocket Technical Overview Integrating the Internet into Your Measurement System DataSocket Technical Overview Introduction The Internet continues to become more integrated into our daily lives. This is particularly true for scientists

More information

Software Requirement Specification For Flea Market System

Software Requirement Specification For Flea Market System Software Requirement Specification For Flea Market System By Ilya Verlinsky, Alexander Sarkisyan, Ambartsum Keshishyan, Igor Gleyser, Andrey Ishuninov 1 INTRODUCTION 1.1 Purpose 1.1.1 Purpose of SRS document

More information

Virtual Lab : Bring the Hands-on Activity to Online Courses

Virtual Lab : Bring the Hands-on Activity to Online Courses Virtual Lab : Bring the Hands-on Activity to Online Courses Biwu Yang East Carolina University Session 3220 Abstract A Virtual Lab has been implemented for several online courses with subject around Computer

More information

AC 2007-894: A DATABASE AND USER INTERFACE DESIGN FOR A REMOTE ACCESSIBLE ENGINEERING LABORATORY

AC 2007-894: A DATABASE AND USER INTERFACE DESIGN FOR A REMOTE ACCESSIBLE ENGINEERING LABORATORY AC 2007-894: A DATABASE AND USER INTERFACE DESIGN FOR A REMOTE ACCESSIBLE ENGINEERING LABORATORY Xiaoxi Martin, Western Carolina University Xiaoxi Martin received her Bachelor of Science in Electrical

More information

VoIP Ceiling Speaker with Allworx 6x Server Setup Guide

VoIP Ceiling Speaker with Allworx 6x Server Setup Guide VoIP Ceiling Speaker with Allworx 6x Server Setup Guide CyberData Corporation 2555 Garden Road Monterey, CA 93940 T:831-373-2601 F: 831-373-4193 www.cyberdata.net 2 1.0 Setup Diagram Figure 1-1 is a setup

More information

Australian Synchrotron, Storage Gateway

Australian Synchrotron, Storage Gateway Australian Synchrotron, Storage Gateway User Help Manual Version 1.2 Storage Gateway User Help Manual 2 REVISION HISTORY Date Version Description Author 2 May 2008 1.0 Document creation Chris Myers 13

More information

File Transfer Examples. Running commands on other computers and transferring files between computers

File Transfer Examples. Running commands on other computers and transferring files between computers Running commands on other computers and transferring files between computers 1 1 Remote Login Login to remote computer and run programs on that computer Once logged in to remote computer, everything you

More information

BlackBerry Enterprise Server for Microsoft Office 365 preinstallation checklist

BlackBerry Enterprise Server for Microsoft Office 365 preinstallation checklist BlackBerry Enterprise Server for Microsoft Office 365 preinstallation checklist This document lists the preinstallation requirements that must be met before you install the BlackBerry Enterprise Server

More information

Setting Up Your Personally- Owned Computer

Setting Up Your Personally- Owned Computer Setting Up Your Personally- Owned Computer For use with the Kwansei Gakuin University Computer Network On-Campus Wireless LAN Connection for Windows 8.1 2015.3 Organization for Information Management and

More information

C-more Remote Access with Apple ipad or iphone Tutorial

C-more Remote Access with Apple ipad or iphone Tutorial C-more Remote Access with Apple ipad or iphone Tutorial P a g e 2 Introduction: This script will walk you through the basic process of setting up the remote access with an Apple ipad with the Remote Access

More information

HP Education Services

HP Education Services HP Education Services itp WebServer Workshop for NonStop Servers (U4160S) Learn the basics of installing, configuring, and securing HP itp WebServer solutions along with the management procedures needed

More information

E-mail:sales@tst-software.com Web site: www.tst-software.com

E-mail:sales@tst-software.com Web site: www.tst-software.com E-mail:sales@tst-software.com Web site: www.tst-software.com Solutions That Make Sense for Windows 7/XP/2008 and 2003 Server/2000 Multi-DNC v8.0 for Windows 7/XP/2008 and 2003 Server/2000 communications

More information

Software Requirements Specification

Software Requirements Specification METU DEPARTMENT OF COMPUTER ENGINEERING Software Requirements Specification SNMP Agent & Network Simulator Mustafa İlhan Osman Tahsin Berktaş Mehmet Elgin Akpınar 05.12.2010 Table of Contents 1. Introduction...

More information

Voice Over Internet Protocol (VoIP) Configuration

Voice Over Internet Protocol (VoIP) Configuration (VoIP) Configuration ENGINEERING REPORT No: 02-003 Introduction This report describes interfacing the IPCS VoIP Gateway Model EGW-902 to an ESTeem Model 192E Wireless Ethernet radio modem in a demonstration

More information

Talk Internet User Guides Controlgate Administrative User Guide

Talk Internet User Guides Controlgate Administrative User Guide Talk Internet User Guides Controlgate Administrative User Guide Contents Contents (This Page) 2 Accessing the Controlgate Interface 3 Adding a new domain 4 Setup Website Hosting 5 Setup FTP Users 6 Setup

More information

Basic Exchange Setup Guide

Basic Exchange Setup Guide Basic Exchange Setup Guide The following document and screenshots are provided for a single Microsoft Exchange Small Business Server 2003 or Exchange Server 2007 setup. These instructions are not provided

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

Design and Development of Virtual Instrument (VI) Modules for an Introductory Digital Logic Course

Design and Development of Virtual Instrument (VI) Modules for an Introductory Digital Logic Course Session ENG 206-6 Design and Development of Virtual Instrument (VI) Modules for an Introductory Digital Logic Course Nikunja Swain, Ph.D., PE South Carolina State University swain@scsu.edu Raghu Korrapati,

More information

PC-Duo Web Console Installation Guide

PC-Duo Web Console Installation Guide PC-Duo Web Console Installation Guide Release 12.1 August 2012 Vector Networks, Inc. 541 Tenth Street, Unit 123 Atlanta, GA 30318 (800) 330-5035 http://www.vector-networks.com Copyright 2012 Vector Networks

More information

Motorola AP-5131 Access Point Quick Setup Guide

Motorola AP-5131 Access Point Quick Setup Guide Motorola AP-5131 Access Point Quick Setup Guide Ishida / Rice Lake Wireless Communications P/N 109422 Getting Started 1. These instructions were written for the AP-5131 using firmware version 1.1.0.0-045R.

More information

Single Sign On. SSO & ID Management for Web and Mobile Applications

Single Sign On. SSO & ID Management for Web and Mobile Applications Single Sign On and ID Management Single Sign On SSO & ID Management for Web and Mobile Applications Presenter: Manish Harsh Program Manager for Developer Marketing Platforms of NVIDIA (Visual Computing

More information

Stuart Gillen. Principal Marketing Manger. National Instruments stuart.gillen@ni.com. ni.com

Stuart Gillen. Principal Marketing Manger. National Instruments stuart.gillen@ni.com. ni.com Stuart Gillen Principal Marketing Manger National Instruments stuart.gillen@ New Enterprise Solution for Condition Monitoring Applications NI InsightCM Enterprise NI History of Condition Monitoring Order

More information

Tracer Summit Web Server

Tracer Summit Web Server Tracer Summit Web Server Web-based access for the Tracer Summit building automation system March 2003 BAS-PRC014-EN Introduction The Tracer Summit Web Server provides the ability to operate a Tracer Summit

More information

Firewall VPN Router. Quick Installation Guide M73-APO09-380

Firewall VPN Router. Quick Installation Guide M73-APO09-380 Firewall VPN Router Quick Installation Guide M73-APO09-380 Firewall VPN Router Overview The Firewall VPN Router provides three 10/100Mbit Ethernet network interface ports which are the Internal/LAN, External/WAN,

More information

RingStor User Manual. Version 2.1 Last Update on September 17th, 2015. RingStor, Inc. 197 Route 18 South, Ste 3000 East Brunswick, NJ 08816.

RingStor User Manual. Version 2.1 Last Update on September 17th, 2015. RingStor, Inc. 197 Route 18 South, Ste 3000 East Brunswick, NJ 08816. RingStor User Manual Version 2.1 Last Update on September 17th, 2015 RingStor, Inc. 197 Route 18 South, Ste 3000 East Brunswick, NJ 08816 Page 1 Table of Contents 1 Overview... 5 1.1 RingStor Data Protection...

More information

Multi-Homing Dual WAN Firewall Router

Multi-Homing Dual WAN Firewall Router Multi-Homing Dual WAN Firewall Router Quick Installation Guide M73-APO09-400 Multi-Homing Dual WAN Firewall Router Overview The Multi-Homing Dual WAN Firewall Router provides three 10/100Mbit Ethernet

More information

Network Licensing. White Paper 0-15Apr014ks(WP02_Network) Network Licensing with the CRYPTO-BOX. White Paper

Network Licensing. White Paper 0-15Apr014ks(WP02_Network) Network Licensing with the CRYPTO-BOX. White Paper WP2 Subject: with the CRYPTO-BOX Version: Smarx OS PPK 5.90 and higher 0-15Apr014ks(WP02_Network).odt Last Update: 28 April 2014 Target Operating Systems: Windows 8/7/Vista (32 & 64 bit), XP, Linux, OS

More information

LabVIEW Internet Toolkit User Guide

LabVIEW Internet Toolkit User Guide LabVIEW Internet Toolkit User Guide Version 6.0 Contents The LabVIEW Internet Toolkit provides you with the ability to incorporate Internet capabilities into VIs. You can use LabVIEW to work with XML documents,

More information

If you are unable to set up your Linksys Router by using one of the above options, use the steps below to manually configure your router.

If you are unable to set up your Linksys Router by using one of the above options, use the steps below to manually configure your router. This article describes how to manually configure a Linksys Router for broadband DSL that uses PPPoE (Point-to-Point Protocol over Ethernet) for authentication. For automatic configuration options, please

More information

Installation Guide For ChoiceMail Enterprise Edition

Installation Guide For ChoiceMail Enterprise Edition Installation Guide For ChoiceMail Enterprise Edition How to Install ChoiceMail Enterprise On A Server In Front Of Your Company Mail Server August, 2004 Version 2.6x Copyright DigiPortal Software, 2002-2004

More information

Linksys Gateway SPA2100-SU Manual

Linksys Gateway SPA2100-SU Manual Linksys Gateway SPA2100-SU Manual Manuel de l'utilisateur Table of Contents Looking for Basic Setup Instructions?... 3 Most Recent Version of this Manual... 3 Advanced Setup Instructions... 4 Wiring Your

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

How To Set Up A Macintosh With A Cds And Cds On A Pc Or Macbook With A Domain Name On A Macbook (For A Pc) For A Domain Account (For An Ipad) For Free

How To Set Up A Macintosh With A Cds And Cds On A Pc Or Macbook With A Domain Name On A Macbook (For A Pc) For A Domain Account (For An Ipad) For Free Setting Up a Macintosh For Use In The Medical Center The purpose of this document is to provide some assistance and direction to the users of Macintosh computers in The Medical Center network environment.

More information

Detailed Revision History: Advanced Internet System Management (v5.07)

Detailed Revision History: Advanced Internet System Management (v5.07) Detailed Revision History 1 Detailed Revision History: Advanced Internet System Management (v5.07) This detailed revision history document identifies the differences in Advanced Internet System Management

More information

Interstage Application Server V7.0 Single Sign-on Operator's Guide

Interstage Application Server V7.0 Single Sign-on Operator's Guide Interstage Application Server V7.0 Single Sign-on Operator's Guide Single Sign-on Operator's Guide - Preface Trademarks Trademarks of other companies are used in this user guide only to identify particular

More information

NetIQ Access Manager 4.1

NetIQ Access Manager 4.1 White Paper NetIQ Access Manager 4.1 Performance and Sizing Guidelines Performance, Reliability, and Scalability Testing Revisions This table outlines all the changes that have been made to this document

More information

An Embedded Wireless Mini-Server with Database Support

An Embedded Wireless Mini-Server with Database Support An Embedded Wireless Mini-Server with Database Support Hungchi Chang, Sy-Yen Kuo and Yennun Huang Department of Electrical Engineering National Taiwan University Taipei, Taiwan, R.O.C. Abstract Due to

More information

http://docs.trendmicro.com

http://docs.trendmicro.com Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,

More information

Immotec Systems, Inc. SQL Server 2005 Installation Document

Immotec Systems, Inc. SQL Server 2005 Installation Document SQL Server Installation Guide 1. From the Visor 360 installation CD\USB Key, open the Access folder and install the Access Database Engine. 2. Open Visor 360 V2.0 folder and double click on Setup. Visor

More information

NETWORK ADMINISTRATOR

NETWORK ADMINISTRATOR JOB DESCRIPTION Title: NETWORK ADMINISTRATOR Department: Information Systems Class Code: 1821 FLSA Status: Exempt Effective Date: February 13, 1997 (Rev. 07/2012) Grade Number: 26 GENERAL PURPOSE Under

More information

How to setup PPTP VPN connection with DI-804HV or DI-808HV using Windows PPTP client

How to setup PPTP VPN connection with DI-804HV or DI-808HV using Windows PPTP client How to setup PPTP VPN connection with DI-804HV or DI-808HV using Windows PPTP client Make sure your DI-804HV or DI-808HV is running firmware ver.1.40 August 12 or later. You can check firmware version

More information

QUANTIFY INSTALLATION GUIDE

QUANTIFY INSTALLATION GUIDE QUANTIFY INSTALLATION GUIDE Thank you for putting your trust in Avontus! This guide reviews the process of installing Quantify software. For Quantify system requirement information, please refer to the

More information

Basic Exchange Setup Guide

Basic Exchange Setup Guide Basic Exchange Setup Guide The following document and screenshots are provided for a single Microsoft Exchange Small Business Server 2003 or Exchange Server 2007 setup. These instructions are not provided

More information

A Smart Telephone Answering Machine with Voice Message Forwarding Capability

A Smart Telephone Answering Machine with Voice Message Forwarding Capability A Smart Telephone Answering Machine with Voice Message Forwarding Capability Chih-Hung Huang 1 Cheng Wen 2 Kuang-Chiung Chang 3 1 Department of Information Management, Lunghwa University of Science and

More information

Network Setup Guide. 1 Glossary. 2 Operation. 1.1 Static IP. 1.2 Point-to-Point Protocol over Ethernet (PPPoE)

Network Setup Guide. 1 Glossary. 2 Operation. 1.1 Static IP. 1.2 Point-to-Point Protocol over Ethernet (PPPoE) Network Setup Guide 1 Glossary 1.1 Static IP Computers are communicated and recognized by their own unique IP addresses over the Internet. Static IP provided by your ISP (Internet Service Provider) means

More information

ClearOS Network, Gateway, Server Quick Start Guide

ClearOS Network, Gateway, Server Quick Start Guide ClearOS Network, Gateway, Server Quick Start Guide Welcome ClearOS is computer Operating System (OS) that provides enterprise-level network security and application services to the Small/Medium-sized Business

More information

Base One's Rich Client Architecture

Base One's Rich Client Architecture Base One's Rich Client Architecture Base One provides a unique approach for developing Internet-enabled applications, combining both efficiency and ease of programming through its "Rich Client" architecture.

More information

FileMaker Server 7. Administrator s Guide. For Windows and Mac OS

FileMaker Server 7. Administrator s Guide. For Windows and Mac OS FileMaker Server 7 Administrator s Guide For Windows and Mac OS 1994-2004, FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark

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

Wireless Network Standard

Wireless Network Standard Last Modified: 10/20/15 Wireless Network Standard Purpose The standard and guidelines described in this document will ensure the uniformity of wireless network access points at the University of Georgia.

More information

BlackBerry Enterprise Service 10. Version: 10.2. Configuration Guide

BlackBerry Enterprise Service 10. Version: 10.2. Configuration Guide BlackBerry Enterprise Service 10 Version: 10.2 Configuration Guide Published: 2015-02-27 SWD-20150227164548686 Contents 1 Introduction...7 About this guide...8 What is BlackBerry Enterprise Service 10?...9

More information

Cell Phone Vibration Experiment

Cell Phone Vibration Experiment Objective Cell Phone Vibration Experiment Most cell phones are designed to vibrate. But at what frequency do they vibrate? With an accelerometer, data acquisition and signal analysis the vibration frequency

More information

Novell Access Manager

Novell Access Manager Access Gateway Guide AUTHORIZED DOCUMENTATION Novell Access Manager 3.1 SP2 November 16, 2010 www.novell.com Novell Access Manager 3.1 SP2 Access Gateway Guide Legal Notices Novell, Inc., makes no representations

More information

Synapse s SNAP Network Operating System

Synapse s SNAP Network Operating System Synapse s SNAP Network Operating System by David Ewing, Chief Technology Officer, Synapse Wireless Today we are surrounded by tiny embedded machines electro-mechanical systems that monitor the environment

More information

SIP Proxy Server. Administrator Installation and Configuration Guide. V2.31b. 09SIPXM.SY2.31b.EN3

SIP Proxy Server. Administrator Installation and Configuration Guide. V2.31b. 09SIPXM.SY2.31b.EN3 SIP Proxy Server Administrator Installation and Configuration Guide V2.31b 09SIPXM.SY2.31b.EN3 DSG, DSG logo, InterPBX, InterServer, Blaze Series, VG5000, VG7000, IP590, IP580, IP500, IP510, InterConsole,

More information

Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference

Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference Architecture and Data Flow Overview BlackBerry Enterprise Service 10 721-08877-123 Version: Quick Reference Published: 2013-11-28 SWD-20131128130321045 Contents Key components of BlackBerry Enterprise

More information

Training module 2 Installing VMware View

Training module 2 Installing VMware View Training module 2 Installing VMware View In this second module we ll install VMware View for an End User Computing environment. We ll install all necessary parts such as VMware View Connection Server and

More information

Outline Introduction to Internet, Intranet and Extranet. What is an Intranet? by Awad. Basic Intranet-enabling Technology [Awad, chapter 4]

Outline Introduction to Internet, Intranet and Extranet. What is an Intranet? by Awad. Basic Intranet-enabling Technology [Awad, chapter 4] Outline Introduction to Internet, and Yan Wang E6A 339 yan.wang@mq.edu.au Internet Ultranet" 1 2 What is an? by Awad Basic -enabling Technology [Awad, chapter 4] A cluster of networked computers within

More information

Chapter 6 Using Network Monitoring Tools

Chapter 6 Using Network Monitoring Tools Chapter 6 Using Network Monitoring Tools This chapter describes how to use the maintenance features of your Wireless-G Router Model WGR614v9. You can access these features by selecting the items under

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

Prepared by Enea S.Teresa (Italy) Version 1.0 2006-October 24

Prepared by Enea S.Teresa (Italy) Version 1.0 2006-October 24 Mersea Information System: an Authentication and Authorization System to access distributed oceanographic data. Prepared by Enea S.Teresa (Italy) Version 1.0 2006-October 24 Revision History Date Version

More information

Issues in Information Systems Volume 16, Issue I, pp. 219-225, 2015

Issues in Information Systems Volume 16, Issue I, pp. 219-225, 2015 MOVING TOWARD A SERVER-BASED VIRTUAL MACHINE HOSTING ENVIRONMENT IN SUPPORT OF UNIVERSITY INFORMATION TECHNOLOGY PROGRAMMING COURSES George Stefanek, PhD, Purdue University North Central, stefanek@pnc.edu

More information

Student Halls Network. Connection Guide

Student Halls Network. Connection Guide Student Halls Network Connection Guide Contents: Page 3 Page 4 Page 6 Page 10 Page 17 Page 18 Page 19 Page 20 Introduction Network Connection Policy Connecting to the Student Halls Network Connecting to

More information

External Storage 200 Series. User s Manual

External Storage 200 Series. User s Manual External Storage 200 Series User s Manual Version 1.2 00P3DS200ZSEA2 Table of Contents User s Manual 1. Overview...3 2. Key Features...3 3. Rear Connectors...4 4. Setup the External Storage 200...4 5.

More information

3DVISION MOTION CAPTURE SYSTEM AND THE DYSCO "VIRTUAL LABORATORY" FOR SEISMIC AND VIBRATION TESTS

3DVISION MOTION CAPTURE SYSTEM AND THE DYSCO VIRTUAL LABORATORY FOR SEISMIC AND VIBRATION TESTS ATTIVITÀ IN CAMPO SISMICO RECENTI STUDI E SVILUPPI FUTURI Attività in campo sismico. 3DVISION MOTION CAPTURE SYSTEM AND THE DYSCO "VIRTUAL LABORATORY" FOR SEISMIC AND VIBRATION TESTS Gerardo De Canio,,

More information

How To Secure Your Computer With Libreware Libreroview 2.5.2.2 (Windows) And Libreros (Windows 2) (Windows 3.5) (For Windows) (Powerpoint) (Networking)

How To Secure Your Computer With Libreware Libreroview 2.5.2.2 (Windows) And Libreros (Windows 2) (Windows 3.5) (For Windows) (Powerpoint) (Networking) Addressing Embedded Security in LabVIEW RIO Systems Carlos Pazos Product Marketing Manager Embedded Software Why Care About Security? 3 Why care about Security? Why Care About Industrial Security? 4 Stuxnet

More information

Installing Management Applications on VNX for File

Installing Management Applications on VNX for File EMC VNX Series Release 8.1 Installing Management Applications on VNX for File P/N 300-015-111 Rev 01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright

More information

Server Installation, Administration and Integration Guide

Server Installation, Administration and Integration Guide Server Installation, Administration and Integration Guide Version 1.1 Last updated October 2015 2015 sitehelpdesk.com, all rights reserved TABLE OF CONTENTS 1 Introduction to WMI... 2 About Windows Management

More information

Guide to Analyzing Feedback from Web Trends

Guide to Analyzing Feedback from Web Trends Guide to Analyzing Feedback from Web Trends Where to find the figures to include in the report How many times was the site visited? (General Statistics) What dates and times had peak amounts of traffic?

More information

Wireless Network Standard and Guidelines

Wireless Network Standard and Guidelines Wireless Network Standard and Guidelines Purpose The standard and guidelines listed in this document will ensure the uniformity of wireless network access points and provide guidance for monitoring, maintaining

More information

Table of Contents Introduction and System Requirements 9 Installing VMware Server 35

Table of Contents Introduction and System Requirements 9 Installing VMware Server 35 Table of Contents Introduction and System Requirements 9 VMware Server: Product Overview 10 Features in VMware Server 11 Support for 64-bit Guest Operating Systems 11 Two-Way Virtual SMP (Experimental

More information

S E C U R I T Y A S S E S S M E N T : B o m g a r B o x T M. Bomgar. Product Penetration Test. September 2010

S E C U R I T Y A S S E S S M E N T : B o m g a r B o x T M. Bomgar. Product Penetration Test. September 2010 S E C U R I T Y A S S E S S M E N T : B o m g a r B o x T M Bomgar Product Penetration Test September 2010 Table of Contents Introduction... 1 Executive Summary... 1 Bomgar Application Environment Overview...

More information

Structure and Performance of Open Access Networks Case Lappeenranta Model

Structure and Performance of Open Access Networks Case Lappeenranta Model Structure and Performance of Open Access Networks Case Lappeenranta Model M.Juutilainen, T.Lapinlampi, J.Ikonen and J.Porras Paper Title Laboratory of Communications Engineering, Lappeenranta University

More information

Local Area Networks: Software

Local Area Networks: Software School of Business Eastern Illinois University Local Area Networks: Software (Week 8, Thursday 3/1/2007) Abdou Illia, Spring 2007 Learning Objectives 2 Identify main functions of operating systems Describe

More information

PLANET is a registered trademark of PLANET Technology Corp. All other trademarks belong to their respective owners.

PLANET is a registered trademark of PLANET Technology Corp. All other trademarks belong to their respective owners. Trademarks Copyright PLANET Technology Corp. 2004 Contents subject to revise without prior notice. PLANET is a registered trademark of PLANET Technology Corp. All other trademarks belong to their respective

More information

EMX-2500 DATA SHEET FEATURES GIGABIT ETHERNET REMOTE CONTROLLER FOR PXI EXPRESS MAINFRAMES SYSTEM LEVEL FUNCTIONALITY

EMX-2500 DATA SHEET FEATURES GIGABIT ETHERNET REMOTE CONTROLLER FOR PXI EXPRESS MAINFRAMES SYSTEM LEVEL FUNCTIONALITY DATA SHEET EMX-2500 GIGABIT ETHERNET REMOTE CONTROLLER FOR PXI EXPRESS MAINFRAMES FEATURES SYSTEM LEVEL FUNCTIONALITY Industry s first gigabit Ethernet Remote controller for PXI express mainframes Up to

More information

CONNECTING TO DEPARTMENT OF COMPUTER SCIENCE SERVERS BOTH FROM ON AND OFF CAMPUS USING TUNNELING, PuTTY, AND VNC Client Utilities

CONNECTING TO DEPARTMENT OF COMPUTER SCIENCE SERVERS BOTH FROM ON AND OFF CAMPUS USING TUNNELING, PuTTY, AND VNC Client Utilities CONNECTING TO DEPARTMENT OF COMPUTER SCIENCE SERVERS BOTH FROM ON AND OFF CAMPUS USING TUNNELING, PuTTY, AND VNC Client Utilities DNS name: turing.cs.montclair.edu -This server is the Departmental Server

More information

Introduction to Data Acquisition

Introduction to Data Acquisition Introduction to Data Acquisition Overview This tutorial is part of the National Instruments Measurement Fundamentals series. Each tutorial in this series, will teach you a specific topic of common measurement

More information

Vibration Measurement of Wireless Sensor Nodes for Structural Health Monitoring

Vibration Measurement of Wireless Sensor Nodes for Structural Health Monitoring , pp.18-22 http://dx.doi.org/10.14257/astl.2015.98.05 Vibration Measurement of Wireless Sensor Nodes for Structural Health Monitoring Surgwon Sohn, Seong-Rak Rim, In Jung Lee Div. of Computer and Information

More information

How To Upgrade To Symantec Mail Security Appliance 7.5.5

How To Upgrade To Symantec Mail Security Appliance 7.5.5 Release notes Information Foundation 2007 Symantec Mail Security Appliance 7.5 Copyright 1999-2007 Symantec Corporation. All rights reserved. Before installing or upgrading: Migration issues If you are

More information

How To Build An 802.11B Wireless Local Area Network At Texas A&M

How To Build An 802.11B Wireless Local Area Network At Texas A&M Session 3147 Implementing a Wireless Network Infrastructure to Enhance ET Curriculum Clay Barbee, Brian Lenahan, Michael Warren, Jay R. Porter, Joseph Morgan Texas A&M University Abstract During the summer

More information

Connecting an Android to a FortiGate with SSL VPN

Connecting an Android to a FortiGate with SSL VPN Connecting an Android to a FortiGate with SSL VPN This recipe describes how to provide a group of remote Android users with secure, encrypted access to the network using FortiClient and SSL VPN. You must

More information

Tele-Lab IT Security: An Architecture for Interactive Lessons for Security Education

Tele-Lab IT Security: An Architecture for Interactive Lessons for Security Education Tele-Lab IT Security: An Architecture for Interactive Lessons for Security Education Ji Hu hu@ti.uni-trier.de Christoph Meinel meinel@ti.uni-trier.de Michael Schmitt michael.schmitt@teststep.org ABSTRACT

More information