From 57aa3cf0139fc8ec3b62721106dfa7faf0e30346 Mon Sep 17 00:00:00 2001 From: EfficientIP-Labs <81747743+EfficientIP-Labs@users.noreply.github.com> Date: Fri, 25 Apr 2025 09:36:40 +0200 Subject: [PATCH] Describe EfficientIP dnsapi2 usage following https://github.com/acmesh-official/acme.sh/pull/6333 --- dnsapi2.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/dnsapi2.md b/dnsapi2.md index 20888b3..0c04616 100644 --- a/dnsapi2.md +++ b/dnsapi2.md @@ -2692,6 +2692,38 @@ To issue your certificate run: Report bugs at https://github.com/acmesh-official/acme.sh/issues/6313 + + +## 183. Use EfficientIP DNS provider + +[EfficientIP](https://efficientip.com/) SOLIDserver is designed to deliver critical DNS-DHCP-IPAM services. +You can leverage the SOLIDserver API to handle ACME DNS challenges. Simply export your credentials +``` +sh +export EfficientIP_Creds=":" +export EfficientIP_Server="" +export EfficientIP_DNS_Name="" +export EfficientIP_View="" +``` + +Alternatively, you can leverage an API token key and secret: +``` +sh +export EfficientIP_Token_Key="" +export EfficientIP_Token_Secret="" +export EfficientIP_Server="" +export EfficientIP_DNS_Name="" +export EfficientIP_View="" +``` + +Then you can issue your certificates with: +```sh +./acme.sh --issue --dns dns_efficientip -d example.com -d *.example.com +``` + +The `EfficientIP_Creds`, `EfficientIP_Server` and other settings will be saved in `~/.acme.sh/account.conf` and will be reused when needed. + +Report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/6325)