-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate_ip_dns.sh
49 lines (41 loc) · 1.89 KB
/
update_ip_dns.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
#!/usr/bin/env sh
# This bash/dash script is called by IpAddressExpress if the public ip address has changed
# with the first argument being the new IPv4 address.
if [ "$1" = "" ];
then
echo "Missing IPv4 address argument."
exit 1
fi
readonly IPv4addr="$1"
echo "New IPv4 address is: $IPv4addr "
readonly DDNSUPDATER_USERAGENT="ddnsupdater/0.5 ([email protected])"
# Update Hurricane Electric DNS.
updatedns_hurricaneelectric() {
local hostname=$1
local domain=$2
local password=$3
echo "Update DNS HurricaneElectric: $hostname.$domain to $4."
if [ "$hostname" = "@" ];
then
curl -s --proto -all,https --tlsv1.2 --user-agent "$5" "https://$domain:[email protected]/nic/update?hostname=$domain&myip=$4" -o /dev/null
else
curl -s --proto -all,https --tlsv1.2 --user-agent "$5" "https://$hostname.$domain:[email protected]/nic/update?hostname=$hostname.$domain&myip=$4" -o /dev/null
fi
}
# Update NameCheap DNS.
updatedns_namecheap() {
local hostname=$1
local domain=$2
local password=$3
echo "Update DNS NameCheap: $hostname.$domain to $4."
curl -s --proto -all,https --tlsv1.2 --user-agent "$5" "https://dynamicdns.park-your-domain.com/update?domain=$domain&password=$password&host=$hostname&ip=$4" --max-filesize 1048576 -o /dev/null
}
# Put your dynamic dns entries here, use e.g.:
#updatedns_hurricaneelectric 'www' 'yourdomain.test' 'yoursecretapikeyhere' "$IPv4addr" "$DDNSUPDATER_USERAGENT"
#updatedns_hurricaneelectric '@' 'yourdomain.test' 'yoursecretapikeyhere' "$IPv4addr" "$DDNSUPDATER_USERAGENT"
#updatedns_namecheap 'www' 'yourotherdomain.test' 'yoursecretapikey2here' "$IPv4addr" "$DDNSUPDATER_USERAGENT"
#updatedns_namecheap '@' 'yourotherdomain.test' 'yoursecretapikey2here' "$IPv4addr" "$DDNSUPDATER_USERAGENT"
# etc. etc.
#
# Run: chmod o-rwx update_ip_dns.sh to make this file not readable by others.
exit 0