dnsmasq configuration

Size: px
Start display at page:

Download "dnsmasq configuration"

Transcription

1 Aim: Raspberry Pi searches for known router's (SSID) If the router is not found then it creates a hotspot so tablets, phones and computers can connect to the Raspberry Pi's WiFi hotspot, which is not routed to the internet but allows a connection via SSH, VNC etc. (Internet will not be available via Ethernet either while the hotspot is active but will be restored after a reboot and a known router is in range.) Requirements: Raspberry Pi 3, Raspberry Pi ZeroW or other Raspberry Pi with WiFi dongle* Internet Connection WiFi connection already set-up to your local router or any routers you are using with this script *some WiFi dongles don't work in adhoc mode or don't work with with the nl80211 driver used in this guide, so you may want to check this first before starting. Step1: To start with hostapd hotspot client and dnsmasq lightweight dns server need to be installed. Open a Terminal session. Update Raspbian with the latest updates by entering the commands: sudo apt-get update sudo apt-get upgrade To install hostapd enter the command: sudo apt-get install hostapd enter Y when prompted. To install dnsmasq enter the command: sudo apt-get install dnsmasq enter Y when prompted The installers will have set up the programme so they run when the pi is started. For this setup they only need to be started if the home router is not found. So automatic startup needs to be disabled. This is done with the following commands: sudo systemctl disable hostapd sudo systemctl disable dnsmasq Now the hostspot configuration file can be setup. This contains the name of the WiFi signal you will need to connect to (SSID) and the security password. To edit the configuration files I will be using the nano text editor but if you prefer an editor with an point and click interface then replace nano with leafpad in the following instructions. Hostapd Configuration Using a text editor edit the hostapd configuration file. This file won't exist at this stage so will be blank. sudo nano /etc/hostapd/hostapd.conf enter or paste the settings: interface=wlan0 driver=nl80211 ssid=rpi3hot hw_mode=g channel=6 wmm_enabled=0

2 macaddr_acl=0 auth_algs=1 ignore_broadcast_ssid=0 wpa=2 wpa_passphrase= wpa_key_mgmt=wpa-psk wpa_pairwise=tkip rsn_pairwise=ccmp The interface will be wlan0 The driver nl80211 works with the Raspberry Pi 3 onboard WiFi but you will need to check that your wifi dongle is compatable and can use Access Point mode. For more information on wifi dongles see elinux.org/rpi_usb_wi-fi_adapters The SSID is the name of the WiFi signal broadcast from the RPi, which you will connect to with your Tablet or phones WiFi settings. Channel can be set between 1 and 13. If you are having trouble connection because of to many wifi signals in your area are using channel 6 then try another channel. Wpa_passphrase is the password you will need to enter when you first connect a device to your Raspberry Pi's hotspot. This should be at least 8 characters and a bit more difficult to guess than my example. To save the config file press ctrl & o and to exit nano press Ctrl & x Now the defaults file needs to be updated to point to where the config file is stored. In terminal enter the command sudo nano /etc/default/hostapd Change: #DAEMON_CONF="" to DAEMON_CONF="/etc/hostapd/hostapd.conf" And save. dnsmasq configuration Next dnsmasq need to be configured to allow the PI to act as a router and issue IP addresses. sudo nano /etc/dnsmasq.conf Go to the bottom of the file and add the following lines #Pi3Hotspot Config #stop DNSmasq from using resolv.conf no-resolv #Interface to use interface=wlan0 bind-interfaces dhcp-range= , ,12h And then save (ctrl & o) and exit (ctrl & x) Step2: Now that hostapd and dnsmasq are configured we now need to make some changes to the interfaces file and then add a script that will detect if you are at home or not. Next we need to edit the interfaces file. There will be several entries already in the file. Look for references to Wlan0 and alter them as below.

3 Any reference to wpa_conf for wlan0 should be disabled by putting a # at the start of the line. Open the interfaces file with the command sudo nano /etc/network/interfaces edit the following lines as below auto lo wlan0 iface lo inet loopback allow-hotplug wlan0 iface wlan0 inet manual # wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf now save (ctrl & o) and exit (ctrl & x) Required only if: if your home routers SSID and password was listed in this file then the hotspot will probably not get generated. You will need to put a # infront of each line #iface wlan0 inet dhcp # wpa-ssid "myssid" # wpa-psk "Router Pasword" These details need to be in the wpa_supplicant.conf file to work with this setup. Add your router details to the wpa_supplicant.conf file with sudo nano /etc/wpa_supplicant/wpa_supplicant.conf and add the following commands to the bottom of the file. network={ ssid="myssid" psk="router Password" key_mgmt=wpa-psk } If in the future you change your router connection details with the WiFi icon by the clock then check that the changes have been made to the wpa_supplicant.conf file and not the /etc/network/interfaces file. Note: Change "myssid" to the ssid of your router and "Router Password" to the password of your router. Start-up Script The final stage is to setup the startup-scripts using the systemd process. if you have been updating Raspbian Jessie and not used a recent image you may not have some wifi tools installed. just chek you have iw installed with dpkg -s iw If it is not found then install it with sudo apt-get install iw This script will check what routers are available when the RPi. The first router found in the wifi settings will be connected to using existing configured WiFi settings. If no know routers are in range then a WiFi hotspot is created. Create the start-up script in a new file in /usr/bin/ sudo nano /usr/bin/autohotspot

4 Enter this script. (last modified 30th May 2017) #!/bin/bash #RaspberryConnect.com #Wifi config - if no prefered Wifi generate a hotspot #This two lines check for any SSIDs in your RPi's wifi settings wpassid=$(awk '/ssid="/{ print $0 }' /etc/wpa_supplicant/wpa_supplicant.conf awk -F'ssid=' '{ print $2 }' ORS=' ' sed 's/\"/''/g') ssids=($wpassid) #or check a restricted list of SSID,s that are setup. #Put a # infront of the two lines above first; #ssids=$(awk... & ssids=($wpassid) #Enter one or more ssids that are already setup in the wifi settings #Remove # below to use. separate SSIDs by a space, ('myssid1' 'myssid2') #ssids=('myssid1') #Main script createadhocnetwork() { ip link set dev wlan0 down ip a add /24 dev wlan0 ip link set dev wlan0 up systemctl start dnsmasq systemctl start hostapd } connected=false for ssid in "${ssids[@]}" do if iw dev wlan0 scan ap-force grep "$ssid" > /dev/null then wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf > /dev/null 2>&1 if dhclient -1 wlan0 then connected=true break else wpa_cli terminate break fi else echo "Not in range, WiFi with SSID:" $ssid fi done if! $connected; then createadhocnetwork fi One of the lines of the script may go off the right side of the webpage alternately this script is available to download here The line reads: ssids=$(awk '/ssid="/{ print $0 }' /etc/wpa_supplicant/wpa_supplicant.conf awk - F'ssid=' '{ print $2 }' ORS=' ' sed 's/\"/''/g') Thanks to Tino for this code

5 The line starting with ssids=$(awk... lists all routers in the Raspberry Pi's wifi settings. If you need to restrict this to only certain SSID's currently setup then put a # infront of the ssid=$(awk... line to deactivate it and also the line ssids=($wpassid). Then remove the # infront of #ssids=('myssid1') then in the line ssids=('myssid1') replace 'myssid1' with the SSID of your router. in the UK common SSIDs are in the format of SKY12345, BTHub-1234, TalkTalk12345, VM123456, plusnet1234 etc If you access other routers then enter them, with single quotes and a space between each entry. The script will try each one and make a connection to the first one that is available. Then save (ctrl & o) and exit (ctrl & x) make the autohotspot script executable with the command sudo chmod +x /usr/bin/autohotspot Next add a service file to systemd. Create a file in /etc/systemd/system and add the service file sudo nano /etc/systemd/system/autohotspot.service Enter the script [Unit] Description=Generates a non-internet Hotspot for ssh when a listed ssid is not in range. After=network-online.target [Service] Type=oneshot RemainAfterExit=yes ExecStart=/usr/bin/autohotspot [Install] WantedBy=multi-user.target Then save (ctrl & o) and exit (ctrl & x) This service file can be downloaded here now enable the Hotspot service with the command sudo systemctl enable autohotspot.service If you use a Hidden SSID... If your router does not broadcast the ssid the /usr/bin/autohotspot script will not find your router and always go to a hotspot. By scanning for your MAC address instead of your SSID the script will work. Your mac address will be printed on your router somewhere in the format XX:XX:XX:XX:XX:XX using letters and numbers. It can alternately by found using the command sudo iw wlan0 scan egrep "BSS SSID" Which will return all the routers in range, the top one should be your router. (My routers ssid is not hidden so you won't see the ssid but my results were as follows) BSS XX:XX:XX:XX:XX:XX(on wlan0) -- associated SSID: XXXXXXXX

6 BSS Load: where X is the address results. Once your know your MAC address the following changes can be made to the /usr/ bin/autohotspot script. Change: #enter required ssids: ssids=('ssid1' 'ssid2') ssids=('myssid1' 'myssid2') for #enter required MAC Addr: macadresses=('xx:xx:xx:xx:xx:xx' 'YY:YY:YY:YY:YY:YY') macadresses=('myroutermacadress') change: for ssid in "${ssids[@]}" do if iw dev wlan0 scan ap-force grep "$ssid" > /dev/null for for macadress in "${macadresses[@]}" do if iw dev wlan0 scan ap-force grep "$macadress" > /dev/null and change echo "Not in range, WiFi with SSID:" $ssid for echo "Not in range, WiFi with MAC:" $macadress The Router detection should now work for you. Thanks to Willem Me for supplying these modifications. Testing the Hostspot To test if the hotspot is being created edit the /usr/bin/autohotspot file again and change your SSID to something else such as myssid1off ssids=( 'myssid1' 'myssid2' ) to ssids=( 'myssid1off' 'myssid2off' ) Save the /usr/bin/autohotspot file and then reboot. When the desktop loads the WiFi network icon in the top right corner will be two screens instead of the usual WiFi icon. When the mouse is placed over the icon is should show a popup displaying the RPI3hot access point.

7 Check the WiFi signals in range with the wifi settings on a Laptop, tablet or Phone and you should see that one of them is RPI3hot Select RPI3hot as the WiFi signal to connect to. The security password will be the one you set in the hostapd.conf file. From my example that would be Now you are connected to the Raspberry Pi's hotspot and you can now open a SSH connection as usual using the IP address Once your happy it is all working, reset the SSID entry back to your routers SSID and your ready to go. This setup has been tested on a Raspberry Pi 2 and PiZero with a WiFi dongle and with a Raspberry Pi 3 and PiZero W all running Raspbian Jessie. Wifi and Hotspot Auto Switch Script I have an alternative script that can switch between wifi and a hotspot without rebooting using a timer or manually. Details are in this article Raspberry Pi - Auto WiFi Hotspot Switch Removal If you no longer require this script then it can easily be disabled without affecting your set-up. Restore your wifi startup by editing the /etc/network/interfaces file and removing the # from the line # wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf Then disable the startup script with the command sudo systemctl disable autohotspot After a reboot your RPI will connect to your router. Note: Dnsmasq bug: in versions below 2.77 there is a recent bug that may cause the hotspot not to start. This can be resolved by removing the dns-root-data. check your version with : dpkg -s dnsmasq versions 2.77 and above are ok. If not then try the command: sudo apt-get purge dns-root-data thanks to danny for highlighting this.

Raspberry Pi 3 Model B and JMRI with WiFi Access Point for Pi-SPROG One and Pi-SPROG Nano raspian-jessie build

Raspberry Pi 3 Model B and JMRI with WiFi Access Point for Pi-SPROG One and Pi-SPROG Nano raspian-jessie build Raspberry Pi 3 Model B and JMRI with WiFi Access Point for Pi-SPROG One and Pi-SPROG Nano 2017-04-10-raspian-jessie build June 2017 SPROG DCC These instructions describe the process of setting up a Raspberry

More information

Raspberry Pi as a VPN Wireless Access Point

Raspberry Pi as a VPN Wireless Access Point T h u r s d a y, 1 6 J a n u a r y 2 0 1 4 Raspberry Pi as a VPN Wireless Access Point The following post explains how you can turn a Raspberry Pi (RPI) into a wireless router that connects to the Internet

More information

Raspberry Pi 3 Model B and JMRI with WiFi Access Point for Pi-SPROG One and Pi-SPROG Nano

Raspberry Pi 3 Model B and JMRI with WiFi Access Point for Pi-SPROG One and Pi-SPROG Nano Raspberry Pi 3 Model B and JMRI with WiFi Access Point for Pi-SPROG One and Pi-SPROG Nano SPROG DCC July 2016 These instructions describe the process of setting up a Raspberry Pi 3 Model B as a WiFi access

More information

Raspberry Pi 3 Model B+ and JMRI with WiFi Access Point for Pi- SPROG One and Pi-SPROG Nano raspian-stretch build

Raspberry Pi 3 Model B+ and JMRI with WiFi Access Point for Pi- SPROG One and Pi-SPROG Nano raspian-stretch build Raspberry Pi 3 Model B+ and JMRI with WiFi Access Point for Pi- SPROG One and Pi-SPROG Nano 2018-03-13-raspian-stretch build May 2018 SPROG DCC These instructions describe the process of setting up a Raspberry

More information

Building a standalone access point using a Raspberry Pi Zero W

Building a standalone access point using a Raspberry Pi Zero W Building a standalone access point using a Raspberry Pi Zero W by Barry Robinson The Raspberry Pi Zero W is a small, single board computer (SBC) that has WiFi and Bluetooth connectivity built-in. It is

More information

My guide for setting up a raspberry pi zero w as a wifi rerouter and access point

My guide for setting up a raspberry pi zero w as a wifi rerouter and access point My guide for setting up a raspberry pi zero w as a wifi rerouter and access point references: 1: http://www.0xf8.org/2016/02/using-your-raspberry-pi-zeros-usb-wifi-adapter-as-both-wificlient-and-access-point/

More information

Digital Free Library. Created by Kirby Griese. Last updated on :35:15 PM UTC

Digital Free Library. Created by Kirby Griese. Last updated on :35:15 PM UTC Digital Free Library Created by Kirby Griese Last updated on 2018-01-04 04:35:15 PM UTC Guide Contents Guide Contents Overview Parts Needed Preparation Prepare Micro SD Card Install Apache Configure Access

More information

Setting up a Raspberry Pi as a WiFi access point

Setting up a Raspberry Pi as a WiFi access point Setting up a Raspberry Pi as a WiFi access point Created by lady ada Last updated on 2018-08-22 03:36:03 PM UTC Guide Contents Guide Contents Overview What you'll need Preparation Check Ethernet & Wifi

More information

Setting up a Raspberry Pi as a WiFi access point

Setting up a Raspberry Pi as a WiFi access point Setting up a Raspberry Pi as a WiFi access point Created by lady ada Last updated on 2017-09-02 03:30:02 AM UTC Guide Contents Guide Contents Overview What you'll need Preparation Check Ethernet & Wifi

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

Software gsv-6towamp. Access data for the demo installation. Structure of the software

Software gsv-6towamp. Access data for the demo installation. Structure of the software Software gsv-6towamp source code: https://github.com/me-systeme/gsv-6towamp/tree/gsv-6towamp-for-raspi3 Updated: 2018-03-20 Access data for the demo installation Wlan Name Password of the access point

More information

The software is modular, which means that components can be exchanged more easily. WAM P- Router

The software is modular, which means that components can be exchanged more easily. WAM P- Router Software gsv-6towamp source code: https://github.com/me-systeme/gsv-6towamp Access data for the demo installation Wlan Name Password of the access point ME_AP MeTestAP IP adress (im Browser des Clients

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

Raspberry Pi as an Ad Blocking Access Point

Raspberry Pi as an Ad Blocking Access Point Raspberry Pi as an Ad Blocking Access Point Created by Justin Cooper Last updated on 2017-12-05 07:26:38 PM UTC Guide Contents Guide Contents Overview Preparation Install Software Improving Performance

More information

Configure router. 26. Start AirPort Utility (located in the Utilities folder). The AirPort Utility window show a component diagram:

Configure router. 26. Start AirPort Utility (located in the Utilities folder). The AirPort Utility window show a component diagram: Configure router The Raspberry Pi 3 (RPi) should be assigned a fixed IP address in the router. After installing osmc for the first time, you should configure the router. 26. Start AirPort Utility (located

More information

Wireless Access Point

Wireless Access Point 2018/04/10 15:55 1/13 Wireless Access Point Wireless Access Point This application note is applicable to the XU4/C1+/C2 Ubuntu/Linux Platforms. One user (tam1111574) reported there was an issue with USB

More information

Remote Control for Telescope

Remote Control for Telescope Remote Control for Telescope Arjan te Marvelde. September 2017 Optimum observation time is usually during the dark winter and early spring. On higher latitudes these months are also quite cold, and hence

More information

Connect the GSM-DSA to a router where the network is configured to x with a mask

Connect the GSM-DSA to a router where the network is configured to x with a mask GSM-DSA Application note Summary Preparing the raspberry pi environment In order to make the most out of your GSM-DSA, it is best to make sure that the operation system is up to date. To do this we need

More information

Code Snippets. Chapter 11. Chapter 13

Code Snippets. Chapter 11. Chapter 13 BONUS Code Snippets Throughout Idiot s Guides: Raspberry Pi, you re asked to type in excerpts of code into the command line. Here, we ve culled the longer sections of code (3 lines or more) you re asked

More information

More Raspian. An editor Configuration files Shell scripts Shell variables System admin

More Raspian. An editor Configuration files Shell scripts Shell variables System admin More Raspian An editor Configuration files Shell scripts Shell variables System admin Nano, a simple editor Nano does not require the mouse. You must use your keyboard to move around the file and make

More information

Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi

Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi Nick Antipa, Li-Hao Yeh, based on labs by Jon Tamir and Frank Ong January 24, 2018 This lab will walk you through setting up your Raspberry Pi

More information

KODO Controller. Remote Access. Hutech Corporation Atlantic Ocean Dr., Unit B-17. Lake Forest, CA

KODO Controller. Remote Access. Hutech Corporation Atlantic Ocean Dr., Unit B-17. Lake Forest, CA KODO Controller Remote Access Hutech Corporation 25691 Atlantic Ocean Dr., Unit B-17 Lake Forest, CA 92630 https://hutech.com 20180709 Introduction The Kodo Controller provides basic input and output via

More information

Setting up a Raspbian Linux System on an SD Card

Setting up a Raspbian Linux System on an SD Card Setting up a Raspbian Linux System on an SD Card How the initial step is done depends on the type of computer system you have that connects to the Internet. The downloading instructions at and compressed

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

Bachelor's thesis. Computer Science Engineering. Embedded Software. Juan Miguel Valverde Martínez HOME MEDIA CENTER

Bachelor's thesis. Computer Science Engineering. Embedded Software. Juan Miguel Valverde Martínez HOME MEDIA CENTER Bachelor's thesis Computer Science Engineering Embedded Software 2014 Juan Miguel Valverde Martínez HOME MEDIA CENTER BACHELOR S THESIS ABSTRACT TURKU UNIVERSITY OF APPLIED SCIENCES Computer Science Engineering

More information

Raspberry Pi 3 Starter Kit Hookup Guide

Raspberry Pi 3 Starter Kit Hookup Guide Page 1 of 11 Raspberry Pi 3 Starter Kit Hookup Guide Introduction Now that the Raspberry Pi 3 is the latest and greatest in the line of Raspberry Pi Single Board Computers, what s new? This hookup guide

More information

TELE3119 Trusted Networks Lab 1 (a), (b) Sniffing wireless traffic

TELE3119 Trusted Networks Lab 1 (a), (b) Sniffing wireless traffic TELE3119 Trusted Networks Lab 1 (a), (b) Sniffing wireless traffic [10 points, Due Week 5] Part (a) Objective: The objective of this exercise is to setup an infrastructure for capturing the network traffic

More information

RearPi Documentation. Download Google Play. Donate

RearPi Documentation. Download Google Play. Donate RearPi Documentation Download Google Play Donate 1 Table of Contents Hardware...3 Configuration...6 WiFi Hot-spot...6 Automate WiFi Hot-spot ON/OFF in car (optional)...6 Raspberry Pi Model B...10 Installation

More information

Adafruit's Raspberry Pi Lesson 6. Using SSH

Adafruit's Raspberry Pi Lesson 6. Using SSH Adafruit's Raspberry Pi Lesson 6. Using SSH Created by Simon Monk Last updated on 2017-08-16 01:12:07 AM UTC Guide Contents Guide Contents Overview Enabling SSH Using a blank boot file Using Raspi-Config

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

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

= Session-(1.4) Preparing the Workstation for the Lab / OS Installation = Session-(1.4) Preparing the Workstation for the Lab / OS Installation

= Session-(1.4) Preparing the Workstation for the Lab / OS Installation = Session-(1.4) Preparing the Workstation for the Lab / OS Installation = Session-(1.4) Preparing the Workstation for the Lab / OS Installation = Session-(1.4) Preparing the Workstation for the Lab / OS Installation (1.4.1) Hardware Recommendation. (1.4.2) Operating System

More information

Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7, Windows 8 and Mac OSx)

Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7, Windows 8 and Mac OSx) Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7, Windows 8 and Mac OSx) Wireless Setup Guide The following steps will take you through the process of setting up and connecting to your wireless

More information

A Step by Step Guide to Installing VPN on Raspberry Pi. Whitepaper

A Step by Step Guide to Installing VPN on Raspberry Pi. Whitepaper A Step by Step Guide to Installing VPN on Raspberry Pi Whitepaper Introduction For security conscious IT experts who would like to provide secure access to their network on a budget, this whitepaper provides

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

Wallet Installation Guide for Staking on Raspberry PI

Wallet Installation Guide for Staking on Raspberry PI Wallet Installation Guide for Staking on Raspberry PI V2.1 November 2018 CONTENTS 01. Version History... 13 02. Introduction... 3 03. Prerequisites... 13 04. Installation Steps... 6 05. Add an address

More information

NANO-SPOT Personal Digital Hotspot

NANO-SPOT Personal Digital Hotspot NANO-SPOT Personal Digital Hotspot User's Manual REVISION 1.01 Micro-Node International, Inc. - Henderson, Nevada Table of Contents 1.0 NANO-SPOT DESCRIPTION... 3 2.0 INCLUDED ACCESSORIES... 3 3.0 GETTING

More information

Connecting CoovaAP 1.x with RADIUSdesk - Basic

Connecting CoovaAP 1.x with RADIUSdesk - Basic 2017/05/17 21:58 1/13 Connecting CoovaAP 1.x with RADIUSdesk - Basic Connecting CoovaAP 1.x with RADIUSdesk - Basic Introduction CoovaAP is a sub-project of Coova.org. It is custom firmware which can be

More information

All rights reserved by Waveshare Electronics Co., Ltd. Not allow to modify, distribute, or copy without permission.

All rights reserved by Waveshare Electronics Co., Ltd. Not allow to modify, distribute, or copy without permission. DVK512 User Manual Copyright All rights reserved by Electronics Co., Ltd. Not allow to modify, distribute, or copy without permission. Revision History Revision Date Description V1.0 Aug. 18, 2014 Initial

More information

XLink Kai Raspberry Pi Beginners Tutorial

XLink Kai Raspberry Pi Beginners Tutorial XLink-Kai-Raspberry-Pi-Beginners-Tutorial.md XLink Kai Raspberry Pi Beginners Tutorial Hi! This tutorial will guide you through setting up XLink Kai on a Raspberry Pi to play multiplayer system link Xbox

More information

Remote Control for Telescope

Remote Control for Telescope Remote Control for Telescope Arjan te Marvelde. November 2016 Optimum observation time is usually during the dark winter and early spring. On higher latitudes these months are also quite cold, and hence

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

By Steve Litt

By Steve Litt "Sure fire wifi connection and troubleshooting techniques" By Steve Litt http://www.troubleshooters.com Copyright 2015 by Steve Litt No Warranty, user takes full responsibility for any outcome Sure fire

More information

Raspberry Pi NTP Clock Setup Guide

Raspberry Pi NTP Clock Setup Guide Raspberry Pi NTP Clock Setup Guide Several steps are involved in getting your Raspberry Pi to operate as a NTP Clock. To begin with, you must obtain a LCD Plate (www.adafruit.com) and build it. You must

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

Static Ip Address No Internet Connection >>>CLICK HERE<<<

Static Ip Address No Internet Connection >>>CLICK HERE<<< Static Ip Address No Internet Connection Windows 7 To get a static IP on the internet you must contact your ISP to upgrade your Internet Connection, or use a dynamic DNS service such as DynDNS and No-IP.

More information

Bluetooth Keyboard Setup Instructions

Bluetooth Keyboard Setup Instructions Bluetooth Keyboard Setup Instructions Setup Using GUI (NOOBS/Raspbian) 1. Insert your micro SD card into the micro SD card slot on the Raspberry Pi. 2. Connect an HDMI cable from your Raspberry Pi to your

More information

Linux Systems Administration Getting Started with Linux

Linux Systems Administration Getting Started with Linux Linux Systems Administration Getting Started with Linux Network Startup Resource Center www.nsrc.org These materials are licensed under the Creative Commons Attribution-NonCommercial 4.0 International

More information

QCA6174A/QCA WLAN and Bluetooth on Linux x86

QCA6174A/QCA WLAN and Bluetooth on Linux x86 Qualcomm Technologies, Inc. QCA6174A/QCA9377-3 WLAN and Bluetooth on Linux x86 Porting Guide 80-YC636-1 Rev. B May 14, 2018 All Qualcomm products mentioned herein are products of Qualcomm Technologies,

More information

Introduction to Raspberry Pi 3 Model B Updates: 9/18/17 6/2/2018

Introduction to Raspberry Pi 3 Model B Updates: 9/18/17 6/2/2018 Introduction to Raspberry Pi 3 Model B Updates: 9/18/17 6/2/2018 A. Objectives 1. Learn about basics of Pi 3 embedded system 2. Learn how to operate your Pi 3 using different interfaces 3. Learn how to

More information

How to manually set up EW-7228APn to extender wireless range

How to manually set up EW-7228APn to extender wireless range How to manually set up EW-7228APn to extender wireless range 1. Find out the IP address of your computer. Have your computer get on Internet as normally, without EW-7228APn turning on. If you use a Windows

More information

Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7 and Mac OSx) (3GM2Wn)

Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7 and Mac OSx) (3GM2Wn) Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7 and Mac OSx) (3GM2Wn) Wireless Setup Guide The following steps will take you through the process of setting up and connecting to your wireless

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

Node-RED Dashboard: Pi Control

Node-RED Dashboard: Pi Control : Pi Control Will English June 26, 2017 will.english@vivaldi.net 1 Summary I am using a Raspberry Pi as a headless computer through VNC. A particular interest is learning Node-RED flow programming and

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

UDRC Step by Step Installation Process as Completed by Rich KR4PI

UDRC Step by Step Installation Process as Completed by Rich KR4PI UDRC Step by Step Installation Process as Completed by Rich KR4PI Setup basic image: Download image from archive.compaslinux.org Use Win32Diskmanager to install downloaded image to SD card Basic Image

More information

Setup Guide for Wi-Fi Hotspot Boosting Kit

Setup Guide for Wi-Fi Hotspot Boosting Kit Setup Guide for WI-KIT-02 Wi-Fi Hotspot Boosting Kit Congratulations on purchasing the WI-KIT-02, this contains everything you need to be able to connect to Wi-Fi at a camp site / marina / other location.

More information

How to Install a DHCP Server in Ubuntu and Debian

How to Install a DHCP Server in Ubuntu and Debian How to Install a DHCP Server in Ubuntu and Debian Source : https://www.tecmint.com/install-dhcp-server-in-ubuntu-debian/ Dynamic Host Configuration Protocol (DHCP) is a network protocol that is used to

More information

PiCloud. Building owncloud on a Raspberry PI

PiCloud. Building owncloud on a Raspberry PI PiCloud Building owncloud on a Raspberry PI PiCloud - Building owncloud on a Raspberry PI by Sebastian Büttrich is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International

More information

Netis WF-2411 Quick Configuration Guide NTC November TCS Webinar 1

Netis WF-2411 Quick Configuration Guide NTC November TCS Webinar 1 Netis WF-2411 Quick Configuration Guide 1 Background AARP Policy on Public WiFi No computer being used for AARP Foundation Tax-Aide work is allowed to be connected directly to a public WiFi All connections

More information

Hawk Server for Linux. Installation Guide. Beta Version MHInvent Limited. All rights reserved.

Hawk Server for Linux. Installation Guide. Beta Version MHInvent Limited. All rights reserved. Hawk Server for Linux Installation Guide Beta Version Hawk Server Introduction Thank you for being part of the beta program for Hawk Secure Browser! This installation document will guide you through the

More information

LAN Setup Reflection. Ask yourself some questions: o Does your VM have the correct IP? o Are you able to ping some locations, internal and external?

LAN Setup Reflection. Ask yourself some questions: o Does your VM have the correct IP? o Are you able to ping some locations, internal and external? LAN Setup Reflection Ask yourself some questions: o Does your VM have the correct IP? o Are you able to ping some locations, internal and external? o Are you able to log into other VMs in the classroom?

More information

Manual of ET-LCD SW HAT

Manual of ET-LCD SW HAT ET- LCD SW HAT ET-LCD SW HAT is Board I/O that is specifically designed for connection with Board Raspberry Pi through Connector 40-PIN; this board includes LCD 16x2, SW, Buzzer, RTC DS3231 with Connector

More information

WISP Setup Guide for TP-Link TL-WR841N 300 Mbps Wireless N Router AARP Foundation Tax-Aide Colorado Technology Specialist

WISP Setup Guide for TP-Link TL-WR841N 300 Mbps Wireless N Router AARP Foundation Tax-Aide Colorado Technology Specialist WISP Setup Guide for TP-Link TL-WR841N 300 Mbps Wireless N Router AARP Foundation Tax-Aide Colorado Technology Specialist Summary This document explains how to configure the TP-Link WR841N router to provide

More information

Wi-Fi Guide: Edimax USB Adapter on BBG

Wi-Fi Guide: Edimax USB Adapter on BBG Wi-Fi Guide: Edimax USB Adapter on BBG August 3 rd 2017 Table of Contents: Page 1: Page 2: Page 3: Page 4: Page 5: Introduction & Hardware requirements Getting Started Connecting to a network using Network

More information

RaspiDigiHamClock. Raspberry Pi Amateur Radio Digital Clock. v WA4EFH R.Grokett

RaspiDigiHamClock. Raspberry Pi Amateur Radio Digital Clock. v WA4EFH R.Grokett RaspiDigiHamClock Raspberry Pi Amateur Radio Digital Clock v2018-07-08 WA4EFH R.Grokett Overview Amateur Radio Operators (aka HAM Radio) use 24 hour UTC (Universal Coordinated Time) for much of their operation.

More information

IpAlarm Module Set Up

IpAlarm Module Set Up Page 1 IpAlarm Module Set Up Note: This device is shipped configured for Ethernet connectivity. To use in this mode, connect the BLUE Jack (marked WAN) to your router and wait for the LEDs to stabilize.

More information

Adding a Real Time Clock to Raspberry Pi

Adding a Real Time Clock to Raspberry Pi Adding a Real Time Clock to Raspberry Pi Created by lady ada Last updated on 2016-11-03 01:44:48 AM UTC Guide Contents Guide Contents Overview Wiring the RTC Adafruit DS1307 Real Time Clock Assembled Breakout

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

Lab Viewing Wireless and Wired NIC Information

Lab Viewing Wireless and Wired NIC Information Objectives Part 1: Identify and Work with PC NICs Part 2: Identify and Use the System Tray Network Icons Background / Scenario This lab requires you to determine the availability and status of the network

More information

Cassia E1000/X1000/C1000 Quick Start Guide

Cassia E1000/X1000/C1000 Quick Start Guide Cassia E1000/X1000/C1000 Quick Start Guide Step One Connect your laptop/pc to your Bluetooth router Check your Bluetooth router s MAC address on the bottom of the router, as noted in Figure 1 below. Then

More information

Term Project WORKING WITH THE RASPBERRY PI

Term Project WORKING WITH THE RASPBERRY PI Term Project WORKING WITH THE RASPBERRY PI The term project component of the course requires you to leverage the Pi. The project involves multiple deliverables to ensure that you are making sustained progress

More information

Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7 and Mac OSx)

Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7 and Mac OSx) Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7 and Mac OSx) Wireless Setup Guide The following steps will take you through the process of setting up and connecting to your wireless network.

More information

Configuring the BeagleBone Black s Ethernet Port for SSH Access

Configuring the BeagleBone Black s Ethernet Port for SSH Access Configuring the BeagleBone Black s Ethernet Port for SSH Access NimbeLink Corp Updated: April 2016 PN 30112 rev 1 NimbeLink Corp. 2017. All rights reserved. 1 Table of Contents Table of Contents 2 1. Introduction

More information

Yealink T46S Wireless Settings

Yealink T46S Wireless Settings Yealink T46S Wireless Settings Wireless Network Yealink T46S Wireless Settings Overview Wi-Fi is a popular wireless networking technology that uses radio waves to provide wireless High speed Internet and

More information

Let us ping! First we will learn the Hello World of a networked machine.

Let us ping! First we will learn the Hello World of a networked machine. AN INTRODUCTION TO LINUX NETWORKING In this article, we ll explore networking under GNU/Linux. You ll find it interesting to manage the entire network through certain valid keystrokes known as commands.

More information

LSI Industries AirLink Network Security. Best Practices. System Information 01/31/18. Physical Access. Software Updates. Network Encryption

LSI Industries AirLink Network Security. Best Practices. System Information 01/31/18. Physical Access. Software Updates. Network Encryption LSI Industries AirLink Network Security 01/31/18 Best Practices AirLink can provide all of its basic lighting control services without an internet connection. However, many customers will find that internet

More information

Yealink T41S Wireless Settings

Yealink T41S Wireless Settings Yealink T41S Wireless Settings Wireless Network Yealink T41S Wireless Settings Overview Wi-Fi is a popular wireless networking technology that uses radio waves to provide wireless High speed Internet and

More information

LAN Setup Reflection

LAN Setup Reflection LAN Setup Reflection After the LAN setup, ask yourself some questions: o Does your VM have the correct IP? o Are you able to ping some locations, internal and external? o Are you able to log into other

More information

How to Make a Raspberry Pi Web Server

How to Make a Raspberry Pi Web Server 2 Ways to Make a Raspberry Pi Web Server - wikihow http://www.wikihow.com/make-a-raspberry-pi-web-server of 5 08/5/203 :3 AM How to Make a Raspberry Pi Web Server If you are looking for a way to make a

More information

Billion BiPAC 7700NR2. Setup Guide

Billion BiPAC 7700NR2. Setup Guide Billion BiPAC 7700NR2 Setup Guide Modem reference & light status sheet On the front of your modem you will notice a number of lights. The below table explains what each of these lights mean: LABEL ACTION

More information

Voyage MPD Starter Kit - Getting Started Guide

Voyage MPD Starter Kit - Getting Started Guide Voyage Design and Consultants 11-May-2011 Version 1.3 1 Introduction Voyage MPD Starter Kit is a compact Computer-Audio-Source (CAS) system for playing your favourite audio files from a USB flash memory

More information

Raspberry Pi Setup Tutorial

Raspberry Pi Setup Tutorial Raspberry Pi Setup Tutorial The Raspberry Pi is basically a miniature linux- based computer. It has an ARM processor on it, specifically the ARM1176JZF- S 700 MHz processor. This is the main reason why

More information

Connecting Your Device to a Wireless Network

Connecting Your Device to a Wireless Network Connecting Your Device to a Wireless Network This manual is designed to be a tutorial for our customers seeking to connect their electronic devices to their home Internet network. This manual will include

More information

Unit- 5. Linux Systems

Unit- 5. Linux Systems Unit- 5 Linux System- Basic Concepts; System Administration-Requirements for Linux System Administrator, Setting up a LINUX Multifunction Server, Domain Name System, Setting Up Local Network Services;

More information

Setup Guide for Hard-Wire Ethernet Connected TP-Link TL-WR841N 300 Mbps Wireless N Router AARP Foundation Tax-Aide Colorado Technology Specialist

Setup Guide for Hard-Wire Ethernet Connected TP-Link TL-WR841N 300 Mbps Wireless N Router AARP Foundation Tax-Aide Colorado Technology Specialist Setup Guide for Hard-Wire Ethernet Connected TP-Link TL-WR841N 300 Mbps Wireless N Router AARP Foundation Tax-Aide Colorado Technology Specialist Summary This document explains how to configure the TP-Link

More information

ELE409 SPRING2018 LAB0

ELE409 SPRING2018 LAB0 ELE409 SPRING2018 LAB0 Getting familiar with the LXDE system Objectives: Pre-Lab: 1. Burn the linux system onto a micro-sd card 2. Get familiar with basic linux commands 3. Be able to communicate with

More information

Wireless Presentation System User s Manual

Wireless Presentation System User s Manual Téléchargé depuis www.lampe-videoprojecteur.info Wireless Presentation System User s Manual Version: 1.0 Date: 2008.1.11 User s Manual 1 Table of Contents 1. Overview... 3 2. First Setup of the Wireless

More information

It is a Plug & Play Solution It is a bundle, containing an HP5100S and an NHP5010

It is a Plug & Play Solution It is a bundle, containing an HP5100S and an NHP5010 Note: The following Quick Installation Guide has been designed for the Addon NHP5010BD1 bundle, but it can be used for all other bundles. Powerline Adapter (also called Homeplug) is a device that carries

More information

Node-RED Dashboard: Pi Control

Node-RED Dashboard: Pi Control : Pi Control Will English July 17, 2017 will.english@vivaldi.net 1 Summary I am using a Raspberry Pi as a headless computer through VNC. A particular interest is learning Node-RED flow programming and

More information

Raspberry Pi 2b PART 1. Table of Contents. Step by step guide. 1. Hardware (0:05) RS Online (ex-tax prices)... 3 MSY ebay...

Raspberry Pi 2b PART 1. Table of Contents. Step by step guide. 1. Hardware (0:05) RS Online (ex-tax prices)... 3 MSY ebay... Step by step guide PART 1 Table of Contents 1. Hardware (0:05)... 3 RS Online (ex-tax prices)... 3 MSY... 4 ebay... 4 Centercom Computers... 4 2. Installing the operating system (0:21)... 5 Preparing the

More information

Quick Start Guide for Standalone EAP

Quick Start Guide for Standalone EAP Quick Start Guide for Standalone EAP CHAPTERS 1. Determine the Management Method 2. Build the Network Topology 3. Log In to the EAP 4. Edit the SSID 5. Configure and Manage the EAP This guide applies to:

More information

Wireless Printing Updated 10/30/2008 POLICY. The use of Wireless Networking is not permitted at any site for full client/server networking of Taxwise.

Wireless Printing Updated 10/30/2008 POLICY. The use of Wireless Networking is not permitted at any site for full client/server networking of Taxwise. Updated 10/30/2008 POLICY Tax-Aide Wireless Printing Policy The use of Wireless Networking is not permitted at any site for full client/server networking of Taxwise. Wireless networking, for the purpose

More information

The SC receives a public IP address from the DHCP client of the ISP. All traffic is automatically sent out through the WAN interface.

The SC receives a public IP address from the DHCP client of the ISP. All traffic is automatically sent out through the WAN interface. Barracuda NextGen Secure Connectors can connect to the Internet using DHCP client, static, or Wi-Fi client connections. The connections can be configured through the Secure Connector Editor or, for troubleshooting

More information

Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7 and Mac OSx)

Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7 and Mac OSx) Wireless Setup Guide (for Windows XP, Windows Vista, Windows 7 and Mac OSx) Wireless Setup Guide The following steps will take you through the process of setting up and connecting to your wireless network.

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

Install the Marionnet network simulator on Kali Linux Light vbox-i686

Install the Marionnet network simulator on Kali Linux Light vbox-i686 Install the Marionnet network simulator on Kali Linux Light 2017.1-vbox-i686 August 26, 2017 by Lucian Visinescu (this work is licensed under CC BY-NC 4.0) This installation is based on Install the Marionnet

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

5inch HDMI LCD (B) User Manual

5inch HDMI LCD (B) User Manual 5inch HDMI LCD (B) User Manual Description 5 inch Resistive Touch Screen LCD, HDMI interface, supports various systems Features 800 480 high resolution, touch control Supports Raspberry Pi, and driver

More information

Software Version: 3.0.17.9.19 VAP11N-300 4.0/1.0 VAP11G-300 6.0/5.0/4.0/3.0/2.0/1.0 VAP11G-500 5.0/4.0 VAR11N-300 2.0/1.0 VAR11N PLUS 5.0/4.0/3.0/2.0/1.0 1. Compatible with Sky Q router and IPhone wireless

More information