0
votes
1answer
327 views

CIDR subnet calculation and python ipcalc

I am questioning the results of the ipcalc module (ipcalc) for Python (it seems that netaddr may be a better choice). Let's take 192.168.1.25/30 as an example. In binary, the last octet is 00011001 ...
1
vote
2answers
398 views

IP Range to CIDR in Ruby/Rails?

I want to do two things: Convert IP Address inputs into CIDR Here are some example inputs: 1.1.1.1 192.168.*.* #=> 192.168.0-255.0-255 192.168.1.2-20 1.1.1-10.1-100 Check if a given IP ...
1
vote
2answers
3k 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 ...
3
votes
2answers
5k 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 IPnetwork For example the subnet 192.168.1.0/29 would have the following output: // Output ...
1
vote
3answers
589 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 ...
8
votes
2answers
2k 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 ...