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)