Skip to content

Instantly share code, notes, and snippets.

@digitaljhelms
Last active July 15, 2018 17:37
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save digitaljhelms/a1f1d9e2d8aaa3838571 to your computer and use it in GitHub Desktop.
DNSimple DNS Updater for OS X Yosemite
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<false/>
<key>Label</key>
<string>com.dnsimple.dynamicdns</string>
<key>LowPriorityIO</key>
<true/>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/DNSimpleUpdater</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
#!/bin/bash
AUTH_EMAIL='your@email' # dnsimple account email address
AUTH_TOKEN='your-api-token' # dnsimple api token
DOMAIN_ID='yourdomain.com' # domain name or id
RECORD_ID='12345' # record id to update
IP="`curl http://icanhazip.com/`"
curl -H "X-DNSimple-Token: $AUTH_EMAIL:$AUTH_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-X PUT \
-d "{\"record\":{\"content\":\"$IP\"}}" \
https://api.dnsimple.com/v1/domains/$DOMAIN_ID/records/$RECORD_ID
@aeden
Copy link

aeden commented May 28, 2015

At this point it should not be possible to use an IP address in a CNAME from the site either. I recently added a validation that will prohibit that, which is probably what caused the problem to appear for you recently.

@darrenterhune
Copy link

Couple of things changed since then... API is now v2, which is a bit different. The canihazip.com service you need to specify -4 to return ipv4 ip otherwise you just get an error from dnsimple saying it's not valid.

IP=$(curl -4 https://icanhazip.com)

curl -H 'Authorization: Bearer <token>' \
     -H 'Accept: application/json' \
     -H 'Content-Type: application/json' \
     -X PATCH \
     -d "{\"content\":\"$IP\"}" \
     https://api.dnsimple.com/v2/:account_id/zones/:domain_id/records/:record_id

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment