From 348e7892fb2cd33a671199e8921ddf0ab3485d1d Mon Sep 17 00:00:00 2001 From: Stefan Date: Sat, 29 Nov 2025 17:13:49 +0100 Subject: [PATCH] Updated dnsapi2 (markdown) --- dnsapi2.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/dnsapi2.md b/dnsapi2.md index 877f3c0..031a7fc 100644 --- a/dnsapi2.md +++ b/dnsapi2.md @@ -111,6 +111,7 @@ - [187. Use RESTENA DNS API](#dns_restena) - [188. Use Hetzner Cloud DNS API](#dns_hetznercloud) - [189. Use QUIC.cloud DNS API](#dns_qc) +- - [Use custom API](#dns_myapi) - [Use lexicon DNS API](#dns_lexicon) @@ -2849,6 +2850,30 @@ Copyright: acme.sh wiki contributors License: GNU General Public License version 3 or any later version + + + +## 190. Use infoblox UDDI DNS API + +This script uses DNS API for [csp.infoblox.com](https://csp.infoblox.com/) dns service and is based on [API documentation](https://csp.eu.infoblox.com/apidoc) + +Before first execution define the following in sh (or bash): +```sh +export Infoblox_UDDI_Key="your API key" +export Infoblox_Server=csp.infoblox.com (or for EU: csp.eu.infoblox.com) +``` + +API keys can be generated in infoblox portal [API settings](https://csp.infoblox.com/). Be aware for the maximum +lifetime for an API key, so you'll need to update it regularly. + +To issue a cert: +```sh +./acme.sh --issue --dns dns_infoblox_uddi -d example.com -d *.example.com +``` + +Report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/6645) + + ## Use custom API