We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
>>> from infoblox_client import objects >>> objects.IP.create("127.0.0.1") IPv4: ipv4addr="127.0.0.1", ip="127.0.0.1" >>> objects.IP.create("::1") Traceback (most recent call last): File "<stdin>", line 1, in <module> File "venv/lib/python3.8/site-packages/infoblox_client/objects.py", line 543, in create return IPv6(ip=ip, duid=ib_utils.generate_duid(mac), File "venv/lib/python3.8/site-packages/infoblox_client/utils.py", line 47, in generate_duid raise ValueError("Invalid argument was passed") ValueError: Invalid argument was passed
Workaround:
>>> ip = objects.IPv6() >>> ip.ip = "::1" >>> ip IPv6: ipv6addr="::1", ip="::1"
The text was updated successfully, but these errors were encountered:
Hi @tucked
We are working on a priority ticket as of now and will look into this issue as soon as I get some time.
Sorry, something went wrong.
@sarya-infoblox do you have an update on this issue?
No branches or pull requests
Workaround:
The text was updated successfully, but these errors were encountered: