I need test data for a IP Subnet calculator I have developed. I have tested some obvious scenarios, and all seems good, but the person developing can often be the wrong person to test.
The calculator can do one of two things:
1 - given an existing network and CIDR(mask), and a new CIDR it will create a number of networks with the appropriate number of hosts.
2 - given an existing network and CIDR(mask), and a list of c,h, (c = count, h=number of hosts) it will create the networks.
So if you have a subnet problem you think would be good to check, please post here. I'll post the results.
Of the calculators I looked at on the web none seem to have this kind of functionality.
Thanks in advance!
Here is one sample:
Given this network 173.73.64.0 /20.
Divide the network block in order to provide the following subnetworks:
1 - with at least 1800 hosts
2 - with at least 500 hosts each
3 - with at least 240 hosts each
Here is the result from the calculator
173.73.64.0 /21 -> 1,800 (2,048)
173.73.72.0 /23 -> 500 (512)
173.73.74.0 /23 -> 500 (512)
173.73.76.0 /24 -> 254 (256) ++
173.73.77.0 /24 -> 240 (256)
173.73.78.0 /24 -> 240 (256)
173.73.79.0 /24 -> 240 (256)
The ++ line was inserted by the calculator as an indication of the largest block left available.
Here is a sample of going from /24 to /26
192.168.123.0 /26 -> 62 (64)
192.168.123.64 /26 -> 62 (64)
192.168.123.128 /26 -> 62 (64)
192.168.123.192 /26 -> 62 (64)