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)
|
Given a CIDR address, e.g.
|
||||
|
|
|
It's coverted by apache utils. See http://commons.apache.org/net/api-3.0.1/org/apache/commons/net/util/SubnetUtils.html
Note: For use w/ /32 CIDR subnets, for exemple, one needs to add the following declaration :
|
|||||
|
|
This is how you would do it in Java,
|
|||||
|
|
Following Yuriy's answer: To get the whole range of ip addresses, the Apache Java class SubnetUtils offers the following methods:
To download the jar containing the class go to: http://repo1.maven.org/maven2/commons-net/commons-net/3.0.1/commons-net-3.0.1.jar The source code: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/main/java/org/apache/commons/net/util/SubnetUtils.java?view=markup Maven id: <groupId>commons-net |
|||
|
|
|
The algorithm is in pseudo code (actually PHP), you can translate it to java yourself.
|
||||
|
|
|
You can use |
|||
|