-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added log file in variable logfile Updated README
- Loading branch information
Showing
2 changed files
with
30 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,19 +4,17 @@ | |
**What is this repository for?** | ||
|
||
* Public IP address of many hosting servers are dynamic and it changes based on availability. Some examples include AWS EC2 instance, Home Servers, GCP Cloud, etc. | ||
* This require updating the IP address in goDaddy DNS record so that requests are forwarded to correct IP address. | ||
* This script uses cron jobs to check the current Public IP address of server and update the IP address in goDaddy Manage DNS. | ||
* This require updating the IP address in GoDaddy DNS record so that requests are forwarded to correct IP address. | ||
* This script uses cron jobs to check the current Public IP address of server and update the IP address in GoDaddy Manage DNS. | ||
* OS: Linux. Tested on Ubuntu server 18.04 LTS with BASH shell. | ||
* Prerequisite tools: curl, BASH shell. | ||
* Required utility tools: curl, BASH shell. | ||
|
||
**How do I get set up ?** | ||
|
||
* Clone this repository in your server. | ||
* Open godaddyDDNS/godaddyDDNS.properties file | ||
* Open godaddyDDNS/godaddy-ddns.properties file | ||
* Update the properties values as below: | ||
|
||
*Comment (#) is not supported in property file as of now. Avoid using # to ignore the lines.* | ||
|
||
domain=domain.com | ||
|
||
name=subdomainORwww | ||
|
@@ -29,7 +27,7 @@ secret=secret-key-value-from-godaddy-developer-console | |
|
||
|
||
e.g. To update DNS Name *navi.example.com* | ||
|
||
``` | ||
domain=example.com | ||
name=navi | ||
|
@@ -39,29 +37,32 @@ key=cvvgfvfd54jghgz8s | |
ttl=3600 | ||
secret=dfgsx6daflx5]gkhhi8yjxf | ||
|
||
* Key and Secret can be generated from godaddy Developer page. https://developer.godaddy.com/getstarted | ||
``` | ||
* Key and Secret can be generated from GoDaddy Developer page. https://developer.godaddy.com/getstarted | ||
* After updating. Run the script. | ||
*./godaddy-ddns.sh* | ||
* Check the log in godaddyDDNS.log file | ||
* If log status is OK. Its working fine. Verify the DNS record in godaddy account. | ||
* **Updating the DNS record in godaddy doesn't mean DNS server is also updated. DNS server updation completely depends on TTL value. Its good to have short TTL value for highly dynamic IP address.** | ||
* If log status is OK. Its working fine. Verify the DNS record in GoDaddy account. | ||
* **Updating the DNS record in GoDaddy doesn't mean DNS server is also updated. DNS server updation completely depends on TTL value. Its good to have short TTL value for highly dynamic IP address.** | ||
* Create a crontab entry to run the godaddyDDNS.sh file every five minutes. | ||
|
||
*crontab -e* | ||
|
||
``` | ||
crontab -e | ||
``` | ||
Add below lines | ||
|
||
*\*/5 * * * * /Path/to/godaddy-ddns/godaddy-ddns.sh >/dev/null 2>&1* | ||
``` | ||
*/5 * * * * /Path/to/godaddy-ddns/godaddy-ddns.sh >/dev/null 2>&1 | ||
*@reboot /Path/to/godaddy-ddns/godaddy-ddns.sh >/dev/null 2>&1* | ||
@reboot /Path/to/godaddy-ddns/godaddy-ddns.sh >/dev/null 2>&1 | ||
``` | ||
|
||
Save it | ||
|
||
* 'How to' Youtube video --> https://youtu.be/lnPPdYexf4E | ||
|
||
**NOTES:** | ||
goDaddy supports 60 requests per minutes. This scripts uses 2 requests. So, Make sure to create cronjob accordingly so that request doesn't exceed 60 request per minute or else it will fail. | ||
GoDaddy supports 60 requests per minutes. This scripts uses 2 requests. So, Make sure to create cronjob accordingly so that request doesn't exceed 60 request per minute or else it will fail. | ||
|
||
|
||
**Contribution guidelines** | ||
|
@@ -71,7 +72,7 @@ goDaddy supports 60 requests per minutes. This scripts uses 2 requests. So, Make | |
|
||
**How to reach me ?** | ||
|
||
* Repo owner or admin: Navratan Gupta <[email protected]> | ||
* Repo owner or admin: [Navratan Gupta](mailto:[email protected]) | ||
* You can reach out to me on [email protected] for any feedback. | ||
|
||
**Special mention to https://github.com/markafox/GoDaddy_Powershell_DDNS which is base for this script.** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters