Creating Wireless VLANS

Size: px
Start display at page:

Download "Creating Wireless VLANS"

Transcription

1 Creating Wireless VLANS Introduction It is very common practice to isolate group of users in a network using VLANs. In wired Networks we use lot of Trunk links to carry and extend VLANs from one switch to the other. Sometimes it becomes necessary to plan redundant parallel network links for these trunk links. Now building a trunk link using wi-fi network is little tricky. Let us assume the Scenario as following. A network is having three VLANs with IDs -10,20,30 A HauteSpot P2P link is being configured as trunk for carrying these three VLANs. Eth1 of the wireless routers are connected to the switches.

2 A. Create VLAN interfaces for your vlans You need to create as many VLAN interfaces as the total no. of VLANs being forwarded through the trunk link. Here in this example I have maintained symmetry between VLAN ID and the name of the corresponding VLAN interface. /interface vlan add arp=enabled comment="" disabled=no interface=ether1 mtu=1500 name=vlan10 \ vlan-id=10 add arp=enabled comment="" disabled=no interface=ether1 mtu=1500 name=vlan20 \ vlan-id=20 add arp=enabled comment="" disabled=no interface=ether1 mtu=1500 name=vlan30 \ vlan-id=30

3 B. Create bridges - one per vlan One has to create as many bridges as the number of the vlan interfaces. This will run isolated Spanning Tree instances for the individual VLANs. /interface bridge add admin-mac=00:00:00:00:00:00 ageing-time=5m arp=enabled auto-mac=yes \ comment="" disabled=no forward-delay=15s max-message-age=20s mtu=1500 \ name=bridge_vlan_10 priority=0x8000 protocol-mode=stp \ transmit-hold-count=6 add admin-mac=00:00:00:00:00:00 ageing-time=5m arp=enabled auto-mac=yes \ comment="" disabled=no forward-delay=15s max-message-age=20s mtu=1500 \ name=bridge_vlan_20 priority=0x8000 protocol-mode=stp \ transmit-hold-count=6 add admin-mac=00:00:00:00:00:00 ageing-time=5m arp=enabled auto-mac=yes \ comment="" disabled=no forward-delay=15s max-message-age=20s mtu=1500 \ name=bridge_vlan_30 priority=0x8000 protocol-mode=stp \ transmit-hold-count=6

4 C. Add vlan interfaces to the corresponding bridge After the creation of the bridges, vlan interfaces need to be assigned to the corresponding bridges. This is to note that no primary interface like ether1 or wlan1 is assigned to the bridges. If this is done by mistake, the whole system might stop forrwarding frames. /interface bridge port add bridge=bridge_vlan_10 comment="" disabled=no edge=auto external-fdb=auto \ horizon=none interface=vlan10 path-cost=10 point-to-point=auto priority=\ 0x80 add bridge=bridge_vlan_20 comment="" disabled=no edge=auto external-fdb=auto \ horizon=none interface=vlan20 path-cost=10 point-to-point=auto priority=\ 0x80 add bridge=bridge_vlan_30 comment="" disabled=no edge=auto external-fdb=auto \ horizon=none interface=vlan30 path-cost=10 point-to-point=auto priority=\ 0x80 D. Create Virtual APs - one per vlan The Primary interface, wlan1 in this case will be in ap-bride mode and will not have any SSID associated with it.

5 The virtual APs will have hidden SSIDs. While creating virtual APs put 00:00:00:00:00:00 as MAC address. RouterOS will dynamically assign a MAC address to these. In VAPs enable WDS in dynamic mode and select the corresponding VLAN bridge created earlier. /interface wireless set 0 ack-timeout=dynamic adaptive-noise-immunity=none allow-sharedkey=no \ antenna-gain=0 antenna-mode=ant-a area="" arp=enabled band=2.4ghz-b \ basic-rates-a/g=6mbps basic-rates-b=1mbps burst-time=disabled comment="" \ compression=no country=no_country_set default-ap-tx-limit=0 \ default-authentication=yes default-client-tx-limit=0 default-forwarding=\ yes dfs-mode=none disable-running-check=no disabled=no \ disconnect-timeout=3s frame-lifetime=0 frequency=2412 frequency-mode=\ manual-txpower hide-ssid=no hw-retries=4 mac-address=00:80:48:60:6b:91 \ max-station-count=2007 mode=ap-bridge mtu=1500 name=wlan1 \ noise-floor-threshold=default on-fail-retry-time=100ms \ periodic-calibration=default periodic-calibration-interval=60 \ preamble-mode=both proprietary-extensions=post radio-name=\ B91 rate-set=default scan-list=default security-profile=default \ ssid="" station-bridge-clone-mac=00:00:00:00:00:00 supported-rates-a/g=\ 6Mbps,9Mbps,12Mbps,18Mbps,24Mbps,36Mbps,48Mbps,54Mbps supported-rates-b=\ 1Mbps,2Mbps,5.5Mbps,11Mbps tx-power-mode=default update-stats-interval=\ disabled wds-cost-range= wds-default-bridge=none wds-default-cost=\ 100 wds-ignore-ssid=no wds-mode=disabled wmm-support=disabled

6 Here in this example we have created three virtual APS associated with three different bridges through three separate WDS. add area="" arp=enabled comment="" default-ap-tx-limit=0 \ default-authentication=yes default-client-tx-limit=0 default-forwarding=\ yes disable-running-check=no disabled=no hide-ssid=yes mac-address=\ 02:80:48:60:6B:91 master-interface=wlan1 max-station-count=2007 mtu=1500 \ name=wlan_vap_10 proprietary-extensions=post security-profile=\ default ssid=cisco_v_10 update-stats-interval=disabled wds-cost-range=0 \ wds-default-bridge=bridge_vlan_10 wds-default-cost=0 wds-ignore-ssid=no \ wds-mode=dynamic wmm-support=disabled add area="" arp=enabled comment="" default-ap-tx-limit=0 \ default-authentication=yes default-client-tx-limit=0 default-forwarding=\ yes disable-running-check=no disabled=no hide-ssid=yes mac-address=\ 02:80:48:60:6B:92 master-interface=wlan1 max-station-count=2007 mtu=1500 \ name=wlan_vap_20 proprietary-extensions=post security-profile=\ default ssid=cisco_v_20 update-stats-interval=disabled wds-cost-range=0 \ wds-default-bridge=bridge_vlan_20 wds-default-cost=0 wds-ignore-ssid=no \ wds-mode=dynamic wmm-support=disabled add area="" arp=enabled comment="" default-ap-tx-limit=0 \ default-authentication=yes default-client-tx-limit=0 default-forwarding=\

7 yes disable-running-check=no disabled=no hide-ssid=yes mac-address=\ 02:80:48:60:6B:93 master-interface=wlan1 max-station-count=2007 mtu=1500 \ name=wlan_vap_30 proprietary-extensions=post security-profile=\ default ssid=cisco_v_30 update-stats-interval=disabled wds-cost-range=0 \ wds-default-bridge=bridge_vlan_30 wds-default-cost=0 wds-ignore-ssid=no \ wds-mode=dynamic wmm-support=disabled VAP General TAB: Assign a meaningful name to the Virtual AP. VAP Wireless TAB: Create a meaningful SSID. It is advisable to hide SSID.

8 VAP WDS TAB: Turn on WDS in Dynamic mode and select the appropriate bridge. Limitations The Aggregate Throughput of the trunk link will never be more that Mbps using or TLP in a 20MHz channel width without MIMO. Since one can create up to 128 Virtual APs, the total number of VLANs that this wireless link would be able to carry is 128 at maximum. This trunking will only work with 802.1q protocol. It is incompatible with ISL. Questions and Answers 1. What about the AP configuration at the other end? Is this article incomplete? Since this is an end-to-end L-2 Set-up, both the APs would have identical configuration. Just get an export of the first AP and apply that on the second AP. Yes, it is that simple. The configuration is not incomplete. It does not have an IP address because this does not require one. Just following the steps described in this article, people were able to commission wireless trunks successfully. 2. Can this be used in point to multipoint?

9 Yes, if you put the remote ends into Station WDS mode. Doing this would allow each remote station to have it s own VLAN. Alternatively you could use AP mode on each station, but the licenses of your stations need to support this. WRAPSTATION model equipment cannot be used in this way.

PORTA ONE. PortaSwitch Handbook Converged Services Maintenance Release 17.

PORTA ONE. PortaSwitch Handbook Converged Services Maintenance Release 17. PORTA TM ONE Porta Switch TM PortaSwitch Handbook Converged Services Maintenance Release 17 www.portaone.com Porta Switch PortaSwitch Handbook: Converged Services Copyright notice & disclaimers Copyright

More information

/interface eoip add remote-address= tunnel-id=1 mac-address= e \ \... disabled=no

/interface eoip add remote-address= tunnel-id=1 mac-address= e \ \... disabled=no EoIP Document revision 1.5 (September 11, 2007, 9:06 GMT) This document applies to V3.0 Table of Contents Table of Contents General Information Summary Quick Setup Guide Specifications EoIP Setup Property

More information

Wireless and Wired Bridging using Vlan.

Wireless and Wired Bridging using Vlan. Wireless and Wired Bridging using Vlan. (A case study at Electrical Engineering UBAYA). MUM Yogyakarta 19-20 Oct 2018 1 Topics of Discussion Virtual LAN (VLAN) Wired and Wireless Trunk System (Bridge,

More information

PORTA ONE. PortaBilling Handbook: Converged Services. Maintenance Release 20.

PORTA ONE. PortaBilling Handbook: Converged Services. Maintenance Release 20. PORTA ONE Porta Billing100 TM PortaBilling Handbook: Converged Services Maintenance Release 20 www.portaone.com PortaBilling Handbook: Converged Services Copyright Notice & Disclaimers Copyright 2000-2009

More information

VLAN & Wireless Infrastructure

VLAN & Wireless Infrastructure VLAN & Wireless Infrastructure VLAN tagged over Wireless Uplink (PtMP) & CAPsMAN (Layer 3) Who am I? Sun Sopheary Email: sunsopheary@gmail.com Mobile phone: 012779158 IT Manager at Angkor Hospital for

More information

Basic Wireless Settings on the CVR100W VPN Router

Basic Wireless Settings on the CVR100W VPN Router Basic Wireless Settings on the CVR100W VPN Router Objective A Wireless Local Area Network (WLAN) utilizes radio communication to connect wireless devices to a LAN. An example is a Wi-Fi hotspot at a cafe.

More information

Configuring Basic Wireless Settings on the RV130W

Configuring Basic Wireless Settings on the RV130W Article ID: 5027 Configuring Basic Wireless Settings on the RV130W Objective Wireless networking operates by sending information over radio waves, which can be more vulnerable to intruders than a traditional

More information

Table of contents

Table of contents GD-GEO20 1 2 Table of contents 1 Conventions Used in this Document... 4 Abbreviation List... 5 2 Packing list... 7 3 Introduction... 8 3.1 Deployment Scenarios... 8 3.1.1 HotSpot... 8 3.1.2 Point to Multipoint...

More information

Table of contents

Table of contents 1 GD-GEO20-TP 2 Table of contents 1 Conventions Used in this Document... 4 Abbreviation List... 4 2 Packing list... 6 3 Introduction... 7 3.1 Deployment Scenarios... 7 3.1.1 HotSpot... 7 3.1.2 Point to

More information

Configuring the Wireless Parameters (CPE and WBS)

Configuring the Wireless Parameters (CPE and WBS) Configuring the Wireless Parameters (CPE and WBS) CHAPTERS 1. Configure Basic Wireless Parameters 2. Configure Wireless Client Parameters 3. Configure Wireless AP Parameters 4. Configure Multi-SSID 5.

More information

How to configure a Point-to-Multipoint link

How to configure a Point-to-Multipoint link How to configure a Point-to-Multipoint link SilverNet equipment comes Pre-configured on IP addresses 192.168.0.229 or 192.168.0.228. There may be some instances where you need to reset the unit or the

More information

DLB APC v5.94. User s Guide. Revision November Copyright 2013 Deliberant

DLB APC v5.94. User s Guide. Revision November Copyright 2013 Deliberant DLB APC v5.94 User s Guide Revision 1.0 7 November 2013 Copyright 2013 Deliberant www.deliberant.com Copyright 2013 Deliberant This user s guide and the software described in it are copyrighted with all

More information

Revision 4 June Copyright

Revision 4 June Copyright WIP Series User s Guide Revision 1.0 4 June 2013 Copyright 2013 Tirade Copyright 2013 Tirade This user s guide and the software described in it are copyrighted with all rights reserved. No part of this

More information

Wireless 300N Access Point 300 Mbps, MIMO, Bridge, Repeater, Multiple SSIDs and VLANs Part No.:

Wireless 300N Access Point 300 Mbps, MIMO, Bridge, Repeater, Multiple SSIDs and VLANs Part No.: Wireless 300N Access Point 300 Mbps, MIMO, Bridge, Repeater, Multiple SSIDs and VLANs Part No.: 524728 Wireless networking with three times the speed and five times the flexibility. The INTELLINET NETWORK

More information

Configuring the EAPs Separately via Omada Controller

Configuring the EAPs Separately via Omada Controller Configuring the EAPs Separately via Omada Controller CHAPTERS 1. View the Information of the EAP 2. View Clients Connecting to the EAP 3. This guide applies to: Omada Controller 2.6.0. In addition to global

More information

Pro RANGE 95 User Manual

Pro RANGE 95 User Manual PICO 95 MICRO2 95 LITE 95 MAX 95 Pro RANGE 95 User Manual Version 1.3 (27/03/2017) Pro Range 95 User Manual 1.33 Page 1 of 36 Radio frequency Interference Requirements The operation of this device in the

More information

Enterprise wireless with CAPsMAN and Windows NPS. Rein Põdra Trainer / Consultant Berlin 2018

Enterprise wireless with CAPsMAN and Windows NPS. Rein Põdra Trainer / Consultant Berlin 2018 Enterprise wireless with CAPsMAN and Windows NPS Rein Põdra Trainer / Consultant rein.podra@ccisrd.eu Berlin 2018 Wireless security Open wireless - no security at all. WEP - minimal security. (Deprecated)

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

ICP DAS IOP760AM FAQ. FAQ Version ICP DAS Co., Ltd

ICP DAS IOP760AM FAQ. FAQ Version ICP DAS Co., Ltd ICP DAS IOP760AM FAQ FAQ Version.0 ICP DAS Co., Ltd. 08-- Table of Contents Q: How do I connect IOP760AM without Wi-Fi router?... Q: The roaming interval is not stable. How to make it better?... Q: How

More information

How to configure a Point-to-Point link

How to configure a Point-to-Point link How to configure a Point-to-Point link SilverNet equipment comes Pre-configured on IP addresses 192.168.0.229 or 192.168.0.228. There may be some instances where you need to reset the unit or the unit

More information

Switching, VLAN, QinQ in Ros 6.41 Onwards and their application to CRS 3.xx models. SOUMIL GUPTA BHAYA Mikortik Certified Trainer

Switching, VLAN, QinQ in Ros 6.41 Onwards and their application to CRS 3.xx models. SOUMIL GUPTA BHAYA Mikortik Certified Trainer Switching, VLAN, QinQ in Ros 6.41 Onwards and their application to CRS 3.xx models. SOUMIL GUPTA BHAYA Mikortik Certified Trainer About MTCNA, MTCWE, MTCTCE, MTCRE, MTCINE, MTCIPV6E Ten years of Mikrotik

More information

ENH900EXT N Dual Radio Concurrent AP. 2.4GHz/5GHz 900Mbps a/b/g/n Flexible Application

ENH900EXT N Dual Radio Concurrent AP. 2.4GHz/5GHz 900Mbps a/b/g/n Flexible Application ENH900EXT equips with two powerful independent RF interfaces which support 802.11a/n (3T3R) and 802.11b/g/n (3T3R). With certified IP-67 protection, it is designed to deliver high reliability under harsh

More information

Grandstream Networks, Inc. GWN76xx Wi-Fi Access Points Standalone Guide

Grandstream Networks, Inc. GWN76xx Wi-Fi Access Points Standalone Guide Grandstream Networks, Inc. GWN76xx Wi-Fi Access Points Standalone Guide Table of Content INTRODUCTION... 3 USING DEFAULT SSID... 4 USING CUSTOM SSID... 5 Discover GWN76xx... 5 Method 1: Discover GWN76xx

More information

WISNETWORKS. WisOS 11ac V /3/21. Software version WisOS 11ac

WISNETWORKS. WisOS 11ac V /3/21. Software version WisOS 11ac WISNETWORKS User Manual V1.1 2016/3/21 Software version 1.0.0021 Table of contents 1. Setup& WMI... 3 1.1 Hardware Setup... 3 1.2 Web Management Interface... 3 2. Status... 4 2.1 Overview... 4 2.1.1 System...

More information

Key Features. EnGenius Outdoor CPE design High Power, High Sensitivity and Strong Reliability Solutions under Harsh Environment.

Key Features. EnGenius Outdoor CPE design High Power, High Sensitivity and Strong Reliability Solutions under Harsh Environment. N300 2.4GHz Long Range Point to Point CPE 2.4 GHz 11b/g/n 300Mbps Key Features IEEE 802.11 b/g/n compliant Up to 300Mbps (2.4GHz) 13dBi Directional high gain antenna 24V Proprietary PoE support Waterproof

More information

802.11a/n Long Range Wireless Outdoor CB/A P

802.11a/n Long Range Wireless Outdoor CB/A P ENS500 Key Features IEEE 802.11 a/n compliant Up to 300Mbps (5GHz) 24V Proprietary PoE support AP/CB/CR/WDS/Repeater Modes Multi-SSIDs with VLAN tagged VLAN tag pass-through via the WDS BR mode Web Configuration

More information

MikroTik RouterOS new Wireless and LTE features overview

MikroTik RouterOS new Wireless and LTE features overview MikroTik RouterOS new Wireless and LTE features overview Uldis Cernevskis MikroTik, Latvia MUM Brazil November 2016 Overview RouterBOARD wap New Wireless (wireless-rep) package LTE Interface and wap LTE

More information

LiteStation2 LiteStation5 User s Guide

LiteStation2 LiteStation5 User s Guide LiteStation2 LiteStation5 User s Guide Contents Contents... 2 Introduction... 3 Quick Setup Guide... 4 Configuration Guide... 8 Main Settings... 9 Link Setup... 10 Basic Wireless Settings... 10 Wireless

More information

Configure Wireless Distribution System (WDS) on the WAP131, WAP351, WAP150, or WAP361 Access Point

Configure Wireless Distribution System (WDS) on the WAP131, WAP351, WAP150, or WAP361 Access Point Configure Wireless Distribution System (WDS) on the WAP131, WAP351, WAP150, or WAP361 Access Point Objective A Wireless Distribution System (WDS) lets you connect multiple access points together. WDS allows

More information

Table of Contents 1 WLAN Service Configuration 1-1

Table of Contents 1 WLAN Service Configuration 1-1 Table of Contents 1 WLAN Service Configuration 1-1 WLAN Service Overview 1-1 Terminology 1-1 Wireless Client Access 1-2 802.11 Overview 1-4 WLAN Topologies 1-5 Single BSS 1-5 Multi-ESS 1-5 Single ESS Multiple

More information

User Guide. For TP-Link Pharos Series Products

User Guide. For TP-Link Pharos Series Products User Guide For TP-Link Pharos Series Products CPE210 / CPE220 / CPE510 / CPE520 / CPE610 WBS210 / WBS510 1910012335 REV 3.0.1 March 2018 CONTENTS About this User Guide... 1 Overview... 2 1 Operation Modes...

More information

Configuring Parameters

Configuring Parameters Configuring the 802.11n Parameters, page 1 Configuring 802.11h Parameters, page 4 Configuring the 802.11n Parameters Information About Configuring the 802.11n Parameters This section provides instructions

More information

Add a Wireless Network to an Existing Wired Network using a Wireless Access Point (WAP)

Add a Wireless Network to an Existing Wired Network using a Wireless Access Point (WAP) Add a Wireless Network to an Existing Wired Network using a Wireless Access Point (WAP) Objective A Wireless Access Point (WAP) is a networking device that allows wireless-capable devices to connect to

More information

Document Created by Nick Schuster

Document Created by Nick Schuster Document Created by Nick Schuster Product Overview...4 Introduction... 4 Features... 5 Package Contents... 6 System Requirements... 6 Hardware Overview...7 LEDs... 7 Connections... 7 Basic Installation...8

More information

ZAC Product Specification

ZAC Product Specification ZAC-1023-5-13 Part Number: ZN-7200-2AEI-L Product Specification IEEE 802.11 a/n CPE Version: 0.6-1 - 2 Specification 2.1 Hardware Specification Table 2-1 Hardware Specification Features Chipset Standard

More information

Monitoring the Network (CPE and WBS)

Monitoring the Network (CPE and WBS) Monitoring the Network (CPE and WBS) CHAPTERS 1. View the Device Information 2. View the Wireless Settings 3. View Wireless Signal Quality 4. View Radio Status 5. View the LAN Settings 6. View the WAN

More information

Chapter 2 Installation and Configuration

Chapter 2 Installation and Configuration Chapter 2 Installation and Configuration This chapter describes how to set up your NETGEAR Wireless-N Access Point WN802T v2 for wireless connectivity to your LAN. This basic configuration will enable

More information

Contents. LaFonera_Software_Client-Mode. You are here: DD-WRT wiki mainpage / LaFonera / Software / Client-Mode

Contents. LaFonera_Software_Client-Mode. You are here: DD-WRT wiki mainpage / LaFonera / Software / Client-Mode You are here: DD-WRT wiki mainpage / LaFonera / Software / Client-Mode Contents 1 Client Mode 2 Separate Guides 3 Requirements 4 Quick Setup 5 Host Router Settings 5.1 Wireless > Basic Settings 5.2 Wireless

More information

NWERM21 NWERM97 NWERM98. (Niveo Managed Enterprise Access Points) More information:

NWERM21 NWERM97 NWERM98. (Niveo Managed Enterprise Access Points) More information: NWERM21 NWERM97 NWERM98 (Niveo Managed Enterprise Access Points) More information: WWW.NIVEOPROFESSIONAL.COM INFO@NIVEOPROFESSIONAL.COM Product Introduction Introduction Niveo Professional offers a full

More information

Redundancy and Performance on Point to Point link

Redundancy and Performance on Point to Point link Redundancy and Performance on Point to Point link Philippe ROBERT 1 Speaker Philippe ROBERT p.robert@engitech.ch MCTNA MTCRE MTCTCE MTCUME MTCWE certified as trainer MikroTik since 2013 (Microsoft VMware

More information

Key Features. Multiple Operation Modes ENS500EXT can operate into four different modes with Access Point, Client Bridge, Client Router and WDS Mode.

Key Features. Multiple Operation Modes ENS500EXT can operate into four different modes with Access Point, Client Bridge, Client Router and WDS Mode. 802.11a/n Long Range Wireless Outdoor CB/AP Key Features IEEE 802.11 a/n compliant Up to 300Mbps (5GHz) 24V Proprietary PoE support Waterproof Housing IP65 rated Detachable 5GHz 5dBi omni antennas AP/CB/CR/WDS

More information

Configuring Wireless Distribution System (WDS) on the WAP131 and WAP351

Configuring Wireless Distribution System (WDS) on the WAP131 and WAP351 Article ID: 5045 Configuring Wireless Distribution System (WDS) on the WAP131 and WAP351 Objective Wireless Distribution System (WDS) allows you to connect multiple access points and have them communicate

More information

Wireless AC1200 Concurrent Dual Band PoE Access Point

Wireless AC1200 Concurrent Dual Band PoE Access Point DAP-2660 Version 1.00 AirPremier Wireless AC1200 Concurrent Dual Band PoE Access Point Product Overview...5 Introduction... 5 Features... 6 Package Contents... 7 System Requirements... 7 Hardware Overview...8

More information

Monitoring and Managing the Network (Pharos Control)

Monitoring and Managing the Network (Pharos Control) Monitoring and Managing the Network (Pharos Control) CHAPTERS 1. 2. Manage Firmware Files 3. Configure Scheduled Tasks 4. Configure Trigger Rules This guide applies to: Phaos Control 2.0. This guide introduces

More information

Features Wireless Feature

Features Wireless Feature WAP-854NP Industrial Class IEEE802.11n 300Mbps 100mW Access Point W/ Dual-Detachable Antenna (Reverse SMA Connector), IEEE802.3af POE Built-in, IP50 Certificated Aspiring to provide the best performance/price

More information

H210 AU. Point, Client Bridge, Client Router and WDS.

H210 AU. Point, Client Bridge, Client Router and WDS. H210 AU EN LONG RANGE WIRELESS 11N OUTDOOR CB/AP IEEE802.11/b/g/n 300Mbps 25 km High Performance PRODUCT OVERVIEW Wireless Outdoor Enterprise Client Bridge features 14dBi high gain antenna dual polarization

More information

EnGenius M2000 Wireless Outdoor Access Point / Client Bridge / Mesh User Manual Version: 1.0

EnGenius M2000 Wireless Outdoor Access Point / Client Bridge / Mesh User Manual Version: 1.0 EnGenius M2000 Wireless Outdoor Access Point / Client Bridge / Mesh User Manual Version: 1.0 Table of Contents 1 INTRODUCTION... 6 1.1 FEATURES... 6 1.2 PACKAGE CONTENTS... 7 1.3 SYSTEM REQUIREMENTS...

More information

Key Features EnGenius Outdoor Access Points, High Sensitivity and Strong Reliability Solutions under Harsh Environment

Key Features EnGenius Outdoor Access Points, High Sensitivity and Strong Reliability Solutions under Harsh Environment 802.11a/b/g/n Long Range Wireless Outdoor CB/AP Key Features IEEE 802.11 b/g/n compliant Up to 300Mbps (2.4GHz) 24V Proprietary PoE support AP/CB/CR/WDS/Repeater Modes Multi-SSIDs with VLAN tagged VLAN

More information

VLAN HOW-TO USER GUIDE

VLAN HOW-TO USER GUIDE RAPIDUS WIRELESS NETWORKS VLAN HOW-TO USER GUIDE CONFIGURING VLAN SETTING FOR FIRMWARE REV. 6.X.X Rafael Garrigo 4/5/2018 0 CONFIGURING VLAN HOW-TO VLAN A virtual LAN (VLAN) allows network administrators

More information

Preface. Manual Revisions. Revision Date Description 1.0 March 3, 2009 DAP-3520 Revision A1 with firmware version Trademarks

Preface. Manual Revisions. Revision Date Description 1.0 March 3, 2009 DAP-3520 Revision A1 with firmware version Trademarks Preface D-Link reserves the right to revise this publication and to make changes in the content hereof without obligation to notify any person or organization of such revisions or changes. Manual Revisions

More information

Key Features EnGenius Outdoor Long Range CPE, High Sensitivity and Strong Reliability Solutions under Harsh Environment

Key Features EnGenius Outdoor Long Range CPE, High Sensitivity and Strong Reliability Solutions under Harsh Environment 802.11b/g/n Long Range Wireless Outdoor CB/AP Key Features IEEE 802.11 b/g/n compliant Up to 300Mbps (2.4GHz) 24V Proprietary PoE support Detachable 2.4GHz 5dBi omni antennas AP/CB/CR/WDS/Repeater Modes

More information

Skywave User Manual. Version 1.1 (05/10/2015) Pro Range 95 User Manual 1.1 Page 1 of 31

Skywave User Manual. Version 1.1 (05/10/2015) Pro Range 95 User Manual 1.1 Page 1 of 31 Skywave User Manual Version 1.1 (05/10/2015) Pro Range 95 User Manual 1.1 Page 1 of 31 Radio frequency Interference Requirements The operation of this device in the 5.15 GHz to 5.25 GHz frequency range

More information

Document Created by Nick Schuster

Document Created by Nick Schuster Document Created by Nick Schuster Table of Contents Product Overview... 4 Introduction... 4 Features... 5 Package Contents... 6 System Requirements... 6 Hardware Overview... 7 LEDs... 7 Connections...

More information

Grandstream Networks, Inc. GWN76xx Wi-Fi Access Points Master/Slave Architecture Guide

Grandstream Networks, Inc. GWN76xx Wi-Fi Access Points Master/Slave Architecture Guide Grandstream Networks, Inc. GWN76xx Wi-Fi Access Points Master/Slave Architecture Guide Table of Contents INTRODUCTION... 4 DISCOVER AND PAIR GWN76XX ACCESS POINTS... 5 Discover GWN76xx... 5 Method 1: Discover

More information

High Power Wireless N. 600mW Smart Repeater LP 9698SR

High Power Wireless N. 600mW Smart Repeater LP 9698SR High Power Wireless N 600mW Smart Repeater LP 9698SR INTRODUCTION...4 GETTING STARTED...5 Package Contents...5 LED Indicators...6 Back Panel Description...7 SETUP GUIDE...8 Find a Setup Location...8 Connect

More information

PRO RANGE 95. V1.4 PICO 95 MICRO2 95 LITE 95 MAX 95. User Manual

PRO RANGE 95. V1.4   PICO 95 MICRO2 95 LITE 95 MAX 95. User Manual PRO RANGE 95 PICO 95 MICRO2 95 LITE 95 MAX 95 User Manual V1.4 www.silvernet.com TABLE OF CONTENTS Introduction... 4 Supported Products... 4 Wireless Modes... 4 System Requirements... 4 Packing list...

More information

3.3.2 Example to Add Profile in Profile Step 1: Click Add in Profile function

3.3.2 Example to Add Profile in Profile Step 1: Click Add in Profile function Network Type: There are two types, infrastructure and 802.11 Ad-Hoc mode. Under Ad-Hoc mode, user can also choose the preamble type, the available preamble type includes auto and long. In addition to that

More information

Configuring the EN-4000 s Wireless Card

Configuring the EN-4000 s Wireless Card EN-4000 Reference Manual Document 13 Configuring the EN-4000 s 802.11 Wireless Card T he EN-4000 is the newest member of Encore Networks family of routers. It provides wireless and cabled connections to

More information

Network+ Guide to Networks 7 th Edition

Network+ Guide to Networks 7 th Edition Network+ Guide to Networks 7 th Edition Chapter 10 Network Segmentation and Virtualization 2016 Cengage Learning. May not be scanned, copied or duplicated, or posted to a publicly accessible website, in

More information

150Mbps WLAN Access Point

150Mbps WLAN Access Point User s Manual 150Mbps WLAN Access Point Model No.: SP918NL http://www.micronet.info Contents Chapter 1 Introduction 1-1 Product Introduction...1 1-2 Safety Information...1 1-3 System Requirements...3 1-4

More information

VX-AP310N. LED Features. Indoor Wireless Access Point. Advanced Security Technology. Status. Ethernet WLAN. Power

VX-AP310N. LED Features. Indoor Wireless Access Point. Advanced Security Technology. Status. Ethernet WLAN. Power Indoor Wireless Access Point Advanced Security Technology The is an innovative Wireless Secured Access Point from Versa Technology. The unit features 802.11b/g/n. It is designed to support the Telecom

More information

User Manual. WLAN USB Adapter for b/g/n

User Manual. WLAN USB Adapter for b/g/n User Manual WLAN USB Adapter for 802.11b/g/n Contents Chapter 1 Getting Start... 3 Minimum System Requirements...3 Optimize Wireless Performance...3 Installation...5 Uninstall...8 Chapter 2 Management

More information

Wireless Long Range Access Point / Client Bridge EOC5510. User Manual V1.0

Wireless Long Range Access Point / Client Bridge EOC5510. User Manual V1.0 Wireless Long Range Access Point / Client Bridge EOC5510 User Manual V1.0 0 Table of Contents 1 PRODUCT OVERVIEW... 3 1.1 FEATURE... 3 1.2 BENEFITS... 5 1.3 PACKAGE CONTENTS... 6 1.4 SYSTEM REQUIREMENT...

More information

Grandstream Networks, Inc. Client Isolation Configuration Guide

Grandstream Networks, Inc. Client Isolation Configuration Guide Grandstream Networks, Inc. Table of Contents INTRODUCTION... 3 CLIENT ISOLATION MODES... 4 CLIENT ISOLATION CONFIGURATION... 5 Client Isolation - Internet Mode... 5 Client Isolation - Radio Mode... 7 Client

More information

Dual Radio Concurrent AP/CB EOA7535 User Manual Version : 1.0

Dual Radio Concurrent AP/CB EOA7535 User Manual Version : 1.0 Dual Radio Concurrent AP/CB EOA7535 User Manual Version : 1.0 Table of Contents 1 PRODUCT OVERVIEW... 3 1.1 BENEFITS... 3 1.2 FEATURE... 5 1.3 PACKAGE CONTENTS... 6 1.4 SYSTEM REQUIREMENT... 6 1.5 HARDWARE

More information

JetWave 2810/2820/2830-H/M

JetWave 2810/2820/2830-H/M JetWave 2810/2820/2830-H/M Outdoor Multi-RF 802.11 a/b/g/n AP(-H) / MESH AP(-M) Strong TX output power extends distance and coverage High RX sensitivity enhances receiving signal quality 2x2 MIMO doubles

More information

Grandstream Networks, Inc. GWN76XX Series Mesh Network Guide

Grandstream Networks, Inc. GWN76XX Series Mesh Network Guide Grandstream Networks, Inc. GWN76XX Series Mesh Network Guide Table of Content SUPPORTED DEVICES... 4 INTRODUCTION... 5 MESH NETWORK ARCHITECTURE... 6 Terminology... 6 Mesh Network Architecture Models...

More information

Installation Guide BS 100/200/300 Series

Installation Guide BS 100/200/300 Series Installation Guide BS 100/200/300 Series Revision 1.1 RepeatIT AB Tel: +46 8 570 106 66 Hamngatan 33 Fax: +46 8 570 106 67 172 66 Sundbyberg E-mail: info@repeatit.se Sweden www.repeatit.se Page 2 of 14

More information

Best Connectivity. 500Mbps PowerLine Starter Kit. Give your home network from the power outlet. Plug it in and get started!

Best Connectivity. 500Mbps PowerLine Starter Kit. Give your home network from the power outlet. Plug it in and get started! Give your home network from the power outlet. Plug it in and get started! Give your home simply fast network and experience entertainment at speeds up to 500 Mbps. Connecting your devices together is as

More information

WIRELESS ACCESS POINT / CLIENT BRIDGE

WIRELESS ACCESS POINT / CLIENT BRIDGE WIRELESS ACCESS POINT / CLIENT BRIDGE Model: ENH500 User Manual Version: 1.0 Table of Contents 1 PRODUCT OVERVIEW... 6 1.1 FEATURES... 6 1.2 BENEFITS... 7 1.3 PACKAGE CONTENTS... 9 1.4 SYSTEM REQUIREMENT...

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

60 GHz range improvements and multipoint capabilities

60 GHz range improvements and multipoint capabilities 60 GHz range improvements and multipoint capabilities Antons Beļajevs MikroTik, Latvia MUM EU April 2018 Wireless band comparison 2.4 GHz 802.11b/g/n Crowded spectrum Low channel count 5 GHz 802.11a/n/ac

More information

Learn How to Configure EnGenius Wi-Fi Products for Popular Applications

Learn How to Configure EnGenius Wi-Fi Products for Popular Applications Learn How to Configure EnGenius Wi-Fi Products for Popular Applications Operation Modes Access Point (AP) / WDS AP Client Bridge (CB) Repeater WDS Bridge Client Router AP Router Access Point An access

More information

ENH200 LONG RANGE WIRELESS 11N OUTDOOR CB/AP PRODUCT OVERVIEW. IEEE802.11/b/g/n 1T+1R 150Mbps 25 km High Performance

ENH200 LONG RANGE WIRELESS 11N OUTDOOR CB/AP PRODUCT OVERVIEW. IEEE802.11/b/g/n 1T+1R 150Mbps 25 km High Performance LONG RANGE WIRELESS 11N OUTDOOR CB/AP IEEE802.11/b/g/n 1T+1R 150Mbps 25 km High Performance PRODUCT OVERVIEW is 802.11b/g/n Access Point / Client Bridge has been developed to address applications and networks

More information

Release Notes for Avaya WLAN 9100 AOS-Lite Operating System WAP9112 Release WAP9114 Release 8.1.0

Release Notes for Avaya WLAN 9100 AOS-Lite Operating System WAP9112 Release WAP9114 Release 8.1.0 WLAN 9100 Release Notes Release Notes for Avaya WLAN 9100 AOS-Lite Operating System WAP9112 Release 8.1.0 WAP9114 Release 8.1.0 Avaya Inc - External Distribution 1. Introduction This document provides

More information

CSNT 180 Wireless Networking. Chapter 7 WLAN Terminology and Technology

CSNT 180 Wireless Networking. Chapter 7 WLAN Terminology and Technology CSNT 180 Wireless Networking Chapter 7 WLAN Terminology and Technology Norman McEntire norman.mcentire@servin.com Founder, Servin Corporation, http://servin.com Technology Training for Technology Professionals

More information

Configure n on the WLC

Configure n on the WLC Configure 802.11n on the WLC Document ID: 108184 Contents Introduction Prerequisites Requirements Components Used Related Products Conventions 802.11n An Overview How Does 802.11n Provide Greater Throughput

More information

ECB N Multi-Function Gigabit Client Bridge

ECB N Multi-Function Gigabit Client Bridge ECB9500 is a powerful and multi-functioned 11n product with 7 major multi-functions, is designed to operate in every working environment for enterprises. ECB9500 is a Wireless Network device that delivers

More information

RAPIDUS WIRELESS RL-SERIES USER GUIDE

RAPIDUS WIRELESS RL-SERIES USER GUIDE RAPIDUS WIRELESS NETWORKS RAPIDUS WIRELESS RL-SERIES USER GUIDE COVERS INDOOR AND OUTDOOR SERIES MODELS Revision: 6.x.x. Firmware: RL-K-R6 Date: April.5.2018 Rafael Garrigo 4/5/2018 1 Rapidus Wireless

More information

WAP6405. User s Guide. Quick Start Guide. 5GHz AC1750 Gigabit Wireless Bridge. Default Login Details. Version 1.00 Edition 1, 06/2016

WAP6405. User s Guide. Quick Start Guide. 5GHz AC1750 Gigabit Wireless Bridge. Default Login Details. Version 1.00 Edition 1, 06/2016 WAP6405 5GHz AC1750 Gigabit Wireless Bridge Version 1.00 Edition 1, 06/2016 Quick Start Guide User s Guide Default Login Details LAN IP Address http://192.168.1.2 (AP Mode) http://192.168.1.5 (Repeater

More information

Wireless Outdoor. Client Bridge / Access Point

Wireless Outdoor. Client Bridge / Access Point Wireless Outdoor Client Bridge / Access Point 2012 User Manual Version : 1.0 1 Product Overview Thank you for using ANSEL 2012. It is a powerful, enhanced, enterprise scale product with 4+1 multi-functions

More information

Outdoor Solution. Wireless 300Mbps Outdoor Access Point Built-in or Dual Polarization Antenna

Outdoor Solution. Wireless 300Mbps Outdoor Access Point Built-in or Dual Polarization Antenna product datasheet Outdoor Solution MIMO Station MMS Wireless 3Mbps Outdoor Access Point Built-in 14dBi@2.4GHz or 16dBi@5GHz Dual Polarization Antenna Features MIPS 24K-family 3MHz network processor Atheros

More information

TABLE OF CONTENT 1. ABOUT THIS GUIDE Overview of the User s Guide INTRODUCTION Overview Features...

TABLE OF CONTENT 1. ABOUT THIS GUIDE Overview of the User s Guide INTRODUCTION Overview Features... TABLE OF CONTENT 1. ABOUT THIS GUIDE... 3 1.1 Overview of the User s Guide... 3 2. INTRODUCTION... 3 2.1 Overview... 3 2.2 Features... 3 2.3 Panel Layout... 4 2.3.1 Front Panel... 4 2.3.2 Rear Panel...

More information

WAP3205 v2. User s Guide. Quick Start Guide. Wireless N300 Access Point. Default Login Details. Version 1.00 Edition 2, 12/2012

WAP3205 v2. User s Guide. Quick Start Guide. Wireless N300 Access Point. Default Login Details. Version 1.00 Edition 2, 12/2012 WAP3205 v2 Wireless N300 Access Point Version 1.00 Edition 2, 12/2012 Quick Start Guide User s Guide Default Login Details LAN IP Address http://192.168.1.2 Password 1234 www.zyxel.com Copyright 2012 ZyXEL

More information

300Mbps Wireless Gigabit PoE Access Point

300Mbps Wireless Gigabit PoE Access Point WAP-6150 Version: 1 300Mbps Wireless Gigabit PoE Access Point The tough, high performance WAP-6150 is designed for fast wireless connectivity in enterprise or industrial environments of all dimensions.

More information

NSP Network Services Platform Network Functions Manager - Packet (NFM-P) 9500 MPTSUB6 Driver Version Guide

NSP Network Services Platform Network Functions Manager - Packet (NFM-P) 9500 MPTSUB6 Driver Version Guide NSP Network Services Platform Network Functions Manager - Packet (NFM-P) 9500 MPTSUB6 Driver Version 3.2.0 Guide 3HE-13356-AAAB-TQZZA NFM-P Legal notice Nokia is a registered trademark of Nokia Corporation.

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

Document Created by Nick Schuster

Document Created by Nick Schuster Document Created by Nick Schuster Table of Contents Product Overview... 4 Introduction... 4 Features... 5 Package Contents... 6 System Requirements... 6 Hardware Overview... 7 LEDs... 7 Connections...

More information

TRENDnet User s Guide. Cover Page

TRENDnet User s Guide. Cover Page Cover Page Contents Product Overview... 3 Package Contents... 3 Features... 3 Product Hardware Features... 4 Application Diagram... 5 Creating a Network... 6 Wireless Performance Considerations... 6 Getting

More information

Chapter 4 Advanced Settings and Features

Chapter 4 Advanced Settings and Features Chapter 4 Advanced Settings and Features This chapter describes the features you can configure or view under Advanced in the main menu of your WiFi range extender. Advanced Wireless Settings Note: The

More information

U S E R M A N U A L b/g PC CARD

U S E R M A N U A L b/g PC CARD U S E R M A N U A L 802.11b/g PC CARD Table of Content CHAPTER 1 INTRODUCTION... 1 1.1 WIRELESS LAN FEATURE FUNCTIONS... 1 1.2 REGULATORY NOTICE... 1 1.2.1 FCC Class B Statement...1 1.2.2 Canadian Regulatory

More information

Bandwidth Control R-SMA 32MB SDRAM

Bandwidth Control R-SMA 32MB SDRAM AirMax5 802.11a Wireless Outdoor CPE 802.11a 108Mbps Wireless Outdoor CPE Built-in 13dbi antenna 23dBm 11a Output Power Antenna Alignment LED Super Channel Support 5/10/20/40MHz Channel Width AP, Bridge,

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

IEEE a/n Wireless CPE Product Specification. Model Name: ZAC Version: 0.6

IEEE a/n Wireless CPE Product Specification. Model Name: ZAC Version: 0.6 IEEE 802.11 a/n Wireless CPE Product Specification Model Name: ZAC-1023-5-13 Version: 0.6 1 Revision History Date Version Author Description 2013/10/14 V0.1 Nancy 1 st release version 2014/01/22 V0.2 Nancy

More information

WRE6606. User s Guide. Quick Start Guide. Dual-Band Wireless AC1300 Access Point. Default Login Details. Version 1.00 (ABDU.0) Edition 1, 10/2016

WRE6606. User s Guide. Quick Start Guide. Dual-Band Wireless AC1300 Access Point. Default Login Details. Version 1.00 (ABDU.0) Edition 1, 10/2016 WRE6606 Dual-Band Wireless AC1300 Access Point Version 1.00 (ABDU.0) 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

User Guide Outdoor Point to Point CPE

User Guide Outdoor Point to Point CPE Outdoor Outdoor Point to Point CPE Copyright Statement 2018 IP-COM Networks Co., Ltd. All rights reserved. is the registered trademark of IP-COM Networks Co., Ltd. Other brand and product names mentioned

More information

ENH700EXT N Dual Radio Concurrent AP PRODUCT OVERVIEW

ENH700EXT N Dual Radio Concurrent AP PRODUCT OVERVIEW 802.11N Dual Radio Concurrent AP 2.4 GHz/5GHz 600Mbps 802.11a/b/g/n Flexible Application PRODUCT OVERVIEW equips with two powerful independent RF interfaces which support 802.11a/n(2T2R) and 802.11b/g/n(2T2R).

More information

XG-520 Wireless b/g Portable Router. User s Manual

XG-520 Wireless b/g Portable Router. User s Manual XG-520 Wireless 802.11b/g Portable Router User s Manual 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

More information

Universal Software for NETSHe network devices. User Manual

Universal Software for NETSHe network devices. User Manual Universal Software for NETSHe network devices User Manual Section 4. Network Stanislav Korsakov, NETSHe Lab 2009-2017 Yaroslavl Contents Contents...2 Network Interfaces...3 Configuration of Ethernet interfaces

More information

Wireless LAN USB Super G 108 Mbit. Manual

Wireless LAN USB Super G 108 Mbit. Manual Wireless LAN USB Super G 108 Mbit Manual Dear Customer, Thanks for choosing Hamlet. Please carefully follow the instructions for its use and maintenance and, once this item has run its life span, we kindly

More information