IPAddress
IPAddress copied to clipboard
Java library for handling IP addresses and subnets, both IPv4 and IPv6
Hi, while trying to store IPAddresses and IPAddressSeqRanges as Strings in a database using Hibernate, I have found that there is an infinite loop in the toString method in the...
I'm ipaddress version 5.3.4 on Java 8. My use-case is that I have multiple ranges of IPs, both IPv4 and IPv6 (possibly with various overlaps), and I want to compact...
according to https://www.hacksparrow.com/networking/many-faces-of-ip-address.html `0xDEADBEEF7f000001` is aequivalent to `127.0.0.1`, because `0x7f000001` is `127.0.0.1` and hex values can be left-padded with (ignored) random values. i tested this in firefox - `http://0xDEADBEEF7f000001:8080` actually...
I'm trying to create an address trie that maps CIDRs to strings, and can do an IP lookup that gets multiple results. I want to be able to efficiently search...
I am subclassing `IPv4Address` and `IPv6Address`, and I would like to be able to throw a subclass of `AddressValueException` with a custom error message. Can you please make `AddressValueException(String message)`...
I think that a dedicated class to represent a `Set` would be quite useful. It would be similar to a `IPAddressSeqRange`, however the ip addresses do *not* have to be...
It would be helpful to have a HostNameParameters option to reject HostNames that cannot be routed to. For example, 0.0.0.0 is a valid IP address, but I'm trying to validate...