vote up 2 vote down star

I have a subnet in the format 10.132.0.0/20 and an IP address from the ASP.Net request object.

Is there a .NET framework function to check to see if the IP address is within the given subnet?

If not, how can it be done? Bit manipulation, I guess?

flag

2 Answers

vote up 2 vote down check

Take a look at this post on MSDN blogs. It contains an extension method (IsInSameSubnet) that should meet your needs as well as some other goodies.

link|flag
vote up 2 vote down

Bit manipulation works. Stuff the IP into a 32-bits unsigned integer, do the same with the subnet's address, &-mask both with 0xFFFFFFFF << (32-20) and compare:

unsigned int net = ..., ip = ...;
int network_bits = 20;
unsigned int mask = 0xFFFFFFFF << (32 - network_bits);
if ((net & mask) == (ip & mask)) {
  // ...
}
link|flag
Or, if as common, the subnet is given as a number like 255.255.240.0, just stuff the mask into a 32-bit integer instead of the shift. – erikkallen Sep 30 at 16:39
I found the System.Net.IPAddress class helpful for parsing and decomposing IP addresses into bytes – Ryan Michela Sep 30 at 19:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.