5

Possible Duplicate:
How does Subnetting Work?

So if I add 62.234.231.65/32 to my allowed IPs in security groups, does that mean that everyone with an IP from 62.234.231.0 to 62.234.231.255 can access the instance?

user900973
  • 173
  • 2
  • 8
  • 1
    That's CIDR notation: http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing and there are CIDR calculators, e.g., http://www.subnet-calculator.com/cidr.php – cjc Aug 14 '12 at 13:12
  • 1
    The `/32` means that all 32 bits need to match. – David Schwartz Aug 14 '12 at 13:38

1 Answers1

11

If you mean the well-known IP/subnet notation, then this specifies a single IP address because of the subnet mask /32. If you want to have the range from 0 to 255 in the last octet, you need to specify /24 as subnet mask.

Khaled
  • 35,688
  • 8
  • 69
  • 98