All DDoS Definitions
DDoS Testing Definition

ACL (Access Control List)

An ACL (access control list) is a network-layer defensive control that permits or denies packets by matching fields such as source and destination IP, port, and protocol, enforced at a router, firewall, or cloud security group. ACLs are stateless and evaluated in order, making them a cheap first line of filtering: a rule that drops a spoofed source range or an unused UDP port discards that traffic before stateful inspection or application logic ever sees it.

ACL: ordered, stateless, first match wins UDP/19 packet chargen amplification TCP/443 request a real client Access control list 1 deny udp/19 DROP 2 deny 198.51.100.0/24 DROP 3 permit tcp/443 ALLOW 4 default deny DROP Dropped at rule 1 before stateful inspection Permitted at rule 3 passed to the app Cheap at line rate, but a broad rule can catch real users and a flood can saturate the link before the ACL runs. A test confirms which vectors the ACLs actually stop, and which slip past broad or missing rules. BlackNeuron
Diagram: an ACL matches each packet against ordered stateless rules and permits or denies on the first match

Why it matters in DDoS testing

ACLs are the blunt instrument that absorbs the easy fraction of an attack, blocking amplification source ports, unused protocols, and known-bad ranges at line rate. Their limits are reach (a volumetric flood can saturate the link before the ACL runs) and precision (broad rules risk dropping legitimate traffic). A test confirms which vectors the ACLs actually stop, drawing on the attack mechanics in Understanding DDoS Attack Vectors.