VLAN ID-Based Forwarding

Size: px
Start display at page:

Download "VLAN ID-Based Forwarding"

Transcription

1 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 Forwarding. 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-Based Forwarding 2.1 Scenario Overview Introduction In this scenario, the Thomson Gateway is intended to classify VLAN-tagged Ethernet frames based on their VLAN ID. Per VLAN ID, you have to be able to configure to which PVC the frames must be forwarded. This scenario configures the Thomson Gateway as bridge with two PVCs. Frames coming in on a local interface are checked on their VLAN ID and are only forwarded on PVCs that are member of the same VLAN. For example, frames that are member of VLAN A are forwarded to the first PVC. Frames that are member of VLAN B or VLAN C are forwarded to the second PVC. The receiving local interface should not influence the result. Following illustration shows the VLAN ID-based forwarding scenario: Thomson Gateway DSLAM A 5 A 2 B 7 B 3 C 2 C 1 A 5 PVC1 B 7 PVC2 A 2 C 1 B 3 C 2 VID 802.1p 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 local interfaces must be member of all possible VLANs that can appear in the VLAN tag of received frames. The configured VLAN membership of the PVCs defines to which PVC the frames must be forwarded. 2.2 Practical Realization Configuration overview Following configuration steps have to be performed to configure the Thomson Gateway for this scenario: 1 Define which PVCs must be used by configuring an ATM interface for each one of them. 2 Connect the ATM interfaces to the Ethernet bridge. 3 Make the bridge VLAN aware. 2

4 4 Define a VLAN for each VLAN ID the Ethernet bridge has to handle. 5 Define which interfaces are part of which VLAN. 6 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 ATM interfaces To create a phonebook entry for each PVC that must be used, execute following CLI commands (the VPI/VCI values are indicative): =>:atm phonebook add name=phone_pvc1 addr=0.35 =>:atm phonebook add name=phone_pvc2 addr=0.36 To create, configure and connect the ATM interfaces on top of the phonebook entries, execute following CLI commands: =>:atm ifadd intf=atm_pvc1 =>:atm ifconfig intf=atm_pvc1 dest=phone_pvc1 encaps=llc ulp=mac =>:atm ifattach intf=atm_pvc1 =>:atm ifadd intf=atm_pvc2 =>:atm ifconfig intf=atm_pvc2 dest=phone_pvc2 encaps=llc ulp=mac =>:atm ifattach intf=atm_pvc2 Configure bridge ports To connect the ATM interfaces 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 =>:eth bridge ifadd intf=bridge_pvc2 =>:eth bridge ifconfig intf=bridge_pvc2 dest=atm_pvc2 =>:eth bridge ifattach intf=bridge_pvc2r 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 coming in on the Ethernet bridge with a VLAN tag are only forwarded to interfaces configured as an explicit member of that VLAN. Create the VLANs To define the VLANs to be used, execute following CLI commands: =>:eth vlan add name=myvlan_a vid=10 addrule=disabled =>:eth vlan add name=myvlan_b vid=11 addrule=disabled =>:eth vlan add name=myvlan_c vid=12 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 local interfaces to VLANs 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 the LAN. To put bridge port 4 in all three defined VLANs, execute following CLI commands: =>:eth bridge vlan ifadd name=myvlan_a intf=ethport4 untagged=disabled =>:eth bridge vlan ifadd name=myvlan_b intf=ethport4 untagged=disabled =>:eth bridge vlan ifadd name=myvlan_c intf=ethport4 untagged=disabled The untagged=disabled parameter avoids that the VLAN tag is stripped off when the frames are sent out on the interface. Assign WAN interfaces to VLANs The VLAN membership of the WAN-side bridge ports defines to which PVCs the frames are forwarded. In this example, frames of VLAN A are forwarded to one PVC, frames of VLAN B and VLAN C are forwarded to the other PVC. To add each WAN-side bridge port to the correct VLAN(s), execute following CLI commands: =>:eth bridge vlan ifadd name=myvlan_a intf=bridge_pvc1 untagged=disabled =>:eth bridge vlan ifadd name=myvlan_b intf=bridge_pvc2 untagged=disabled =>:eth bridge vlan ifadd name=myvlan_c intf=bridge_pvc2 untagged=disabled The untagged=disabled parameter avoids that the VLAN tag is stripped off when the frames are sent out on the interface. 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 11 MyVLAN_B 12 MyVLAN_C 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*, bridge_pvc1*, bridge_pvc2* 10 MyVLAN_A ethport4, bridge_pvc1 11 MyVLAN_B ethport4, bridge_pvc2 12 MyVLAN_C ethport4, bridge_pvc2 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. Frames with VID 11 (VLAN B) or 12 (VLAN C) are transmitted on PVC2. It can be seen that all interfaces are also member of the default VLAN, and, as a result, also have connectivity with the Thomson Gateway. 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 Tagged frames arriving on an incorrect interface: For example, to drop VLAN-tagged frames coming in on PVC1 if the VID differs from 10, execute following CLI command: =>:eth bridge ifconfig intf=bridge_pvc1 ingressfiltering=enabled 5

7 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.

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

This Application Note applies to all Thomson DSL Gateways with R7.4 and higher. 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.

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 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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 2, 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

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

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

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

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

Configuring PFC QoS CHAPTER

Configuring PFC QoS CHAPTER 38 CHAPTER This chapter describes how to configure quality of service (QoS) as implemented on the Policy Feature Card 3B (PFC3B) on the Supervisor Engine 32 PISA. Note For complete syntax and usage information

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

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

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

Configuring ACLs. ACL overview. ACL categories. ACL numbering and naming

Configuring ACLs. ACL overview. ACL categories. ACL numbering and naming Contents Configuring ACLs 1 ACL overview 1 ACL categories 1 ACL numbering and naming 1 Match order 2 ACL rule numbering 3 Implementing time-based ACL rules 3 IPv4 fragments filtering with ACLs 3 Flow templates

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

Cisco Systems, Inc. Norman Finn. July 9, /12. Class of Service in Class of Service in Norman Finn Cisco Systems

Cisco Systems, Inc. Norman Finn. July 9, /12. Class of Service in Class of Service in Norman Finn Cisco Systems Class of Service in 802.1 Norman Finn Cisco Systems, Inc. July 9, 1996 1/12 CoS Bridging Example sw2 16 Mb T-R 100 Mb Ether sw3 sw1 10 Mb Ether FDDI X Y 100 Mb and 10 Mb Ethernet prevent passing access

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Foundry Networks FastIron SuperX Switch, FastIron GS Switch and FastIron Edge Switch connected to Avaya Communication Manager, Avaya SIP

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

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

Quality of Service Commands match ip precedence. match ip precedence ip-precedence-value [ip-precedence-value ip-precedence-value

Quality of Service Commands match ip precedence. match ip precedence ip-precedence-value [ip-precedence-value ip-precedence-value match ip precedence match ip precedence To identify IP precedence values as match criteria, use the match ip precedence command in class-map configuration mode. To remove IP precedence values from a class

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

QoS Configuration. Page 1 of 13

QoS Configuration. Page 1 of 13 QoS Configuration Page 1 of 13 Contents Chapter 1 QoS Configuration...3 1.1 Brief Introduction to QoS...3 1.1.1 Traffic...3 1.1.2 Traffic Classification... 3 1.1.3 Priority...4 1.1.4 Access Control List...

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

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

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

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

Sections Describing Standard Software Features

Sections Describing Standard Software Features 27 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

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

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

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

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

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

Vanguard Managed Solutions

Vanguard Managed Solutions Vanguard Managed Solutions Vanguard Applications Ware IP and LAN Feature Protocols Traffic Monitor Notice 2004 Vanguard Managed Solutions, LLC 575 West Street Mansfield, Massachusetts 02048 (508) 261-4000

More information

Configuration Commands Generic Commands Syntax description no description Context Description Default Parameters

Configuration Commands Generic Commands Syntax description no description Context Description Default Parameters Configuration Commands Generic Commands description Syntax description description-string no description Context config>qos>sap-egress config>qos>sap-egress>ip-criteria>entry config>qos>sap-ingress config>qos>sap-ingress>ip-criteria>entry

More information

IP over ATM. IP over ATM. Agenda. IP over ATM : Solving the Problem I.

IP over ATM. IP over ATM. Agenda. IP over ATM : Solving the Problem I. IP over ATM IP over ATM Classical IP over ATM, MARS, MCS, NHRP, LANE, MPOA ATM is connection-oriented Assumes connection-oriented applications IP is connection-less Assumes connection-less network Significant

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

DGS , DGS )

DGS , DGS ) Network Switch Setup for Q-SYS TM Platform This document applies to these D-Link switches: DGS-1210 Series (DGS-1210-10P, DGS-1210-20, DGS-1210-28) I DGS-1500 Series (DGS-1500-20, DGS-1500-28, DGS-1500-28P)

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

Sharing Bandwidth Fairly During Congestion

Sharing Bandwidth Fairly During Congestion CHAPTER 12 When no QoS policies exist, the router serves traffic with best effort service. The router makes no distinction between high and low priority traffic and makes no allowances for the needs of

More information

Application Notes for Foundry Networks FastIron Super X Switch with Avaya Communication Manager - Issue 1.0

Application Notes for Foundry Networks FastIron Super X Switch with Avaya Communication Manager - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Foundry Networks FastIron Super X Switch with Avaya Communication Manager - Issue 1.0 Abstract These Application Notes describe the procedures

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

Cisco Nexus 1000V for KVM Interface Configuration Guide, Release 5.x

Cisco Nexus 1000V for KVM Interface Configuration Guide, Release 5.x Cisco Nexus 1000V for KVM Interface Configuration Guide, Release 5.x First Published: August 01, 2014 Last Modified: November 09, 2015 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San

More information

Configuring Quality of Service

Configuring Quality of Service CHAPTER 25 QoS refers to the ability of a network to provide improved service to selected network traffic over various underlying technologies including Frame Relay, ATM, Ethernet and 802.1 networks, SONET,

More information

Configuring PPP over ATM with NAT

Configuring PPP over ATM with NAT CHAPTER 4 The Cisco Secure Router 520 ADSL-over-POTS and Cisco Secure Router 520 ADSL-over-ISDN routers support Point-to-Point Protocol over Asynchronous Transfer Mode (PPPoA) clients and network address

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

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

Managed Ethernet Switch User s Manual

Managed Ethernet Switch User s Manual Managed Ethernet Switch User s Manual Information Coding: UM00D908 Version: V1.1 Product version: all Product Name: Managed Industrial Ethernet Switches on DIN Rail and Rack. Applicable to: Technical Support

More information

NWAR3600 ADSL 11n Gateway. User s Manual. Version 0.1

NWAR3600 ADSL 11n Gateway. User s Manual. Version 0.1 NWAR3600 ADSL 11n Gateway User s Manual Version 0.1 Copyright 2008 Table of Contents 1. INTRODUCTION... 4 1.1 FEATURES... 4 1.2 SYSTEM REQUIREMENTS... 4 2. INSTALLATION... 5 FRONT PANEL... 5 REAR PANEL...

More information