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
per https://www.infoblox.com/wp-content/uploads/infoblox-deployment-infoblox-rest-api.pdf
The text was updated successfully, but these errors were encountered:
One specific use case that is needed is the ability to restart DHCP services after creating a network, range and/or fixed address.
Per community article: Restart Services Using the REST API
Search for the Grid to get the reference: curl -k -u admin:infoblox -X GET https://192.168.1.2/wapi/v1.1/grid The search returns a reference (_ref) for the Grid: [ { "_ref": "grid/b25lLmNsdXN0ZXIkMA:Infoblox" } ] Restart services using the reference: curl -k -u admin:infoblox -X POST https://192.168.1.2/wapi/v1.1/grid/b25lLmNsdXN0ZXIkMA:Infoblox?_function=restartservices -H "Content-Type:application/json" -d '{"restart_option": "RESTART_IF_NEEDED", "service_option": "ALL", "member_order": "SEQUENTIALLY", "sequential_delay": '1'}'
Search for the Grid to get the reference:
curl -k -u admin:infoblox -X GET https://192.168.1.2/wapi/v1.1/grid
The search returns a reference (_ref) for the Grid:
[ { "_ref": "grid/b25lLmNsdXN0ZXIkMA:Infoblox" } ]
Restart services using the reference:
curl -k -u admin:infoblox -X POST https://192.168.1.2/wapi/v1.1/grid/b25lLmNsdXN0ZXIkMA:Infoblox?_function=restartservices -H "Content-Type:application/json" -d '{"restart_option": "RESTART_IF_NEEDED", "service_option": "ALL", "member_order": "SEQUENTIALLY", "sequential_delay": '1'}'
Sorry, something went wrong.
depends on infobloxopen/infoblox-go-client#162
No branches or pull requests
per https://www.infoblox.com/wp-content/uploads/infoblox-deployment-infoblox-rest-api.pdf
The text was updated successfully, but these errors were encountered: