Ethernet Overhead Accounting
|
|
|
- Ross McBride
- 10 years ago
- Views:
Transcription
1 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 How to Configure, page 5 Configuration Examples for, page 8 Additional References, page 9 Feature Information for, page 10 Finding Feature Information Your software release may not support all the features documented in this module. For the latest caveats and feature information, see Bug Search Tool and the release notes for your platform and software release. To find information about the features documented in this module, and to see a list of the releases in which each feature is supported, see the feature information table at the end of this module. Use Cisco Feature Navigator to find information about platform support and Cisco software image support. To access Cisco Feature Navigator, go to An account on Cisco.com is not required. Restrictions for Ethernet overhead accounting allows the automatic inclusion of downstream Ethernet frame headers in the shaped rate. Overhead accounting is not supported in the policed rate regardless of overhead accounting configuration in any level of the policy (including the parent/grandparent). The router supports overhead accounting only for the shape and bandwidth commands. 1
2 Information About If you enable overhead accounting on a child policy, then you must enable overhead accounting on the parent policy. In a policy map, you must either enable overhead accounting for all classes in the policy or disable overhead accounting for all classes in the policy. You cannot enable overhead accounting for some classes and disable overhead accounting for other classes in the same policy. Overhead accounting is not reflected in any QoS counters (classification, policing, or queuing). You can enable overhead accounting for shaping and bandwidth on top-level parent policies, middle-level child policies, and bottom-level child policies. Child policies inherit overhead accounting policies that you configure at the parent or grandparent level. The overhead accounting type or value used within a policy map and between the parent policy map and the child policy map (in a hierarchical policy map structure) must be consistent. In releases preceding to Cisco IOS XE Release 3.9S, the router does not support overhead accounting updates on attached policies and the policy must be detached from the interface before the overhead can be modified, then the policy can be re-attached to the interface. The router does not support overhead accounting for classes with fair-queue, which includes the following scenarios: When used in conjunction with shape in the same class When used in conjunction with bandwidth in the same class When inherited from a parent or grandparent class through the Parent Level Overhead Accounting feature introduced in Cisco IOS XE Release 3.9S Information About Benefits of The feature enables the router to account for downstream Ethernet frame headers when applying shaping to packets. A user-defined offset specifies the number of overhead bytes that the router is to use when calculating the overhead per packet. Valid offset values are from +63 bytes to -63 bytes of overhead. Before applying shaping, the router calculates the overhead. Any interface that supports QoS policies will support overhead accounting. Using the shape or bandwidth command, you can configure accounting on the interfaces. Subscriber Line Encapsulation Types The subscriber-encapsulation argument of the shape and bandwidth commands specifies the encapsulation type at the subscriber line. The router supports the following subscriber line encapsulation types: snap-1483routed mux-1483routed snap-dot1q-rbe 2
3 Overhead Calculation on the Router mux-dot1q-rbe snap-pppoa mux-pppoa snap-rbe mux-rbe Overhead Calculation on the Router When calculating overhead for traffic shaping, the router considers the encapsulation type used between the broadband aggregation system (BRAS) and the digital subscriber line access multiplexer (DSLAM) and between the DSLAM and the customer premises equipment (CPE). The table below describes the fields that the router uses for the various encapsulation types when calculating ATM overhead. Table 1: Overhead Calculation Encapsulation Type 802.1Q AAL5 MUX plus 1483 AAL5 MUX plus PPPoA AAL5 SNAP plus 1483 AAL5 SNAP plus PPPoA PPPoE Number of Bytes Description 6-byte destination MAC address + 6-byte source MAC address + 2-byte protocol ID (0x8100) + 2-byte VID/CFI/PRIORITY + 2-byte length/type 6-byte destination MAC address + 6-byte source MAC address + 2-byte protocol ID (0x8000) 8-byte AAL5 trailer 8-byte AAL5 trailer + 2-byte protocol ID (0x002 8-byte AAL5 trailer + 3-byte LLC header (0xAAAA03) + 3-byte OUI (0x0080c2) + 2-byte protocol ID (0x0007) + 2-byte PAD (0x0000) 8-byte AAL5 trailer + 3-byte LLC header (0xFEFE03) + 1-byte protocol ID (0xCF) 1-byte version/type (0x11) + 1-byte code (0x00) + 2-byte session ID + 2-byte lengt 3
4 Overhead Accounting and Hierarchical Policies Encapsulation Type qinq Number of Bytes 22 Description 6-byte destination MAC address + 6-byte source MAC address + 2-byte protocol ID (0x8100) + 2-byte VID/CFI/PRIORITY + 2-byte protocol ID + 2-byte inner tag + 2-byte length or type Overhead Accounting and Hierarchical Policies In hierarchical policies, you can configure overhead accounting for shaping and bandwidth on top-level parent policies, middle-level child policies, and bottom-level child policies. Overhead accounting policies configured at the parent or grandparent level are inherited by the child queueing features. Overhead accounting configured on a child policy must also be configured on the parent policy; therefore configuring on the parent or grandparent level is easier. The parent and child classes must specify the same encapsulation type when enabling overhead accounting and configuring an offset using the user-defined offset [atm] arguments of the bandwidth (policy-map class) command. The table below summarizes the configuration requirements for overhead accounting. Table 2: Overhead Accounting Configuration Requirements Policy Map or Class Parent Child Child class Child class (nonpriority without policing) Child class (priority with policing) Current Configuration Enabled Enabled Enabled Disabled Disabled Configuration Requirement Enabled on child policy Enabled on parent policy Enabled on all classes in the child policy map, except priority classes with policing Disabled on all classes in the child policy map Disabled or enabled on all nonpriority classes in the child policy map Overhead Accounting and Priority Queues Overhead accounting configuration is only supported for shape and bandwidth commands. However, it is possible to have overhead accounting configured on priority queues through inheritance (hierarchical QoS 4
5 How to Configure policies and disjoint QoS hierarchies). When overhead accounting is configured on a priority queue, through inheritance, it operates in the following fashion: Overhead accounting is added to (or subtracted from) the priority packet for queuing features in the hierarchy (for example, shape in the parent class). Overhead accounting is not added to the packet for priority rate enforcement( priority {bandwidth-kbps percent percentage} [burst] ), since it is not supported for policing (rate enforcement is implemented through a conditional policer). How to Configure Configuring in a Hierarchical Policy SUMMARY STEPS 1. enable 2. configure terminal 3. policy-map policy-map-name 4. class class-map-name 5. bandwidth {bandwidth-kbps [remaining] percent percentage} account {qinq dot1q} {aal5 aal3} subscriber-encapsulation user-defined offset [atm] 6. exit 7. policy-map policy-map-name 8. class class-default 9. shape [average] rate account {{qinq dot1q} {aal5 aal3} subscriber-encapsulation user-defined offset [atm]} 10. service-policy policy-map-name 11. end DETAILED STEPS Step 1 Step 2 Command or Action enable Router> enable configure terminal Purpose Enables privileged EXEC mode. Enter your password if prompted. Enters global configuration mode. Router# configure terminal 5
6 Configuring in a Hierarchical Policy Step 3 Command or Action policy-map policy-map-name Router(config)# policy-map Business Purpose Creates or modifies the child policy. Enters policy-map configuration mode. The policy-map-name argument represents the name of the child policy map. Step 4 Step 5 class class-map-name Router(config-pmap)# class video Router(config-pmap-c)# bandwidth 8000 account dot1q aal5 snap-pppoa Assigns the traffic class you specify to the policy map. Enters policy-map class configuration mode. The class-map-name argument represents the name of a previously configured class map. bandwidth {bandwidth-kbps Enables class-based fair queueing and overhead accounting. [remaining] percent percentage} account {qinq dot1q} {aal5 aal3} bandwidth-kbps The minimum bandwidth allocated for a class belonging subscriber-encapsulation user-defined to a policy map. Valid values are from 8 to 2,488,320, which represents from 1 to 99 percent of the link bandwidth. offset [atm] percentage The maximum percentage of the link bandwidth allocated for a class belonging to a policy map. Valid values are from 1 to 99. remaining percentage The minimum percentage of unused link bandwidth allocated for a class belonging to a policy map. Valid values are from 1 to 99. account Enables ATM overhead accounting. qinq Specifies queue-in-queue encapsulation as the BRAS-DSLAM encapsulation type. dot1q Specifies IEEE 802.1Q VLAN encapsulation as the BRAS-DSLAM encapsulation type. aal5 Specifies the ATM Adaptation Layer 5 that supports connection-oriented variable bit rate (VBR) services. aal3 Specifies the ATM Adaptation Layer 5 that supports both connectionless and connection-oriented links. subscriber-encapsulation Specifies the encapsulation type at the subscriber line. For more information, see the Configuring Ethernet Overhead Accounting in a Hierarchical Policy section. user-defined Indicates that the router is to use the offset value that you specify when calculating ATM overhead. offset Specifies the number of bytes that the router is to use when calculating overhead. Valid values are from -63 to 63 bytes. atm (Optional) Applies the ATM cell tax in the ATM overhead calculation. 6
7 Configuring in a Hierarchical Policy Step 6 Command or Action exit Purpose Exits policy-map class configuration mode. Step 7 Step 8 router(config-pmap-c)# exit policy-map policy-map-name Router(config-pmap)# policy-map Test class class-default Creates or modifies the top-level parent policy. policy-map-name Specifies the name of the parent policy map. Specifies a default class. Router(config-pmap)# class class-default Step 9 shape [average] rate account {{qinq dot1q} {aal5 aal3} subscriber-encapsulation user-defined offset [atm]} Router(config-pmap-c)# shape 8000 account qinq aal5 snap-dot1-rbe Shapes traffic to the indicated bit rate and enables overhead accounting. average (Optional) Is the committed burst (Bc) that specifies the maximum number of bits sent out in each interval. This option is only supported on the PRE3. rate Indicates the bit rate used to shape the traffic, in bits per second. When this command is used with backward explicit congestion notification (BECN) approximation, the bit rate is the upper bound of the range of bit rates that are permitted. account Enables ATM overhead accounting. qinq Specifies queue-in-queue encapsulation as the BRAS-DSLAM encapsulation type. dot1q Specifies IEEE 802.1Q VLAN encapsulation as the BRAS-DSLAM encapsulation type. aal5 Specifies the ATM Adaptation Layer 5 that supports connection-oriented variable bit rate (VBR) services. aal3 Specifies the ATM Adaptation Layer 5 that supports both connectionless and connection-oriented links. subscriber-encapsulation Specifies the encapsulation type at the subscriber line. For more information, see the Configuring Ethernet Overhead Accounting in a Hierarchical Policy section. user-defined Indicates that the router is to use the offset value that you specify when calculating ATM overhead. offset Specifies the number of bytes that the router is to use when calculating overhead. Valid values are from -63 to 63 bytes. atm (Optional) Applies the ATM cell tax in the ATM overhead calculation. 7
8 Configuration Examples for Step 10 Step 11 Command or Action service-policy policy-map-name Router(config-pmap-c)# service-policy map1 end Purpose Configuring both the offset and atm options adjusts the packet size to the offset size and then adds the ATM cell tax. Applies a child policy to the parent class-default class. policy-map-name Specifies the name of a previously configured child policy map. Note Do not specify the input or output keywords when applying a child policy to a parent class-default class. Router(config-pmap-c)# end Configuration Examples for Enabling The following configuration example shows how to enable Ethernet overhead accounting. In the example, the configuration of the policy map named ethernet_ovrh shapes class-default traffic at a rate of 200,000 kbps and enables overhead accounting with a user-defined value of 18. The ethernet_ovrh policy is attached to Gigabit Ethernet subinterface 1/0/0.100, thereby enabling overhead accounting on the subinterface. Router# configure-terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)# policy-map ethernet_ovrh Router(config-pmap)# class class-default Router(config-pmap-c)# shape average account user-defined 18! Router(config)# interface GigabitEthernet1/0/0.100 Router(config-subif)# service-policy output ethernet_ovrh! Router# show running-config begin 1/0/0.100 interface GigabitEthernet1/0/0.100 encapsulation dot1q 101 pppoe enable group group_pta service-policy output ethernet_ovrh Verifying with User-Defined Option The following sample output for the policy map named ethernet_ovrh indicates that Ethernet overhead accounting is enabled for shaping and that the user-defined offset is 18 bytes. The sample output from the 8
9 Additional References show policy-map command indicates that the ethernet_ovrh policy map is attached to the Gigabit Ethernet subinterface 1/0/0.100, enabling overhead accounting on the subinterface. Router# show policy-map ethernet_ovrh Policy Map ethernet_ovrh Class class-default Average Rate Traffic Shaping cir (bps) account user-defined 18 Router# show policy-map interface GigabitEthernet1/0/0.100 GigabitEthernet1/0/0.100 Service-policy output: ethernet_ovrh Class-map: class-default (match-any) 0 packets, 0 bytes 30 second offered rate 0 bps, drop rate 0 bps Match: any 0 packets, 0 bytes 30 second rate 0 bps Queueing queue limit 8 packets (queue depth/total drops/no-buffer drops) 0/0/0 (pkts output/bytes output) 0/0 shape (average) cir , bc 800, be 800 target shape rate Overhead Accounting Enabled Additional References Related Documents Related Topic Cisco IOS commands QoS commands: complete command syntax, command modes, command history, defaults, usage guidelines, and examples Policing and shaping Class maps Policy maps Document Title Cisco IOS Master Command List, All Releases Cisco IOS Quality of Service Solutions Command Reference Policing and Shaping Overview module Applying QoS Features Using the MQC module Applying QoS Features Using the MQC module Standards Standard No new or modified standards are supported, and support for existing standards has not been modified. Title 9
10 Feature Information for MIBs MIB No new or modified MIBs are supported, and support for existing MIBs has not been modified. MIBs Link To locate and download MIBs for selected platforms, Cisco IOS XE software releases, and feature sets, use Cisco MIB Locator found at the following URL: RFCs RFC No new or modified RFCs are supported, and support for existing RFCs has not been modified. Title Technical Assistance Description The Cisco Support and Documentation website provides online resources to download documentation, software, and tools. Use these resources to install and configure the software and to troubleshoot and resolve technical issues with Cisco products and technologies. Access to most tools on the Cisco Support and Documentation website requires a Cisco.com user ID and password. Link Feature Information for The following table provides release information about the feature or features described in this module. This table lists only the software release that introduced support for a given feature in a given software release train. Unless noted otherwise, subsequent releases of that software release train also support that feature. Use Cisco Feature Navigator to find information about platform support and Cisco software image support. To access Cisco Feature Navigator, go to An account on Cisco.com is not required. 10
11 Feature Information for Table 3: Feature Information for Feature Name Parent Level Overhead Accounting Releases Cisco IOS XE Release 2.4 Cisco IOS XE Release 3.9S Feature Information The feature was introduced on the Cisco ASR 1000 series routers. It enables the router to account for downstream Ethernet frame headers when applying shaping to packets. The Parent Level Overhead Accounting feature was introduced on the Cisco ASR 1000 series routers. It enables child policies to inherit overhead accounting policies that you configure at the parent or grandparent level. 11
12 Feature Information for 12
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
Flow-Based per Port-Channel Load Balancing
The feature allows different flows of traffic over a Gigabit EtherChannel (GEC) interface to be identified based on the packet header and then mapped to the different member links of the port channel.
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,
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
- 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
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
DHCP Server Port-Based Address Allocation
The feature provides port-based address allocation support on the Cisco IOS Dynamic Host Configuration Protocol (DHCP) server for the Ethernet platform. The DHCP server provides address assignment support
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
Call Flows for Simple IP Users
This chapter provides various call flows for simple IP users. Finding Feature Information, page 1 Simple IP Unclassified MAC Authentication (MAC TAL and Web Login) Call Flows, page 1 Finding Feature Information
Image Verification. Finding Feature Information. Restrictions for Image Verification
The feature allows users to automatically verify the integrity of Cisco IOS images. Thus, users can be sure that the image is protected from accidental corruption, which can occur at any time during transit,
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
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
Configuring a Load-Balancing Scheme
This module contains information about Cisco Express Forwarding and describes the tasks for configuring a load-balancing scheme for Cisco Express Forwarding traffic. Load-balancing allows you to optimize
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
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 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
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
Configuring a Load-Balancing Scheme
Configuring a Load-Balancing Scheme Last Updated: October 5, 2011 This module contains information about Cisco Express Forwarding and describes the tasks for configuring a load-balancing scheme for Cisco
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
VRRPv3: Object Tracking Integration
Virtual Router Redundancy Protocol (VRRP) enables a group of devices to form a single virtual device to provide redundancy. The LAN clients then can be configured with the virtual device as the default
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
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
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
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: CBQoS Management Policy-to- Interface Mapping Support Configuration Guide, Cisco IOS XE Release 3S (Cisco ASR 1000)
QoS: CBQoS Management Policy-to- Interface Mapping Support Configuration Guide, Cisco IOS XE Release 3S (Cisco ASR 1000) Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706
- 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.
Controlling Access to a Virtual Terminal Line
Controlling Access to a Virtual Terminal Line First Published: August 18, 2006 Last Updated: August 18, 2006 You can control who can access the virtual terminal lines (vtys) to a router by applying an
Configuring a Load-Balancing Scheme
Configuring a Load-Balancing Scheme Finding Feature Information Configuring a Load-Balancing Scheme Last Updated: August 15, 2011 This module contains information about Cisco Express Forwarding and describes
IPSLA Y1731 On-Demand and Concurrent Operations
IPSLA Y1731 On-Demand and Concurrent Operations This module describes how to configure the IPSLA Y1731 SLM Feature Enhancements feature for enabling real-time Ethernet service troubleshooting for users
Easy Performance Monitor
The chapter describes how to configure (ezpm) for Application Visibility and Control (AVC). Finding Feature Information, page 1 Information About, page 1 How to Configure, page 3 Configuration Examples
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,
Deployment Guidelines for QoS Configuration in DSL Environment
White Paper Deployment Guidelines for QoS Configuration in DSL Environment Overview In the late 1980s, DSL technology was developed to provide higher-speed digital data transmission over local telephone
Easy Performance Monitor
First Published: July 30, 2013 The chapter describes how to configure (ezpm) for Application Visibility and Control (AVC). Finding Feature Information Your software release may not support all the features
RADIUS Server Load Balancing
First Published: March 20, 2006 Last Updated: September 22, 2009 The feature distributes authentication, authorization, and accounting (AAA) authentication and accounting transactions across servers in
Sampled NetFlow. Feature Overview. Benefits
Sampled NetFlow This feature module describes the Sampled NetFlow feature. It includes information on the benefits of the new feature, supported platforms, supported standards, and the commands necessary
BGP Link Bandwidth. Finding Feature Information. Prerequisites for BGP Link Bandwidth
The Border Gateway Protocol (BGP) Link Bandwidth feature is used to advertise the bandwidth of an autonomous system exit link as an extended community. This feature is configured for links between directly
MPLS VPN over mgre. Finding Feature Information. Prerequisites for MPLS VPN over mgre
The feature overcomes the requirement that a carrier support multiprotocol label switching (MPLS) by allowing you to provide MPLS connectivity between networks that are connected by IP-only networks. This
Easy Performance Monitor
The chapter describes how to configure (ezpm) for Application Visibility and Control (AVC). Finding Feature Information, page 1 Information About, page 2 How to Configure, page 4 Verifying Configuration,
GLBP - Gateway Load Balancing Protocol
GLBP - Gateway Load Balancing Protocol Gateway Load Balancing Protocol (GLBP) protects data traffic from a failed router or circuit, like Hot Standby Router Protocol (HSRP) and Virtual Router Redundancy
NetFlow v9 Export Format
NetFlow v9 Export Format With this release, NetFlow can export data in NetFlow v9 (version 9) export format. This format is flexible and extensible, which provides the versatility needed to support new
NetFlow Aggregation. Feature Overview. Aggregation Cache Schemes
NetFlow Aggregation This document describes the Cisco IOS NetFlow Aggregation feature, which allows Cisco NetFlow users to summarize NetFlow export data on an IOS router before the data is exported to
Firewall Stateful Inspection of ICMP
The feature addresses the limitation of qualifying Internet Control Management Protocol (ICMP) messages into either a malicious or benign category by allowing the Cisco IOS firewall to use stateful inspection
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
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.
HTTP 1.1 Web Server and Client
HTTP 1.1 Web Server and Client Finding Feature Information HTTP 1.1 Web Server and Client Last Updated: August 17, 2011 The HTTP 1.1 Web Server and Client feature provides a consistent interface for users
You can specify IPv4 and IPv6 addresses while performing various tasks in this feature. The resource
The feature enables the configuration of a Virtual Private Network (VPN) routing and forwarding instance (VRF) table so that the domain name system (DNS) can forward queries to name servers using the VRF
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 IP SLA Service Performance Testing
9 CHAPTER Configuring IP SLA Service Perfmance Testing First Published: July 2013 Last Updated: November 2013 This chapter describes how to configure the ITU-T Y.1564 Ethernet service perfmance test methodology
Per-Packet Load Balancing
Per-Packet Load Balancing Feature History Release 12.0(19)ST 12.0(21)S 12.0(22)S Modification This feature was introduced on the Cisco 10000 series routers. This feature was introduced on the Cisco 12000
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
Configuring Enhanced Object Tracking
Configuring Enhanced Object Tracking First Published: May 2, 2005 Last Updated: July 1, 2009 Before the introduction of the Enhanced Object Tracking feature, the Hot Standby Router Protocol (HSRP) had
Enhanced Password Security - Phase I
Enhanced Password Security - Phase I Feature History 120(18)S This feature was introduced This document describes the Enhanced Password Security feature in It includes the following sections: Feature Overview,
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
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
Using Link Layer Discovery Protocol in Multivendor Networks
Using Link Layer Discovery Protocol in Multivendor Networks Link Layer Discovery Protocol (LLDP), standardized by the IEEE as part of 802.1ab, enables standardized discovery of nodes, which in turn facilitates
Configuring Port Security
CHAPTER 62 This chapter describes how to configure the port security feature. For complete syntax and usage information for the commands used in this chapter, see the Cisco IOS Master List, at this URL:
Multiprotocol Label Switching Load Balancing
Multiprotocol Label Switching Load Balancing First Published: July 2013 The Cisco ME 3800 and ME 3600 switches support IPv4 and IPv6 load balancing at the LER and LSR. Effective with Cisco IOS Release
Configuring Ethernet over MPLS
18 CHAPTER Configuring Ethernet over MPLS This chapter describes how to configure Ethernet over Multiprotocol Label Switching (EoMPLS) on the ML-Series card. This chapter includes the following major sections:
Configuring SNMP and using the NetFlow MIB to Monitor NetFlow Data
Configuring SNMP and using the NetFlow MIB to Monitor NetFlow Data NetFlow is a technology that provides highly granular per-flow statistics on traffic in a Cisco router. The NetFlow MIB feature provides
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
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
Cisco IOS Flexible NetFlow Command Reference
Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 THE SPECIFICATIONS AND INFORMATION
Network Scenarios Pagina 1 di 35
Network Scenarios Pagina 1 di 35 Table of Contents Network Scenarios Cisco 827 s Network Connections Internet Access Scenarios Before You Configure Your Internet Access Network Replacing a Bridge or Modem
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
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
Configuring DNS. Finding Feature Information
The Domain Name System (DNS) is a distributed database in which you can map hostnames to IP addresses through the DNS protocol from a DNS server. Each unique IP address can have an associated hostname.
BGP Link Bandwidth. Finding Feature Information. Contents
The BGP (Border Gateway Protocol) Link Bandwidth feature is used to advertise the bandwidth of an autonomous system exit link as an extended community. This feature is configured for links between directly
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
Transferring Files Using HTTP or HTTPS
Transferring Files Using HTTP or HTTPS First Published: May 5, 2005 Last Updated: May 14, 2009 Cisco IOS Release 12.4 provides the ability to transfer files between your Cisco IOS software-based device
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
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.
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,
Enhanced Password Security - Phase I
Enhanced Password Security - Phase I Feature History 120(18)S 121(8a)E 122(14)S This feature was introduced Support for this feature was integrated into Cisco IOS Release 121(8a)E This feature was integrated
Implementing MPLS VPNs over IP Tunnels on Cisco IOS XR Software
Implementing MPLS VPNs over IP Tunnels on Cisco IOS XR Software The MPLS VPNs over IP Tunnels feature lets you deploy Layer 3 Virtual Private Netwk (L3VPN) services, over an IP ce netwk, using L2TPv3 multipoint
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
RADIUS Server Load Balancing
The feature distributes authentication, authorization, and accounting (AAA) authentication and accounting transactions across RADIUS servers in a server group These servers can share the AAA transaction
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................................................
Configuring VoIP Call Setup Monitoring
The Cisco IOS IP Service Level Agreements (SLAs) VoIP Call Setup (Post-Dial Delay) Monitoring feature provides the ability to measure your network s response time for setting up a Voice over IP (VoIP)
Traffic Mirroring Commands on the Cisco IOS XR Software
Traffic Mirroring Commands on the Cisco IOS XR Software This module describes the commands used to configure and monitor traffic mirroring. acl, page 2 clear monitor-session counters, page 4 destination
Configuring Aggressive Load Balancing
Finding Feature Information, page 1 Restrictions for Aggressive Load Balancing, page 1 Information for Parameters, page 2 How to Configure Aggressive Load Balancing, page 3 Monitoring Aggressive Load Balancing,
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
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...
DSL Forum. Working Text WT-101
DSL Forum Working Text WT-101 Revision 1 Migration to Ethernet Based DSL Aggregation For Architecture and Transport Working Group May 2004 Abstract: This working text outlines how an ATM aggregation network
Configuring Traffic Storm Control
39 CHAPTER This chapter describes how to configure the traffic storm control feature on the Catalyst 6500 series switches. For complete syntax and usage information for the commands used in this chapter,
Traffic Mirroring Commands on the Cisco ASR 9000 Series Router
Traffic Mirroring Commands on the Cisco ASR 9000 Series Router This module describes the commands used to configure and monitor traffic mirroring. acl, page 2 clear monitor-session counters, page 4 destination
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
Getting Started with Configuring Cisco IOS NetFlow and NetFlow Data Export
Getting Started with Configuring Cisco IOS NetFlow and NetFlow Data Export Last Updated: November 28, 2011 This module contains the minimum amount of information about and instructions necessary for configuring
Configuring IP SLA - Service Performance Testing
Configuring IP SLA - Service Performance Testing This module describes how to configure the ITU-T Y.1564 Ethernet service performance test methodology to measure the ability of a network device to carry
What is VLAN Routing?
Application Note #38 February 2004 What is VLAN Routing? This Application Notes relates to the following Dell product(s): 6024 and 6024F 33xx Abstract Virtual LANs (VLANs) offer a method of dividing one
Configuring DHCP Snooping
CHAPTER 19 This chapter describes how to configure Dynamic Host Configuration Protocol (DHCP) snooping on Catalyst 4500 series switches. It provides guidelines, procedures, and configuration examples.
Configuring SNA Frame Relay Access Support
This chapter describes Frame Relay Access Support (FRAS) for Systems Network Architecture (SNA) devices. It also explains how to configure FRAS and how to use a FRAS host to connect Cisco Frame Relay Access
How To Import Ipv4 From Global To Global On Cisco Vrf.Net (Vf) On A Vf-Net (Virtual Private Network) On Ipv2 (Vfs) On An Ipv3 (Vv
BGP Support for IP Prefix Import from Global Table into a VRF Table The BGP Support for IP Prefix Import from Global Table into a VRF Table feature introduces the capability to import IPv4 unicast prefixes
Configuring Auto-MDIX
Prerequisites for Auto-MDIX, page 1 Restrictions for Auto-MDIX, page 1 Information about, page 1 How to Configure Auto-MDIX, page 2 Example for, page 3 Additional References, page 4 Feature History and
Virtual Fragmentation Reassembly
Virtual Fragmentation Reassembly Currently, the Cisco IOS Firewall specifically context-based access control (CBAC) and the intrusion detection system (IDS) cannot identify the contents of the IP fragments
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
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
Constraining IP Multicast in a Switched Ethernet Network
Constraining IP Multicast in a Switched Ethernet Network This module describes how to configure routers to use the Cisco Group Management Protocol (CGMP) in switched Ethernet networks to control multicast
