Tagged Questions
2
votes
2answers
410 views
Convert ip array to smallest cidr subnet list in java
I have an ip array like below and I want to convert it to smallest cidr subnet list. Is there a library for that in Java?
For example:
1.1.3.0
1.1.3.1
1.1.3.2
1.1.3.3
..
1.1.3.254
1.1.3.255
1.2.3.0
...
2
votes
1answer
175 views
Convert wildcard subnet to smallest cidr subnet list
I need to convert wildcard subnets to smallest cidr subnet list.
For example:
1.2.3.4/255.0.255.0
converted to
1.0.3.0/24
1.1.3.0/24
1.2.3.0/24
1.3.3.0/24
...
1.254.3.0/24
1.255.3.0/24
Above ...
1
vote
1answer
180 views
Apache SubnetInfo for loopback address
Using the Apache Commons Net library, why does the following output 0 addresses for the CIDR notation 127.0.0.1/32 ? I'd have expected one, or am I misunderstanding something? Is the address 127.0.0.1 ...
1
vote
4answers
3k views
In Java, given an IP Address range, return the minimum list of CIDR blocks that covers the range
I am having trouble with some of the logic in converting an IP Address range into a list of CIDR blocks. I do believe that this website is doing it right: http://ip2cidr.com/
I would like to pass in ...
8
votes
5answers
10k views
Converting CIDR address to subnet mask and network address
Given a CIDR address, e.g. 192.168.10.0/24
How to determine mask length? (24)
How to determine mask address? (255.255.255.0)
How to determine network address? (192.168.10.0)