I'd like some help understanding subnets (CIDR).
I'm using a tool to check if an IP is in an acceptable range given a CIDR address. When I input an IP address (12.245.105.190
) and check it against the same address with a subnet mask (12.245.105.190/30
), any value less than 31 shows "NOT IN SUBNET
" but gives a range that would seem to include the IP address:
** NOT IN SUBNET **
IPV4 ADDRESS 12.245.105.190
IPV4 NETWORK 12.245.105.190
IPV4 CIDR PREFIX 30
IPV4 RANGE START 12.245.105.188 <-- seems smaller than my IP
IPV4 RANGE END 12.245.105.193 <-- seems larger
Can you help me understand what I'm missing?