What is a CIDR in VPCs and AWS?

256 views

My understanding is that you can launch subnets (a collection of IP addresses) in a VPC (a network that you set up), and that CIDRs… do what?

I’m not entirely sure what a subnet or a VPC is, either. I don’t know how they all play together.

In: 0

4 Answers

Anonymous 0 Comments

CIDR stands for Classless Inter-Domain Routing. It is a fancy term for subnetting. Classful network addresses follow standardized rules for what part of the IP address specifies the network ID and what part specifies the host ID. Similar to mailing adresses, the network ID would be the street name and the host id is the house number. Subnetting is a way to modify what part is the network id and what is the host id.

VPC is a product/service within AWS. You are renting a virtual network environment. You can use it to set up your own virtual services. With that you can design your own internal IP address scheme within your network. You can follow classful network rules if you want to or you can create subnets to give yourself more granular control over your network traffic.

You are viewing 1 out of 4 answers, click here to view all answers.