Robust random early detection


Robust random early detection is a queueing disclipine for a network scheduler. The existing random early detection algorithm and its variants are found vulnerable to emerging attacks, especially the Low-rate Denial-of-Service attacks. Experiments have confirmed that the existing RED-like algorithms are notably vulnerable under LDoS attacks due to the oscillating TCP queue size caused by the attacks.
The Robust RED algorithm was proposed to improve the TCP throughput against LDoS attacks. The basic idea behind the RRED is to detect and filter out attack packets before a normal RED algorithm is applied to incoming flows. RRED algorithm can significantly improve the performance of TCP under Low-rate denial-of-service attacks.

The design of Robust RED (RRED)

A detection and filter block is added in front of a regular RED block on a router. The basic idea behind the RRED is to detect and filter out LDoS attack packets from incoming flows before they feed to the RED algorithm. How to distinguish an attacking packet from normal TCP packets is critical in the RRED design.
Within a benign TCP flow, the sender will delay sending new packets if loss is detected. Consequently, a packet is suspected to be an attacking packet if it is sent within a short-range after a packet is dropped. This is the basic idea of the detection algorithm of Robust RED.

Algorithm of the Robust RED (RRED)

algorithm RRED-ENQUE
01 f ← RRED-FLOWHASH
02 Tmax ← MAX
03 if pkt.arrivaltime is within then
04 reduce local indicator by 1 for each bin corresponding to f
05 else
06 increase local indicator by 1 for each bin of f
07 Flow.I ← maximum of local indicators from bins of f
08 if Flow.I >=0 then
09 RED-ENQUE // pass pkt to the RED block
10 if RED drops pkt then
11 T2 ← pkt.arrivaltime
12 else
13 Flow.T1 ← pkt.arrivaltime
14 drop
15 return
The simulation code of the RRED algorithm is published as an active queue management and denial-of-service attack simulation platform. The is able to simulate a variety of DoS attacks and active queue management algorithms. It automatically calculates and records the average throughput of normal TCP flows before and after DoS attacks to facilitate the analysis of the impact of DoS attacks on normal TCP flows and AQM algorithms.