Random Early Detection (RED) is implemented at the core routers of a network. Edge routers assign IP precedences to packets,
as the packets enter the network. With RED, core routers then use these precedences to determine how to treat different types
of traffic. RED provides a single threshold and weights per traffic class or queue for different IP precedences.
ECN is an extension to RED. ECN marks packets instead of dropping them when the average queue length exceeds a specific threshold
value. When configured, ECN helps routers and end hosts to understand that the network is congested and slow down sending
packets. However, if the queue length is above the maximum threshold for the extended memory, packets are dropped. This is
the identical treatment that a packet receives when RED is enabled without ECN configured on the router.
RFC 3168, The Addition of Explicit Congestion Notification (ECN) to IP, states that with the addition of active queue management (for example, RED) to the Internet infrastructure, routers are
no longer limited to packet loss as an indication of congestion.
Note
|
You cannot use this feature when you have set qos-group or mpls experimental along with a traffic class in the ingress policy.
|
Implementing ECN
Implementing ECN requires an ECN-specific field that has two bits—the ECN-capable Transport (ECT) bit and the CE (Congestion
Experienced) bit—in the IP header. The ECT bit and the CE bit can be used to make four code points of 00 to 11. The first
number is the ECT bit and the second number is the CE bit.
Table 1. ECN Bit Setting
ECT Bit
|
CE Bit
|
Combination Indicates
|
0
|
0
|
Not-ECN-capable.
|
0
|
1
|
Endpoints of the transport protocol are ECN-capable.
|
1
|
0
|
Endpoints of the transport protocol are ECN-capable.
|
1
|
1
|
Congestion experienced.
|
The ECN field combination 00 indicates that a packet is not using ECN. The code points 01 and 10—Called ECT(1) and ECT(0),
respectively—are set by the data sender to indicate that the endpoints of the transport protocol are ECN-capable. Routers
treat these two code points identically. Data senders can use either one or both of these two combinations. The ECN field
combination 11 indicates congestion to the endpoints. Packets arriving a full queue of a router will be dropped.
Packet Handling When ECN Is Enabled
When ECN is enabled, all packets between <min_threshold> and <max tail drop threshold> are marked with ECN. Three different
scenarios arise if the queue length is between the minimum threshold and the maximum threshold:
-
If the ECN field on the packet indicates that the endpoints are ECN-capable (that is, the ECT bit is set to 1 and the CE bit
is set to 0, or the ECT bit is set to 0 and the CE bit is set to 1)—and the RED algorithm determines that the packet should
have been dropped based on the drop probability—the ECT and CE bits for the packet are changed to 1, and the packet is transmitted.
This happens because ECN is enabled and the packet gets marked instead of dropped.
-
If the ECN field on the packet indicates that neither endpoint is ECN-capable (that is, the ECT bit is set to 0 and the CE
bit is set to 0), the packet is transmitted. If, however, the max tail drop threshold is exceeded, the packet is dropped.
This is the identical treatment that a packet receives when RED is enabled without ECN configured on the router.
-
If the ECN field on the packet indicates that the network is experiencing congestion (that is, both the ECT bit and the CE
bit are set to 1), the packet is transmitted. No further marking is required.
Configuration Example
Router# configure
Router(config)# policy-map policy1
Router(config-pmap)# class class1
Router(config-pmap-c)# bandwidth percent 50
Router(config-pmap-c)# random-detect 1000 packets 2000 packets
Router(config-pmap-c)# random-detect ecn
Router(config-pmap-c)# exit
Router(config-pmap)# exit
Router(config)# commit
Verification
Use the show policy-map interface to verify the configuration.
Router# show policy-map int hu 0/0/0/35 output
TenGigE0/0/0/6 output: pm-out-queue
HundredGigE0/0/0/35 output: egress_qosgrp_ecn
Class tc7
Classification statistics (packets/bytes) (rate - kbps)
Matched : 195987503/200691203072 0
Transmitted : 188830570/193362503680 0
Total Dropped : 7156933/7328699392 0
Queueing statistics
Queue ID : 18183
Taildropped(packets/bytes) : 7156933/7328699392
WRED profile for
RED Transmitted (packets/bytes) : N/A
RED random drops(packets/bytes) : N/A
RED maxthreshold drops(packets/bytes) : N/A
RED ecn marked & transmitted(packets/bytes): 188696802/193225525248
Class tc6
Classification statistics (packets/bytes) (rate - kbps)
Matched : 666803815/133360763000 0
Transmitted : 642172362/128434472400 0
Total Dropped : 24631453/4926290600 0
Queueing statistics
Queue ID : 18182
Taildropped(packets/bytes) : 24631453/4926290600
WRED profile for
RED Transmitted (packets/bytes) : N/A
RED random drops(packets/bytes) : N/A
RED maxthreshold drops(packets/bytes) : N/A
RED ecn marked & transmitted(packets/bytes): 641807908/128361581600
Class tc5
Classification statistics (packets/bytes) (rate - kbps)
Matched : 413636363/82727272600 6138
Transmitted : 398742312/79748462400 5903
Total Dropped : 14894051/2978810200 235
Queueing statistics
Queue ID : 18181
Taildropped(packets/bytes) : 14894051/2978810200
WRED profile for
RED Transmitted (packets/bytes) : N/A
RED random drops(packets/bytes) : N/A
RED maxthreshold drops(packets/bytes) : N/A
RED ecn marked & transmitted(packets/bytes): 398377929/79675585800
Note
|
The RED ecn marked & transmitted(packets/bytes) row displays the statistics for ECN marked packets. To begin with, it displays 0/0.
|