-
-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
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
add module to manage Kea DHCP subnets #135
Conversation
Prior to this change, it was not possible to manage the subnets in the Kea DHCP service. I.e. it was not possible to add/remove subnets. This change adds a new module that allows to manage subnets. The code is split in two python files. 'plugins/modules/dhcp_subnet.py' and 'plugins/module_utils/main/dhcp_subnet_v4.py'
74e42f0
to
8e2d72c
Compare
Thank you - will take a look later that week 👍🏼 |
Yeah - a lot of the API functionality was still missing in the draft. Would you mind adding the documentation? At: https://github.com/ansibleguy/collection_opnsense/blob/latest/docs/source/modules/dhcp.rst |
Sure. Try to get this done this weekend. Thanks for reviewing. |
We already use this module to create DHCP Subnets with Pools on OPNSense 24.7, works great, thank you for this! |
Prior to this change, it was not possible to manage the subnets in the Kea DHCP service. I.e. it was not possible to add/remove subnets.
This change adds a new module that allows to manage subnets. The code is split in two python files. 'plugins/modules/dhcp_subnet.py' and 'plugins/module_utils/main/dhcp_subnet_v4.py'
@ansibleguy I'd consider this PullRequest a draft only. I am not that much familiar with the codebase. Can you please do a review and give me feedback on what is missing from your point of view?