REG.RU - RMerl/asuswrt-merlin.ng GitHub Wiki
reg.ru Here is the working example. It requires that:
- DNS servers were set to ns1.reg.ru in your control panel on reg.ru
- API control was allowed from the specified IP addresses only (link)
` #!/bin/sh CERBU="MySerName" CERBP="MyPasswd" TXT_DOMAIN="mydomain.online" TXT_SUBDOMAIN="@" #@ - to assign an IP address to the domain itself (reg.ru standard) IP=$1
URL="https://api.reg.ru/api/regru2/zone/add_alias"
resp=$(curl -s -X POST "$URL" -H 'Content-Type: application/x-www-form-urlencoded' -d "input_format=json&input_data={"username": "$CERBU", "password": "$CERBP", "domains": [{"dname": "$TXT_DOMAIN"}] , "subdomain": "$TXT_SUBDOMAIN", "ipaddr": "$IP", "output_content_type": "plain"}")
if echo "$resp" | grep -q '"result" : "success"'; then /sbin/ddns_custom_updated 1 echo "success!" logger "DDNS updated ${TXT_DOMAIN} set to ${IP} else echo "no success..." /sbin/ddns_custom_updated 0 fi `