-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcloudflare-api-update.sh
executable file
·104 lines (91 loc) · 3.08 KB
/
cloudflare-api-update.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#!/bin/bash
# Author: Hugo <[email protected]>
#
# Dynamically update DNS on cloudflare through their API.
# Uses jq (dirty, I know!).
# Set CONFIG values to your needs.
# --- CONFIG START ---
# If the first 3 variables are set, the script tries to get the current IP from your Fritz!Box,
# so it doesn't need a call to ipecho.net to get it.
# For this to work, you'll need this tool: https://github.com/jhubig/FritzBoxShell
# Please escape the password accordingly and uncomment these lines.
#BoxUSER="fritzbox_user"
#BoxPW="fritzbox_pass"
#BoxShell="/usr/sbin/fritzBoxShell.sh"
# See the cloudflare API documentation about how to get following values for your account: https://api.cloudflare.com/#zone-list-zones
API_ID="[email protected]"
API_AUTH_KEY="foo47eb745079dac9320b638f5e225cf483cc5cfdda41"
ZONE_NAME="example.com"
ZONE_ID="bar1105f4ecef8ad9ca31a8372d0c353"
DNSREC_ID="baz372954025e0ba6aaa6d586b9e0b59"
# --- CONFIG END ---
# No need to change anything beyond this point
if [[ "$API_AUTH_KEY" == *"foo"* ]]; then
echo "ERROR - Please edit the script and set the config variables first!"
exit 1
fi
# show usage
usage() {
printf "\nUsage:\n"
printf "$(basename $0) [-f|--force]\n"
printf " -f | --force - Force DNS update\n"
printf " -d | --debug - Enable debug\n"
}
# get command line switches
while [ -n "$1" ]; do
case "$1" in
-f | --force)
FORCE=true
;;
-d | --debug)
DEBUG=true
;;
*)
printf "Unknown argument: $1\n"
usage
exit 1
;;
esac
shift
done
# get IP from cloudflare
DNS_IP=`curl -s -X GET "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records/$DNSREC_ID" \
-H "X-Auth-Email: $API_ID" \
-H "X-Auth-Key: $API_AUTH_KEY" \
-H "Content-Type: application/json" | jq . | grep content | awk -F\" '{print $4}'`
if [ ! $DNS_IP ]; then
echo "ERROR - Getting DNS entry from cloudflare didn't work!"
echo "Check your credentials."
exit 1
fi
if [ $BoxUSER ] && [ $BoxPW ] && [ $BoxShell ]; then
# use IP from Fritz!Box
CURRENT_IP=`$BoxShell IGDIP STATE | grep NewExternalIPAddress | awk '{print $2}'`
else
# get IP from ipecho.net
CURRENT_IP=`wget http://ipecho.net/plain -O - -q ; echo`
fi
if [ ! $CURRENT_IP ]; then
echo "ERROR - Getting current IP didn't work!"
fi
if [ "$DNS_IP" != "$CURRENT_IP" ] || [ $FORCE ]; then
UPDATE=`curl -s -X PUT "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records/$DNSREC_ID" \
-H "X-Auth-Email: $API_ID" \
-H "X-Auth-Key: $API_AUTH_KEY" \
-H "Content-Type: application/json" \
--data '{"type":"A","name":"'"$ZONE_NAME"'","content":"'"$CURRENT_IP"'","ttl":1,"proxied":false}' | jq .`
SUCCESS=`echo "$UPDATE" | jq .'success'`
DBG="INFO - renewed IP with: '$CURRENT_IP', success=$SUCCESS"
logger --tag cloudflare-update $DBG
else
DBG="INFO - IP unchanged: '$CURRENT_IP'"
logger --tag cloudflare-update $DBG
fi
if [ $DEBUG ]; then
echo "CURRENT_IP=$CURRENT_IP"
echo "DNS_IP=$DNS_IP"
if [ $SUCCESS ]; then
echo $UPDATE | jq .
fi
echo "$DBG"
fi