AWS Virtual Private Cloud¶
A VPC is a virtual network inside AWS. A VPC is within 1 account & 1 Region.
- VPC is Private & Isolated unless you decide otherwise.
- Services deployed in the same VPC can communicate, but outside connections are blocked by default.
- Default VPC (maximum 1 per region) and custom VPC are available.
- Default VPC is public by default and is less flexible than custom VPC.
- Default VPC CIDR:
172.31.0.0/26
- A VPC needs to have /28 at minimum (16 IPs) & /16 (65536 range)
- VPC can be Default or Dedicated Tenancy
- Optional single assigned IPv6 /56 CIDR block (All IPv6 are publicly routed by default. But traffic needs to be explcitily allowed)
- VPC have fully featured DNS provided b Route 53. Available VPC DNS:
Base IP + 2
address. - enableDNSHostnames - assigns public DNS hostnames to instances
- enableDNSSupport - enables DNS resolution in VPC
VPC Subnets¶
- Subnet is an AZ resilient service within a particular AZ.
- One subnet can be created in a specific AZ in a region. It cannot be in more than 1 AZ. (One AZ can have many subnet)
- IPv4 CIDR in a VPC cannot overlap with other subnets
- Subnets can optionally be allocated IPv6 CIDR
/64
as long as the VPC is enabled for IPv6 - By defualt subnets in a VPC can communicate with other subnets in the VPC.
- IP Allocation options in subnet:
Auto Assign Public IPv4
&Auto Assign IPv6
Subnet IP Addressing¶
Reserved IP Address (5 total)
Eg: 10.16.16.0/20 (10.16.16.0 -> 10.16.31.255)
- Network (First IP address):
10.16.16.0
(Network Address) Network + 1
(Second IP address):10.16.16.1
(Used by VPC Router)Network + 2
(Third IP address):10.16.16.2
(Reserved for DNS)Network + 3
(Fourth IP address):10.16.16.3
(Reserved for future use)- Broadcast (Last IP):
10.16.31.255
(Broadcast address is reserved even though broadcast is not supported in VPC)
Tip
A VPC configuration object DHCP Options Set is assigned to a VPC. One option set is applied at one time & the configuration flows to subnets as well. It can be changed, but cannot be edited.
VPC Router¶
- Every VPC has a VPC Router - Highly available
- IN every subnet
network +1
address is used by the VPC router - Routes traffic between subnets
- Controlled by
route tables
in each subnet - A VPC has a main route table - subnet default (A subnet can have only 1 route table associated at any time but a route table can be associated with many subnets)
- In the route table, higher prefix means more priority. But, this does not apply to local routes they always take priority.
- Target
local
in the route table means the destination is local to the VPC.
Internet Gateway¶
- Regionally resilient gateway attached to VPC (1 IGW will cover all AZs in the region.)
- A VPC can have no internet gateway (Private VPC) or 1 internet gateway. However, IGW can have 0 attachments but it can only be attached to 1 VPC at a time.
- Runs within the AWS public Zone
- Gateways traffic between the VPC & the internet or AWS Public Zone (S3, SNS, SQS etc)
- A managed service (AWS handles performance)
IPv4 address with IGW
Public IPv4 addresses are not attached to the EC2 OS, but a record is maintained in the IGW mapping the private IPv4 to public IPv4. The OS is not aware of the public IPv4 address at any point. In IPv6, the address is directly assigned to OS.
Network Access Control Lists (NACL)¶
- NACLs are associated with subnets. Every subnet has an associated NACL.
- NACL only impacts data crossing the subnet boundry.
- NACLs are stateless. Rules are required for both inbound & outbound connections.
- NACL rules match destination IP/IP Range, destination PORT/PORT range along with Protocol & they offer explicit ALLOW or DENY
- Rules are matched in order, lowest rule number first & once a rule is matched, processing stops.
- By Default all traffic is allowed.
- Each subnet can have ony NACL (Default or Custom)
- A NACL can be associated with many subnets
- Custom NACLs can be created fir a specific VPC and are initially associated with no subnets. They have 1 inbound & outbound rule with default deny.
Security Groups (SG)¶
- Security Groups are stateful - detect response traffic automatically
- No explicit deny - Only allow or implicit deny
- Support IP/CIDR based rules along with AWS logical resources including other security groups & itself
- SGs are attached to ENIs & not instances (UI might show as being attached to EC2 instances)
- SGs are locked down to a single region/vpc
- All inbound traffic is blocked & outbound traffic is allowed by default
Tip
If the application is not accessible (timeout). Then it is most likely blocked by security group. But, if the application throws a connection refused then it's an application error or it might not have launched.
NAT Gateway¶
- Runs from a public subnet (To deploy a NAT Gateway a VPC Should have public subnets, an internet gateway, subnets configured to allocated public IPv4 address,default reoutes for the subnets pointing to internet gateway.)
- AZ resilient service (HA within the AZ)
- For region resilience, a NATGW in each region is required & the route table in each AZ should use that NATGW as target
- A managed service, scales to 45 Gbps, billed for duration & data volume
- NAT Gateway do not support port forwarding & cannot be used as bastion host.
- NAT Gateway cannt use Security Group
- NAT Gateways don't work on IPv6
Tip
For IPv6 connectivity we can add a ::/0
& point it to internet gateway for bi-directional connectivity.