This Application Note applies to all Thomson DSL Gateways with R7.4 and higher.

Size: px
Start display at page:

Download "This Application Note applies to all Thomson DSL Gateways with R7.4 and higher."

Transcription

1 VLAN ID Translation Date: March 2008 Version: v1.0 Abstract: Applicability: Updates: This Application Notes describes the configuration of a specific feature of the Thomson Gateway: VLAN ID Translation. This feature is explained by integrating the Thomson Gateway in a scenario where untagged, priority-tagged or VLAN-tagged frames have to be bridged between the local Ethernet segment and the DSL line. The practical realization of the scenario is described using CLI commands. This Application Note applies to all Thomson DSL Gateways with R7.4 and higher. Thomson continuously develops new solutions, but is also committed to improving its existing products. For more information on Thomson's latest technological innovations, documents and software releases, visit us at

2 Chapter 1 1 Introduction Thomson Gateway as bridge To set up the scenario of this document, the Thomson Gateway is configured as bridge. This means that Ethernet frames are forwarded between the local Ethernet segment (LAN) and the WAN Ethernet segment (PVCs on which RFC 1483 LLC encapsulation is used) on the link layer. In other words, the Thomson Gateway does not terminate or route received Ethernet frames. VLANs The Ethernet frames that have to be forwarded may reside in different VLANs. This implies that all Ethernet frames contain a (802.1Q) VLAN ID. Communication between different VLANs is not allowed on the link layer. Only routers can make connections between different VLANs. VLANs create thus separated logical Ethernet segments within a single physical segment. Ethernet QoS Ethernet frames optionally contain a (802.1p) user priority indication. If Ethernet QoS is taken into account during bridging, it can be based on two steps: 1 Mapping the user priority of an incoming frame to an internal priority class. This classification can be based on: The type of the interface on which the frame is entering the bridge. The (802.1p) user priority value. The IP Type of Service octet (TOS-byte) for IP packets, using the Precedence or DSCP notation. 2 Sending out the frame while taking into account its internal priority class. This class can be used to: Perform priority queuing on a single PVC. Perform traffic multiplexing over a range of PVCs. Related documents For detailed information on the features, CLI commands and parameters used in this document, see: Thomson Gateway Ethernet Configuration Guide. Thomson Gateway VLAN Configuration Guide. Thomson Gateway Ethernet QoS Configuration Guide. 1

3 2 VLAN ID Translation 2.1 Scenario Overview Introduction In this scenario, the Thomson Gateway is intended to forward VLAN-tagged Ethernet frames between the local Ethernet segment and the PVCs. The local VID of a frame received on a local interface is translated to a WAN-side VID before the frame is sent out on a WAN interface. Per interface and per VLAN ID, you have to be able to configure the translation from a local VID to a WAN-side VID. This scenario configures the Thomson Gateway as bridge with one PVC. Frames coming in on a local interface are checked on VLAN ID and are only forwarded on PVCs that are member of the same VLAN. Before the frame is sent out by the PVC, the VLAN ID is translated. For example, a local VID A is translated into a WAN-side VID Z. Following illustration shows the VLAN ID translation scenario: Thomson Gateway DSLAM A 5 A 2 Z 5 Z 2 PVC1 VID 802.1p Local interface WAN interface Mechanisms To set up this scenario, we use following mechanisms: VLAN awareness: the Ethernet bridge must be fully VLAN aware. As a result, the Ethernet bridge takes the VLAN tag in the header of received frames into account. VLANs: several VLANs are created on the Thomson Gateway. The configured VLAN membership of the interfaces defines to which PVC the frames must be forwarded. Extra tagging (stacked VLANs): this mechanism enables the use of a VID translation table. The VID translation table defines, per interface and per local VID, the mapping between the local VID and the WAN-side VID. 2.2 Practical Realization Configuration overview Following configuration steps have to be performed to configure the Thomson Gateway for this scenario: 1 Define which PVC must be used by configuring an ATM interface. 2

4 2 Connect the ATM interface to the Ethernet bridge. 3 Make the bridge VLAN aware. 4 Define a VLAN for the local VLAN ID the Ethernet bridge has to handle. 5 Define which interfaces are part of which VLAN. 6 Enable the extra tagging mechanism and define the VID translation table. 7 Save the configuration. Before you start Before you start to configure the Thomson Gateway, make following preparations: Reset the Thomson Gateway to the factory defaults and reboot the device. Make sure the telnet session with the Thomson Gateway never times out. Remove the factory default interfaces and settings that you do not need for the configuration. Make these changes permanent. Now, you can start from a clean situation. =>:system reset factory=yes proceed=yes =>:env set var=sessiontimeout value=0 =>:ppp relay flush =>:ppp flush =>:eth flush =>:atm flush =>:atm phonebook flush =>:saveall Configure an ATM interface To create a phonebook entry for the PVC that must be used, execute following CLI command (the VPI/VCI value is indicative): =>:atm phonebook add name=phone_pvc1 addr=0.35 To create, configure and connect an ATM interface on top of this phonebook entry, execute following CLI commands: =>:atm ifadd intf=atm_pvc1 =>:atm ifconfig intf=atm_pvc1 dest=phone_pvc1 ulp=mac =>:atm ifattach intf=atm_pvc1 Configure a bridge port To connect the ATM interface to the Ethernet bridge, execute following CLI commands: =>:eth bridge ifadd intf=bridge_pvc1 =>:eth bridge ifconfig intf=bridge_pvc1 dest=atm_pvc1 =>:eth bridge ifattach intf=bridge_pvc1 3

5 Make the bridge VLAN aware To enable the VLAN awareness of the Ethernet bridge, execute following CLI command: =>:eth bridge config vlan=enabled From this moment on, all Ethernet frames arriving on the Ethernet bridge with a VLAN tag are only forwarded to interfaces configured as an explicit member of that VLAN. Create the VLAN To define the VLAN to be used, execute following CLI command: =>:eth vlan add name=myvlan_a vid=10 addrule=disabled A logical name is associated with the effective VID that is used in the VLAN tag of the frame. The addrule=disabled parameter forces the Thomson Gateway to create a separate filtering database for the created VLAN. As a result, the same MAC address (e.g. the DSLAM MAC address) can be used in different VLANs, for example when different VLANs are connected to the same device (e.g. the DSLAM). Assign interfaces to the VLAN The LAN-side bridge ports must be member of each VLAN from which they have to accept frames. In this example, we only enable bridge port 4 to receive VLAN-tagged frames from VLAN A. The untagged=disabled parameter avoids that the VLAN tag is stripped off when the frames are sent out on the interface. To put bridge port 4 in VLAN A, execute following CLI command: =>:eth bridge vlan ifadd name=myvlan_a intf=ethport4 untagged=disabled The VLAN membership of the WAN-side bridge ports defines to which PVCs the frames are forwarded. In this example, frames of VLAN A must be forwarded to PVC1. The untagged=enabled parameter means that the VLAN tag is stripped off when the frames are sent out on the interface. To put PVC1 in VLAN A, execute following CLI command: =>:eth bridge vlan ifadd name=myvlan_a intf=bridge_pvc1 untagged=enabled To remove PVC1 from the default VLAN, execute following CLI command: =>:eth bridge vlan ifdelete name=default intf=bridge_pvc1 Configure VLAN translation To enable the extra tagging mechanism, execute following CLI command: =>:eth bridge ifconfig intf=bridge_pvc1 xtratagging=c-vlan To map the local VID 10 (VLAN A) to the WAN-side VID 4010 (VLAN Z), execute following command: =>:eth bridge xtratag add intf=bridge_pvc1 innervid=10 outervid=4010 4

6 Save the configuration To make your changes permanent, execute following CLI command: =>:saveall Expected result To display the list of VLANs on the Ethernet bridge, execute following CLI command: =>:eth vlan list Vid Name default 10 MyVLAN_A To retrieve an overview of the population of the different VLANs, execute following CLI command: =>:eth bridge vlan iflist Vid Name Bridge interfaces (* = untagged) default OBC*, ethport1*, ethport2*, ethport3*, ethport4* 10 MyVLAN_A ethport4, bridge_pvc1* To display the VID translation table, execute following CLI command: =>:eth bridge xtratag list Bridge Interface Inner VID Outer VID bridge bridge_pvc Frames received on a bridge port are checked for their VLAN ID and are only sent out on bridge ports that are member of the same VLAN. The table above shows that frames with VID 10 (representing VLAN A) are only transmitted on PVC1. Using the extra tagging feature on PVC1, two tags are added: a tag with an inner VID 10 and a tag with an outer VID As the bridge port PVC1 is untagged member, the tag with the inner VID is stripped off. In the downstream direction, the translation table is consulted to assign frames with VID 4010 to VLAN A (VID 10). Optionally control unexpected frames The current configuration does not explicitly regulate the handling of unexpected frames that arrive on any of the bridge ports of the Thomson Gateway: Untagged frames: For example, to assign untagged frames to the default VLAN, execute following CLI command: =>:eth bridge ifconfig intf=ethport4 vlan=default For example, to accept only VLAN-tagged frames on bridge port 4, execute following command: =>:eth bridge ifconfig intf=ethport4 acceptvlanonly=enabled 5

7 Tagged frames arriving on an incorrect interface: For example, to drop VLAN-tagged frames coming in on bridge port 4 if the VID differs from 10, execute following CLI command: =>:eth bridge ifconfig intf=ethport4 ingressfiltering=enabled Additionally, you can use following CLI command to prevent the Thomson Gateway from modifying the user priority indication in the VLAN tag: =>:eth bridge ifconfig intf=bridge_pvc1 priotransparent=enabled 6

8

9 Visit us at: Coordinates: Thomson Telecom Prins Boudewijnlaan 47 B-2650 Edegem Belgium Copyright 2008 Thomson. All rights reserved. The content of this document is furnished for informational use only, may be subject to change without notice, and should not be construed as a commitment by Thomson. Thomson assumes no responsibility or liability for any errors or inaccuracies that may appear in this document. The information contained in this document represents the current view of Thomson on the issues discussed as of the date of publication. Because Thomson must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Thomson, and Thomson cannot guarantee the accuracy of any information presented after the date of publication. This document is for informational purposes only. Thomson MAKES NO WARRANTIES, EXPRESS OR IMPLIED, AS TO THE INFORMATION IN THIS DOCUMENT. The names of actual companies and products mentioned herein may be the trademarks of their respective owners.

VLAN ID-Based Forwarding

VLAN ID-Based Forwarding VLAN ID-Based Forwarding Date: March 2008 Version: v1.0 Abstract: Applicability: Updates: This Application Notes describes the configuration of a specific feature of the Thomson Gateway: VLAN ID-Based

More information

Multicast Video. Date: April Version: v1.0

Multicast Video. Date: April Version: v1.0 Multicast Video Date: April 2008 Version: v1.0 Abstract: Applicability: Updates: This Application Note Bundle provides technical information on multicast video and how this relates to the various devices

More information

Triple-Play Using IPoE for Voice, PPPoE for Data and Bridged Video on a Single PVC

Triple-Play Using IPoE for Voice, PPPoE for Data and Bridged Video on a Single PVC Triple-Play Using IPoE for Voice, PPPoE for Data and Bridged Video on a Single PVC Date: April 2008 Version: v1.0 Abstract: Applicability: Updates: This Application Note provides technical information

More information

Triple-Play Using IPoE for Voice, PPPoE for Data and Bridged Video on Multiple PVCs (without VLANs)

Triple-Play Using IPoE for Voice, PPPoE for Data and Bridged Video on Multiple PVCs (without VLANs) Triple-Play Using IPoE for Voice, PPPoE for Data and Bridged Video on Multiple s (without VLANs) Date: April 2008 Version: v1.0 Abstract: This Application Note provides technical information on the support

More information

NCT240 IP DSLAM with IAC4500 VLAN Tagging Implementation

NCT240 IP DSLAM with IAC4500 VLAN Tagging Implementation NCT240 IP DSLAM with IAC4500 VLAN Tagging Implementation The NetComm NCT240 24 Port IP DSLAMs support 802.1Q VLAN Tagging. This white paper is written to help IP DSLAM system integrator to set up and configure

More information

How to configure the IAC4500 Internet Access Controller for Billing by Volume Application with NCT480 IP DSLAM using port location mapping

How to configure the IAC4500 Internet Access Controller for Billing by Volume Application with NCT480 IP DSLAM using port location mapping How to configure the IAC4500 Internet Access Controller for Billing by Volume Application with NCT480 IP DSLAM using port location mapping Introduction The following paper provides instructions on how

More information

Set Inner CoS Bits for QinQ

Set Inner CoS Bits for QinQ Set Inner CoS Bits for QinQ First Published: September 2007 Revised: August 2008 This document describes the Set Inner CoS Bits for QinQ feature that allows you to mark both inner and outer VLAN tags of

More information

Index. Numerics. Index p priority (QoS) definition Q VLAN standard w as a region 5-54

Index. Numerics. Index p priority (QoS) definition Q VLAN standard w as a region 5-54 Index Numerics 802.1p priority (QoS) 802.1Q VLAN standard 5-7 802.1w as a region 5-54 A active path 5-5 address IP 7-8 advertisement 3-3 applicable products 1-ii ARP age setting 7-10 cache 7-4 cache table

More information

Preserve 802.1Q Tagging with 802.1P Marking over ATM PVCs for xdsl Uplinks

Preserve 802.1Q Tagging with 802.1P Marking over ATM PVCs for xdsl Uplinks Preserve 802.1Q Tagging with 802.1P Marking over ATM PVCs for xdsl Uplinks First Published: October 21, 2009 Last Updated: Sept 17, 2010 The Preserve 802.1Q Tagging with 802.1P Marking over ATM PVCs for

More information

Provisioning Flows Topics

Provisioning Flows Topics CHAPTER 3 The BAC software provides network and service management tools that enable the provisioning of devices and subscribers in broadband aggregation environments. BAC supports the role of the following

More information

Chapter 3 Configuring Enhanced Quality of Service

Chapter 3 Configuring Enhanced Quality of Service Chapter 3 Configuring Enhanced Quality of Service This chapter applies to the following devices: 10 Gigabit Ethernet modules EP devices T-Flow modules 9408sl HP devices can read Layer 2 and Layer 3 Quality

More information

Configuring 802.1Q VLAN Interfaces

Configuring 802.1Q VLAN Interfaces A VLAN is a group of devices on one or more LANs that are configured so that they can communicate as if they were attached to the same wire, when in fact they are located on a number of different LAN segments.

More information

DSL-X11. One Port ADSL Modem Router. User Manual

DSL-X11. One Port ADSL Modem Router. User Manual DSL-X11 One Port ADSL Modem Router User Manual Contents 1 Introduction... 1 1.1 Features... 1 1.2 ADSL Standard Supports... 1 1.3 Encapsulation Supports... 1 1.4 System Requirements... 2 1.5 LED Status

More information

The SpeedTouch and Ethernet Connectivity

The SpeedTouch and Ethernet Connectivity The SpeedTouch and Ethernet Connectivity Author: Mark Van Wambeke Date: May 2003 Version: v1.0 Abstract: Applicability: Updates: This application note provides technical Ethernet information and how this

More information

EVC Quality of Service

EVC Quality of Service First Published: March 28, 2011 Last Updated: March 28, 2011 This document contains information about how to enable quality of service (QoS) features (such as traffic classification and traffic policing)

More information

Applying QoS Features Using the MQC

Applying QoS Features Using the MQC QoS: Modular QoS Command-Line Interface Configuration Guide, Cisco IOS XE Release 3S (Cisco ASR 900 Series) First Published: November 30, 2012 Last Modified: March 31, 2014 This chapter discusses the Modular

More information

Chapter 6 Global CONFIG Commands

Chapter 6 Global CONFIG Commands Chapter 6 Global CONFIG Commands aaa accounting Configures RADIUS or TACACS+ accounting for recording information about user activity and system events. When you configure accounting on an HP device, information

More information

Application Note How to use Quality of Service

Application Note How to use Quality of Service Application Note How to use Quality of Service This application note describes how to use Quality of Service. The document consists of standard instructions that may not fit your particular solution. Please

More information

Cisco PPPoE Baseline Architecture for the Cisco UAC 6400

Cisco PPPoE Baseline Architecture for the Cisco UAC 6400 Cisco PPPoE Baseline Architecture for the Cisco UAC 6400 Document ID: 12915 Contents Introduction Assumption Technology Brief Advantages and Disadvantages of PPPoE Architecture Advantages Disadvantages

More information

Configuring Firewall Filters (J-Web Procedure)

Configuring Firewall Filters (J-Web Procedure) Configuring Firewall Filters (J-Web Procedure) You configure firewall filters on EX Series switches to control traffic that enters ports on the switch or enters and exits VLANs on the network and Layer

More information

H3C S9500 QoS Technology White Paper

H3C S9500 QoS Technology White Paper H3C Key words: QoS, quality of service Abstract: The Ethernet technology is widely applied currently. At present, Ethernet is the leading technology in various independent local area networks (LANs), and

More information

DSL Forum. Working Text WT-141 Draft Version 3.0. Protocol Independent Management Model for TR-101 Compliant Access Nodes

DSL Forum. Working Text WT-141 Draft Version 3.0. Protocol Independent Management Model for TR-101 Compliant Access Nodes DSL, German Working Text WT-141 Draft Version 3.0 Protocol Independent Management Model for Compliant Access Nodes 18 September 2006 Produced by Operations and Network Management Working Group Editor:

More information

Marking Network Traffic

Marking Network Traffic Marking network traffic allows you to set or modify the attributes for traffic (that is, packets) belonging to a specific class or category. When used in conjunction with network traffic classification,

More information

isco Cisco PPPoE Baseline Architecture for the Cisco UAC

isco Cisco PPPoE Baseline Architecture for the Cisco UAC isco Cisco PPPoE Baseline Architecture for the Cisco UAC Table of Contents Cisco PPPoE Baseline Architecture for the Cisco UAC 6400...1...1 Introduction...1 Assumption...1 Technology Brief...2 Advantages

More information

HPE FlexFabric 7900 Switch Series

HPE FlexFabric 7900 Switch Series HPE FlexFabric 7900 Switch Series VXLAN Configuration Guide Part number: 5998-8254R Software version: Release 213x Document version: 6W101-20151113 Copyright 2015 Hewlett Packard Enterprise Development

More information

HG531 V1 300Mbps Wireless ADSL2+ Router Product Description. Issue _01 HUAWEI TECHNOLOGIES CO., LTD.

HG531 V1 300Mbps Wireless ADSL2+ Router Product Description. Issue _01 HUAWEI TECHNOLOGIES CO., LTD. HG531 V1 300Mbps Wireless ADSL2+ Router Issue 203275_01 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2013. All rights reserved. No part of this document may be reproduced or transmitted

More information

Table of Contents 1 VLAN Configuration 1-1

Table of Contents 1 VLAN Configuration 1-1 Table of Contents 1 VLAN Configuration 1-1 Overview 1-1 Introduction to VLAN 1-1 VLAN Fundamentals 1-2 Types of VLAN 1-3 Introduction to Port-Based VLAN 1-3 Configuring a VLAN 1-4 Configuration Task List

More information

Trademarks. Statement of Conditions by NETGEAR, Inc. All rights reserved.

Trademarks. Statement of Conditions by NETGEAR, Inc. All rights reserved. 2004 by NETGEAR, Inc. All rights reserved. Trademarks @2004 NETGEAR, Inc. NETGEAR, the Netgear logo, The Gear Guy and Everybody s connecting are trademarks of Netgear, Inc. in the United States and/or

More information

OV504R6. Quick Start Guide

OV504R6. Quick Start Guide OV504R6 Quick Start Guide 1 Overview The router is a highly ADSL2/2+ Integrated Access Device and can support ADSL link with downstream up to 24 Mbps and upstream up to 1 Mbps. It is designed to provide

More information

Configuring IP Unnumbered on IEEE 802.1Q VLANs

Configuring IP Unnumbered on IEEE 802.1Q VLANs CHAPTER 7 Configuring IP Unnumbered on IEEE 802.1Q VLANs Service providers continuously seek ways in which they can make their networks less complex and less expensive, and reduce the cost of provisioning

More information

Ethernet Overhead Accounting

Ethernet Overhead Accounting The feature enables the router to account for downstream Ethernet frame headers when applying shaping to packets. Finding Feature Information, page 1 Restrictions for, page 1 Information About, page 2

More information

L2VPN Interworking. Finding Feature Information

L2VPN Interworking. Finding Feature Information Interworking is a transforming function that is required to interconnect two heterogeneous attachment circuits (ACs). Several types of interworking functions exist. The function that is used would depend

More information

Configuring Classification

Configuring Classification CHAPTER 3 This chapter describes how to configure classification on the Cisco Nexus 7000 Series NX-OS device. This chapter includes the following sections: Information About Classification, page 3-1 Licensing

More information

IES Support Notes

IES Support Notes IES-5000 Support Notes Oct 2006 INDEX Application Notes...3 Setting up different DSL port speeds to different subscribers...3 Configuring 802.1Q VLAN...7 Triple play Application...9 802.1x Application...

More information

Release Date: Aug 17, 2012 Purpose: Software maintenance release to support the Secure Router product.

Release Date: Aug 17, 2012 Purpose: Software maintenance release to support the Secure Router product. Secure Router 3120/ Secure Router 1000 Series Software Release ReadMe 1. Release Summary Release Date: Aug 17, 2012 Purpose: Software maintenance release to support the Secure Router product. 2. Notes

More information

802.1P CoS Bit Set for PPP and PPPoE Control Frames

802.1P CoS Bit Set for PPP and PPPoE Control Frames 802.1P CoS Bit Set for PPP and PPPoE Control The 802.1P CoS Bit Set for PPP and PPPoE Control feature provides the ability to set user priority bits in the IEEE 802.1Q tagged frame to allow traffic prioritization.

More information

Quality of Service (QoS): Managing Bandwidth More Effectively

Quality of Service (QoS): Managing Bandwidth More Effectively 15 Quality of Service (QoS): Managing Bandwidth More Effectively Contents Introduction................................................. 15-2 Terminology............................................... 15-5

More information

Management Software AT-S101. User s Guide. For use with the AT-GS950/8POE Gigabit Ethernet WebSmart Switch. Version Rev.

Management Software AT-S101. User s Guide. For use with the AT-GS950/8POE Gigabit Ethernet WebSmart Switch. Version Rev. Management Software AT-S101 User s Guide For use with the AT-GS950/8POE Gigabit Ethernet WebSmart Switch Version 1.0.0 613-000985 Rev. A Copyright 2008 Allied Telesis, Inc. All rights reserved. No part

More information

5600N Series. Overview. 2BASE-TL EFM Network Extender

5600N Series. Overview. 2BASE-TL EFM Network Extender 5600N Series 2BASE-TL EFM Network Extender Overview 5600N series EFM Network Extender is designed to provide bonded high-speed Ethernet First Mile services over SHDSL on existing copper infrastructure.

More information

Part Number: HG532s Home Gateway Product Description. Issue 01. Date HUAWEI TECHNOLOGIES CO., LTD.

Part Number: HG532s Home Gateway Product Description. Issue 01. Date HUAWEI TECHNOLOGIES CO., LTD. Part Number: 203192 HG532s Home Gateway Issue 01 Date 2012-03-26 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2012. All rights reserved. No part of this document may be reproduced

More information

EVC Quality of Service

EVC Quality of Service This document contains information about how to enable quality of service (QoS) features (such as traffic classification and traffic policing) for use on an Ethernet virtual circuit (EVC). An EVC as defined

More information

HPE FlexFabric 5940 Switch Series

HPE FlexFabric 5940 Switch Series HPE FlexFabric 5940 Switch Series EVPN Configuration Guide Part number: 5200-2002b Software version: Release 25xx Document version: 6W102-20170830 Copyright 2017 Hewlett Packard Enterprise Development

More information

8.3. Advanced Functionality Overview

8.3. Advanced Functionality Overview 8.3. Advanced Functionality Overview 8.3.1. Port-Based VLAN If the VLAN function is enabled by pulling down the Dis_VLAN strapping pin, the default VLAN membership configuration by internal register is

More information

Brocade FastIron Flexible Authentication

Brocade FastIron Flexible Authentication 18 December 2015 Brocade FastIron Flexible Authentication Deployment Guide Supporting FastIron 08.0.40 2015, Brocade Communications Systems, Inc. All Rights Reserved. ADX, Brocade, Brocade Assurance, the

More information

EVC Quality of Service

EVC Quality of Service EVC Quality of Service Finding Feature Information EVC Quality of Service Last Updated: June 07, 2011 This document contains information about how to enable quality of service (QoS) features (such as traffic

More information

VLAN Features on Hanlong IP Phones

VLAN Features on Hanlong IP Phones About VLAN VLAN Features on Hanlong IP Phones VLAN (Virtual Local Area Network) is used to logically divide a physical network into several broadcast domains. VLAN membership can be configured through

More information

IEEE 802.1Q-in-Q VLAN Tag Termination

IEEE 802.1Q-in-Q VLAN Tag Termination IEEE 802.1Q-in-Q VLAN Tag Termination Encapsulating IEEE 802.1Q VLAN tags within 802.1Q enables service providers to use a single VLAN to support customers who have multiple VLANs. The IEEE 802.1Q-in-Q

More information

FOUR-PORT ADSL ROUTER. KD319RI ADSL Router User Manual

FOUR-PORT ADSL ROUTER. KD319RI ADSL Router User Manual FOUR-PORT ADSL ROUTER KD319RI ADSL Router User Manual NOTICE This document contains proprietary information protected by copyright, and this Manual and all the accompanying hardware, software, and documentation

More information

Application Note 126. QoS Priority Support KS8993M / KS8995MA / XA. Introduction. Egress Port Priority Mechanism. Strict Priority Queuing

Application Note 126. QoS Priority Support KS8993M / KS8995MA / XA. Introduction. Egress Port Priority Mechanism. Strict Priority Queuing Application Note 126 QoS Priority Support KS8993M / KS8995MA / XA Introduction Latency critical applications such as Voice over IP (VoIP) and video typically need to guarantee a minimum quality of service

More information

Table of Contents 1 QoS Overview QoS Policy Configuration Priority Mapping Configuration 3-1

Table of Contents 1 QoS Overview QoS Policy Configuration Priority Mapping Configuration 3-1 Table of Contents 1 QoS Overview 1-1 Introduction to QoS 1-1 Introduction to QoS Service Models 1-1 Best-Effort Service Model 1-1 IntServ Service Model 1-2 DiffServ Service Model 1-2 QoS Techniques Overview

More information

NAT with DHCP Client and DHCP Server

NAT with DHCP Client and DHCP Server Configuring IP and Ethernet interfaces Figure 103 NAT disabled implementation NAT with DHCP Client and DHCP Server The NAT with DHCP Client and DHCP server is illustrated in Figure 104. Figure 104 NAT

More information

FOUR-PORT ADSL ROUTER. KD319MUI ADSL Router User Manual

FOUR-PORT ADSL ROUTER. KD319MUI ADSL Router User Manual FOUR-PORT ADSL ROUTER KD319MUI ADSL Router User Manual NOTICE This document contains proprietary information protected by copyright, and this Manual and all the accompanying hardware, software, and documentation

More information

SOFTWARE RELEASE NOTES

SOFTWARE RELEASE NOTES SOFTWARE RELEASE NOTES For Version CT-5631-H131-310CTU -C07_R01_4.5.5.27 Release Date: August 10, 2009 H131-310CTU-C07_R01_4.5.5.27 Comtrend Release Notes Page 1 of 7 Introduction The purpose of this document

More information

MPLS AToM Overview. Documentation Specifics. Feature Overview

MPLS AToM Overview. Documentation Specifics. Feature Overview MPLS AToM Overview This document provides an introduction to MPLS AToM and includes the following sections: Documentation Specifics, page 14 Feature Overview, page 14 Benefits, page 26 What To Do Next,

More information

USER MANUAL ATU-R150 ADSL2+ Bridge/Router

USER MANUAL ATU-R150 ADSL2+ Bridge/Router USER MANUAL ATU-R150 ADSL2+ Bridge/Router CTC Union Technologies Co., Ltd. Legal The information in this publication has been carefully checked and is believed to be entirely accurate at the time of publication.

More information

LevelOne. User Manual. 11g Wireless ADSL2+ Modem Router WBR Ver. 1.0

LevelOne. User Manual. 11g Wireless ADSL2+ Modem Router WBR Ver. 1.0 LevelOne User Manual WBR-3601 11g Wireless ADSL2+ Modem Router Ver. 1.0 Table of Contents Product Overview... 3 Product Description... 3 Specification... 4 LED Meaning... 6 Back Panel Connectors... 7 Factory

More information

Table of Contents. Cisco RFC1483 Bridging Baseline Architecture

Table of Contents. Cisco RFC1483 Bridging Baseline Architecture Table of Contents RFC1483 Bridging Baseline Architecture...1 Introduction...1 Assumption...1 Technology Brief...1 Advantages and Disadvantages of RFC1483 Bridging...1 Advantages...2 Disadvantages...2 Implementation

More information

QoS Setup Guide. Application Note 306 QoS Setup Procedure. QoS Set-up Guide

QoS Setup Guide. Application Note 306 QoS Setup Procedure. QoS Set-up Guide QoS Set-up Guide This application note describes how to set-up QoS on Transition Networks ION modules that support Layer-2 switch QoS functions of priority classification, queuing and remarking. 1. Port

More information

Marking Network Traffic

Marking Network Traffic Marking network traffic allows you to set or modify the attributes for traffic (that is, packets) belonging to a specific class or category. When used in conjunction with network traffic classification,

More information

Understanding How Routing Updates and Layer 2 Control Packets Are Queued on an Interface with a QoS Service Policy

Understanding How Routing Updates and Layer 2 Control Packets Are Queued on an Interface with a QoS Service Policy Understanding How Routing Updates and Layer 2 Control Packets Are Queued on an Interface with a QoS Service Policy Document ID: 18664 Contents Introduction Prerequisites Requirements Components Used Conventions

More information

To send a text message to all Quality Device Manager (QDM) clients, use the send qdm message command in EXEC mode.

To send a text message to all Quality Device Manager (QDM) clients, use the send qdm message command in EXEC mode. send qdm message send qdm message To send a text message to all Quality Device Manager (QDM) clients, use the send qdm message command in EXEC mode. send qdm [client client-id] message message-text Syntax

More information

Atrie DB108-E ADSL MODEM. User Manual V1.1

Atrie DB108-E ADSL MODEM. User Manual V1.1 Atrie DB108-E ADSL MODEM User Manual V1.1 CONTENTS 1.OVERVIEW...4 1.1 ABOUT ADSL...4 1.2 ABOUT ADSL2/2+...4 1.3 FEATURES...4 2 SPECIFICATION...5 2.1 INTERFACE INTRODUCTION...5 2.1.1 Indicator and Interface...5

More information

ADSL2+ 4-Port Modem Router Quick Setup Guide RTA1335

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

More information

Configuring Port-Based and Client-Based Access Control (802.1X)

Configuring Port-Based and Client-Based Access Control (802.1X) 9 Configuring Port-Based and Client-Based Access Control (802.1X) Contents Overview..................................................... 9-3 Why Use Port-Based or Client-Based Access Control?............

More information

QoS in a SOHO Virtual Private Network for IP Telephony

QoS in a SOHO Virtual Private Network for IP Telephony CHAPTER 5 QoS in a SOHO Virtual Private Network for Telephony This chapter provides information about implementing QoS in an AVVID-enabled Small Office Home Office (SOHO) Virtual Private Network (VPN)

More information

Chapter 4 Configuring Switching

Chapter 4 Configuring Switching Chapter 4 Configuring Switching Using the Switching Tab The navigation tabs on the top of the home page include a Switching tab that lets you manage your GS108T Gigabit Smart Switch using features under

More information

Classifying Network Traffic

Classifying Network Traffic Classifying Network Traffic Last Updated: December 8, 2011 Classifying network traffic allows you to organize traffic (that is, packets) into traffic classes or categories on the basis of whether the traffic

More information

All configuration in this document refers to the EZ Setup section.

All configuration in this document refers to the EZ Setup section. Management Access Configuring the HAR11 first requires connecting to its Web Interface. To do this, connect a PC to the LAN port using a straight-thru Ethernet cable. Configure the PC and launch the web

More information

HP 3600 v2 Switch Series

HP 3600 v2 Switch Series HP 3600 v2 Switch Series ACL and QoS Configuration Guide Part number: 5998-2354 Software version: Release 2101 Document version: 6W101-20130930 Legal and notice information Copyright 2013 Hewlett-Packard

More information

Configuring Voice VLAN

Configuring Voice VLAN CHAPTER 15 This chapter describes how to configure the voice VLAN feature on the Catalyst 3750 switch. Unless otherwise noted, the term switch refers to a standalone switch and a switch stack. Voice VLAN

More information

Table of Contents. General Information... 4 Package Contents... 4 Important Safety Instructions... 4 Front Panel View... 5 Rear Panel View...

Table of Contents. General Information... 4 Package Contents... 4 Important Safety Instructions... 4 Front Panel View... 5 Rear Panel View... Table of Contents General Information... 4 Package Contents... 4 Important Safety Instructions... 4 Front Panel View... 5 Rear Panel View... 6 Installing the Modem... 7 Installation Diagram... 9 Configuring

More information

PPPoE Client DDR Idle-Timer

PPPoE Client DDR Idle-Timer The feature supports the dial-on-demand routing (DDR) interesting traffic control list functionality of the dialer interface with a PPP over Ethernet (PPPoE) client, but also keeps original functionality

More information

TD-8816 ADSL2/2+ Ethernet Router

TD-8816 ADSL2/2+ Ethernet Router ADSL2/2+ Ethernet Router Rev:1.0.2 1910010149 COPYRIGHT & TRADEMARKS Specifications are subject to change without notice. is a registered trademark of TP-LINK TECHNOLOGIES CO., LTD. Other brands and product

More information

TD-8817B ADSL2/2+ Ethernet/USB Router

TD-8817B ADSL2/2+ Ethernet/USB Router TD-8817B ADSL2/2+ Ethernet/USB Router Rev: 1.0.2 1910010019 COPYRIGHT & TRADEMARKS Specifications are subject to change without notice. is a registered trademark of TP-LINK TECHNOLOGIES CO., LTD. Other

More information

Web Interface User s Guide. ADSL Ethernet & USB Combo Router

Web Interface User s Guide. ADSL Ethernet & USB Combo Router Web Interface User s Guide ADSL Ethernet & USB Combo Router 1. Introduction... 3 1.1 Features... 3 2. Your gateway at a glance... 5 2.1 Ports and buttons... 5 2.2 LED description... 5 3. Installing your

More information

FOUR-PORT ADSL ROUTER. KD319EUI ADSL Router User Manual

FOUR-PORT ADSL ROUTER. KD319EUI ADSL Router User Manual FOUR-PORT KD319EUI ADSL Router User Manual NOTICE This document contains proprietary information protected by copyright, and this Manual and all the accompanying hardware, software, and documentation are

More information

Sections Describing Standard Software Features

Sections Describing Standard Software Features 30 CHAPTER This chapter describes how to configure quality of service (QoS) by using automatic-qos (auto-qos) commands or by using standard QoS commands. With QoS, you can give preferential treatment to

More information

HP 3100 v2 Switch Series

HP 3100 v2 Switch Series HP 3100 v2 Switch Series ACL and QoS Configuration Guide HP 3100-8 v2 SI Switch (JG221A) HP 3100-16 v2 SI Switch (JG222A) HP 3100-24 v2 SI Switch (JG223A) HP 3100-8 v2 EI Switch (JD318B) HP 3100-16 v2

More information

KD216 VDSL Router User Manual

KD216 VDSL Router User Manual KD216 VDSL Router NOTICE This document contains proprietary information protected by copyright, and this Manual and all the accompanying hardware, software, and documentation are copyrighted. All rights

More information

mls qos (global configuration mode)

mls qos (global configuration mode) mls qos (global configuration mode) mls qos (global configuration mode) To enable the quality of service (QoS) functionality globally, use the mls qos command in global configuration mode. To disable the

More information

Configuring SPAN and RSPAN

Configuring SPAN and RSPAN Finding Feature Information, page 1 Prerequisites for SPAN and RSPAN, page 1 Restrictions for SPAN and RSPAN, page 2 Information About SPAN and RSPAN, page 3 How to Configure SPAN and RSPAN, page 14 Monitoring

More information

OV303R6. User Manual

OV303R6. User Manual OV303R6 User Manual Contents 1 Safety Precautions... 1 2 2 Overview... 2.1 Application... 2 2.2 Features... 2 2.3 Standards Compatibility and Compliance... 3 3 Hardware Description and Hardware Installation...

More information

Marking Traffic CHAPTER

Marking Traffic CHAPTER CHAPTER 7 To service the growing numbers of customers and their needs, service provider networks have become more complex and often include both Layer 2 and Layer 3 network devices. With this continued

More information

DD2490 p Layer 2 networking. Olof Hagsand KTH CSC

DD2490 p Layer 2 networking. Olof Hagsand KTH CSC DD2490 p4 2010 Layer 2 networking Olof Hagsand KTH CSC 1 Literature Radia Pearlman Interconnections - Bridges, Routers, Switches and Internetworking Protocols, Addison-Wesley. Section 3: Transparent bridges

More information

Multiprotocol Label Switching (MPLS) on Cisco Routers

Multiprotocol Label Switching (MPLS) on Cisco Routers Multiprotocol Label Switching (MPLS) on Cisco Routers Feature History Release 11.1CT 12.1(3)T 12.1(5)T 12.0(14)ST 12.0(21)ST 12.0(22)S Modification The document introduced MPLS and was titled Tag Switching

More information

Configuring IP Addressing

Configuring IP Addressing 8 Configuring IP Addressing Contents Overview..................................................... 8-2.............................................. 8-2 Just Want a Quick Start with IP Addressing?....................

More information

Technical Specification MEF 1. Ethernet Services Model, Phase November 2003

Technical Specification MEF 1. Ethernet Services Model, Phase November 2003 Technical Specification Ethernet Services Model, Phase 1 10 November 2003 Disclaimer The information in this publication is freely available for reproduction and use by any recipient and is believed to

More information

VLANs Level 3 Unit 9 Computer Networks

VLANs Level 3 Unit 9 Computer Networks VLANs Some Requirements of LANs Need to split up broadcast domains to make good use of bandwidth People in different departments may need to be grouped together for access to servers Security: restrict

More information

Table of Contents. D-Link DSL-526B User Manual 1

Table of Contents. D-Link DSL-526B User Manual 1 1 : Table of Contents PACKAGE CONTENTS... 2 SYSTEM REQUIREMENTS... 2 FEATURES... 3 HARDWARE OVERVIEW... 4 Connections... 4 LEDs... 5 INSTALLATION... 6 BEFORE YOU BEGIN... 6 INSTALLATION NOTES... 7

More information

Configuring SPAN and RSPAN

Configuring SPAN and RSPAN CHAPTER 32 This chapter describes how to configure Switched Port Analyzer (SPAN) and Remote SPAN (RSPAN) on the Catalyst 3750-X or 3560-X switch. Unless otherwise noted, the term switch refers to a Catalyst

More information

PPP over Frame Relay

PPP over Frame Relay The feature allows a router to establish end-to-end Point-to-Point Protocol (PPP) sessions over Frame Relay. Finding Feature Information, page 1 Prerequisites for, page 1 Restrictions for, page 2 Information

More information

QoS: Policing Support for GRE Tunnels

QoS: Policing Support for GRE Tunnels QoS: Policing Support for GRE Tunnels The Qos - Policing Support for GRE Tunnels feature allows you to set the Differentiated Services Code Point (DSCP) and IP precedence values on Generic Routing Encapsulation

More information

8 VLANs. 8.1 Introduction. 8.2 vlans. Unit 8: VLANs 1

8 VLANs. 8.1 Introduction. 8.2 vlans. Unit 8: VLANs 1 8 VLANs 8.1 Introduction Layer 2 devices, such as network switches and wireless access points can be used to create virtual LANs (vlans), which can enhanced network security as it can be used to isolate

More information

Extended NAS-Port-Type and NAS-Port Support

Extended NAS-Port-Type and NAS-Port Support Extended NAS-Port-Type and NAS-Port Support Last Updated: April 18, 2012 The Extended NAS-Port-Type and NAS-Port Support feature allows you to identify what service type is taking place on specific ports

More information

Technical Notes. QoS Features on the Business Ethernet Switch 50 (BES50)

Technical Notes. QoS Features on the Business Ethernet Switch 50 (BES50) Technical Notes QoS Features on the Business Ethernet Switch 50 (BES50) Version: NN70000-004 issue 1.00 Date: February 3 rd, 2009 Status: Released Copyright 2009 Nortel Networks. All rights reserved. The

More information

AToM (Any Transport over MPLS)

AToM (Any Transport over MPLS) I N D E X A AAL5 over MPLS operation, 459 460 configuration, 462 463 flowchart configuration, 461 PE router, 461 provider router, 461 verification, 463 465 AAL5 to VLAN Interworking, 515 517 AC (Attachment

More information

Copyright Statement. Disclaimer. Technical Support

Copyright Statement. Disclaimer. Technical Support Copyright Statement 2015 Shenzhen Tenda Technology Co., Ltd. All rights reserved. Tenda is a registered trademark legally held by Shenzhen Tenda Technology Co., Ltd. Other brand and product names mentioned

More information

NetVanta Series (with 56K/64K Network Interface Module)

NetVanta Series (with 56K/64K Network Interface Module) VPN WAN LAN PWR STAT TD RD TD RD TD RD VPN WAN LAN PWR STAT TD RD TD RD TD RD NetVanta 3200 NetVanta 3200 NetVanta Series (with 56K/64K Network Interface Module) Quick Configuration Guide 64200861L1-42A

More information

Cisco 1000 Series Connected Grid Routers QoS Software Configuration Guide

Cisco 1000 Series Connected Grid Routers QoS Software Configuration Guide Cisco 1000 Series Connected Grid Routers QoS Software Configuration Guide January 17, 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

Quality of Service. Understanding Quality of Service

Quality of Service. Understanding Quality of Service The following sections describe support for features on the Cisco ASR 920 Series Router. Understanding, page 1 Configuring, page 2 Global QoS Limitations, page 2 Classification, page 3 Marking, page 6

More information