Configure QoS on x900-24, x900-12, and SwitchBlade x908 Series Switches
|
|
|
- Dylan Robertson
- 10 years ago
- Views:
Transcription
1 AlliedWare Plus TM OS How To Configure QoS on x900-24, x900-12, and SwitchBlade x908 Series Switches Introduction This document describes some generic configuration examples for Quality of Service (QoS) on the AlliedWare Plus OS What information will you find in this document? This document provides information in the following sections: 1 Setting the egress rate on page 2 2 Setting the priority on a packet on page 7 3 Setting the egress queues on page 10 Full QoS scenario - tiered services for a single customer on page 14 Which product and software version does this information apply to? This How To Note applies to the following Allied Telesis switches, running the AlliedWare Plus OS software version 522 or later: SwitchBlade x908 x900 series C REV D wwwalliedtelesiscom
2 1 Setting the egress rate 1 Setting the egress rate Example 1-1: Setting the egress limit of a switch port Commands: interface port1024 egress-rate-limit 25m These commands will set the egress limit of port 24 to 25Mbps The granularity is 651kbps Page 2 AlliedWare Plus OS How To Note: QoS
3 1 Setting the egress rate Example 1-2: setting the maximum bandwidth limit per ingress port Ingress rate limiting cannot be configured on the port per se, but is achieved by creating a QoS policy with a bandwidth limited traffic class, and applying that policy to each port Ingress ports 1-20 police single-rate action drop-red policy-map pmap2 police single-rate action drop-red policy-map pmap3 police single-rate action drop-red policy-map pmap20 police single-rate action drop-red interface port101 interface port102 service-policy input pmap2 interface port103 service-policy input pmap3 interface port1020 service-policy input pmap20 This set of commands will set the ingress rate of traffic received per port from ports 1 to 20 to various different values Note that the class-map matches EVERY packet The granularity of the rate limiting is around 1 kbps Page 3 AlliedWare Plus OS How To Note: QoS
4 1 Setting the egress rate Example 1-3: Setting the maximum bandwidth limit for each user In example 1-1, we configured an egress rate on ports But the granularity of that bandwidth limiting was multiples of 651kbps It is possible to achieve finer-grained limiting using the devices advanced QoS capability In this example we assume that there is one device with a known IP address, attached to each port Policers will be configured to provide bandwidth limiting Internet connection Users connected to the switch downloading files from the Internet ( ) access-list 3011 permit ip any /32 access-list 3012 permit ip any /32 access-list 3013 permit ip any /32 match access-group 3011 class-map cmap2 match access-group 3012 class-map cmap3 match access-group 3013 police single-rate action drop-red class cmap2 police single-rate action drop-red class cmap3 police single-rate action drop-red interface port1024 This set of commands will set the total egress limit (download traffic) for each user to 256kbps The granularity is around 1kbps Page 4 AlliedWare Plus OS How To Note: QoS
5 1 Setting the egress rate Example 1-4: Setting the maximum bandwidth limit for each IP subnet This example is very similar to example 1-3, except that it is assumed that a whole subnet is attached to each port, not just a single device on each port Internet connection Users connected to the switch downloading files from the Internet ( / /24) access-list 3011 permit ip any /24 access-list 3012 permit ip any /24 access-list 3013 permit ip any /24 match access-group 3011 class-map cmap2 match access-group 3012 class-map cmap3 match access-group 3013 police single-rate action drop-red class cmap2 police single-rate action drop-red class cmap3 police single-rate action drop-red interface port1024 This set of commands will set the total egress limit (download traffic) for each subnet to 256kbps The granularity is around 1kbps Page 5 AlliedWare Plus OS How To Note: QoS
6 1 Setting the egress rate Example 1-5: Setting the maximum bandwidth limit of VLANs Ingress ports 1-20 (these ports are carrying a mixture of VLAN2, VLAN3 and VLAN4 packets, either with or without VLAN tags) class-map cmap2 match vlan 2 class-map cmap3 match vlan 3 class-map cmap4 match vlan 4 mls qos aggregate-police agg1 single-rate action drop-red mls qos aggregate-police agg2 single-rate action drop-red mls qos aggregate-police agg3 single-rate action drop-red class cmap2 police aggregate agg1 class cmap3 police aggregate agg2 class cmap4 police aggregate agg3 interface port Page 6 AlliedWare Plus OS How To Note: QoS
7 2 Setting the priority on a packet 2 Setting the priority on a packet Example 2-1: Setting the Layer 2 (VLAN/8021p) priority per ingress port Here we assign different 8021p values to packets arriving on different ports These values are also known as the Layer 2 (L2) or VLAN priority Ingress ports 1-20 (these ports MAY be carrying a mixture of packets from different VLANs, either with or without VLAN tags) set cos 6 policy-map pmap2 set cos 5 policy-map pmap3 set cos 4 interface port101 interface port102 service-policy input pmap2 interface port103 service-policy input pmap3 Page 7 AlliedWare Plus OS How To Note: QoS
8 2 Setting the priority on a packet Example 2-2: Setting the Layer 2 (VLAN/8021p) priority per VLAN Ingress ports 1-20 (these ports MAY be carrying a mixture of VLAN2, VLAN3, and VLAN4 packets either with or without VLAN tags) class-map cmap2 match vlan 2 class-map cmap3 match vlan 3 class-map cmap4 match vlan 4 class cmap2 set cos 6 class cmap3 set cos 5 class cmap4 set cos 4 interface port This set of commands will set the Layer 2 priority of VLAN2, VLAN3 and VLAN4 traffics packets, received on ports 1 to 20, to 6, 5 and 4 respectively Page 8 AlliedWare Plus OS How To Note: QoS
9 2 Setting the priority on a packet Example 2-3: Setting the Layer 3 (TOS/DCSP) priority per ingress port Use the same configuration provided in Example 2-1 on page 7, but change the following line: set cos <cos-value> to set dscp <dscp-value> Example 2-4: Setting the Layer 3 (TOS/DSCP) priority per VLAN Use the same configuration provided in Example 2-2 on page 8, but change the following line: set cos <cos-value> to set dscp <dscp-value> Page 9 AlliedWare Plus OS How To Note: QoS
10 3 Setting the egress queues 3 Setting the egress queues In this section we look at methods for directing certain packets into certain queues on the egress port Example 3-1: Setting the egress queue according to the L2 priority of the incoming packet The priority-to-queue map is a straightforward method for assigning packets to egress queues on the basis of the packets 8021p values Ingress ports 1-20 (these ports MAY be carrying a mixture of packets from different VLAN packets either with or without VLAN tags) mls qos map cos-queue 0 to 2 mls qos map cos-queue 1 to 3 mls qos map cos-queue 2 to 1 mls qos map cos-queue 3 to 0 mls qos map cos-queue 4 to 4 mls qos map cos-queue 5 to 5 mls qos map cos-queue 6 to 6 mls qos map cos-queue 7 to 7 interface port101-port1020 mls qos queue 2 Command settings The map cos-queue commands in the above example set the mapping between the VLAN Tag User Priorities of the packets and the egress queues Priorities 0 to 7 are mapped to queues 2, 3, 1, 0, 4, 5, 6 and 7 respectively The Interface mode command sets the incoming ports to send untagged packets to queue number 2, which means the untagged packets will use the same queue as the tagged packets with a User Priority of 1 Notes: The cos-queue map does not operate until you have entered the command this means that packets will not be mapped to queues until this occurs It is also possible for packets to be priority tagged This means that the packets contain a VLAN tag with VID=0, but with a priority value set in the 8021p field of the tag The cos-queue map treats these packets like any other tagged packets, and will map them to the queue that corresponds to their 8021p value Page 10 AlliedWare Plus OS How To Note: QoS
11 3 Setting the egress queues Example 3-2: Setting the egress queue according to the DSCP value of the incoming packet The premark-dscp map allows you to specify a new queue for traffic based on the DSCP value of the incoming packet The traffic you want to prioritize this way must be processed by a class that has trust dscp applied to it Ingress ports 1-20 (these ports MAY receive a mixture of packets with different DSCP values) mls qos map premark-dscp 12 to new-queue 1 mls qos map premark-dscp 24 to new-queue 2 mls qos map premark-dscp 27 to new-queue 3 mls qos map premark-dscp 35 to new-queue 4 mls qos map premark-dscp 40 to new-queue 5 mls qos map premark-dscp 49 to new-queue 6 trust dscp interface port This will result in the queue mappings in the following table DSCP value Queue All others Default value as set in the cos-queue map Page 11 AlliedWare Plus OS How To Note: QoS
12 3 Setting the egress queues Example 3-3: Setting the egress queue according to the ingress port Ingress ports 1-20 (these ports MAY be carrying a mixture of packets from different VLAN packets either with or without VLAN tags) set queue 6 policy-map pmap2 set queue 5 policy-map pmap3 set queue 4 interface port101 interface port102 service-policy input pmap2 interface port103 service-policy input pmap3 This set of commands will set the egress queue of any traffic received from port 1 to egress queue 6, from port 2 to egress queue 5 etc Page 12 AlliedWare Plus OS How To Note: QoS
13 3 Setting the egress queues Example 3-4: Configuring WRR for egress queues This example is used for configuring WRR on egress queues according to the ingress port of the traffic Ingress ports 1-3 (these ports MAY be carrying a mixture of packets from different VLAN packets either with or without VLAN tags) set queue 6 policy-map pmap2 set queue 5 policy-map pmap3 set queue 4 interface port101 interface port102 service-policy input pmap2 interface port103 service-policy input pmap3 interface port1024 wrr-queue group 1 weight 6 queues 4 wrr-queue group 1 weight 12 queues 5 wrr-queue group 1 weight 24 queues 6 This set of commands will set the egress queue of any traffic received from port 1 to egress queue 6, from port 2 to egress queue 5 and from port 3 to egress queue 4 And on egress, the WRR algorithm will do the following: for every 4 packets from queue 6, 2 packets will leave queue 5 and 1 packet will leave queue 4 Page 13 AlliedWare Plus OS How To Note: QoS
14 Full QoS scenario - tiered services for a single customer Full QoS scenario - tiered services for a single customer In this section, we will build up a relatively complex QoS configuration to support a scenario requiring quite precise control over the traffic passing through the switch The scenario is an ISP providing connectivity for a customer, and offering different levels of service for different types of traffic The customer is connected to port 1 of the switch, and the uplink to the ISP is on port 24 of the switch ISP uplink to the ISP Customer LAN Step 1 - Set the egress bandwidth limiting The service offered by the ISP puts a limit on the total bandwidth of traffic that the customer can send to the ISP This is achieved by setting a maximum bandwidth on the uplink port: interface port1024 egress-rate-limit 10m Step 2 - Give better service to some types of traffic than to others The deal offered to the customer is that their traffic will be treated as belonging to three categories, and each category of traffic will be given a different level of service: Gold traffic will be limited to, say, 2Mbps, but the ISP will guarantee delivery of the traffic across their network, with a low latency Silver traffic will have a much higher limit, but when congestion occurs, it will be throttled back in favour of Gold traffic, if necessary The ISP will guarantee to deliver up to, say 5Mbps of Silver traffic across its network 90% of the time, but will give no guarantees about latency Bronze traffic will also have a high burst limit, but when congestion occurs, will be throttled back in favour of Gold traffic, and will share the remaining bandwidth with Silver traffic in a Weighted Round Robin fashion The ISP makes no guarantees at all with regard to delivery of Bronze traffic across their network; it will be delivered on a best-effort basis Page 14 AlliedWare Plus OS How To Note: QoS
15 Full QoS scenario - tiered services for a single customer Identify the types of traffic The different categories of traffic will be identified by the DSCP values in the packets' headers It is up to the customer to mark the packets with the appropriate DSCP values The DSCP values belonging to the different traffic categories are: Gold 40 Silver 30 Bronze 0 The class maps to match these DSCP values are: match dscp 0 class-map cmap2 match dscp 30 class-map cmap3 match dscp 40 Put the different categories of trafffic into different queues This involves creating a policy-map, assigning the 3 class maps, and assigning the policy-map to a port set queue 1 class cmap2 set queue 2 class cmap3 set queue 6 interface port101 Set the required properties on the egress queues What is required is that: Gold traffic ALWAYS has precedence over Silver or Bronze traffic So, when a Gold packet arrives at the egress port, it is transmitted immediately, irrespective of how many Silver or Bronze packets might be queued up When there are Silver and Bronze packets queued up, they are transmitted according to a Weighted Round Robin (WRR) scheme Page 15 AlliedWare Plus OS How To Note: QoS
16 Full QoS scenario - tiered services for a single customer This is achieved by ensuring that the egress queue to which Gold traffic is directed to is a priority queue, and the egress queues to which the silver and bronze traffic are directed are WRR queues So, we need to specify the queue types of queues 1, 2, and 6 on port 24 The relative weights to give to Silver and Bronze traffic are set by specifying the WRR weight for their queues For example, to give a 4:1 ratio of Silver to Bronze traffic: interface port1024 priority-queue 6 wrr-queue group 1 weight 6 queues 1 wrr-queue group 1 weight 24 queues 2 Step 3 - set the bandwidth limits The Gold traffic must be strictly limited to 2Mbps This is achieved by configuring a maxbandwidth on that traffic class, and dropping bandwidthclass 3 traffic: police single-rate action drop-red For silver traffic, there is preferential treatment for the first 5Mbps of traffic So, when there is congestion, you want to still be getting 5Mbps of Silver traffic through, if possible This is achieved by putting bandwidth limits on both Silver and Bronze traffic, and using RED curves to shape the throughput back to those limits when congestion occurs class cmap2 police single-rate action policed-dscp-transmit class cmap3 police single-rate action policed-dscp-transmit mls qos queue-set 1 queues 1 threshold mls qos queue-set 1 queues 2 threshold interface port1024 mls qos queue-set 1 random-detect The action configured on the policers for each of the classes cmap2 and cmap3 is policed-dscptransmit That means that QoS passes the packets to the policed-dscp map for processing If there are no entries in the policed-dscp map configured to alter the queue, DSCP, or priority of the packets, then all packets (green, yellow, and red) are passed straight through to be candidates for admission into the egress queues In uncongested conditions, all packets are admitted into the egress queues and then transmitted In congested conditions, as the lengths of the queues build up, the RED curves will admit green packets into the egress queues, in preference to yellow and red packets Page 16 AlliedWare Plus OS How To Note: QoS
17 Full configuration script mls qos queue-set 1 queues 1 threshold mls qos queue-set 1 queues 2 threshold match dscp 0! class-map cmap2 match dscp 30! class-map cmap3 match dscp 40! class default set queue 1 police single-rate action drop-red class cmap2 set queue 2 police single-rate policed-dscp-transmit class cmap3 set queue 3 police single-rate policed-dscp-transmit interface port101 interface port1024 egress-rate-limit mls qos queue-set 1 random-detect wrr-queue group 1 weight 6 queues 1 wrr-queue group 1 weight 24 queues 2 USA Headquar ters Nor th Cr eek Parkwa y Suite 100 Bothell WA USA T: F: Eur opean Headquar ters Via Motta Chiasso Switzerland T: F: Asia-Pacific Headquar ters 11 T ai Seng Link Singapor e T: F: www alliedtelesiscom 2009 Allied Tel esis, Inc All rights reserved Information in this document is subject to change without notice Allied Telesis is a trademark or registered trademark of Allied Telesis, Inc in the United States and other countries All company names, logos, and product designs that are trademarks or registered trademarks are the property of their respective owners C REV D
AlliedWare Plus OS How To. Configure QoS to prioritize SSH, Multicast, and VoIP Traffic. Introduction
AlliedWare Plus OS How To Configure QoS to prioritize SSH, Multicast, and VoIP Traffic Introduction This How To Note explains how to create a QoS policy that prioritizes SSH, multicast, and VoIP traffic
AlliedWare Plus TM OS How To. Configure QoS to Conform to Standard Marking Schemes. Introduction. Contents
AlliedWare Plus TM OS How To Configure QoS to Conform to Standard Marking Schemes Introduction This How To Note describes how to deploy a QoS solution across an entire network. It explains how to define
Configure Policy-based Routing
How To Note How To Configure Policy-based Routing Introduction Policy-based routing provides a means to route particular packets to their destination via a specific next-hop. Using policy-based routing
Configure WAN Load Balancing
AlliedWare TM OS How To Configure WAN Load Balancing Introduction With the increasing use of the Internet to service core business functions comes the need for reliable WAN connectivity. A specific aspect
This How To Note describes one possible basic VRRP configuration.
AlliedWare TM OS How To Configure VRRP (Virtual Router Redundancy Protocol) Introduction VRRP is a popular protocol for providing device redundancy, for connecting redundant WAN gateway routers or server
AlliedWare TM OS How To. Use DHCP Snooping and ARP Security to Block ARP Poisoning Attacks. Introduction. Related How To Notes
AlliedWare TM OS How To Use DHCP Snooping and ARP Security to Block ARP Poisoning Attacks Introduction When you use DHCP servers to allocate IP addresses to clients on a LAN, you can also configure DHCP
Apply Firewall Policies And Rules
How To Apply Firewall Policies And Rules Introduction This How To Note describes some of the more subtle aspects of dealing with firewall policies and how to apply rules to various traffic flows when using
Chapter 5 Configuring QoS
Chapter 5 Configuring QoS Configuring the Basic and Advanced QoS Settings The navigation pane at the top of the web browser interface contains a QoS tab that enables you to manage your FS700TS Smart Switch
Improving Quality of Service
Improving Quality of Service Using Dell PowerConnect 6024/6024F Switches Quality of service (QoS) mechanisms classify and prioritize network traffic to improve throughput. This article explains the basic
What information will you find in this document?
AlliedWare TM OS How To Configure an IPsec VPN between Microsoft ISA Server 2004 and an Allied Telesis Router Client Introduction Both Microsoft Internet Security and Acceleration (ISA) Server 2004 and
Allow Public and Private Address Access to Servers at a Service Provider Client Site. What information will you find in this document?
How To Allow Public and Private Address Access to Servers at a Service Provider Client Site Introduction This document contains configuration examples and guidelines for a situation that uses firewall
Configure A Secure School Network Based On 802.1x
How To Configure A Secure School Network Based On 802.1x The problem Schools offer a unique set of challenges to network designers. As well as all the usual requirements of modern network users high bandwidth,
Configuring QoS. Understanding QoS CHAPTER
24 CHAPTER This chapter describes how to configure quality of service (QoS) by using standard QoS commands. With QoS, you can give preferential treatment to certain types of traffic at the expense of others.
In fact, the three most common reasons for a network slow down are: congestion data corruption collisions
How To Troubleshoot Slow Network Performance Introduction This How To Note describes techniques for troubleshooting slow network performance. When troubleshooting a network slow down problem, it is very
Configure the Firewall VoIP Support Service (SIP ALG)
AlliedWare TM OS How To Configure the Firewall VoIP Support Service (SIP ALG) Introduction SIP (Session Initiation Protocol) is an increasingly popular protocol for managing VoIP call setup. The structure
Configuring Auto-QoS
Finding Feature Information, page 1 Prerequisites for Auto-QoS, page 1 Restrictions for Auto-QoS, page 2 Information About, page 3 How to Configure Auto-QoS, page 5 Monitoring Auto-QoS, page 9 Configuration
Configuring QoS CHAPTER
26 CHAPTER This chapter describes how to use different methods to configure quality of service (QoS) on the Catalyst 3750 Metro switch. With QoS, you can provide preferential treatment to certain traffic
Cisco - Catalyst 2950 Series Switches Quality of Service (QoS) FAQ
Page 1 of 8 Catalyst 2950 Series Switches Quality of Service (QoS) FAQ Document ID: 46523 TAC Notice: What's C han g i n g o n T A C We b H el p u s h el p y ou. Questions Introduction What is the software
What information will you find in this document?
AlliedWare TM OS How To Configure Some Basic Firewall and VPN Scenarios Introduction This document provides examples that illustrate common configurations for security routers. You may want to make changes
PC-over-IP Protocol Virtual Desktop Network Design Checklist. TER1105004 Issue 2
PC-over-IP Protocol Virtual Desktop Network Design Checklist TER1105004 Issue 2 Teradici Corporation #101-4621 Canada Way, Burnaby, BC V5G 4X8 Canada p +1 604 451 5800 f +1 604 451 5818 www.teradici.com
AlliedWare Plus OS How To Use sflow in a Network
AlliedWare Plus OS How To Use sflow in a Network Introduction sflow is an industry-standard sampling system that is embedded in Allied Telesis' high-performing Layer 3 switches. sflow enables you to use
Configuring QoS in a Wireless Environment
12 CHAPTER This chapter describes how to configure quality of service (QoS) on your Cisco wireless mobile interface card (WMIC). With this feature, you can provide preferential treatment to certain traffic
AutoQoS for Medianet
Appendix A AutoQoS for Medianet As of August 2010, an updated version of AutoQoS was released for the Catalyst 2960- G/S, 3560-G/E/X, and 3750-G/E/X family of switches (with IOS Release 12.2(55)SE). This
AlliedWare TM OS How To. Create a VPN between an Allied Telesis Router and a Microsoft Windows XP 1 Client, Without Using NAT-T.
AlliedWare TM OS How To Create a VPN between an Allied Telesis Router and a Microsoft Windows XP 1 Client, Without Using NAT-T Introduction This document describes how to provide secure remote access through
Configuring QoS in a Wireless Environment
Configuring QoS in a Wireless Environment This chapter describes how to configure quality of service (QoS) on your Cisco wireless interface. With this feature, you can provide preferential treatment to
What information will you find in this document?
AlliedWare TM OS How To Configure Basic 802.1x Port Authentication Introduction This How To Note is a guide to 802.1x and Port Authentication. It outlines the implementation of the IEEE 802.1x standard
- QoS and Queuing - Queuing Overview
1 Queuing Overview - QoS and Queuing - A queue is used to store traffic until it can be processed or serialized. Both switch and router interfaces have ingress (inbound) queues and egress (outbound) queues.
Configuring QoS and Per Port Per VLAN QoS
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 on a Catalyst 45 series switch. It also describes
How To Create A VPN Between An Allied Telesis Router And A Microsoft Windows XP 1 Client, Without Using NAT-T
How To Create A VPN Between An Allied Telesis Router And A Microsoft Windows XP 1 Client, Without Using NAT-T 1. Internet Explorer and Windows are registered trademarks of Microsoft Corporation in the
Best Practice Recommendations for VLANs and QoS with ShoreTel
Application Note ST AppNote 10325 (AN 10325) August 17, 2011 Best Practice Recommendations for VLANs and QoS with ShoreTel Description: This application note discusses the use of Virtual LANs, DHCP scopes
The Basics. Configuring Campus Switches to Support Voice
Configuring Campus Switches to Support Voice BCMSN Module 7 1 The Basics VoIP is a technology that digitizes sound, divides that sound into packets, and transmits those packets over an IP network. VoIP
Configure A Secure Network Solution For Schools. What information will you find in this document?
How To Configure A Secure Network Solution For Schools Introduction This How To Note describes a secure network solution configuration for schools. In the configuration there are two network segments (VLANs):
Routing. Static Routing. Fairness. Adaptive Routing. Shortest Path First. Flooding, Flow routing. Distance Vector
CSPP 57130 Routing Static Routing Fairness Adaptive Routing Shortest Path First Flooding, Flow routing Distance Vector RIP Distance Vector Sometimes called Bellman-FOrd Original Arpanet, DECNet, Novell,
configure WAN load balancing
How To configure WAN load balancing Introduction With the increasing use of the Internet to service core business functions comes the need for reliable WAN connectivity. A specific aspect of this requirement
Configuring Quality of Service
CHAPTER 37 QoS functionality on Supervisor Engine 6-E, Supervisor Engine 6L-E, Catalyst 49M, and Catalyst 4948E are equivalent. This chapter describes how to configure quality of service (QoS) by using
Technology Overview. Class of Service Overview. Published: 2014-01-10. Copyright 2014, Juniper Networks, Inc.
Technology Overview Class of Service Overview Published: 2014-01-10 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net Juniper Networks, Junos,
How To Provide Qos Based Routing In The Internet
CHAPTER 2 QoS ROUTING AND ITS ROLE IN QOS PARADIGM 22 QoS ROUTING AND ITS ROLE IN QOS PARADIGM 2.1 INTRODUCTION As the main emphasis of the present research work is on achieving QoS in routing, hence this
Configuring Quality of Service
CHAPTER 33 This chapter describes how to configure quality of service (QoS) with either automatic QoS (auto-qos) commands or standard QoS commands on a switch running Supervisor Engine 7-E. It describes
How To Configure Some Basic OSPF Routing Scenarios. Introduction. Technical Guide. List of terms
Technical Guide How To Configure Some Basic OSPF Routing Scenarios Introduction OSPF is an Open Standards link-state routing protocol used to exchange routing information between devices dynamically. This
Advanced QoS White Paper
Allied Telesis White Paper Advanced QoS White Paper Executive Summary An Ethernet service that is becoming more attractive to end-users is the Virtual Private LAN Service (VPLS) or Provider Provisioned
x900 Switch Access Requestor
Network Security Solutions Implementing Network Access Control (NAC) Tested Solution: Protecting your network with Microsoft Network Access Protection (NAP) and Switches Today s networks increasingly require
QoS Queuing on Cisco Nexus 1000V Class-Based Weighted Fair Queuing for Virtualized Data Centers and Cloud Environments
QoS Queuing on Cisco Nexus 1000V Class-Based Weighted Fair Queuing for Virtualized Data Centers and Cloud Environments Intended Audience Virtualization architects, network engineers or any administrator
- QoS Classification and Marking -
1 - QoS Classification and Marking - Classifying and Marking Traffic Conceptually, DiffServ QoS involves three steps: Traffic must be identified and then classified into groups. Traffic must be marked
Optimizing Converged Cisco Networks (ONT)
Optimizing Converged Cisco Networks (ONT) Module 5: Implement Cisco AutoQoS Introducing Cisco AutoQoS Objectives Describe the features of Cisco Auto QoS. List the prerequisites when using Cisco Auto QoS.
Configuration Examples. 802.1p priority and QoS
Configuration Examples 802.1p priority and QoS 802.1p/1q Tagging summary Ingress (incoming frame): If receiving untagged frame, add the tag into this frame with VID=PVID and priority= 802.1p default priority
Configuring QoS. Finding Feature Information. Prerequisites for QoS
Finding Feature Information, page 1 Prerequisites for QoS, page 1 QoS Components, page 2 QoS Terminology, page 3 Information About QoS, page 3 Restrictions for QoS on Wired Targets, page 41 Restrictions
Quality of Service (QoS) for Enterprise Networks. Learn How to Configure QoS on Cisco Routers. Share:
Quality of Service (QoS) for Enterprise Networks Learn How to Configure QoS on Cisco Routers Share: Quality of Service (QoS) Overview Networks today are required to deliver secure, measurable and guaranteed
Cisco VoIP CME QoS Labs by Michael T. Durham
Cisco VoIP CME QoS Labs by Michael T. Durham Welcome to NetCertLabs CCNA Voice Lab series. In this set of labs we will be working with the QoS (Quality of Service). A communications network forms the backbone
How To. Achieve Quality of Service over a low-speed WAN that has a non-qos capable gateway device. Introduction
How To Achieve Quality of Service over a low-speed WAN that has a non-qos capable gateway device Introduction Firstly, to set the scene, let s review a few well-known facts of networking life. Wide Area
Can PowerConnect Switches Be Used in VoIP Deployments?
PowerConnect Application Note #11 February 2004 Can PowerConnect Switches Be Used in VoIP Deployments? This Application Notes relates to the following Dell PowerConnect products: PowerConnect 33xx PowerConnect
This topic lists the key mechanisms use to implement QoS in an IP network.
IP QoS Mechanisms QoS Mechanisms This topic lists the key mechanisms use to implement QoS in an IP network. QoS Mechanisms Classification: Each class-oriented QoS mechanism has to support some type of
How To Behind A Dynamically-Assigned Public IP Address
How To Use Dynamic DNS To Allow You To Host Servers Behind A Dynamically-Assigned Public IP Address Allied Telesis routers feature a dynamic DNS client, which allows you to host web domains, FTP servers,
What s New in VMware vsphere 5.5 Networking
VMware vsphere 5.5 TECHNICAL MARKETING DOCUMENTATION Table of Contents Introduction.................................................................. 3 VMware vsphere Distributed Switch Enhancements..............................
QoS: Color-Aware Policer
QoS: Color-Aware Policer First Published: August 26, 2003 Last Updated: February 28, 2006 The QoS: Color-Aware Policer enables a color-aware method of traffic policing. This feature allows you to police
QoS (Quality of Service)
QoS (Quality of Service) QoS function helps you to control your network traffic for each application from LAN (Ethernet and/or Wireless) to WAN (Internet). It facilitates you to control the different quality
IBM. Tivoli. Netcool Performance Manager. Cisco Class-Based QoS 2.2.0.0 Technology Pack. User Guide. Document Revision R2E1
Tivoli Netcool Performance Manager Document Revision R2E1 IBM Cisco Class-Based QoS 2.2.0.0 Technology Pack User Guide Note Before using this information and the product it supports, read the information
Management Software. Web Browser User s Guide AT-S106. For the AT-GS950/48 Gigabit Ethernet Smart Switch. Version 1.0.0. 613-001339 Rev.
Management Software AT-S106 Web Browser User s Guide For the AT-GS950/48 Gigabit Ethernet Smart Switch Version 1.0.0 613-001339 Rev. A Copyright 2010 Allied Telesis, Inc. All rights reserved. No part of
Tested Solution: Network Configuration and Inventory Management using Upgrade Manager
Network Management Solutions Tested Solution: Network Configuration and Inventory Management using Upgrade Manager Upgrading the operating system images across a set of network nodes is an irregular event.
AlliedWare TM OS How To. Create a VPN between an Allied Telesis Router and a Microsoft Windows 7 Client, with or without NAT-T.
AlliedWare TM OS How To Create a VPN between an Allied Telesis Router and a Microsoft Windows 7 Client, with or without NAT-T Introduction This document describes how to provide secure remote access through
PCoIP Protocol Network Design Checklist. TER1105004 Issue 3
PCoIP Protocol Network Design Checklist TER1105004 Issue 3 Teradici Corporation #101-4621 Canada Way, Burnaby, BC V5G 4X8 Canada phone +1.604.451.5800 fax +1.604.451.5818 www.teradici.com The information
L2 / L3 Switches. Quality of Service (QoS) Configuration Guide
L2 / L3 Switches Quality of Service (QoS) Configuration Guide Revision 1.0 The information in this USER S MANUAL has been carefully reviewed and is believed to be accurate. Thevendor assumes no responsibility
Lab 8.1.10.2 Introduction to the Modular QoS Command-Line Interface
Lab 8.1.10.2 Introduction to the Modular QoS Command-Line Interface Objective Configuring Quality of Service (QoS) involves classifying, marking, and policing traffic flows. It is often necessary to apply
Quality of Service (QoS) on Netgear switches
Quality of Service (QoS) on Netgear switches Section 1 Principles and Practice of QoS on IP networks Introduction to QoS Why? In a typical modern IT environment, a wide variety of devices are connected
The example in this Note uses Linux for both the access controller (RADIUS server) and the supplicant (client).
How To Use 802.1x Security with AT-WA7400 APs, AT-8624PoE Switches, and Linux s freeradius and Xsupplicant Introduction This How To Note details how to take advantage of 802.1x security to ensure that
Voice Over IP Performance Assurance
Voice Over IP Performance Assurance Transforming the WAN into a voice-friendly using Exinda WAN OP 2.0 Integrated Performance Assurance Platform Document version 2.0 Voice over IP Performance Assurance
Cisco Quality of Service and DDOS
Cisco Quality of Service and DDOS Engineering Issues for Adaptive Defense Network MITRE 7/25/2001 Contents 1. INTRODUCTION...1 2. TESTBED SETUP...1 3. QUALITY OF SERVICE (QOS) TESTS...3 3.1. FIRST IN,
Configuring MPLS QoS
CHAPTER 45 This chapter describes how to configure Multiprotocol Label Switching (MPLS) quality of service (QoS) in Cisco IOS Release 12.2SX. For complete syntax and usage information for the commands
Here is a summary of the recommendations that have been reviewed and approved by NETS engineers:
QOS Review: This is a review of NCAR s current campus network and the potential FRGP QOS implementation. Since NCAR s initial QOS deployment, new hardware and IOS versions have been deployed in the network,
Quality of Service Analysis of site to site for IPSec VPNs for realtime multimedia traffic.
Quality of Service Analysis of site to site for IPSec VPNs for realtime multimedia traffic. A Network and Data Link Layer infrastructure Design to Improve QoS in Voice and video Traffic Jesús Arturo Pérez,
IP videoconferencing solution with ProCurve switches and Tandberg terminals
An HP ProCurve Networking Application Note IP videoconferencing solution with ProCurve switches and Tandberg terminals Contents 1. Introduction... 3 2. Architecture... 3 3. Videoconferencing traffic and
Configuring Network QoS
CHAPTER 8 This chapter describes how to configure a network qos policy for the Cisco NX-OS device in the Data Center Bridging (DCB) network. This chapter includes the following sections: Note This chapter
How To Use An At9924 For A Long Distance Connection On A Powerline On A Ppltd Network (Powerline) On A Superfast Network (Networking) On An At 9924 (Powerplt) On The P
Case Study PLDT PLDT PLDT, the leading telecommunications provider in the Philippines, selects Allied Telesis advanced Gigabit switches for the layer 2 aggregation requirements of its Next Generation Network.
How To Switch In Sonicos Enhanced 5.7.7 (Sonicwall) On A 2400Mmi 2400Mm2 (Solarwall Nametra) (Soulwall 2400Mm1) (Network) (
You can read the recommendations in the user, the technical or the installation for SONICWALL SWITCHING NSA 2400MX IN SONICOS ENHANCED 5.7. You'll find the answers to all your questions on the SONICWALL
QoS in PAN-OS. Tech Note PAN-OS 4.1. Revision A 2011, Palo Alto Networks, Inc.
QoS in PAN-OS Tech Note PAN-OS 4.1 Revision A Contents Overview... 3 Why QoS... 3 Learn about Applications in your Network... 3 Terms and Concepts... 3 Classification... 3 Priority Queues... 4 Limiting
Easy Smart Configuration Utility
Easy Smart Configuration Utility REV1.1.0 1910010977 CONTENTS Chapter 1 About this Guide...1 1.1 Intended Readers... 1 1.2 Conventions... 1 1.3 Overview of This Guide... 1 Chapter 2 Getting Started...4
Three Key Design Considerations of IP Video Surveillance Systems
Three Key Design Considerations of IP Video Surveillance Systems 2012 Moxa Inc. All rights reserved. Three Key Design Considerations of IP Video Surveillance Systems Copyright Notice 2012 Moxa Inc. All
Application Note. Configuring WAN Quality of Service for ShoreTel. Quality of Service Overview. Quality of Service Mechanisms. WAN QoS for ShoreTel 5
Application Note ST-0130 April 28, 2006 Configuring WAN Quality of Service for ShoreTel This application note discusses configuration techniques and settings that can be used to achieve highquality voice
AutoQoS. Prerequisites for AutoQoS CHAPTER
CHAPTER 63 Prerequisites for, page 63-1 Restrictions for, page 63-2 Information About, page 63-2 Default Settings for, page 63-4 How to Configure, page 63-4 For complete syntax and usage information for
How to Keep Video From Blowing Up Your Network
How to Keep Video From Blowing Up Your Network Terry Slattery Chesapeake Netcraftsmen Principal Consultant CCIE #1026 1 Agenda Types of Video The Impact of Video Identifying Video Handling Video Video
Configuring NetFlow-lite
CHAPTER 55 Note NetFlow-lite is only supported on Catalyst 4948E Ethernet Switch. This chapter describes how to configure NetFlow-lite on the Catalyst 4948E switch. NetFlow-lite provides traffic monitoring
Solutions Guide. Ethernet-based Network Virtualization for the Enterprise
Solutions Guide Ethernet-based Network Virtualization for the Enterprise Introduction The concept of Tunnelling Layer 2 and Layer 3 connections across a shared Layer 2 network used to be the preserve of
IP SAN Best Practices
IP SAN Best Practices A Dell Technical White Paper PowerVault MD3200i Storage Arrays THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES ONLY, AND MAY CONTAIN TYPOGRAPHICAL ERRORS AND TECHNICAL INACCURACIES.
"Charting the Course... ... to Your Success!" QOS - Implementing Cisco Quality of Service 2.5 Course Summary
Course Summary Description Implementing Cisco Quality of Service (QOS) v2.5 provides learners with in-depth knowledge of QoS requirements, conceptual models such as best effort, IntServ, and DiffServ,
Implementing Cisco Quality of Service QOS v2.5; 5 days, Instructor-led
Implementing Cisco Quality of Service QOS v2.5; 5 days, Instructor-led Course Description Implementing Cisco Quality of Service (QOS) v2.5 provides learners with in-depth knowledge of QoS requirements,
Ensuring End-to-End QoS for IP Applications. Chuck Darst HP OpenView. Solution Planning [email protected] 970-898-2064
Ensuring End-to-End QoS for IP Applications Chuck Darst HP OpenView Solution Planning [email protected] 970-898-2064 filename\location Page 1 Agenda Service Level Management review QoS End-to-End across
Quality of Service. Traditional Nonconverged Network. Traditional data traffic characteristics:
Quality of Service 1 Traditional Nonconverged Network Traditional data traffic characteristics: Bursty data flow FIFO access Not overly time-sensitive; delays OK Brief outages are survivable 2 1 Converged
Create a VPN between an Allied Telesis and a SonicWALL Router, with NAT-T
AlliedWare TM OS How To Create a VPN between an Allied Telesis and a SonicWALL Router, with NAT-T Today s network managers often need to incorporate other vendors equipment into their networks, as companies
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
Chapter 7 Lab 7-1, Configuring Switches for IP Telephony Support
Chapter 7 Lab 7-1, Configuring Switches for IP Telephony Support Topology Objectives Background Configure auto QoS to support IP phones. Configure CoS override for data frames. Configure the distribution
MS Series: VolP Deployment Guide
Solution Guide MS Series: VolP Deployment Guide JULY 2013 How to deploy a distributed VoIP infrastructure with Meraki MS switches. Table of Contents Introduction 3 Getting Started 4 Setting up VoIP using
Chapter 4 Rate Limiting
Chapter 4 Rate Limiting HP s rate limiting enables you to control the amount of bandwidth specific Ethernet traffic uses on specific interfaces, by limiting the amount of data the interface receives or
This topic describes the basic purpose and function of AutoQoS. One command per interface to enable and configure QoS
Implementing AutoQoS AutoQoS This topic describes the basic purpose and function of AutoQoS. AutoQoS One command per interface to enable and configure QoS 14 AutoQoS enables customer networks the ability
EX SERIES ETHERNET SWITCHES: QOS-ENABLING THE ENTERPRISE
WHITE PAPER EX SERIES ETHERNET SWITCHES: QOS-ENABLING THE ENTERPRISE Assuring End-to-End Application Performance Copyright 2012, Juniper Networks, Inc. 1 Table of Contents Executive Summary...3 Introduction...3
How To Lower Data Rate On A Network On A 2Ghz Network On An Ipnet 2 (Net 2) On A Pnet 2 On A Router On A Gbnet 2.5 (Net 1) On An Uniden Network On
Lab 8.1.10.3 QoS Classification and Policing Using CAR Objective Scenario Step 1 This lab uses Committed Access Rate (CAR) to classify and police traffic. Although the classification and policing actions
Allied Telesis provide virtual customer networks
Solutions Network Virtualization Allied Telesis provide virtual customer networks over shared Ethernet infrastructure Solutions Network Virtualization Today s building management companies can derive revenue
The network configuration for these examples is shown in the following figure. Load Balancer 1. public address 172.214.1.3
How To Configure Load Balancer Redundancy on Allied Telesis Routers and Switches Introduction In many Server Hosting environments, two requirements are important: maximising throughput availability to
Case Study Ministry of Agriculture, France
Case Study Ministry of Agriculture, France The Ministry of Agriculture and Fishing in France selects Allied Telesis for their new network solution in the central Paris offices, providing the strong network
