0
0
AWScloud~5 mins

Stateless behavior of NACLs in AWS - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does it mean that a Network ACL (NACL) is stateless?
A stateless NACL means it does not remember previous traffic. Each request and response is checked separately against the rules.
Click to reveal answer
beginner
How does stateless behavior affect return traffic in NACLs?
Return traffic must have explicit rules allowing it because NACLs do not automatically allow responses to allowed requests.
Click to reveal answer
intermediate
Why might you need to add both inbound and outbound rules in a NACL?
Because NACLs are stateless, you must allow traffic in both directions explicitly for communication to work.
Click to reveal answer
intermediate
Compare stateful and stateless firewalls in simple terms.
Stateful firewalls remember traffic and automatically allow return traffic. Stateless firewalls like NACLs check each packet alone without memory.
Click to reveal answer
beginner
What happens if you allow inbound traffic but forget to allow outbound traffic in a NACL?
The inbound traffic might reach the resource, but the response will be blocked because outbound rules are missing.
Click to reveal answer
What is a key characteristic of a stateless NACL?
AIt checks each packet independently without remembering past packets
BIt automatically allows return traffic
CIt stores session information for traffic
DIt only filters outbound traffic
If you allow inbound HTTP traffic on a NACL, what else must you do for the connection to work?
AAllow outbound HTTP response traffic explicitly
BNo additional rules are needed
CAllow inbound SSH traffic
DDisable the NACL
Which AWS component is stateless by design?
AIAM Role
BSecurity Group
CElastic Load Balancer
DNetwork ACL (NACL)
What happens if outbound rules are missing in a stateless NACL?
ATraffic flows normally
BInbound traffic is blocked
CReturn traffic is blocked
DNACL automatically adds outbound rules
Why might stateless NACLs require more rules than stateful firewalls?
ABecause they remember all traffic
BBecause they need explicit rules for both inbound and outbound traffic
CBecause they only filter inbound traffic
DBecause they automatically allow all traffic
Explain in your own words what stateless behavior means for Network ACLs and how it affects traffic flow.
Think about how each packet is treated independently.
You got /3 concepts.
    Describe a scenario where forgetting to add outbound rules in a NACL causes a problem.
    Imagine a web server receiving requests but not sending responses.
    You got /3 concepts.