- QoS and Queuing - Queuing Overview
|
|
|
- Derek Evans
- 10 years ago
- Views:
Transcription
1 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. An ingress queue stores packets until the switch or router CPU can forward the data to the appropriate interface. An egress queue stores packets until the switch or router can serialize the data onto the physical wire. Switch ports and router interfaces contain both hardware and software queues. Both will be explained in detail later in this guide. Queue Congestion Switch (and router) queues are susceptible to congestion. Congestion occurs when the rate of ingress traffic is greater than can be successfully processed and serialized on an egress interface. Common causes for congestion include: The speed of an ingress interface is higher than the egress interface. The combined traffic of multiple ingress interfaces exceeds the capacity of a single egress interface. The switch/router CPU is insufficient to handle the size of the forwarding table. By default, if an interface s queue buffer fills to capacity, new packets will be dropped. This condition is referred to as tail drop, and operates on a firstcome, first-served basis. If a standard queue fills to capacity, any new packets are indiscriminately dropped, regardless of the packet s classification or marking. QoS provides switches and routers with a mechanism to queue and service higher priority traffic before lower priority traffic. This guide covers various queuing methods in detail. QoS also provides a mechanism to drop lower priority traffic before higher priority traffic, during periods of congestion. This is known as Weighted Random Early Detection (WRED), and is covered in detail in another guide.
2 2 Types of Queues Recall that interfaces have both ingress (inbound) queues and egress (outbound) queues. Each interface has one or more hardware queues (also known as transmit (TxQ) queues). Traffic is placed into egress hardware queues to be serialized onto the wire. There are two types of hardware queues. By default, traffic is placed in a standard queue, where all traffic is regarded equally. However, interfaces can also support strict priority queues, dedicated for higher-priority traffic. DiffServ QoS can dictate that traffic with a higher DSCP or IP Precedence value be placed in strict priority queues, to be serviced first. Traffic in a strict priority queue is never dropped due to congestion. A Catalyst switch interface may support multiple standard or strict priority queues, depending on the switch model. Cisco notates strict priority queues with a p, standard queues with a q, and WRED thresholds per queue (explained in a separate guide) with a t. If a switch interface supports one strict priority queue, two standard queues, and two WRED thresholds, Cisco would notate this as: 1p2q2t To view the supported number of hardware queues on a given Catalyst switch interface: Switch# show interface fa0/12 capabilities The strict priority egress queue must be explicitly enabled on an interface: Switch(config)# interface fa0/12 Switch(config-if)# priority-queue out To view the size of the hardware queue of a router serial interface: Router# show controller serial The size of the interface hardware queue can modified on some Cisco models, using the following command: Router(config)# interface serial 0/0 Router(config-if)# tx-ring-limit 3 (Reference:
3 3 Forms of Queuing The default form of queuing on nearly all interfaces is First-In First-Out (FIFO). This form of queuing requires no configuration, and simply processes and forwards packets in the order that they arrive. If the queue becomes saturated, new packets will be dropped (tail drop). This form of queuing may be insufficient for real-time applications, especially during times of congestion. FIFO will never discriminate or give preference to higher-priority packets. Thus, applications such as VoIP can be starved out during periods of congestion. Hardware queues always process packets using the FIFO method of queuing. In order to provide a preferred level of service for high-priority traffic, some form of software queuing must be used. Software queuing techniques can include: First-In First-Out (FIFO) (default) Priority Queuing (PQ) Custom Queuing (CQ) Weighted Fair Queuing (WFQ) Class-Based Weighted Fair Queuing (CBWFQ) Low-Latency Queuing (LLQ) Each of the above software queuing techniques will be covered separately in this guide. Software queuing usually employs multiple queues, and each is assigned a specific priority. Traffic can then be assigned to these queues, using accesslists or based on classification. Traffic from a higher-priority queue is serviced before the traffic from a lower-priority queue. Please note: traffic within a single software queue (sometimes referred to as sub-queuing) is always processed using FIFO. Note also: if the hardware queue is not congested, software queues are ignored. Remember, software-based queuing is only used when the hardware queue is congested. Software queues serve as an intermediary, deciding which traffic types should be placed in the hardware queue first and how often, during periods of congestion.
4 4 Priority Queuing (PQ) Priority Queuing (PQ) employs four separate queues: High Medium Normal (default) Low Traffic must be assigned to these queues, usually using access-lists. Packets from the High queue are always processed before packets from the Medium queue. Likewise, packets from the Medium queue are always processed before packets in the Normal queue, etc. Remember that traffic within a queue is processed using FIFO. As long as there are packets in the High queue, no packets from any other queues are processed. Once the High queue is empty, then packets in the Medium queue are processed but only if no new packets arrive in the High queue. This is referred to as a strict form of queuing. The obvious advantage of PQ is that higher-priority traffic is always processed first. The nasty disadvantage to PQ is that the lower-priority queues can often receive no service at all. A constant stream of Highpriority traffic can starve out the lower-priority queues. To configure PQ, traffic can first be identified using access-lists: Router(config)# access-list 2 permit Router(config)# access-list 100 permit tcp any eq www Then, the traffic should be placed in the appropriate queues: Router(config)# priority-list 1 protocol ip high list 2 Router(config)# priority-list 1 protocol ip medium list 100 Router(config)# priority-list 1 protocol ip normal Router(config)# priority-list 1 protocol ipx low Router(config)# priority-list 1 default normal The size of each queue (measured in packets) can be specified: Router(config)# priority-list 1 queue-limit Finally, the priority-list must be applied to an interface: Router(config)# interface serial0 Router(config-if)# priority-group 1
5 5 Custom Queuing (CQ) A less strict form of queuing is Custom Queuing (CQ), which employs a weighed round-robin queuing methodology. Each queue is processed in order, but each queue can have a different weight or size (measured either in bytes, or the number of packets). Each queue processes its entire contents during its turn. CQ supports a maximum of 16 queues. To configure CQ, traffic must first be identified by protocol or with an access-list, and then placed in a custom queue: Router(config)# access-list 101 permit tcp any eq 1982 Router(config)# queue-list 1 protocol ip 1 list 101 Router(config)# queue-list 1 protocol ip 1 tcp smtp Router(config)# queue-list 1 protocol ip 2 tcp domain Router(config)# queue-list 1 protocol ip 2 udp domain Router(config)# queue-list 1 protocol ip 3 tcp www Router(config)# queue-list 1 protocol cdp 4 Router(config)# queue-list 1 protocol ip 5 lt 1000 Router(config)# queue-list 1 protocol ip 5 gt 800 Each custom queue is identified with a number (1, 2, 3 etc.). Once traffic has been assigned to custom queues, then each queue s parameters must be specified. Parameters can include: A limit size of the queue, measured in number of packets. A byte-count size of the queue, measured in number of bytes. Configuration of queue parameters is straight-forward: Router(config)# queue-list 1 queue 1 limit 15 Router(config)# queue-list 1 queue 2 byte-count 2000 Router(config)# queue-list 1 queue 3 limit 25 Router(config)# queue-list 1 queue 4 byte-count 1024 Router(config)# queue-list 1 queue 4 limit 10 Finally, the custom queue must be applied to an interface: Router(config)# interface serial0/0 Router(config-if)# custom-queue-list 1 (Reference:
6 6 Weighted Fair Queuing (WFQ) Weighted Fair Queuing (WFQ) dynamically creates queues based on traffic flows. Traffic flows are identified with a hash value generated from the following header fields: Source and Destination IP address Source and Destination TCP (or UDP) port IP Protocol number Type of Service value (IP Precedence or DSCP) Traffics of the same flow are placed in the same flow queue. By default, a maximum of 256 queues can exist, though this can be increased to If the priority (based on the ToS field) of all packets are the same, bandwidth is divided equally among all queues. This results in low-traffic flows incurring a minimal amount of delay, while high-traffic flows may experience latency. Packets with a higher priority are scheduled before lower-priority packets arriving at the same time. This is accomplished by assigning a sequence number to each arriving packet, which is calculated from the last sequence number multiplied by an inverse weight (based on the ToS field). In other words a higher ToS value results in a lower sequence number, and the higher-priority packet will be serviced first. WFQ is actually the default on slow serial links (2.048 Mbps or slower). To explicitly enable WFQ on an interface: Router(config)# interface s0/0 Router(config-if)# fair-queue The following are optional WFQ parameters: Router(config)# interface s0/0 Router(config-if)# fair-queue The 128 value increases the maximum size of a queue, measured in packets (64 is the default). The 1024 value increases the maximum number of queues from its default of 256. The following queuing methods are based on WFQ: Class-Based Weighted Fair Queuing (CBWFQ) Low Latency Queuing (LLQ)
7 7 Class-Based WFQ (CBWFQ) WFQ suffers from several key disadvantages: Traffic cannot be queued based on user-defined classes. WFQ cannot provide specific bandwidth guarantees to a traffic flow. WFQ is only supported on slower links (2.048 Mbps or less). These limitations were corrected with Class-Based WFQ (CBWFQ). CBWFQ provides up to 64 user-defined queues. Traffic within each queue is processed using FIFO. Each queue is provided with a configurable minimum bandwidth guarantee, which can be represented one of three ways: As a fixed amount (using the bandwidth command). As a percentage of the total interface bandwidth (using the bandwidth percent command). As a percentage of the remaining unallocated bandwidth (using the bandwidth remaining percent command). Note: the above three commands must be used exclusively from each other it is no possible to use the fixed bandwidth command on one class, and bandwidth percent command on another class within the same policy. CBWFQ queues are only held to their minimum bandwidth guarantee during periods of congestion, and can thus exceed this minimum when the bandwidth is available. By default, only 75% of an interface s total bandwidth can be reserved. This can be changed using the following command: Router(config)# interface s0/0 Router(config-if)# max-reserved-bandwidth 90 The key disadvantage with CBWFQ is that no mechanism exists to provide a strict-priority queue for real-time traffic, such as VoIP, to alleviate latency. Low Latency Queuing (LLQ) addresses this disadvantage, and will be discussed in detail shortly.
8 8 Configuring CBWFQ CBWFQ is implemented using the Modular Command-Line (MQC) interface. Specifically, a class-map is used to identify the traffic, a policymap is used to enforce each queue s bandwidth, and a service-policy is used to apply the policy-map to an interface. Router(config)# access-list 101 permit tcp any eq http Router(config)# access-list 102 permit tcp any eq ftp Router(config)# class-map HTTP Router(config-cmap)# match access-group 101 Router(config)# class-map FTP Router(config-cmap)# match access-group 102 Router(config)# policy-map THEPOLICY Router(config-pmap)# class HTTP Router(config-pmap-c)# bandwidth 256 Router(config-pmap)# class FTP Router(config-pmap-c)# bandwidth 128 Router(config)# interface serial0/0 Router(config-if)# service-policy output THEPOLICY The above example utilizes the bandwidth command to assign a fixed minimum bandwidth guarantee for each class. Alternatively, a percentage of the interface bandwidth (75% of the total bandwidth, by default) can be guaranteed using the bandwidth percent command: Router(config)# policy-map THEPOLICY Router(config-pmap)# class HTTP Router(config-pmap-c)# bandwidth percent 40 Router(config-pmap)# class FTP Router(config-pmap-c)# bandwidth percent 20 The minimum guarantee can also be based as a percentage of the remaining unallocated bandwidth, using the bandwidth remaining percent command. Router(config)# policy-map THEPOLICY Router(config-pmap)# class HTTP Router(config-pmap-c)# bandwidth remaining percent 20 Router(config-pmap)# class FTP Router(config-pmap-c)# bandwidth remaining percent 20 Remember, the bandwidth, bandwidth percent, and bandwidth remaining percent commands must be used exclusively, not in tandem, with each other.
9 9 Low Latency Queuing (LLQ) Low-Latency Queuing (LLQ) is an improved version of CBWFQ that includes one or more strict-priority queues, to alleviate latency issues for real-time applications. Strict-priority queues are always serviced before standard class-based queues. The key difference between LLQ and PQ (which also has a strict priority queue), is that the LLQ strict-priority queue will not starve all other queues. The LLQ strict-priority queue is policed, either by bandwidth or a percentage of the bandwidth. As with CBWFQ, configuration of LLQ is accomplished using MQC: Router(config)# access-list 101 permit tcp any eq http Router(config)# access-list 102 permit tcp any eq ftp Router(config)# access-list 103 permit tcp any eq 666 Router(config)# class-map HTTP Router(config-cmap)# match access-group 101 Router(config)# class-map FTP Router(config-cmap)# match access-group 102 Router(config)# class-map SECRETAPP Router(config-cmap)# match access-group 103 Router(config)# policy-map THEPOLICY Router(config-pmap)# class HTTP Router(config-pmap-c)# bandwidth percent 20 Router(config-pmap)# class FTP Router(config-pmap-c)# bandwidth percent 20 Router(config-pmap)# class SECRETAPP Router(config-pmap-c)# priority percent 50 Router(config)# int serial0/1 Router(config-if)# service-policy output THEPOLICY Note that the SECRETAPP has been assigned to a strict-priority queue, using the priority percent command. (Reference:
10 10 Troubleshooting Queuing To view the configured queuing mechanism and traffic statistics on an interface: Router# show interface serial 0/0 Serial 0/0 is up, line protocol is up Hardware is MCI Serial Internet address is , subnet mask is MTU 1500 bytes, BW 1544Kbit, DLY usec, rely 255/255, load 1/255 Encapsulation HDLC, loopback not set ARP type: ARPA, ARP Timeout 04:00:00 Last input 00:00:00, output 00:00:01, output hang never Last clearing of "show interface" counters never Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0 Queueing strategy: Class-based queueing Output queue: 0/1000/64/0 (size/max total/threshold/drops) Conversations 0/1/256 (active/max active/max total) Reserved Conversations 1/1 (allocated/max allocated) To view the packets currently stored in a queue: Router# show queue s0/0 To view policy-map statistics on an interface: Router# show policy-map interface s0/0 Serial0/0 Service-policy input: THEPOLICY Class-map: SECRETAPP (match-all) 123 packets, bytes 1 minute offered rate bps, drop rate 0 bps Match: access-group 103 Weighted Fair Queuing Strict Priority Output Queue: Conversation 264 Bandwidth 772 (Kbps) (pkts matched/bytes matched) 123/44125
- 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
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,
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
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
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
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,
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
"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,
Optimizing Converged Cisco Networks (ONT)
Optimizing Converged Cisco Networks (ONT) Module 3: Introduction to IP QoS Introducing QoS Objectives Explain why converged networks require QoS. Identify the major quality issues with converged networks.
Quality of Service (QoS)) in IP networks
Quality of Service (QoS)) in IP networks Petr Grygárek rek 1 Quality of Service (QoS( QoS) QoS is the ability of network to support applications without limiting it s s function or performance ITU-T T
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
Analysis of Basic Quality of Service Mechanism for Voice over IP In Hamdard University Network Campus
Analysis of Basic Quality of Service Mechanism for Voice over IP In Hamdard University Network Campus Shahbaz Akhatar Siddiqui Student MS (Telecom) Hamdard University Karachi Junior Lecturer in National
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
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
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.
IMPLEMENTING CISCO QUALITY OF SERVICE V2.5 (QOS)
IMPLEMENTING CISCO QUALITY OF SERVICE V2.5 (QOS) COURSE OVERVIEW: Implementing Cisco Quality of Service (QOS) v2.5 provides learners with in-depth knowledge of QoS requirements, conceptual models such
Cisco Performance Monitor Commands
1 action (policy react and policy inline react) Cisco Performance Monitor Commands action (policy react and policy inline react) To configure which applications which will receive an alarm or notification,
Configuring Control Plane Policing
CHAPTER 53 This chapter describes how to configure control plane policing (CoPP) with Cisco IOS Release 12.2SX. Note For complete syntax and usage information for the commands used in this chapter, see
DS3 Performance Scaling on ISRs
This document provides guidelines on scaling the performance of DS3 interface (NM-1T3/E3) for the Cisco 2811/2821/2851/3825/3845 Integrated Services Routers. The analysis provides following test results;
Description: To participate in the hands-on labs in this class, you need to bring a laptop computer with the following:
Course: Implementing Cisco Quality of Service Duration: 5 Day Hands-On Lab & Lecture Course Price: $ 3,395.00 Learning Credits: 34 Description: Implementing Cisco Quality of Service (QOS) v2.5 provides
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
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
Configuring an efficient QoS Map
Configuring an efficient QoS Map This document assumes the reader has experience configuring quality of service (QoS) maps and working with traffic prioritization. Before reading this document, it is advisable
VoIP Quality of Service - Basic Theory
VoIP Quality of Service - Basic Theory PacNOG5 VoIP Workshop Papeete, French Polynesia. June 2009 Jonny Martin - [email protected] Intro What is Quality of Service (Qos)? QoS and the PBX Traffic Types
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
Configuring Denial of Service Protection
24 CHAPTER This chapter contains information on how to protect your system against Denial of Service (DoS) attacks. The information covered in this chapter is unique to the Catalyst 6500 series switches,
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
WhatsUpGold. v14.4. Flow Monitor User Guide
WhatsUpGold v14.4 Flow Monitor User Guide Contents ingress egress egress ingress enable configure terminal ip flow-export version ip flow-export destination interface
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
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
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
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
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
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
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
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
Investigation and Comparison of MPLS QoS Solution and Differentiated Services QoS Solutions
Investigation and Comparison of MPLS QoS Solution and Differentiated Services QoS Solutions Steve Gennaoui, Jianhua Yin, Samuel Swinton, and * Vasil Hnatyshin Department of Computer Science Rowan University
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
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
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
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
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
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,
Configure QoS on x900-24, x900-12, and SwitchBlade x908 Series Switches
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)
How To Configure Voip Qos For A Network Connection
Version History Version Number Date Notes 1 4/16/2001 This document was created. 2 5/15/2001 Incoporated editorial comments. 3 6/30/2001 Incorporated additional editorial comments. discusses various quality
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.
Authentication with 802.1x and EAP Across Congested WAN Links
Application Note Authentication with 802.1x and EAP Across Congested WAN Links Overview Cisco has supported 802.1x authentication for 802.11 LANs since November 2000 with the introduction of the Lightweight
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,
How To Configure Qos On A Network With A Network (Cisco) On A Cell Phone Or Ipad On A Pq-Wifi On A 2G Network On A Cheap Cell Phone On A Slow Network On An Ipad Or Ip
Quality of Service for Voice Over IP (QoS for VoIP) Presented by: Dr. Peter J. Welcher Slide 1 Dr. Pete Welcher About the Speaker Cisco CCIE #1773, CCSI #94014, CCIP Network design & management consulting
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
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,
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
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
Flow Monitor for WhatsUp Gold v16.2 User Guide
Flow Monitor for WhatsUp Gold v16.2 User Guide Contents Table of Contents Flow Monitor Overview Welcome to WhatsUp Gold Flow Monitor... 1 What is Flow Monitor?... 2 How does Flow Monitor work?... 2 System
Monitoring and analyzing audio, video, and multimedia traffic on the network
Monitoring and analyzing audio, video, and multimedia traffic on the network Slavko Gajin [email protected] AMRES Academic Network of Serbia AMRES Academic Network of Serbia RCUB - Belgrade University
Successful IP Video Conferencing White Paper
Successful IP Video Conferencing White Paper The success of an IP video conference is dependent on two things: connection to the remote system and consistent bandwidth during a call. Connection to a system
Analysis of IP Network for different Quality of Service
2009 International Symposium on Computing, Communication, and Control (ISCCC 2009) Proc.of CSIT vol.1 (2011) (2011) IACSIT Press, Singapore Analysis of IP Network for different Quality of Service Ajith
Policing and Shaping Overview
Policing and Shaping Overview Cisco IOS QoS offers two kinds of traffic regulation mechanisms policing and shaping. The rate-limiting features of committed access rate (CAR) and the Traffic Policing feature
Mecanismos de QoS GTER. Alexandre Longo - [email protected] Cisco Systems. São Paulo 3 a 5 Julho de 2005. GTER SP 3-5 Julho
GTER São Paulo 3 a 5 Julho de 2005 Alexandre Longo - [email protected] Cisco Systems GTER SP 3-5 Julho 2005 Cisco Systems, Inc. All rights reserved. 1 Agenda What is QoS? QoS Service Types QoS Components
ILTA HAND 8 QoS/CoS. Agenda. What is it?
ILTA HAND 8 QoS/CoS, Cisco 2011Systems, Inc. www.cisco.com Agenda Remember this is a 101 class. What is it? Do you need QoS? Explain QoS Lab Real World Examples Q&A What is it? Quality of service is the
How To Solve A Network Communication Problem
A White Paper by NEC Unified Solutions, Inc. What VoIP Requires From a Data Network Introduction Here is a very common story. A customer has a data network based on TCP/IP that is working well. He can
COMPARATIVE ANALYSIS OF DIFFERENT QUEUING MECHANISMS IN HETROGENEOUS NETWORKS
COMPARATIVE ANALYSIS OF DIFFERENT QUEUING MECHANISMS IN HETROGENEOUS NETWORKS Shubhangi Rastogi 1, Samir Srivastava 2 M.Tech Student, Computer Science and Engineering, KNIT, Sultanpur, India 1 Associate
Requirements of Voice in an IP Internetwork
Requirements of Voice in an IP Internetwork Real-Time Voice in a Best-Effort IP Internetwork This topic lists problems associated with implementation of real-time voice traffic in a best-effort IP internetwork.
VoIP Performance Over different service Classes Under Various Scheduling Techniques
Australian Journal of Basic and Applied Sciences, 5(11): 1416-1422-CC, 211 ISSN 1991-8178 VoIP Performance Over different service Classes Under Various Scheduling Techniques Ahmad Karim Bahauddin Zakariya
Flow Monitor for WhatsUp Gold v16.1 User Guide
Flow Monitor for WhatsUp Gold v16.1 User Guide Contents Table of Contents Flow Monitor Overview Welcome to WhatsUp Gold Flow Monitor... 1 What is Flow Monitor?... 2 How does Flow Monitor work?... 2 System
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
CISCO IOS FIREWALL DESIGN GUIDE
CISCO IOS FIREWALL DESIGN GUIDE http://www.cisco.com/en/us/prod/collateral/vpndevc/ps5708/ps5710/ps1018/product_implement ation_design_guide09186a00800fd670.html I'm going to go through this document now..i'll
isco Troubleshooting Input Queue Drops and Output Queue D
isco Troubleshooting Input Queue Drops and Output Queue D Table of Contents Troubleshooting Input Queue Drops and Output Queue Drops..1 Interactive: This document offers customized analysis of your Cisco
CCNP: Optimizing Converged Networks
CCNP: Optimizing Converged Networks Cisco Networking Academy Program Version 5.0 This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for noncommercial
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
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
WhatsUpGold. v15.0. Flow Monitor User Guide
WhatsUpGold v15.0 Flow Monitor User Guide Contents CHAPTER 1 Flow Monitor Overview Welcome to WhatsUp Gold Flow Monitor... 1 What is Flow Monitor?... 2 How does Flow Monitor work?... 2 System requirements...
EXPERIMENTAL STUDY FOR QUALITY OF SERVICE IN VOICE OVER IP
Scientific Bulletin of the Electrical Engineering Faculty Year 11 No. 2 (16) ISSN 1843-6188 EXPERIMENTAL STUDY FOR QUALITY OF SERVICE IN VOICE OVER IP Emil DIACONU 1, Gabriel PREDUŞCĂ 2, Denisa CÎRCIUMĂRESCU
Lab 8.9.3 QoS Classification and Policing Using CAR
Lab 8.9.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
Configuring the Firewall Management Interface
Configuring the Firewall Management Interface The firewall management interface can be configured under each firewall context to provide a virtualized management interface (see Figure 7). The management
Cisco CCNP 642 845 Optimizing Converged Cisco Networks (ONT)
Cisco CCNP 642 845 Optimizing Converged Cisco Networks (ONT) Course Number: 642 845 Length: 5 Day(s) Certification Exam This course will help you prepare for the following exam: Cisco CCNP Exam 642 845:
The network we see so far. Internet Best Effort Service. Is best-effort good enough? An Audio Example. Network Support for Playback
The network we see so far CSE56 - Lecture 08 QoS Network Xiaowei Yang TCP saw-tooth FIFO w/ droptail or red Best-effort service Web-surfing, email, ftp, file-sharing Internet Best Effort Service Our network
Configuring the Switch for the Firewall Services Module
CHAPTER 2 Configuring the Switch for the Firewall Services Module This chapter describes how to configure the Catalyst 6500 series switch or the Cisco 7600 series router for use with the FWSM. Before completing
Distributed Systems 3. Network Quality of Service (QoS)
Distributed Systems 3. Network Quality of Service (QoS) Paul Krzyzanowski [email protected] 1 What factors matter for network performance? Bandwidth (bit rate) Average number of bits per second through
A Comparative analysis on traditional Queuing and Hybrid Queuing Mechanism of VoIP s QoS Properties
Beyond Limits...Volume: 2 Issue: 2 International Journal Of Advance Innovations, Thoughts & Ideas A Comparative analysis on traditional Queuing and Hybrid Queuing Mechanism of VoIP s QoS Properties Md.
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
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
How To Improve Quality Of Service (Qos) On A Network
Bachelor s Thesis (UAS) Degree Program: Information Technology Specialization: Data Communication & Networking 2011 Donald Egbenyon Implementing QoS for VoIP in a Local Area Network (LAN) BACHELOR S THESIS
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
Network security includes the detection and prevention of unauthorized access to both the network elements and those devices attached to the network.
By: Ziad Zubidah CCNP Security IT Security Officer National Information Technology Center Network security includes the detection and prevention of unauthorized access to both the network elements and
Configuring Link Aggregation
10 CHAPTER This chapter describes how to configure link aggregation for the ML-Series cards, both EtherChannel and packet-over-sonet/sdh (POS) channel. For additional information about the Cisco IOS commands
NetFlow Subinterface Support
NetFlow Subinterface Support Feature History Release Modification 12.2(14)S This feature was introduced. 12.2(15)T This feature was integrated into Cisco IOS Release 12.2 T. This document describes the
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
Configuring NetFlow Secure Event Logging (NSEL)
75 CHAPTER This chapter describes how to configure NSEL, a security logging mechanism that is built on NetFlow Version 9 technology, and how to handle events and syslog messages through NSEL. The chapter
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,
IP Accounting C H A P T E R
C H A P T E R 6 IP Accounting This chapter describes the IP Accounting features in Cisco IOS and enables you to distinguish the different IP Accounting functions and understand SNMP MIB details. This chapter
02-QOS-ADVANCED-DIFFSRV
IP QoS DiffServ Differentiated Services Architecture Agenda DiffServ Principles DS-Field, DSCP Historical Review Newest Implementations Per-Hop Behaviors (PHB) DiffServ in Detail DiffServ in other Environments
