Git Product home page Git Product logo

Comments (4)

bangn avatar bangn commented on September 18, 2024 1

Work like a charm.

Thank you very much Dan

from vpn-slice.

dlenski avatar dlenski commented on September 18, 2024

vpn-slice uses Python's ipaddress module to parse IP network and host addresses.

192.168.37.105/31 isn't recognized as a (canonical) IPv4 network address, nor as an IPv4 host address:

>>> import ipaddress
>>> ipaddress.ip_network('192.168.37.105/31')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python3.5/ipaddress.py", line 1536, in __init__
    raise ValueError('%s has host bits set' % self)
ValueError: 192.168.37.105/31 has host bits set
>>> ipaddress.ip_address('192.168.37.105/31')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python3.5/ipaddress.py", line 54, in ip_address
    address)
ValueError: '192.168.37.105/31' does not appear to be an IPv4 or IPv6 address

… which is why vpn-slice default to looking it up as a hostname.

The correct canonical address for this network would be 192.168.37.104/31. But it turns out I can get ipaddress to parse it more forgivingly, simply by adding strict=False, so I should probably do that.

>>> ipaddress.ip_network('192.168.37.105/31', strict=False)
IPv4Network('192.168.37.104/31')

from vpn-slice.

bangn avatar bangn commented on September 18, 2024

Thank you very much for prompt reply.

I will try and let you know

from vpn-slice.

dlenski avatar dlenski commented on September 18, 2024

I've submitted an MR to OpenConnect to sanitize/fix these incorrectly-specified IPv4 networks before sending them to the vpnc-script:

https://gitlab.com/openconnect/openconnect/-/merge_requests/97

from vpn-slice.

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.