AWS VPC for Beginners

AWS VPC for BeginnersA concise VPC reference for the AWS Certified Developer Associate ExamLewis GavinBlockedUnblockFollowFollowingJan 15Photo by King's Church International on UnsplashThis week I’m recapping what I’ve learned about Amazon’s Virtual Private Cloud (VPC).

If you want to see what else I’ve learned about AWS then check out my DynamoDB Overview and S3 Overview.

This post is more for reference if you’re thinking of taking the AWS Developer Associate Exam and want a place to come and help revise.

What is it?A VPC is a virtual network specific to you within AWS for you to hold all your AWS services.

It is a logical data center in AWS and will have gateways, route tables, network access control lists (ACL), subnets and security groups.

Things to note:Each subnet exists within 1 availability zone.

Security groups are stateful, ACL’s are statelessVPC’s can be peered within the same account and across AWS accountsTransitive peering is not allowed, meaning you cant hop from one VPC to another, via another VPC.

You must have direct access.

Why use a VPC?When you open up a service within a public cloud, it is effectively open to the world and can be at risk to attacks from the internet.

In order to lock your instances down and secure them against attacks from the outside, you lock them within a VPC.

The VPC restricts what sort of traffic, IP addresses and also the users that can access your instances.

This prevents unwanted guests accessing your resources and secures you from things like DDOS attacks.

Not all services require access to the internet, so those can be locked away safely within a private network.

You can then expose only certain machines to the internet.

Obviously, if you wanted to install software or access the internet from private instances that are blocked off from the internet, then this is a problem.

However there are a few solutions to this problem that I will cover next.

NAT InstancesA NAT instance can be used to solve the problem “how do I install things from the internet on my secured private instances”?A NAT instance is created in a public subnet with access to the internet.

Once you allow access from your private instance to your NAT, your private instance will then be able to make requests to the internet.

This access is one way i.

e.

someone from the internet cannot access your instance.

Things to note:A NAT instance must be in a public subnetIt must have an Elastic IPThere must be a route from your private subnet into the NAT instanceYou can manually create high availability using Autoscaling groups and multiple subnetsDifferent to a Bastian because a NAT is used to provide internet access to private instances, a Bastian is used to administer instance using SSH for example.

They are now sort of deprecated and replaced with NAT GatewaysImage taken from wrathofchris.

wordpress.

comNAT GatewaysNAT Gateways have basically replaced NAT instances as they allow the same access to the internet from a private subnet with the same security.

However they are much easier to set up and scale, as this is all managed by Amazon.

Things to note:Scale automatically up to 10GbpsNo need to manually patch — amazon takes care of thisNot associate with security groupsautomatically assigned a public IPNetwork Access Control Lists (ACL)By default, a VPC will come with a Network ACL and it will allow all inbound and outbound traffic.

However if you create a default Network ACL, it will block all inbound and outbound traffic, and you will have to manually allow traffic yourself.

Each subnet within a VPC must be connected to a Network ACL, however each subnet can only be connected to 1 VPC at a time.

The ACL however can be connected to multiple different subnets.

Things to remember:The Network ACL contains an ordered list of rules to allow trafficThe convention is to start from 100 rules and go up in increments of 100.

The rules will be considered in order so make sure if you want to allow all ssh access apart from a certain IP address, that you add your block rule before your allow all rule.

There are separate rules for inbound and outbound traffic, so you must set up rules for each.

They are stateless meaning responses to inbound traffic are dependent on outbound traffic rules and this applies the other way around.

Block IP address using Network ACL’s and not Security groupsResiliencyFor resiliency it is advisable to always have 2 public and 2 private subnets and ensure they are both in different availability zones.

The same applies to Elastic Load Balancers.

NAT Instances are a little more difficult to make highly available so its advised to use NAT Gateways instead, as all of this is taken care of and requires no manual effort.

You can always monitor traffic within your VPC by turning on VPC flow logs.

.

. More details

Leave a Reply