Ubuntu Linux Install and Configure Ndiswrapper and wpa_supplicant

Size: px
Start display at page:

Download "Ubuntu Linux Install and Configure Ndiswrapper and wpa_supplicant"

Transcription

1 Main menu BASH Shell Troubleshooting Nginx Networking MySQL Google Cloud Platform Amazon Cloud Computing Rackspace Cloud Computing Linux CentOS Debian / Ubuntu Ubuntu Linux Suse RedHat and Friends Slackware Linux UNIX AIX Mac OS X FreeBSD FreeBSD Jails (VPS) Openbsd Solaris See all tutorial topics Blog About Contact us Forum RSS/FEED Linux FAQ / Howtos Ubuntu Linux Install and Configure Ndiswrapper and wpa_supplicant by nixcraft on April 23, comments LAST UPDATED April 24, 2008 in Debian / Ubuntu, Linux, Networking Q. How do I install NdisWrapper and wpa_supplicant under Ubuntu Linux? A. NdisWrapper is a free software driver wrapper that enables the use of Microsoft Windows drivers for wireless network devices such as PCI cards, USB modems on Linux / Unix-like operating systems. Ndiswrapper works by implementing the Windows kernel and NDIS

2 APIs, and dynamically linking the driver to this implementation. You need to install following softwares: ndiswrapper-common : Common scripts required to use the utilities ndiswrapper-utils : Userspace utilities for the ndiswrapper linux Step # 1: Download and install ndiswrapper You can download.deb ndiswrapper packages here Alternatively, you can install the same using apt-get command: $ apt-cache search ndiswrapper-utils Output (note version number 1.9): ndiswrapper-utils Userspace utilities for the ndiswrapper linux kernel module Now install it: $ sudo apt-get install ndiswrapper-common ndiswrapper-utils-1.9 Step # 2: Copy.INF and.sys files You need to copy.inf and.sys files from CD / floppy disk provided with your device. You can also obtain driver from manufactures web site. Step # 3: Install Driver To install driver, enter: $ sudo ndiswrapper -i driver-name.inf Verify that driver was installed: $ ndiswrapper -l Finally, install ndiswrapper driver $ sudo modprobe ndiswrapper Step # 4: Verify wireless interface Use iwconfig to see your wireless interface: $ iwconfig Sample output: lo eth0 wlan0 no wireless extensions. no wireless extensions. IEEE g ESSID:"payalhome" Mode:Managed Frequency:2.462 GHz Access Point: 00:1B:2F:A3:4C:9A Bit Rate=54 Mb/s Sensitivity=-200 dbm RTS thr=2346 B Fragment thr=2346 B Power Management:off Link Quality:29/100 Signal level:-77 dbm Noise level:-96 dbm Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0 Tx excessive retries:0 Invalid misc:0 Missed beacon:0 Make sure your driver get loaded each time you boot your computer: $ sudo ndiswrapper -m

3 Step # 5: Install wpa_supplicant Wireless networks do not require physical access to the network equipment in the same way as wired networks. This makes it easier for unauthorized users to passively monitor a network and capture all transmitted frames. In addition, unauthorized use of the network is much easier. In many cases, this can happen even without user s explicit knowledge since the wireless LAN adapter may have been configured to automatically join any available network. So configure your wireless router for WPA or WPA2 security (refer router documentation for more information). wpa_supplicant is Wi-Fi Protected Access client and can be install by entering following command: $ sudo apt-get install wpasupplicant wpagui /etc/wpa_supplicant.conf - Default configuration file Scan your network Type the following command to scan your network $ iwlist wlan0 scan Sample output: wlan0 Scan completed : Cell 01 - Address: 00:1A:2F:A4:4C:9A ESSID:"payalhome" Protocol:IEEE g Mode:Managed Frequency:2.462 GHz (Channel 11) Quality:37/100 Signal level:-72 dbm Noise level:-96 dbm Encryption key:on Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s 48 Mb/s; 54 Mb/s Extra:bcn_int=100 Extra:atim=0 IE: IEEE i/WPA2 Version 1 Group Cipher : WEP-40 Pairwise Ciphers (1) : TKIP Authentication Suites (1) : PSK IE: WPA Version 1 Group Cipher : WEP-40 Pairwise Ciphers (1) : WEP-40 Authentication Suites (1) : PSK Step # 6a: Configure Wireless card for WPA authentication Open /etc/wpa_supplicant.conf file: $ gksudo gedit /etc/wpa_supplicant.conf OR $ gksudo vi /etc/wpa_supplicant.conf Append configuration as follows: network={ ssid="your-network-essid" proto=wpa key_mgmt=wpa-psk pairwise=tkip group=tkip

4 } psk="your-password" Save and close the file. Step # 6b: Configure Wireless card for WPA2 authentication Open /etc/wpa_supplicant.conf file: $ gksudo gedit /etc/wpa_supplicant.conf OR $ gksudo vi /etc/wpa_supplicant.conf Append configuration as follows: network={ ssid="your-network-essid" proto=rsn key_mgmt=wpa-psk pairwise=ccmp TKIP group=ccmp TKIP psk="your-password" } Save and close the file. Connect to network Type the following command: $ sudo wpa_supplicant -d -c/etc/wpa_supplicant.conf -idevice-name -Dwext If your device name is wlan0, enter: $ sudo wpa_supplicant -d -c/etc/wpa_supplicant.conf -iwlan0 -Dwext Assign IP address Finally, you need to assign IP address using DHCP server built into wireless router, simply enter two commands: $ sudo ifconfig wireless-interface up $ sudo dhclient wireless-interface $ host google.com $ ping nixcraft.com If your device name is wlan0, enter: $ sudo ifconfig wlan0 up $ sudo dhclient wlan0 If every thing works as expected, you can start wpa_supplicant without -d option i.e replace -d by -B for the deamon mode: $ sudo wpa_supplicant -B -c/etc/wpa_supplicant.conf -iwlan0 -Dwext Further readings: man pages - wpa_supplicant, wpa_supplicant.conf, iwconfig, iwscan, ping, host ndiswrapper project wpa_supplicant project Ultimate Linux desktop operating system

5 0 3 Stu If you would like to be kept up to date with our posts, you can follow us on Twitter, Facebook, Google+, or even by subscribing to our RSS Feed. Featured Articles: 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X Top 30 Nmap Command Examples For Sys/Network Admins 25 PHP Security Best Practices For Sys Admins 20 Linux System Monitoring Tools Every SysAdmin Should Know 20 Linux Server Hardening Security Tips Linux: 20 Iptables Examples For New SysAdmins Top 20 OpenSSH Server Best Security Practices Top 20 Nginx WebServer Best Security Practices 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors 15 Greatest Open Source Terminal Applications Of 2012 My 10 UNIX Command Line Mistakes Top 10 Open Source Web-Based Project Management Software Top 5 Client For Linux, Mac OS X, and Windows Users The Novice Guide To Buying A Linux Laptop { 15 comments read them below or add one } 1 FErArg April 24, 2008 at 7:03 am Great Post! -= FErArg =- 2 phyz June 4, 2008 at 1:41 pm great post & it works for roaming mode but how about static ip with wpa or wep?

6 3 James June 5, 2008 at 8:09 pm Wow, this was a very useful and well written guide. This is only my second day using ubuntu after years of Windows, but thanks to the clarity of your guide I had no trouble getting my wpa-psk card working. (However, before I found this guide I was lost in a swamp of overly complicated procedures and piecemeal advice from various forums.) 4 Ninster July 5, 2009 at 3:54 pm This was extremely useful, concise but thorough. I had spent 3 days trying to get this to work with a Netgear WN311T using ndiswrapper, and this provided the breakthrough. Next step is to make it work automatically on boot. 5 Nitin August 13, 2010 at 6:17 am Good post indeed. I succeded till step three i.e. i installed the driver. My network does not have any security mode enabled i.e. it is open still ESSID is not scanned by the system. I get the following output. I am new to Linux can anybody help. nitin@office2:~$ iwconfig lo no wireless extensions. eth0 no wireless extensions. wlan0 IEEE g ESSID:off/any Mode:Managed Channel:0 Access Point: Not-Associated Bit Rate:1 Mb/s Sensitivity=-200 dbm RTS thr=2346 B Fragment thr=2346 B Power Management:off Link Quality:0 Signal level:0 Noise level:0 Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0 Tx excessive retries:0 Invalid misc:0 Missed beacon:0 nitin@office2:~$ 6 Nitin August 13, 2010 at 6:42 am Upon scanning the network I get the following output. I want to connect to compexnp27g nitin@office2:~$ iwlist wlan0 scan wlan0 Scan completed : Cell 01 Address: 00:80:48:4C:3E:73 ESSID: compex-np27g Protocol:IEEE g Mode:Managed Frequency:2.412 GHz (Channel 1) Quality:56/100 Signal level:-60 dbm Noise level:-96 dbm

7 Encryption key:off Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s 48 Mb/s; 54 Mb/s Extra:bcn_int=100 Extra:atim=0 Cell 02 Address: 00:02:6F:47:AC:1E ESSID: admin Protocol:IEEE b Mode:Managed Frequency:2.417 GHz (Channel 2) Quality:7/100 Signal level:-91 dbm Noise level:-96 dbm Encryption key:off Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s Extra:bcn_int=100 Extra:atim=0 Cell 03 Address: 00:1E:40:E7:58:B9 ESSID: default Protocol:IEEE g Mode:Managed Frequency:2.462 GHz (Channel 11) Quality:10/100 Signal level:-89 dbm Noise level:-96 dbm Encryption key:off Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s 24 Mb/s; 36 Mb/s; 54 Mb/s; 6 Mb/s; 9 Mb/s 12 Mb/s; 48 Mb/s Extra:bcn_int=100 Extra:atim=0 nitin@office2:~$ 7 milehunter September 7, 2010 at 7:03 pm Hello. i have ptoblem on step 2. you say to copy the.sys and.inf files ok? but where to paste them? in which directory? 8 Vivek Gite September 7, 2010 at 7:05 pm Copy to /tmp and run cp /media/cdrom/file.inf /tmp sudo ndiswrapper -i driver-name.inf 9 milehunter September 7, 2010 at 7:31 pm i m new on ubuntu so when i do this: cp /media/cdrom/file.inf /tmp, i get this: milehunter@milehunter-laptop:~$ cp /media/cdrom/file.inf /tmp cp: αδύνατη η εκτέλεση της stat στο αρχείο «/media/cdrom/file.inf»: No such file or directory

8 10 manu November 1, 2011 at 8:28 pm hey after step 3 my ubuntu termina is showing WARNING: All config files need.conf: /etc/modprobe.d/ndiswrapper, it will be ignored in a future releas..what do you mean by that and how to solve it. 11 milehunter September 7, 2010 at 7:22 pm i m new on ubuntu so when i do this: cp /media/cdrom/file.inf /tmp, i get this: milehunter@milehunter-laptop:~$ cp /media/cdrom/file.inf /tmp cp: αδύνατη η εκτέλεση της stat στο αρχείο «/media/cdrom/file.inf»: No such file or directory 12 Hank Marshall November 8, 2011 at 7:45 pm lo no wireless extensions. wlan0 IEEE g ESSID:off/any Mode:Managed Channel:0 Access Point: Not-Associated Bit Rate:1 Mb/s Sensitivity=-200 dbm RTS thr=2346 B Fragment thr=2346 B Power Management:off Link Quality:0 Signal level:0 Noise level:0 Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0 Tx excessive retries:0 Invalid misc:0 Missed beacon:0 I use WPE with 128 HEX password. Need help to get past step 3. ndiswrapper -lall inst ndiswrapper output, per above message. Help Help Thank you all 13 Hank Marshall November 8, 2011 at 9:11 pm lo no wireless extensions. wlan0 IEEE g ESSID:off/any Mode:Managed Channel:0 Access Point: Not-Associated Bit Rate:1 Mb/s Sensitivity=-200 dbm RTS thr=2346 B Fragment thr=2346 B Power Management:off Link Quality:0 Signal level:0 Noise level:0 Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0 Tx excessive retries:0 Invalid misc:0 Missed beacon:0 I use WPE with 128 HEX password. Need help to get past step 3. ndiswrapper -lall inst ndiswrapper output, per above message. Help Help Thank you all

9 14 Hank Marshall November 8, 2011 at 9:17 pm Will I receive any info on this???? 15 Melqyahd February 6, 2012 at 12:46 am Hi, In the step 4, after completing the steps before, when I type iwconfig all I get is this: lo no wireless extensions. eth0 no wireless extensions. It doesn t appear wlan0 in here Could you help me, please? Thanks, Melqyahd Leave a Comment Name * * Website You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title=""> Notify me of followup comments via Submit Tagged as: /etc/wpa_supplicant.conf, access point, bit rate, host command, iwconfig command, iwscan command, linux kernel, ndis, ndiswrapper linux, noise level, pci cards, ping command, power management, software driver, sys files, Ubuntu Linux, windows drivers, windows kernel, wireless extensions, wireless interface Previous Faq: Installing Apache, PHP and mod_ssl on MS Windows Next Faq: Linux Install and Configure Netgear WG311 Marvell 88w8335 Rev 03 Chipset Wireless Card

10 GET FREE LINUX TIPS Sign up for our newsletter to get howto & news Sign Up nixcraft 35,949 nixcraft ( ). Facebook

11 Related Faqs Linux Install and Configure Netgear WG311 Marvell 88w8335 Rev 03 Chipset Wireless Card

12 DNS Client ) Ubuntu Linux Configure DNS Name Server IP Address ( Debian Linux Configure Wireless Networking With WPA2 Linux Configure Intel 4965 PRO Wireless Card Linux Disable Wireless Networking ( Wi-Fi ) Debian / Ubuntu Linux Install Kernel Headers Package Using A Shell Script Linux Iptables: Add / Delete An IP Address Remotely

13 Linux Laptop: Display Battery Status And Thermal Temperature From Command Line HowTo: Linux Show List Of Network Cards nslookup / host Dns Client Testing Command Not Found on Debian / Ubuntu Linux nixcraft. All rights reserved. Cannot be reproduced without written permission. Privacy Policy Terms of Service Questions or Comments Sitemap

FreeBSD Install VIM Editor Without X11 GUI

FreeBSD Install VIM Editor Without X11 GUI Main menu BASH Shell Linux CentOS Debian / Ubuntu Ubuntu Linux Suse RedHat and Friends Slackware Linux UNIX AIX Mac os x FreeBSD FreeBSD Jails (VPS) Openbsd Solaris Troubleshooting Nginx Networking MySQL

More information

FreeBSD: Install PHP xcache Opcode Cacher

FreeBSD: Install PHP xcache Opcode Cacher Main menu BASH Shell Linux CentOS Debian / Ubuntu Ubuntu Linux Suse RedHat and Friends Slackware Linux UNIX AIX Mac os x FreeBSD FreeBSD Jails (VPS) Openbsd Solaris Troubleshooting Nginx Networking MySQL

More information

Howto disable the iptables firewall in Linux

Howto disable the iptables firewall in Linux Home About Forum Shell Scripts Tutorials request Subscribe Linux FAQ / Howtos Howto disable the iptables firewall in Linux by Vivek Gite 11 comments Q. Quick question: I need to disable firewall in Linux

More information

Nomadic Communications Labs. Alessandro Villani

Nomadic Communications Labs. Alessandro Villani Nomadic Communications Labs Alessandro Villani avillani@science.unitn.it Ad Hoc Networks Ad Hoc Networks(IBSS) The wireless LANs we usually know make use of the mode infrastructured which requires one

More information

Iwconfig Wlan0 Key Error For Wireless Request Set Encode

Iwconfig Wlan0 Key Error For Wireless Request Set Encode Iwconfig Wlan0 Key Error For Wireless Request Set Encode natalie@nova:~$ sudo iwconfig wlan0 essid myroutername natalie@nova:~$ sudo iwconfig wlan0 key s:routerpassword Error for wireless request "Set

More information

Tutorial: Simple WEP Crack

Tutorial: Simple WEP Crack Tutorial: Simple WEP Crack Version: 1.20 January 11, 2010 By: darkaudax Introduction This tutorial walks you though a very simple case to crack a WEP key. It is intended to build your basic skills and

More information

WF8000-U User Manual. Version of 1.0. Release:

WF8000-U User Manual. Version of 1.0. Release: WF8000-U User Manual Version of 1.0 Release:2009-11-27 The note of Version update Version Date of Description update 1.0 2009-11-27 Init-release Table Of Contents WF8000-U USER MANUAL... 1 CHAPTER ONE:

More information

Wireless Networking. Dennis Rex SCALE 3X

Wireless Networking. Dennis Rex SCALE 3X Wireless Networking For Beginners Dennis Rex SCALE 3X - 2005 Agenda Wireless Choices 802.11A, B, G Devices - USB, PCI, PCMCIA, bridges Wireless chipsets - the good, the bad, the ugly Finding and installing

More information

AXIOMWARE SYSTEMS, INC. Netrunr Series. Netrunr Edge Hardware Manual. Rev 1.0. axiomware.com

AXIOMWARE SYSTEMS, INC. Netrunr Series. Netrunr Edge Hardware Manual. Rev 1.0. axiomware.com AXIOMWARE SYSTEMS, INC. Netrunr Series Netrunr Edge Hardware Manual 1 A X I O M W A R E S Y S T E M S, I N C. Netrunr Edge Hardware Manual Axiomware Systems, Inc. 229 Polaris Ave Suite 15 Mountain View,

More information

How to install Toshiba Satellite L40 B14 Wireless Adapter ( ID 0bda:8197 Realtek Semiconductor Corp. RTL8187B) on Ubuntu and Debian Linux

How to install Toshiba Satellite L40 B14 Wireless Adapter ( ID 0bda:8197 Realtek Semiconductor Corp. RTL8187B) on Ubuntu and Debian Linux How to install Toshiba Satellite L40 B14 Wireless Adapter ( ID 0bda:8197 Realtek Semiconductor Corp. RTL8187B) on Ubuntu and Debian Linux Author : admin How to install Toshiba L40 B14 Wireless Adapter

More information

How To Start Mysql Use Linux Command Line Client In Ubuntu

How To Start Mysql Use Linux Command Line Client In Ubuntu How To Start Mysql Use Linux Command Line Client In Ubuntu Getting started with MySQL for web and server applications on Ubuntu 14.04 LTS (Trusty Tahr). get started with MySQL on an Ubuntu 14.04 LTS (Trusty

More information

Eduroam network configuration using Linux

Eduroam network configuration using Linux Contents Eduroam network configuration using Linux 1 Configuration by using the gnome network manager 1.1 Configuring the Eduroam connection 2 Configuration by using Kubuntu 10.10 2.1 Step 1: Installation

More information

How To Start Mysql Using Linux Command Line Client In Ubuntu

How To Start Mysql Using Linux Command Line Client In Ubuntu How To Start Mysql Using Linux Command Line Client In Ubuntu Step One: Install MySQL Client On Debian, Ubuntu or Linux Mint: Before you start typing commands at the MySQL prompt, remember that each In

More information

Quick Setup Guide. for Standalone Omada Access Points. EAP110 / EAP115 / EAP225 / EAP245 / EAP320 / EAP330 / EAP115-Wall

Quick Setup Guide. for Standalone Omada Access Points. EAP110 / EAP115 / EAP225 / EAP245 / EAP320 / EAP330 / EAP115-Wall Quick Setup Guide for Standalone Omada Access Points EAP110 / EAP115 / EAP225 / EAP245 / EAP320 / EAP330 / EAP115-Wall EAP110-Outdoor / EAP225-Outdoor / EAP225-Wall 1910012420 REV1.0.1 May 2018 Omada EAP

More information

Package Content IEEE g Wireless LAN USB Adapter... x 1 Product CD-ROM.x 1

Package Content IEEE g Wireless LAN USB Adapter... x 1 Product CD-ROM.x 1 IEEE 802.11g Wireless LAN USB Adapter Quick Installation Guide Network Configuration IEEE 802.11g Wireless LAN USB Adapter is a standard USB adapter that fits into any standard USB 2.0 and 1.1 slots in

More information

Setup Wireless LAN (WLAN) on the Raspberry Pi

Setup Wireless LAN (WLAN) on the Raspberry Pi Setup Wireless LAN (WLAN) on the Raspberry Pi 1. Introduction Adding a wireless LAN connection to the Raspberry Pi (RPi) requires only a USB wireless access device (also called WLAN dongle and Wi-Fi dongle)

More information

WI-FI HUB+ TROUBLESHOOTING GUIDE

WI-FI HUB+ TROUBLESHOOTING GUIDE WI-FI HUB+ TROUBLESHOOTING GUIDE Overview This guide is here to provide some answers to some commonly asked questions about your Wi-Fi Hub+. Tip: you can connect to your Wi-Fi Hub+ using an Ethernet cable

More information

SAGEM Wi-Fi 11g CARDBUS ADAPTER Quick Start Guide

SAGEM Wi-Fi 11g CARDBUS ADAPTER Quick Start Guide SAGEM Wi-Fi 11g CARDBUS ADAPTER Quick Start Guide About this guide This Quick Start Guide describes how to install and operate your SAGEM Wi-Fi 11g CARDBUS ADAPTER. Please read this manual before you install

More information

Chapter 1 Introduction

Chapter 1 Introduction Copyright Statement is the registered trademark of Zonet Technology Inc. All the products and product names mentioned herein are the trademarks or registered trademarks of their respective holders. Copyright

More information

The User Guide of XG-762N USB Linux Driver

The User Guide of XG-762N USB Linux Driver The User Guide of XG-762N USB Linux Driver 1 1. Introduction Because more and more people install the Linux operating system in the desktop and notebook, we provide the Linux solution of our XG-762N 802.11a+b+g

More information

Light Mesh AP. User s Guide. 2009/2/20 v1.0 draft

Light Mesh AP. User s Guide. 2009/2/20 v1.0 draft Light Mesh AP User s Guide 2009/2/20 v1.0 draft i FCC Certifications This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant to Part 15 of the FCC Rules.

More information

Installation Guide for Linux

Installation Guide for Linux Installation Guide for Linux Contents Ubuntu 16.04 LTS... 3 1. Development Environment... 3 2. Compile the Driver... 3 2.1. Compilation tool and kernel sources... 3 2.2. Compile the Driver... 3 3. Load

More information

Wireless LAN Access Point

Wireless LAN Access Point Wireless LAN Access Point IEEE 802.11b 11Mbps User s Manual Table of Contents Chapter 1 Introduction... 1 1.1 Package Contents... 2 1.2 Features... 2 1.3 Specifications... 2 1.4 Physical Description...

More information

5 Steps Wifi Hacking Cracking WPA2 Password

5 Steps Wifi Hacking Cracking WPA2 Password Advertise Here Contact Us Request Tutorial Write for Us Download» Hacking Knowledge Hacking News Hacking Tutorial Hacking Widget Online Tools» Tips and Trick Website» Phone Hacking Search 9,517 91 +525

More information

Installation Guide For Linux Driver

Installation Guide For Linux Driver Installation Guide For Linux Driver REV1.0.1 1910011723 TP-LINK Statement for Linux driver TP-LINK has released Linux driver for some TP-LINK USB wireless adapters to support Linux system. The driver file

More information

Exhibit 8 User s Manual

Exhibit 8 User s Manual Exhibit 8 User s Manual H&D Wireless AB, SPB209A Application Note page 2 ( 12) SPB209A User s Manual Table of Content 1 OVERVIEW... 3 1.1 Key Features... 3 2 APPLICATION INFORMATION... 4 2.1 Power Supply...

More information

iconnect625w Copyright Disclaimer Enabling Basic Wireless Security

iconnect625w Copyright Disclaimer Enabling Basic Wireless Security iconnect625w Enabling Basic Wireless Security Copyright Copyright 2006 OPEN Networks Pty Ltd. All rights reserved. The content of this manual is subject to change without notice. The information and messages

More information

Content. Chapter 1 Product Introduction Package Contents Product Features Product Usage... 2

Content. Chapter 1 Product Introduction Package Contents Product Features Product Usage... 2 Content Chapter 1 Product Introduction... 2 1.1 Package Contents... 2 1.2 Product Features... 2 1.3 Product Usage... 2 1.4 Before Installation... 2 1.5 Disable other manufacturers wireless network adapters...

More information

ECE 435 Network Engineering Lecture 8

ECE 435 Network Engineering Lecture 8 ECE 435 Network Engineering Lecture 8 Vince Weaver http://web.eece.maine.edu/~vweaver vincent.weaver@maine.edu 26 September 2016 HW#3 was posted Announcements note the warnings you were getting on toupper()

More information

Configuration of Access Points and Clients. Training materials for wireless trainers

Configuration of Access Points and Clients. Training materials for wireless trainers Configuration of Access Points and Clients Training materials for wireless trainers Goals To provide a simple procedure for the basic configuration of WiFi Access Points (and clients) To review the main

More information

Click on Close button to close Network Connection Details. You are back to the Local Area Connection Status window.

Click on Close button to close Network Connection Details. You are back to the Local Area Connection Status window. How to configure EW-7228APn/EW-7416APn as a Repeater to extend wireless range This article can apply on EW-7228APn and EW-7416APn. We used screen shots of EW-7416APn in this instruction. We recommend you

More information

SAGEM Wi-Fi 11g USB ADAPTER Quick Start Guide

SAGEM Wi-Fi 11g USB ADAPTER Quick Start Guide SAGEM Wi-Fi 11g USB ADAPTER Quick Start Guide About this guide This Quick Start Guide describes how to install and operate your SAGEM Wi-Fi 11g USB ADAPTER. Please read this manual before you install the

More information

Linux Essentials Objectives Topics:

Linux Essentials Objectives Topics: Linux Essentials Linux Essentials is a professional development certificate program that covers basic knowledge for those working and studying Open Source and various distributions of Linux. Exam Objectives

More information

To search type and hit enter

To search type and hit enter Contact Us Advertise Disclaimer Privacy Policy Sitemap Write for Us To search type and hit enter Home Android Linux Raspberry Pi PHP Tricks Windows Tech News WordPress Videos Apps Forum Home -> Linux ->

More information

AiM User Manual. Wi-Fi Configuration. Release 1.01

AiM User Manual. Wi-Fi Configuration. Release 1.01 AiM User Manual Wi-Fi Configuration Release 1.01 1 Wi-Fi configuration Your AiM device Wi-Fi connectivity is disabled by default and must be enabled via a USB connection or on the device menu. Your AiM

More information

Course Wiki. Today s Topics. Web Resources. Amazon EC2. Linux. Apache PHP. Workflow and Tools. Extensible Networking Platform 1

Course Wiki. Today s Topics. Web Resources. Amazon EC2. Linux. Apache PHP. Workflow and Tools. Extensible Networking Platform 1 Today s Topics Web Resources Amazon EC2 Linux Apache PHP Workflow and Tools Extensible Networking Platform 1 1 - CSE 330 Creative Programming and Rapid Prototyping Course Wiki Extensible Networking Platform

More information

54Mbps Pocket Wireless Access Point (WL-330g)

54Mbps Pocket Wireless Access Point (WL-330g) 54Mbps Pocket Wireless Access Point (WL-330g) Copyright 2004 ASUSTeK COMPUTER INC. All Rights Reserved. Contents Conventions... 2 Welcome!... 3 Package contents... 3 System requirements... 3 Device installation...

More information

Spreedbox Getting Started Guide

Spreedbox Getting Started Guide Spreedbox Getting Started Guide Last Updated: September 2017 CONTENTS 1. Introduction... 3 2. Prerequisites... 4 3. Opening the box... 5 4. USB Manual, Quick Start Guide & MAC Sticker... 6 5. International

More information

Ubuntu Set Static Ip Address Command Line

Ubuntu Set Static Ip Address Command Line Ubuntu 10.04 Set Static Ip Address Command Line Check to see if everything works, Mount at startup, Automounter, Static Mounts These have to be IP addresses because of a limitation in portmap (it doesn't

More information

NETWORK USER S GUIDE. Multi-Protocol On-board Ethernet Multi-function Print Server and Wireless Ethernet Multi-function Print Server

NETWORK USER S GUIDE. Multi-Protocol On-board Ethernet Multi-function Print Server and Wireless Ethernet Multi-function Print Server Multi-Protocol On-board Ethernet Multi-function Print Server and Wireless Ethernet Multi-function Print Server NETWORK USER S GUIDE This Network User's Guide provides useful information of wired and wireless

More information

XAVi Technologies Corporation Tel: Fax: F, No. 129, Hsing Te Road, Sanchung City, Taipei County 241, Taiwan

XAVi Technologies Corporation Tel: Fax: F, No. 129, Hsing Te Road, Sanchung City, Taipei County 241, Taiwan XAVi Technologies Corporation Tel: +886-2-2995-7953 Fax: +886-2-29957954 9F, No. 129, Hsing Te Road, Sanchung City, Taipei County 241, Taiwan Copyright 2005, XAVi Technologies Corporation Information in

More information

Ftp Command Line Manual Windows Username Password Linux

Ftp Command Line Manual Windows Username Password Linux Ftp Command Line Manual Windows Username Password Linux Midnight Commander is a console based full-screen text mode File Manager that allows you to copy, MC has many features which are useful for a user

More information

How To Manually Install Driver Ubuntu Server On Virtualbox

How To Manually Install Driver Ubuntu Server On Virtualbox How To Manually Install Driver Ubuntu 12.04 Server On Virtualbox I'm using virtual box in order to configure Ubuntu 12.04 Server. Video tutorials on youtube most people use ubuntu desktop and after odoo

More information

D-Link AirPlus G DWL-G700AP

D-Link AirPlus G DWL-G700AP TM D-Link AirPlus G DWL-G700AP 2.4GHz Wireless Access Point Manual Building Networks for People Contents Package Contents...3 Introduction...4 Wireless Basics...6 Getting Started...8 Using the Configuration

More information

Activity Configuring and Securing a Wireless LAN in Packet Tracer

Activity Configuring and Securing a Wireless LAN in Packet Tracer Activity Configuring and Securing a Wireless LAN in Packet Tracer Objectives: 1. Configure a Wireless Access Point (WAP) local IP address. 2. Configure a WAP with an SSID. 3. Change the administrator s

More information

NETWORK USER S GUIDE MFC-640CW MFC-820CW

NETWORK USER S GUIDE MFC-640CW MFC-820CW Multi-Protocol On-board Ethernet Multi-function Print Server and Wireless (IEEE 802.11b/g) Ethernet Multi-function Print Server NETWORK USER S GUIDE MFC-640CW MFC-820CW Please read this manual thoroughly

More information

802.11g PC Card/USB Wireless Adapter

802.11g PC Card/USB Wireless Adapter 802.11g PC Card/USB Wireless Adapter User Guide Regulatory Approvals FCC Statement This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant to Part 15 of

More information

Application Example (Standalone EAP)

Application Example (Standalone EAP) Application Example (Standalone EAP) CHAPTERS 1. Determine the Network Requirements 2. Build the Network Topology 3. Log In to the EAP 4. Configure the EAP 5. Test the Network This guide applies to: EAP225-Outdoor

More information

AnyDATA.NET Wireless Wi-Fi Router, AWR-500A

AnyDATA.NET Wireless Wi-Fi Router, AWR-500A AnyDATA.NET Wireless Wi-Fi Router, AWR-500A (User Manual) V 1.5 2008.07.25 AnyDATA CDMA Module Series Reference Design Specification Copyright 2008 AnyDATA Corp. All Rights Reserved. Any part of this document

More information

User Guide. Omada Controller Software

User Guide. Omada Controller Software User Guide Omada Controller Software 1910012506 REV 3.2.0 March 2019 CONTENTS 1 Quick Start... 1 1.1 Determine the Network Topology...2 1.1.1 Management on the local Network... 2 1.1.2 Management via Cloud

More information

Dolphin-M. User s Manual

Dolphin-M. User s Manual IEEE 802.11g 54Mbps Wireless Bridge Dolphin-M User s Manual V1.0.0 Copyright There is no any clear or implicit assurance in the user's manual of our company, including the assurance of selling or installing

More information

Ubuntu Linux: NFS Client Configuration To

Ubuntu Linux: NFS Client Configuration To 1 de 12 05/10/12 13:32 About Forum Howtos & FAQs Low graphics Shell Scripts RSS/Feed nixcraft - insight into linux admin work Ubuntu Linux: NFS Client Configuration To Mount NFS Share by Vivek Gite on

More information

CONFIGURATION MANUAL. English version

CONFIGURATION MANUAL. English version CONFIGURATION MANUAL English version Frama F-Link Configuration Manual (EN) All rights reserved. Frama Group. The right to make changes in this Installation Guide is reserved. Frama Ltd also reserves the

More information

Static Ip Address Problems Windows 7 Setup. Virtual >>>CLICK HERE<<<

Static Ip Address Problems Windows 7 Setup. Virtual >>>CLICK HERE<<< Static Ip Address Problems Windows 7 Setup Virtual Vm are all 2008r2 with vmxnet3 VM adapter running virtual machine version 8 on Esx 5.5 with I see that the assigned static IP address is marked as duplicate

More information

How to Connect & Share your Internet Connection (Wired & Wireless)

How to Connect & Share your Internet Connection (Wired & Wireless) How to Connect & Share your Internet Connection (Wired & Wireless) I have Ubuntu 12.04 on a HP 430 notebook and this has a single wired internet connection and I would like to share this with a LG Optimus

More information

UNIVERSITY OF TRENTO Dipartimento di Ingegneria e Scienza dell Informazione Laboratory of Nomadic Communications

UNIVERSITY OF TRENTO Dipartimento di Ingegneria e Scienza dell Informazione Laboratory of Nomadic Communications Experimental evaluation of the performance of a 802.11 wireless network 1. Tutorial goals After this tutorial students should have acquired enough skills to 1) configure a wireless network composed of

More information

WRE2206. User s Guide. Quick Start Guide. Wireless N300 Range Extender. Default Details. Version 1.00 Edition 1, 01/2015

WRE2206. User s Guide. Quick Start Guide. Wireless N300 Range Extender. Default Details. Version 1.00 Edition 1, 01/2015 WRE2206 Wireless N300 Range Extender Version 1.00 Edition 1, 01/2015 Quick Start Guide User s Guide Default Details Web Address http://zyxelsetup OR http://192.168.1.2 www.zyxel.com User Name admin Password

More information

BLUEGIGA WF111 SOFTWARE DRIVERS

BLUEGIGA WF111 SOFTWARE DRIVERS BLUEGIGA WF111 SOFTWARE DRIVERS RELEASE NOTES Thursday, 2 February 2017 Version 5.2.2-r3 Copyright Silicon Labs All rights reserved. Silicon Labs assumes no liability or responsibility for any errors,

More information

AmbiCom WL11-SD Wireless LAN SD Card. User Manual

AmbiCom WL11-SD Wireless LAN SD Card. User Manual AmbiCom WL11-SD Wireless LAN SD Card User Manual Version 3.0 October 15, 2004 Table of Contents 1 WL11-SD features...3 2 Package Contents & System Requirements...3 2.1 Package Contents... 3 2.2 System

More information

WL-5420AP. User s Guide

WL-5420AP. User s Guide WL-5420AP User s Guide Table of contents INTRODUCTION... 1 About the Operation Modes...2 LED Indicators...5 Solid...5 Ports on the Rear Panel...7 GETTING CONNECTED... 8 WPA AP -CONFIGURATION VIA WEB...

More information

L Operating instructions Wireless LAN PCI-Card MiMo 300 Express

L Operating instructions Wireless LAN PCI-Card MiMo 300 Express L Operating instructions Wireless LAN PCI-Card MiMo 300 Express 1. Installing the wireless LAN PCI card... Page 02 2. Installing the driver and configuration program on Windows... Page 02 3. The configuration

More information

Introduction to Operating Systems. Note Packet # 1. CSN 115 Operating Systems. Genesee Community College. CSN Lab Overview

Introduction to Operating Systems. Note Packet # 1. CSN 115 Operating Systems. Genesee Community College. CSN Lab Overview Introduction to Operating Systems Note Packet # 1 CSN 115 Operating Systems Genesee Community College CSN Lab Overview Dual booted Windows/Linux Workstations Linux workstations currently run CentOS and

More information

WF-2402 Quick Installation Guide

WF-2402 Quick Installation Guide WF-2402 Quick Installation Guide Netis 150Mbps Wireless-N Broadband Router 1. Check Your Package Contents The following items should be found in your package: 150Mbps Wireless-N Broadband Router Power

More information

AirCruiser G Wireless Router GN-BR01G

AirCruiser G Wireless Router GN-BR01G AirCruiser G Wireless Router GN-BR01G User s Guide i Contents Chapter 1 Introduction... 1 Overview...1 Features...1 Package Contents...2 AirCruiser G Wireless Router Rear Panel...2 AirCruiser G Wireless

More information

Wireless-N USB Adapter User s Manual

Wireless-N USB Adapter User s Manual Wireless-N USB Adapter User s Manual Copyright 2007 EUSSO Technologies, Inc. All rights reserved. Table of Contents PREFACE... 3 WIRELESS LAN BASICS... 3 Warning... 3 INSTALLATION OVERVIEW... 4 INTRODUCTION...

More information

Wireless device configuration

Wireless device configuration Wireless device configuration Sebastian Büttrich, wire.less.dk edit: September 2009, Pokhara, Nepal http://creativecommons.org/licenses/by-nc-sa/3.0/ Agenda Types of hardware General rules and tips Interfaces

More information

Raspberry Pi Tutorial Connect to WiFi or Create An Encrypted DHCP... Network as Fallback. Lasse Christiansen Development. 1 of 11 3/9/2013 9:04 AM

Raspberry Pi Tutorial Connect to WiFi or Create An Encrypted DHCP... Network as Fallback. Lasse Christiansen Development. 1 of 11 3/9/2013 9:04 AM of 3/9/03 9:04 AM Lasse Christiansen Development lcdev.dk Home About Me Subscribe to RSS November 8, 0 by Lasse Christiansen in Linux, RPi Comments ( 8 ) Raspberry Pi Tutorial Connect to WiFi or Create

More information

NCR. Wi-Fi Setup Assistant. User guide

NCR. Wi-Fi Setup Assistant. User guide NCR Wi-Fi Setup Assistant User guide 15 Contents 1 Getting started... 3 1.1 Features... 3 1.2 System Requirements... 3 1.3 Installing Wi-Fi Setup Assistant... 4 2 Configuring a Wi-Fi Printer... 6 2.1 Setup

More information

802.11b+g Wireless LAN USB Adapter. User Manual

802.11b+g Wireless LAN USB Adapter. User Manual 802.11b+g Wireless LAN USB Adapter User Manual REGULATORY STATEMENTS FCC Certification The United States Federal Communication Commission (FCC) and the Canadian Department of Communications have established

More information

Unzip command in unix

Unzip command in unix Unzip command in unix Search 24-4-2015 Howto Extract Zip Files in a Linux and. You need to use the unzip command on a Linux or Unix like system. The nixcraft takes a lot of my time and. 16-4-2010 Howto:

More information

Configuring WLAN Security

Configuring WLAN Security Finding Feature Information, page 1 Prerequisites for Layer 2 Security, page 1 Information About AAA Override, page 2 How to Configure WLAN Security, page 3 Additional References, page 11 Feature Information

More information

PowerStation2 LiteStation2 LiteStation5 User s Guide

PowerStation2 LiteStation2 LiteStation5 User s Guide PowerStation2 LiteStation2 LiteStation5 User s Guide Copyright 2007 Ubiquiti Networks Inc. All rights reserved. Contents INTRODUCTION...2 QUICK SETUP GUIDE...3 CONFIGURATION GUIDE...7 Main Settings...8

More information

Installing driver over the network

Installing driver over the network Installing driver over the network Command- line Definition Description Command- line Definition Description /a or /A /n or /N /nd or /ND Specifies

More information

Wireless Extensions for Linux

Wireless Extensions for Linux Wireless Extensions for Linux Jean Tourrilhes 23 January 97 A Wireless LAN API for the Linux operating system. 1 Introduction The purpose of this document is to give an overview of the Wireless Extensions.

More information

Hardening servers for the modern internet

Hardening servers for the modern internet Hardening servers for the modern internet Philip Paeps The FreeBSD Foundation SANOG32 7 August 2018 Dhaka, Bangladesh Session 1 (09:00 11:00) 1. Presentation: Introduction to the FreeBSD project (30 minutes)

More information

Automatic Creation of a Virtual Network with VBoxManage [1]

Automatic Creation of a Virtual Network with VBoxManage [1] Automatic Creation of a Virtual Network with V... 1 Automatic Creation of a Virtual Network with VBoxManage [1] Submitted by Steve [2] on Wed, 18/09/2013-5:46pm I am using VirtualBox to create multiple

More information

WRE6505 v2. User s Guide. Quick Start Guide. Wireless AC750 Range Extender. Default Login Details. Version 1.00 Edition 1, 10/2016

WRE6505 v2. User s Guide. Quick Start Guide. Wireless AC750 Range Extender. Default Login Details. Version 1.00 Edition 1, 10/2016 WRE6505 v2 Wireless AC750 Range Extender Version 1.00 Edition 1, 10/2016 Quick Start Guide User s Guide Default Login Details Web Address http://zyxelsetup http://dhcp-assigned IP www.zyxel.comhttp://192.168.1.2

More information

LevelOne User Manual WNC-0600USB N_One Wireless USB Adapter

LevelOne User Manual WNC-0600USB N_One Wireless USB Adapter LevelOne User Manual WNC-0600USB N_One Wireless USB Adapter V2.0.0-0712 i Safety FCC WARNING This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant to

More information

Configuration of Access Points and Clients. Training materials for wireless trainers

Configuration of Access Points and Clients. Training materials for wireless trainers Configuration of Access Points and Clients Training materials for wireless trainers Goals to provide a simple procedure for the basic configuration of WiFi Access Points (and clients) to review the main

More information

11N Wireless USB Adapter User Guide

11N Wireless USB Adapter User Guide -- 1 -- Copyright Statement is the registered trademark of Shenzhen Tenda Technology Co., Ltd. All the products and product names mentioned herein are the trademarks or registered trademarks of their respective

More information

Table of Contents. Chapter 1Introduction Package Contents Features Specifications Physical Description...

Table of Contents. Chapter 1Introduction Package Contents Features Specifications Physical Description... Table of Contents Chapter 1Introduction... 3 1.1 Package Contents... 3 1.2 Features... 3 1.3 Specifications... 3 1.4 Physical Description... 4 Chapter 2Wireless LAN Access Point Connection... 5 Chapter

More information

Subject: Network Troubleshooting Tools Lecturer: Jirawat Thaenthong Organization: Faculty of Technology and Environment, PSU, Phuket Campus. Date: 19/5/60 Version: 1.0 Approved Objective: 1. Trainees study

More information

Installing Your Printer to Your Network for the First Time

Installing Your Printer to Your Network for the First Time Installing Your Printer to Your Network for the First Time SELPHY CP910 Macintosh OS 1 Installing Your Printer to Your Network for the First Time SELPHY CP910 Macintosh OS Preparing to Connect My Printer

More information

11N Wireless PCI Adapter User Guide

11N Wireless PCI Adapter User Guide -- 1 -- Copyright Statement is the registered trademark of Shenzhen Tenda Technology Co., Ltd. All the products and product names mentioned herein are the trademarks or registered trademarks of their respective

More information

Host. Computer system #1. Host Hardening

Host. Computer system #1. Host Hardening Host Hardening Series of actions to be taken in order to make it hard for an attacker to successfully attack computers in a network environment (March 28, 2016) Abdou Illia Spring 2016 Host In network

More information

How to connect to FVCC's WiFi

How to connect to FVCC's WiFi Table of Contents Table of Contents How to connect to FVCC's WiFi Don't panic! Summary Caveats / Troubleshooting Removing a wifi profile Android iphone Windows 7 Windows 8 Windows 10 Other troubleshooting

More information

CONTENTS IN DETAIL INTRODUCTION

CONTENTS IN DETAIL INTRODUCTION CONTENTS IN DETAIL ACKNOWLEDGMENTS xiii INTRODUCTION xv 1 HOW A NETWORK WILL IMPROVE YOUR LIFE 1 What s a Network?... 2 Sneakernet... 3 Data Networks and What You Can Do with Them... 4 File Sharing...

More information

MANUAL FOR CONNECTING TO VIVACOM NET WI-FI NETWORK OPEN WI-FI NETWORK

MANUAL FOR CONNECTING TO VIVACOM NET WI-FI NETWORK OPEN WI-FI NETWORK OPEN WI-FI NETWORK Instructions for users of Windows XP - SP2/SP3 Before you go through the steps in this manual, make sure to press the «submit» button in http://my.contact.bg My Network Wi-Fi settings

More information

Manual Linux Ubuntu Lts Server Install Webmin

Manual Linux Ubuntu Lts Server Install Webmin Manual Linux Ubuntu 12.04 Lts Server Install Webmin Guide showing you how to install Ubuntu Server Trusty Tahr 14.04LTS. Also applicable to Precise Pangolin 12.04LTS, Lucid 10.04, Januty 9.04 and Intrepid

More information

Link Systems Wireless Router Manual Di 524 Password

Link Systems Wireless Router Manual Di 524 Password Link Systems Wireless Router Manual Di 524 Password Forgot Your D-Link DI-524 Router Password? Here's How to Get In. You can download the manual for the DI-524 from D-Link Support. The DI-524 is an Wireless

More information

802.11N Wireless Broadband Router

802.11N Wireless Broadband Router 802.11N Wireless Broadband Router Pre-N Wireless Access Point Broadband Internet Access WPS 4-Port Switching Hub User's Guide Table of Contents CHAPTER 1 INTRODUCTION... 1 Wireless Router Features... 1

More information

User Guide. 450Mbps/300Mbps Wireless N Access Point TL-WA901ND/TL-WA801ND REV

User Guide. 450Mbps/300Mbps Wireless N Access Point TL-WA901ND/TL-WA801ND REV User Guide 450Mbps/300Mbps Wireless N Access Point TL-WA901ND/TL-WA801ND REV4.0.0 1910011930 Contents About This Guide...1 Chapter 1. Get to Know About Your Access Point.................... 2 1. 1. Product

More information

11N Wireless PCI Adapter User Guide -6-

11N Wireless PCI Adapter User Guide -6- -6- Copyright Statement is the registered trademark of Shenzhen Tenda Technology Co., Ltd. All the products and product names mentioned herein are the trademarks or registered trademarks of their respective

More information

LevelOne WBR User s Manual. 11g Wireless ADSL VPN Router. Ver

LevelOne WBR User s Manual. 11g Wireless ADSL VPN Router. Ver LevelOne WBR-3407 11g Wireless ADSL VPN Router User s Manual Ver 1.00-0510 Table of Contents CHAPTER 1 INTRODUCTION... 1 Wireless ADSL Router Features... 1 Package Contents... 5 Physical Details... 6 CHAPTER

More information

What is Eavedropping?

What is Eavedropping? WLAN Security What is Eavedropping? War Driving War Driving refers to someone driving around with a laptop and an 802.11 client card looking for an 802.11 system to exploit. War Walking Someone walks

More information

A Division of Cisco Systems, Inc. GHz g. Wireless-G. USB Network Adapter. User Guide WIRELESS WUSB54G. Model No.

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

More information

Troubleshooting CHAPTER

Troubleshooting CHAPTER CHAPTER 8 This chapter provides information for diagnosing and correcting common problems encountered when installing or operating the client adapter. The following topics are covered in this chapter:

More information

NETGEAR genie Apps. User Manual. 350 East Plumeria Drive San Jose, CA USA. August v1.0

NETGEAR genie Apps. User Manual. 350 East Plumeria Drive San Jose, CA USA. August v1.0 User Manual 350 East Plumeria Drive San Jose, CA 95134 USA August 2012 202-10933-03 v1.0 Support Thank you for choosing NETGEAR. To register your product, get the latest product updates, get support online,

More information

Microprocessor-Based Systems (E155)

Microprocessor-Based Systems (E155) Microprocessor-Based Systems (E155) D. Harris and M. Spencer Fall 2017 Lab 4: Life of Pi Requirement 1) Set up your Raspberry Pi 2) Write an assembly-language program to sort an array of 12 signed bytes

More information

Table of Contents. Chapter1 About g Wireless LAN USB Adapter...1

Table of Contents. Chapter1 About g Wireless LAN USB Adapter...1 Table of Contents Chapter1 About 802.11g Wireless LAN USB Adapter...1 1-1 Features and Benefits... 1 1-2 Applications... 2 1-3 Product Kit... 3 1-4 About IEEE 802.11g Wireless LAN USB Adapter LED Indicators...

More information