Skip to content

Instantly share code, notes, and snippets.

@julianobarbosa
Forked from Mic92/update-dnsdynamic.sh
Created December 16, 2016 15:26
Show Gist options
  • Save julianobarbosa/7e562d7fbbd5dd61c431f22544cc8ccc to your computer and use it in GitHub Desktop.
Save julianobarbosa/7e562d7fbbd5dd61c431f22544cc8ccc to your computer and use it in GitHub Desktop.
Update Public Ip on dnsdynamic.com
#!/bin/sh
# EDIT this
[email protected]
PASSWORD=yoursecret
DOMAIN=example.dnsd.me
IP=`curl --silent http://myip.dnsdynamic.com/`
curl --silent --user "$EMAIL:$PASSWORD" -k "https://www.dnsdynamic.org/api/?hostname=$DOMAIN&myip=$IP"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment