- Table of Contents
-
- H3C S12500R Ethernet Switch Router Series Config Examples-Release 36xx-6W100
- 01-Login Management Configuration Examples
- 02-RBAC Configuration Examples
- 03-Software Upgrade Examples
- 04-Ethernet Link Aggregation Configuration Examples
- 05-Port Isolation Configuration Examples
- 06-Spanning Tree Configuration Examples
- 07-VLAN Configuration Examples
- 08-VLAN Tagging Configuration Examples
- 09-DHCP Snooping Configuration Examples
- 10-Cross-Subnet Dynamic IP Address Allocation Configuration Examples
- 11-IPv6 over IPv4 Tunneling with OSPFv3 Configuration Examples
- 12-GRE Tunnel Configuration Examples
- 13-GRE with OSPF Configuration Examples
- 14-OSPF Configuration Examples
- 15-IS-IS Configuration Examples
- 16-BGP Configuration Examples
- 17-Policy-Based Routing Configuration Examples
- 18-OSPFv3 Configuration Examples
- 19-IPv6 IS-IS Configuration Examples
- 20-Routing Policy Configuration Examples
- 21-IGMP Snooping Configuration Examples
- 22-IGMP Configuration Examples
- 23-MLD Snooping Configuration Examples
- 24-Basic MPLS Configuration Examples
- 25-MPLS L3VPN Configuration Examples
- 26-ACL Configuration Examples
- 27-Control Plane-Based QoS Policy Configuration Examples
- 28-Traffic Policing Configuration Examples
- 29-GTS and Rate Limiting Configuration Examples
- 30-Priority Mapping and Queue Scheduling Configuration Examples
- 31-Traffic Filtering Configuration Examples
- 32-AAA Configuration Examples
- 33-SSH Configuration Examples
- 34-IP Source Guard Configuration Examples
- 35-Ethernet OAM Configuration Examples
- 36-CFD Configuration Examples
- 37-DLDP Configuration Examples
- 38-VRRP Configuration Examples
- 39-BFD Configuration Examples
- 40-NTP Configuration Examples
- 41-SNMP Configuration Examples
- 42-NQA Configuration Examples
- 43-Mirroring Configuration Examples
- 44-sFlow Configuration Examples
- 45-OpenFlow Configuration Examples
- 46-MAC Address Table Configuration Examples
- 47-Static Multicast MAC Address Entry Configuration Examples
- 48-IP Unnumbered Configuration Examples
- 49-Congestion Avoidance and Queue Scheduling Configuration Examples
- 50-Attack Protection Configuration Examples
- 51-Smart Link Configuration Examples
- 52-RRPP Configuration Examples
- 53-BGP Route Selection Configuration Examples
- 54-IS-IS Route Summarization Configuration Examples
- 55-MPLS OAM Configuration Examples
- 56-MPLS TE Configuration Examples
- 57-VXLAN Configuration Examples
- 58-NetStream Configuration Examples
- 59-EVPN-DCI over an MPLS L3VPN Network Configuration Examples
- 60-PTP Configuration Examples
- 61-S-MLAG Configuration Examples
- 62-MPLS SR Configuration Examples
- 63-Puppet Configuration Examples
- Related Documents
-
Title | Size | Download |
---|---|---|
29-GTS and Rate Limiting Configuration Examples | 146.71 KB |
|
H3C S12500R Switch Router Series |
GTS and Rate Limiting Configuration Examples |
|
Copyright © 2021 New H3C Technologies Co., Ltd. All rights reserved.
No part of this manual may be reproduced or transmitted in any form or by any means without prior written consent of New H3C Technologies Co., Ltd.
Except for the trademarks of New H3C Technologies Co., Ltd., any trademarks that may be mentioned in this document are the property of their respective owners.
The information in this document is subject to change without notice.
Introduction
This document provides GTS and rate limiting configuration examples.
Prerequisites
The configuration examples in this document were created and verified in a lab environment, and all the devices were started with the factory default configuration. When you are working on a live network, make sure you understand the potential impact of every command on your network.
This document assumes that you have basic knowledge of GTS and rate limiting.
Example: Configuring GTS and rate limiting
Network configuration
As shown in Figure 1, the 15-Mbps dedicated line transmits the FTP traffic, business-specific application traffic, and IP voice traffic between the headquarters and branch of a company.
The following traffic policing settings have been configured on the edge device (Switch B) of the headquarters:
· CIR of 10 Mbps for IP voice traffic.
· CIR of 3 Mbps for business-specific application traffic.
· CIR of 7 Mbps for FTP traffic.
Configure traffic shaping on the edge device (Switch A) of the branch to buffer excess traffic of each traffic type.
Configure rate limiting on Switch A to limit the outgoing traffic rate to 15 Mbps.
Analysis
To meet the network requirements, you must perform the following tasks:
· To implement GTS, first determine the queue that transmits a type of traffic. In this example, the priorities of these types of traffic are not provided. You need to use priority marking to manually assign packets to different queues.
· You can manually assign packets to queues by marking DSCP values, 802.1p priority values, or local precedence values. To keep the contents of packets unchanged, mark local precedence values for packets.
Software versions used
This configuration example was created and verified on Release 3606.
Restrictions and guidelines
By default, interfaces on the device are disabled (in ADM or Administratively Down state). To have an interface operate, you must use the undo shutdown command to enable that interface.
Procedures
Before configuring GTS and rate limiting, make sure there is network connectivity between the branch and headquarters.
This section does not describe the configurations for enabling network connectivity.
Configuring priority marking
1. Create three traffic classes to match the three traffic types:
# Configure basic IPv4 ACL 2000 to match IP voice traffic (traffic from subnet 192.168.3.0/24).
<SwitchA> system-view
[SwitchA] acl basic 2000
[SwitchA-acl-ipv4-basic-2000] rule permit source 192.168.3.0 0.0.0.255
[SwitchA-acl-ipv4-basic-2000] quit
# Create a class named voice, and use ACL 2000 as the match criterion.
[SwitchA] traffic classifier voice
[SwitchA-classifier-voice] if-match acl 2000
[SwitchA-classifier-voice] quit
# Configure basic IPv4 ACL 2001 to match application traffic (traffic from subnet 192.168.2.0/24).
[SwitchA] acl basic 2001
[SwitchA-acl-ipv4-basic-2001] rule permit source 192.168.2.0 0.0.0.255
[SwitchA-acl-ipv4-basic-2001] quit
# Create a class named service, and use ACL 2001 as the match criterion.
[SwitchA] traffic classifier service
[SwitchA-classifier-service] if-match acl 2001
[SwitchA-classifier-service] quit
# Configure advanced IPv4 ACL 3000 to match FTP traffic (traffic from subnet 192.168.1.0/24 and with destination port number 20).
[SwitchA] acl advanced 3000
[SwitchA-acl-ipv4-adv-3000] rule permit tcp destination-port eq 20 source 192.168.1.0 0.0.0.255
[SwitchA-acl-ipv4-adv-3000] quit
# Create a class named ftp, and use ACL 3000 as the match criterion.
[SwitchA] traffic classifier ftp
[SwitchA-classifier-ftp] if-match acl 3000
[SwitchA-classifier-ftp] quit
2. Create three traffic behaviors:
# Create a behavior named voice, and configure the behavior to mark packets with local precedence 6 (corresponding to queue 6).
[SwitchA] traffic behavior voice
[SwitchA-behavior-voice] remark local-precedence 6
[SwitchA-behavior-voice] quit
# Create a behavior named service, and configure the behavior to mark packets with local precedence 4 (corresponding to queue 4).
[SwitchA] traffic behavior service
[SwitchA-behavior-service] remark local-precedence 4
[SwitchA-behavior-service] quit
# Create a behavior named ftp, and configure the behavior to mark packets with local precedence 2 (corresponding to queue 2).
[SwitchA] traffic behavior ftp
[SwitchA-behavior-ftp] remark local-precedence 2
[SwitchA-behavior-ftp] quit
3. Configure and apply a QoS policy:
# Create a QoS policy named shaping, and associate the three classes with their respective behaviors in the QoS policy.
[SwitchA] qos policy shaping
[SwitchA-qospolicy-shaping] classifier voice behavior voice
[SwitchA-qospolicy-shaping] classifier service behavior service
[SwitchA-qospolicy-shaping] classifier ftp behavior ftp
[SwitchA-qospolicy-shaping] quit
# Apply the QoS policy shaping to the inbound direction of HundredGigE 1/0/2.
[SwitchA] interface hundredgige 1/0/2
[SwitchA-HundredGigE1/0/2] qos apply policy shaping inbound
[SwitchA-HundredGigE1/0/2] quit
Configuring GTS
# Configure GTS on HundredGigE 1/0/1 to set the CIR to 10 Mbps for queue 6 (IP voice traffic).
[SwitchA] interface hundredgige 1/0/1
[SwitchA-HundredGigE1/0/1] qos gts queue 6 cir 10240
# Configure GTS on HundredGigE 1/0/1 to set the CIR to 3 Mbps for queue 4 (application traffic).
[SwitchA-HundredGigE1/0/1] qos gts queue 4 cir 3072
# Configure GTS on HundredGigE 1/0/1 to set the CIR to 7 Mbps for queue 2 (FTP traffic).
[SwitchA-HundredGigE1/0/1] qos gts queue 2 cir 7168
Configuring rate limiting
# Configure rate limiting on HundredGigE 1/0/1 to set the CIR to 15 Mbps for outgoing traffic.
[SwitchA-HundredGigE1/0/1] qos lr outbound cir 15360
Verifying the configuration
# Verify the priority marking settings of HundredGigE 1/0/2.
<Sysname> display qos policy interface inbound
Interface: HundredGigE1/0/2
Direction: Inbound
Policy: shaping
Classifier: voice
Operator: AND
Rule(s) :
If-match acl 2000
Behavior: voice
Marking:
Remark local-precedence 6
Classifier: service
Operator: AND
Rule(s) :
If-match acl 2001
Behavior: service
Marking:
Remark local-precedence 4
Classifier: ftp
Operator: AND
Rule(s) :
If-match acl 3000
Behavior: ftp
Marking:
Remark local-precedence 2
# Verify the GTS settings on HundredGigE 1/0/1.
<Sysname> display qos gts interface
Interface: HundredGigE1/0/1
Rule: If-match queue 6
CIR 10240 (kbps), CBS 640000 (Bytes)
Rule: If-match queue 4
CIR 3072 (kbps), CBS 192000 (Bytes)
Rule: If-match queue 2
CIR 7168 (kbps), CBS 448000 (Bytes)
# Verify the rate limiting settings on HundredGigE 1/0/1.
<Sysname> display qos lr interface
Interface: HundredGigE1/0/1
Direction: Outbound
CIR 15360 (kbps), CBS 960000 (Bytes)
Configuration files
#
acl basic 2000
rule 0 permit source 192.168.3.0 0.0.0.255
#
acl basic 2001
rule 0 permit source 192.168.2.0 0.0.0.255
#
acl advanced 3000
rule 0 permit tcp source 192.168.1.0 0.0.0.255 destination-port eq ftp-data
#
traffic classifier ftp operator and
if-match acl 3000
#
traffic classifier service operator and
if-match acl 2001
#
traffic classifier voice operator and
if-match acl 2000
#
traffic behavior ftp
remark local-precedence 2
#
traffic behavior service
remark local-precedence 4
#
traffic behavior voice
remark local-precedence 6
#
qos policy shaping
classifier voice behavior voice
classifier service behavior service
classifier ftp behavior ftp
#
interface HundredGigE1/0/1
port link-mode route
qos lr outbound cir 15360 cbs 960000
qos gts queue 6 cir 10240 cbs 640000
qos gts queue 4 cir 3072 cbs 192000
qos gts queue 2 cir 7168 cbs 448000
#
interface HundredGigE1/0/2
port link-mode route
qos apply policy shaping inbound
#
return
Related documentation
· H3C S12500R Switch Router Series ACL and QoS Command Reference-R3606
· H3C S12500R Switch Router Series ACL and QoS Configuration Guide-R3606