VPC Concepts For Your SAA-02 Exam Part-01

Md. Ashraf Bhuiya
3 min readDec 5, 2020

Welcome to the world of Virtual Private Cloud(VPC). In this article, I am just going to talk about all VPC components which helpful for your SAA-02 Exam. Here, VPC divided into three parts. First two-part, I describe the theoretical concept of VPC. In the final part, I will show the hands-on/simulation of VPC.

VPC A virtual private cloud is a virtual network that costly resembles traditional networking that you can own a datacentre with the benefits of using the scalable Infra-Structure of AWS.

Or

You can say that VPC is a virtual network on a data center inside AWS for one client.

→ It logically isolated from another virtual network in the AWS.

→ Max 5 VPC can be created and other 200 subnets in 1 VPC.

→ You can allocate the max. 5 Elastic IP.

→ Once you created VPC then the default DHCP, NACL, and Security Group will be created automatically.

→ A VPC is confined to one AWS region and doesn’t extend between regions.

AWS VPC Diagram | Source: AWS.

Component of VPC :

  1. Implied Router and Routing Table
  2. Internet Gateway
  3. Security Groups
  4. Network ACL
  5. Virtual Private Gateway (VPN)
  6. Peering Connection
  7. Elastic IP

Types Of VPC :

There are two types of VPC in AWS

  1. Default VPC: Default VPC is created in each AWS region, When an AWS account is created.

→ Default VPC has a default CIDR, Security groups, NACL, and Route Table settings.

→ Default VPC has an Internet Gateway by default.

Note: If you delete the default VPC now there is a way to recover it.

2. Custom VPC: Custom VPC created by AWS owner.

→ AWS users creating the custom VPC can decide the CIDR.

→Has it’s own default Groups, Network ACL, and Route Table.

→ Doesn’t have an Internet Gateway by default.

Creating steps of VPC: It’s wise to follow four-step to create VPC. Those steps are -

1.Create VPC.

2.Create Subnet.

3.Internet Gateway.

4.Route Table.

Subnetwork or Subnet: is a logical subdivision of an IP network. The practice of dividing a network into two or more networks is called subnetting.AWS provides two types of subnetting one is Public which allows the internet to access the machine and another is private which is hidden from the internet.

Public Subnet: If a subnet’s traffic is routed to an internet gateway, the subnet is known as a public subnet. If you want your instance in a subnet to communicate with the internet over an IPv4 address or an elastic IP address.

→ When you created a VPC, you must specify on IPV4 CIDR Block for the VPC. The allowed block is between /16 to /28 network.

→ The first four and last IP address of the subnet can't be assigned.

--

--