godaddy_ddns/godaddy_ddns_ipv4.sh

45 lines
1.5 KiB
Bash
Raw Permalink Normal View History

2022-08-01 21:54:05 +02:00
#!/bin/bash
# This script is used to check and update your GoDaddy DNS server to the IP address of your current internet connection.
# Special thanks to mfox for his ps script
# https://github.com/markafox/GoDaddy_Powershell_DDNS
#
# First go to GoDaddy developer site to create a developer account and get your key and secret
#
# https://developer.godaddy.com/getstarted
# Be aware that there are 2 types of key and secret - one for the test server and one for the production server
# Get a key and secret for the production server
#
#Update the first 4 variables with your information
2022-08-01 22:45:44 +02:00
domain="" # your domain
name="" # name of A record to update
key="" # key for godaddy developer API
secret="" # secret for godaddy developer API
2022-08-01 21:54:05 +02:00
headers="Authorization: sso-key $key:$secret"
# echo $headers # debug
result=$(curl -s -X GET -H "$headers" \
2022-08-01 22:45:44 +02:00
"https://api.godaddy.com/v1/domains/$domain/records/A/$name")
2022-08-01 21:54:05 +02:00
dnsIp=$(echo $result | grep -oE "\b([0-9]{1,3}\.){3}[0-9]{1,3}\b")
2022-08-01 22:34:02 +02:00
echo "dnsIp:" $dnsIp
2022-08-01 21:54:05 +02:00
# Get public ip address there are several websites that can do this.
currentIp=$(curl -s GET "https://ipv4.wtfismyip.com/text")
echo "currentIp:" $currentIp
2022-08-01 22:45:44 +02:00
if [ $dnsIp != $currentIp ]; then
echo "Ips are not equal"
request='[{"data":"'$currentIp'","name":"'$name'","ttl":600,"type":"A"}]'
# echo $request # debug
nresult=$(curl -i -s -X PUT \
-H "$headers" \
-H "Content-Type: application/json" \
-d $request "https://api.godaddy.com/v1/domains/$domain/records/A/$name")
echo $nresult
2022-08-01 22:41:50 +02:00
echo "dns record updated"
2022-08-01 21:54:05 +02:00
fi