Skip to content

Latest commit

 

History

History
56 lines (46 loc) · 2.46 KB

File metadata and controls

56 lines (46 loc) · 2.46 KB

Network Access Control Lists & Security Groups

Network Access Control List (NACL)

Network ACL helps in providing a firewall thereby helping secure the VPCs and subnets. It helps provide a security layer which controls and efficiently manages the traffic that moves around in the subnets. It is an optional layer for VPC, which adds another security layer to the Amazon service.

Network ACL act as a standard network firewall in any data center. It provides firewall protection at the subnet level, allowing you to filter or allow specific traffic in or out of the subnet. You have full control over both inbound and outbound rules.

Stateless packet filtering

  • Network ACLs perform stateless packet filtering
  • Before a packet can exit a subnet, it must be chekced againsts the outbound rules

stateless-packet-filtering

Security Group

It controls the incoming and outgoing crowds and operates as a defense border. You may allow more than one such group while initiating instances. While doing this, you have to specify certain protocols for the incoming crowd as well as for the outgoing crowd. Except for these, all other types of crowds are removed. The protocols for the incoming and outgoing crowds can be adjusted as well.

A security group is a virtual firewall for an Amazon EC2 instance. By default, a security group denies all inbound and allows all outbound traffic.

Stateful packet filtering

  • Security groups perform stateful packet filtering
  • They remember previous decisions that were made for incoming packets

stateful-packet-filtering

Security Group vs Network ACL

Security Group Network ACL
Operates at the instance (interface) level Operates at the subnet level
Supports allow rules only Supports allow and deny rules
Stateful Stateless
Evaluates all rules Processes rules in order
Applies to an instance only if associated with a group Automatically applies to all instances in the subnets its associated with

Reference