I have the following CIDR reserved for my VPC -> 10.0.0.0/22
What this tells me is that I have 10 bits leftover for my host ips or 1,024
addresses. I was attempting to compute the range of valid addresses, as Amazon asks for a valid IPv4 CIDR block when creating a new private subnet.
I figured 6/8 bits are taken from the 3rd octet and the last octet is all 0's, which leads me with an IP range of 10.0.0.0 -> 10.0.3.255
.
As I come to the screen to actually pick my IPv4 CIDR block, I'm getting an "Invalid error", which is just validating that I don't understand how the math is actually working work. I typed in 10.0.2.1/28
which yields a Must be valid Ipv4 CIDR error.
My thought process:
This looked like it was in the range I had calculated and that I wanted my private subnet to reserve 16 IP addresses.
What am I doing wrong?