- QoS Classification and Marking -
|
|
|
- Britton West
- 10 years ago
- Views:
Transcription
1 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 on trust boundaries. Policies must be created to describe the per-hop behavior for classified traffic. DiffServ QoS relies on the classification of traffic, to provide differentiated levels of service on a per-hop basis. Traffic can be classified based on a wide variety of criteria called traffic descriptors, which include: Type of application Source or destination IP address Incoming interface Class of Service (CoS) value in an Ethernet header Type of Service (ToS) value in an IP header (IP Precedence or DSCP) MPLS EXP value in a MPLS header Access-lists can be used to identify traffic for classification, based on address or port. However, a more robust solution is Cisco s Network-Based Application Recognition (NBAR), which will dynamically recognize standard or custom applications, and can classify based on payload. Once classification has occurred, traffic should be marked, to indicate the required level of QoS service for that traffic. Marking can occur within either the Layer-2 header or the Layer-3 header. The point on the network where traffic is classified and marked is known as the trust boundary. QoS marks originating from outside this boundary should be considered untrusted, and removed or changed. As a general rule, traffic should be marked as close to the source as possible. In VoIP environments, this is often accomplished on the VoIP phone itself. Traffic classification should not occur in the network core. Configuring DiffServ QoS on IOS devices requires three steps: Classify traffic using a class-map. Define a QoS policy using a policy-map. Apply the policy to an interface, using the service-policy command.
2 2 Layer-2 Marking Layer-2 marking can be accomplished for a variety of frame types: Ethernet using the 802.1p Class of Service (CoS) field. Frame Relay using the Discard Eligible (DE) bit. ATM - using the Cell Loss Priority (CLP) bit. MPLS - using the EXP field. Marking Ethernet frames is accomplished using the 3-bit 802.1p Class of Service (CoS) field. The CoS field is part of the 4-byte 802.1Q field in an Ethernet header, and thus is only available when 802.1Q VLAN frame tagging is employed. The CoS field provides 8 priority values: Type Decimal Binary General Application Routine Best effort forwarding Priority Medium priority forwarding Immediate High priority forwarding Flash VoIP call signaling forwarding Flash-Override Video conferencing forwarding Critical VoIP forwarding Internet Inter-network control (Reserved) Network Control Network control (Reserved) Frame Relay and ATM frames provide a less robust marking mechanism, compared to the Ethernet CoS field. Both Frame Relay and ATM frames reserve a 1-bit field, to prioritize which traffic should be dropped during periods of congestion. Frame Relay identifies this bit as the Discard Eligible (DE) field, while ATM refers to this bit as the Cell Loss Priority (CLP) field. A value of 0 indicates a lower likelihood to get dropped, while a value of 1 indicates a higher likelihood to get dropped. MPLS employs a 3-bit EXP (Experimental) field within the 4-byte MPLS header. The EXP field provides similar QoS functionality to the Ethernet CoS field.
3 3 Layer-3 Marking Layer-3 marking is accomplished using the 8-bit Type of Service (ToS) field, part of the IP header. A mark in this field will remain unchanged as it travels from hop-to-hop, unless a Layer-3 device is explicitly configured to overwrite this field. There are two marking methods that use the ToS field: IP Precedence - uses the first three bits of the ToS field. Differentiated Service Code Point (DSCP) uses the first six bits of the ToS field. When using DSCP, the ToS field is often referred to as the Differentiated Services (DS) field. These values determine the per-hop behavior (PHB) received by each classification of traffic. IP Precedence IP Precedence utilizes the first three bits (for a total of eight values) of the ToS field to identify the priority of a packet. Packets with a higher IP Precedence value should be provided with a better level of service. IP Precedence values are comparable to Ethernet CoS values: Type Decimal Binary General Application Routine Best effort forwarding Priority Medium priority forwarding Immediate High priority forwarding Flash VoIP call signaling forwarding Flash-Override Video conferencing forwarding Critical VoIP forwarding Internet Inter-network control (Reserved) Network Control Network control (Reserved) By default, all traffic has an IP Precedence of 000 (Routine), and is forwarded on a best-effort basis. Normal network traffic should not (and in most cases, cannot) be set to 110 (Inter-Network Control) or 111 (Network Control), as it could interfere with critical network operations, such as STP calculations or routing updates.
4 4 Differentiated Service Code Point (DSCP) DSCP utilizes the first six bits of the ToS header to identify the priority of a packet. The first three bits identify the Class Selector of the packet, and is backwards compatible with IP Precedence. The following three bits identify the Drop Precedence of the packet. Class Name Binary Class Selector Drop Precedence Default AF Low AF Medium AF High AF Low AF Medium AF High AF Low AF Medium AF High AF Low AF Medium AF High EF DSCP identifies six Class Selectors for traffic (numbered 0-5). Class 0 is default, and indicates best-effort forwarding. Packets with a higher Class value should be provided with a better level of service. Class 5 is the highest DSCP value, and should be reserved for the most sensitive traffic. Within each Class Selector, traffic is also assigned a Drop Precedence. Packets with a higher Drop Precedence are more likely to be dropped during congestion than packets with a lower Drop Precedence. Remember that this is applied only within the same Class Selector. The Class Name provides a simple way of identifying the DSCP value. AF is short for Assured Forwarding, and is the type of service applied to Classes 1 4. If a packet is marked AF23, then the Class Selector is 2 (the 2 in 23) and its Drop Precedence is High (the 3 in 23). Packets marked as Class 0 (Default) or Class 5 (Expedited Forwarding or EF) do not have a Drop Precedence.
5 5 Modular QoS CLI (MQC) The Modular QoS CLI (MQC) is an improved command-line implementation of QoS that replaced legacy CLI commands on IOS devices. MQC is considered modular because it separates classification from policy configurations. There are three steps to configuring QoS using MQC: Classify traffic using a class-map. Define a QoS policy using a policy-map. Apply the policy to an interface, using the service-policy command. Classifying and Marking Traffic using MQC Traffic is classified using one or more of the traffic descriptors listed earlier in this guide. This is accomplished using the class-map command: Router(config)# access-list 101 permit tcp any eq www Router(config)# class-map match-any LOWCLASS Router(config-cmap)# match access-group 101 The access-list matches all http traffic destined for /24. The class-map command creates a new classification named LOWCLASS. The match-any parameter dictates that traffic can match any of the traffic descriptors within the class-map. Alternatively, specifying match-all dictates that traffic must match all of the descriptors within the class-map. Within the class-map, match statements are used to identify specific traffic descriptors. The above example (match access-group) references an accesslist. To match other traffic descriptors: Router(config)# class-map match-any HICLASS Router(config-cmap)# match input-interface fastethernet0/0 Router(config-cmap)# match ip precedence 4 Router(config-cmap)# match ip dscp af21 Router(config-cmap)# match any The above is not a comprehensive list of descriptors that can be matched. Reference the link below for a more complete list. (Reference:
6 6 Network-Based Application Recognition (NBAR) Cisco s Network-Based Application Recognition (NBAR) provides an alternative to using static access-lists to identify protocol traffic for classification. NBAR introduces three key features: Dynamic protocol discovery Statistics collection Automatic traffic classification NBAR provides classification abilities beyond that of access-lists, including: Ability to classify services that use dynamic port numbers. This is accomplished using the stateful inspection of traffic flows. Ability to classify services based on sub-protocol information. For example, NBAR can classify HTTP traffic based on payload, such as the host, URL, or MIME type. NBAR employs a Protocol Discovery process to determine the application traffic types traversing the network. The Protocol Discovery process will then maintain statistics on these traffic types. NBAR recognizes applications using NBAR Packet Description Language Modules (PDLMs), which are stored in flash on IOS devices. Updated PDLMs are provided by Cisco so that IOS devices can recognize newer application types. NBAR has specific requirements and limitations: NBAR requires that Cisco Express Forwarding (CEF) be enabled. NBAR does not support Fast EtherChannel interfaces. NBAR supports only 24 concurrent host, URL, or MIME types. NBAR can only analyze the first 400 bytes of a packet. Note: This restriction is only for IOS versions previous to 12.3(7), which removed this restriction. NBAR cannot read sub-protocol information in secure (encrypted) traffic types, such as HTTPS. NBAR does not support fragmented packets. (Reference Reference: CCNP ONT Official Exam Certification Guide. Amir Ranjbar. Pages :
7 7 Configuring NBAR To enable NBAR Protocol Discovery on an interface: Router(config)# ip cef Router(config)# interface fa0/0 Router(config-if)# ip nbar protocol-discovery To view statistics for NBAR-discovered protocol traffic: Router# show ip nbar protocol-discovery FastEthernet0/0 Input Output Protocol Packet Count Packet Count Byte Count Byte Count 30sec Bit Rate 30sec Bit Rate 30sec Max Bit Rate 30sec Max Bit Rate http ftp NBAR classification occurs within a MQC class-map, using the match protocol command: Router(config)# class-map match-any LOWCLASS Router(config-cmap)# match protocol http Router(config-cmap)# match protocol ftp Matching traffic based on sub-protocol information supports wildcards: Router(config)# class-map match-any HICLASS Router(config-cmap)# match protocol http host *routeralley.com* Router(config-cmap)# match protocol http mime *pdf Custom protocol types can be manually added to the NBAR database: Router(config)# ip nbar port-map MYPROTOCOL tcp 1982 Updated PDLMs can be downloaded into flash and then referenced for NBAR: Router(config)# ip nbar pdlm flash://unrealtournament.pdlm (Reference:
8 8 Creating and Applying a QoS Policy using MQC After traffic has been appropriately classified, policy-maps are used to dictate how that traffic should be treated (the per-hop behavior). Router(config)# policy-map THEPOLICY Router(config-pmap)# class LOWCLASS Router(config-pmap-c)# set ip precedence 1 Router(config-pmap)# class HICLASS Router(config-pmap-c)# set ip dscp af41 The policy-map command creates a policy named THEPOLICY. The class commands associate the LOWCLASS and HICLASS class-maps created earlier to this policy-map. Within the policy-map class sub-configuration mode, set statements are used to specify the desired actions for the classified traffic. In the above example, specific ip precedence or ip dscp values have been marked on their respective traffic classes. A wide variety of policy actions are available: Router(config)# policy-map LOWPOLICY Router(config-pmap)# class LOWCLASS Router(config-pmap-c)# bandwidth 64 Router(config-pmap-c)# queue-limit 40 Router(config-pmap-c)# random-detect The above is by no means a comprehensive list of policy actions. Reference the link below for a more complete list. Policy actions such as queuing and congestion avoidance will be covered in great detail in other guides. Once the appropriate class-map(s) and policy are created, the policy must be applied directionally to an interface. An interface can have up to two QoS policies, one each for inbound and outbound traffic. Router(config)# int fa0/0 Router(config-if)# service-policy input THEPOLICY Any traffic matching the criteria of class-maps LOWCLASS and HICLASS, coming inbound on interface fa0/0, will have the actions specified in the policy-map THEPOLICY applied. (Reference:
9 9 Troubleshooting MQC QoS To view all configured class-maps: Router# show class-map Class Map LOWCLASS Match access-group 101 Class Map HICLASS Match protocol http host *routeralley.com* Match protocol http mime *pdf To view all configured policy-maps: Router# show policy-map Policy Map THEPOLICY Class LOWCLASS set ip precedence 1 Class HIGHCLASS set ip dscp af41 To view the statistics of a policy-map on a specific interface: Router# show policy-map interface fastethernet0/1 FastEthernet0/0 Service-policy input: THEPOLICY Class-map: LOWCLASS (match-all) packets, bytes 1 minute offered rate bps, drop rate 0 bps Match: access-group 101 QoS Set ip precedence 1 Packets marked 15648
- 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 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
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
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
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 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
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.
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
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,
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
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
Traffic Classification
CHAPTER 5 In a typical network, the traffic through the network is heterogeneous and consists of flows from multiple applications and utilities. Many of these applications are unique and have their own
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
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
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
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,
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
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
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
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
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
"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,
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
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
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
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. 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
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
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:
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
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
Lab 3.3 Configuring QoS with SDM
Lab 3.3 Configuring QoS with SDM Learning Objectives Configure Quality of Service tools with the SDM QoS wizard Monitor traffic patterns using the SDM QoS interface Topology Diagram Scenario Cisco Security
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
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
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...
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
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
Lab 8: Confi guring QoS
Lab 8: Objective Implement QoS, mark traffi c, and display and interpret QoS output. Lab Topology For this lab, your network design will include two pods of devices. You will be responsible for confi guring
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
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
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;
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 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 Server Load Balancing
CHAPTER 6 This chapter describes how to configure server load balancing (SLB) on the Cisco Application Control Engine (ACE) module. This chapter contains the following sections: Information About Server
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
Lab 4.2.3 Analyzing Network Traffic
Lab 4.2.3 Analyzing Network Traffic Objective Device Designation Device Name Address Subnet Mask Discovery Server Network Services 172.17.1.1 255.255.0.0 R1 FC-CPE-1 Fa0/1 172.17.0.1 Fa0/0 10.0.0.1 255.255.0.0
Configuring Class Maps and Policy Maps
CHAPTER 4 Configuring Class Maps and Policy Maps This chapter describes how to configure class maps and policy maps to provide a global level of classification for filtering traffic received by or passing
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
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
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
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
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
Introduction to Differentiated Services (DiffServ) and HP-UX IPQoS
Introduction to Differentiated Services (DiffServ) and HP-UX IPQoS What is Quality of Service (QoS)?... 2 Differentiated Services (DiffServ)... 2 Overview... 2 Example XYZ Corporation... 2 Components of
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
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
Cisco Performance Agent Data Source Configuration in the Branch-Office Router
Deployment Guide Cisco Performance Agent Figure 1. Application visibility in all network segments using Performance Agent in branch office Cisco Performance Agent is a licensed software feature of Cisco
Internetwork Expert s CCNA Security Bootcamp. IOS Firewall Feature Set. Firewall Design Overview
Internetwork Expert s CCNA Security Bootcamp IOS Firewall Feature Set http:// Firewall Design Overview Firewall defines traffic interaction between zones or trust levels e.g. ASA security-level Common
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
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,
enetworks TM IP Quality of Service B.1 Overview of IP Prioritization
encor! enetworks TM Version A, March 2008 2010 Encore Networks, Inc. All rights reserved. IP Quality of Service The IP Quality of Service (QoS) feature allows you to assign packets a level of priority
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 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
Cisco IOS MPLS configuration
Introduction Cisco IOS MPLS configuration MPLS can be configured over different platforms It can be implemented on a purely router-based Internet backbone over an ATM switchednetwork -MPLS enables an ATM
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
Certes Networks Layer 4 Encryption. Network Services Impact Test Results
Certes Networks Layer 4 Encryption Network Services Impact Test Results Executive Summary One of the largest service providers in the United States tested Certes Networks Layer 4 payload encryption over
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
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
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
Enabling Remote Access to the ACE
CHAPTER 2 This chapter describes how to configure remote access to the Cisco Application Control Engine (ACE) module by establishing a remote connection by using the Secure Shell (SSH) or Telnet protocols.
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.
Addition of QoS Services to an MPLS-enabled Network
Addition of QoS Services to an MPLS-enabled Network An OPNET Methodology OPNET Technologies, Inc. 7255 Woodmont Avenue Bethesda, MD 20814 240.497.3000 http://www.opnet.com Last Modified Jun 26, 2002 Disclaimer:
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
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.
- Multiprotocol Label Switching -
1 - Multiprotocol Label Switching - Multiprotocol Label Switching Multiprotocol Label Switching (MPLS) is a Layer-2 switching technology. MPLS-enabled routers apply numerical labels to packets, and can
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
A Preferred Service Architecture for Payload Data Flows. Ray Gilstrap, Thom Stone, Ken Freeman
A Preferred Service Architecture for Payload Data Flows Ray Gilstrap, Thom Stone, Ken Freeman NASA Research and Engineering Network NASA Advanced Supercomputing Division NASA Ames Research Center Outline
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,
MINIMUM NETWORK REQUIREMENTS 1. REQUIREMENTS SUMMARY... 1
Table of Contents 1. REQUIREMENTS SUMMARY... 1 2. REQUIREMENTS DETAIL... 2 2.1 DHCP SERVER... 2 2.2 DNS SERVER... 2 2.3 FIREWALLS... 3 2.4 NETWORK ADDRESS TRANSLATION... 4 2.5 APPLICATION LAYER GATEWAY...
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
Quality of Service (QoS): Managing Bandwidth More Effectively on the Series 2600/2600-PWR and Series 2800 Switches
6 Quality of Service (QoS): Managing Bandwidth More Effectively on the Series 2600/2600-PWR and Series 2800 Switches Contents Introduction................................................... 6-3 Terminology................................................
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
Firewall Stateful Inspection of ICMP
The feature categorizes Internet Control Management Protocol Version 4 (ICMPv4) messages as either malicious or benign. The firewall uses stateful inspection to trust benign ICMPv4 messages that are generated
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
Troubleshooting the Firewall Services Module
25 CHAPTER This chapter describes how to troubleshoot the FWSM, and includes the following sections: Testing Your Configuration, page 25-1 Reloading the FWSM, page 25-6 Performing Password Recovery, page
How To Create A Qos
WHITE PAPER Three Steps to Success with QoS A Riverbed White Paper Introduction: QoS ensures predictable application performance QoS is one of the most widely deployed networking technologies. It is a
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
Lab 3.8.3 Configure Cisco IOS Firewall CBAC on a Cisco Router
Lab 3.8.3 Configure Cisco IOS Firewall CBAC on a Cisco Router Objective Scenario Topology Estimated Time: 35 minutes Number of Team Members: Two teams with four students per team In this lab exercise,
Figure 1: Network Topology
Improving NGN with QoS Strategies Marcel C. Castro, Tatiana B. Pereira, Thiago L. Resende CPqD Telecom & IT Solutions Campinas, S.P., Brazil E-mail: {mcastro; tatibp; tresende}@cpqd.com.br Abstract Voice,
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
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 EtherChannels
CHAPTER 12 This chapter describes how to configure EtherChannels on the Cisco 7600 series router Layer 2 or Layer 3 LAN ports. For complete syntax and usage information for the commands used in this chapter,
Implementing Cisco Voice Communications and QoS
Implementing Cisco Voice Communications and QoS Course CVOICE v8.0; 5 Days, Instructor-led Course Description Implementing Cisco Voice Communications and QoS (CVOICE) v8.0 teaches learners about voice
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
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
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
