Git Product home page Git Product logo

Comments (3)

seancfoley avatar seancfoley commented on June 11, 2024 2

192.168.0.1/24 is the same address as 192.168.0.1. Therefore, 192.168.0.1 does not contain 192.168.0.2, 192.168.0.3, or 192.168.0.4. However, it does contain 192.168.0.1, since it is the same address.

If you want to check a subnet for containment, use the proper network address:

System.out.println(new IPAddressString("192.168.0.0/24").getAddress().
    contains(new IPAddressString("192.168.0.2").getAddress()));

or convert the address to the network address:

System.out.println(new IPAddressString("192.168.0.1/24").getAddress().toPrefixBlock().
    contains(new IPAddressString("192.168.0.2").getAddress()));

If you do that, you will be checking the subnet for containment.

This a duplicate of issue #60, issue #57, issue #54, issue #51, issue #45, issue #40, issue #30, issue #26, and also similar to issue #53 and issue #39.

This is explained in this wiki entry and this entry, see enclosingBlockContains in the latter.

from ipaddress.

syndaez avatar syndaez commented on June 11, 2024

Sorry then and thank you very much for the explanation.

from ipaddress.

seancfoley avatar seancfoley commented on June 11, 2024

No problem, good luck.

from ipaddress.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.