Tagged Questions

6
votes
2answers
1k views

Is there native .NET type for CIDR subnets?

It's simple enough to code up a class to store/validate something like 192.168.0.0/16, but I was curious if a native type for this already existed in .NET? I would imagine it would work a lot like ...
1
vote
1answer
494 views

How to calculate IP ranges

Hi would someone be able to assist with the following question? The question is from a past paper in preparation for an exam. Consider a router that interconnects three subnets: Subnet 1, Subnet ...
1
vote
2answers
2k views

List IP all addresses in a subnet

I need to get all of the IP addresses contained in within a subnet and I'm trying to do it using http://ipnetwork.codeplex.com/. For example the subnet 192.168.1.0/29 would have the following output: ...
1
vote
3answers
455 views

VB6 IP4 - Calculate Net Mask (Long) from Number of Bits

Given input of 0 to 32, representing the number of one-bits in an IP4 network mask (corresponding to a CIDR block size as in /19), what's An elegant way to turn that into a four-byte long net mask A ...