CIDRUtils

Provides a subnet range matcher for IPv4 and IPv6

License

License

GroupId

GroupId

com.github.felfert
ArtifactId

ArtifactId

cidrutils
Last Version

Last Version

1.4
Release Date

Release Date

Type

Type

jar
Description

Description

CIDRUtils
Provides a subnet range matcher for IPv4 and IPv6
Project URL

Project URL

http://github.com/felfert/CIDRUtils
Source Code Management

Source Code Management

http://github.com/felfert/CIDRUtils

Download cidrutils

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.felfert/cidrutils/ -->
<dependency>
    <groupId>com.github.felfert</groupId>
    <artifactId>cidrutils</artifactId>
    <version>1.4</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.felfert/cidrutils/
implementation 'com.github.felfert:cidrutils:1.4'
// https://jarcasting.com/artifacts/com.github.felfert/cidrutils/
implementation ("com.github.felfert:cidrutils:1.4")
'com.github.felfert:cidrutils:jar:1.4'
<dependency org="com.github.felfert" name="cidrutils" rev="1.4">
  <artifact name="cidrutils" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.felfert', module='cidrutils', version='1.4')
)
libraryDependencies += "com.github.felfert" % "cidrutils" % "1.4"
[com.github.felfert/cidrutils "1.4"]

Dependencies

compile (1)

Group / Artifact Type Version
com.github.spotbugs : spotbugs-annotations jar 4.2.2

test (1)

Group / Artifact Type Version
junit : junit jar 4.13.2

Project Modules

There are no modules declared in this project.

CIDRUtils

This is a mavenized and improved version of the original. See forked link. CIDRUtils is a Java library that enables you to get an IP range from CIDR specification. It supports both IPv4 and IPv6. CIDRUtils is also distributed via Maven Central

IPv4 Example

CIDRUtils cidrUtils = new CIDRUtils("10.77.12.11/18");
String networkAddress = cidrUtils.getNetworkAddress();
String broadcastAddress = cidrUtils.getBroadcastAddress();

Evaluating the code above would produce 10.77.0.0 for the networkAddress and 10.77.63.255 for the broadcastAddress.

IPv6 Example

CIDRUtils cidrUtils = new CIDRUtils("435:23f::45:23/101");
String networkAddress = cidrUtils.getNetworkAddress();
String broadcastAddress = cidrUtils.getBroadcastAddress();

Evaluating the code above would produce 435:23f:0:0:0:0:0:0 for the networkAddress and 435:23f:0:0:0:0:7ff:ffff for the broadcastAddress.

License

CIDRUtils is released under MIT License.

Versions

Version
1.4
1.3
1.2
1.1
1.0