Skip to main content

Discover Amazon VPC

Learning Objectives

After completing this unit, you’ll be able to:

  • Describe the features of Amazon Virtual Private Cloud (VPC).
  • Explain how to create an Amazon VPC and subnets.
  • Explain the purpose of reserved IPs in subnets.

If you want to build your own secure network for your cat photo application in AWS, you use Amazon Virtual Private Cloud (Amazon VPC). 

What Is a VPC?

A VPC is an isolated network you create in the AWS cloud, similar to a traditional network in a data center. When you create a VPC, you need to choose three main things. 

  1. The name of your VPC.
  2. A Region for your VPC to live in. Each VPC spans multiple Availability Zones within the Region you choose.
  3. A CIDR range for your VPC. This determines the size of your network. Each VPC can have up to four /16 CIDR ranges.

Using this information, AWS will provision a network and IP addresses for that network.
An Amazon VPC (10.0.0.0/16) inside a region that spans two Availability Zones.

Create a VPC Subnet

After you create your VPC, you need to create subnets inside of this network. Think of subnets as smaller networks inside your base network—or virtual area networks (VLANs) in a traditional, on-premises network. In an on-premises network, the typical use case for subnets is to isolate or optimize network traffic. In AWS, subnets are used for high availability and providing different connectivity options for your resources.

When you create a subnet, you need to choose three settings.

  1. The VPC you want your subnet to live in, in this case VPC (10.0.0.0/16).
  2. The Availability Zone you want your subnet to live in, in this case AZ1.
  3. A CIDR block for your subnet, which must be a subset of the VPC CIDR block, in this case 10.0.0.0/24.

When you launch an EC2 instance, you launch it inside a subnet, which will be located inside the Availability Zone you choose.
Cat photo application on Amazon EC2 in a subnet inside one AZ in a VPC in a region

Achieve High Availability with A VPC

When you create your subnets, keep high availability in mind. In order to maintain redundancy and fault tolerance, create at least two subnets configured in two different Availability Zones. 

As you learned earlier in the trail, it’s important to consider that “everything fails all the time.” In this case, if one of these AZs fail, you still have your resources in another AZ available as backup.
Two cat photo applications with Amazon EC2 instances in two separate Availability Zones in a VPC in a region

Get to Know Reserved IPs

For AWS to configure your VPC appropriately, AWS reserves five IP addresses in each subnet. These IP addresses are used for routing, Domain Name System (DNS), and network management.

For example, consider a VPC with the CIDR range 10.0.0.0/22. The VPC includes 1,024 total IP addresses. This is divided into four equal-sized subnets, each with a /24 CIDR range with 256 IP addresses. Out of each of those CIDR ranges, there are only 251 IP addresses that can be used because AWS reserves five.
4 subnets with 251 IP addresses each. The other five IP addresses are reserved for Network address (10.0.0.0), VPC local router (10.0.0.1), DNS server (10.0.0.2), Future use (10.0.0.3), and The Network broadcast address (10.0.3.255)

Since AWS reserves these five IP addresses, it can impact how you design your network. A common starting place for those who are new to the cloud is to create a VPC with a CIDR range of /16 and create subnets with a CIDR range of /24. This provides a large amount of IP addresses to work with at both the VPC and subnet level. 

Wrap Up

In this unit, you learned how to create a VPC for your cat photo application and how to group your application resources by using subnets. In the next unit, you learn how to route traffic between your application resources inside your VPC. 

Resources

Keep learning for
free!
Sign up for an account to continue.
What’s in it for you?
  • Get personalized recommendations for your career goals
  • Practice your skills with hands-on challenges and quizzes
  • Track and share your progress with employers
  • Connect to mentorship and career opportunities