Skip to content

Dynamically update IP addresses in Vultr DNS without services like No-IP

License

Notifications You must be signed in to change notification settings

netluxe/Vultr-Dynamic-DNS

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vultr Dynamic DNS

Dynamically update IP addresses in Vultr DNS without services like No-IP

If you want to map an A record in Vultr's DNS to a local machine but you aren't paying your ISP for a static IP, use this service to automatically update an IP change in Vultr. Since Vultr does not provide a Dynamic DNS service, programs like ddclient cannot be used, so this is an alternative. It uses Vultr's API and simple GET and POST requests, and uses an API key opposed to your username and password.

Basic Setup

  • First, set up your domain to use Vultr's DNS service if you haven't already. You will need access to your domain registrar to point your domain to Vultr's nameservers. After this is done you can set up your DNS records in Vultr, so add all of the necessary A, CNAME, TXT, MX, etc. records you need and then continure with this guide.
  • Once you have set up Vultr DNS, go to Vultr DNS and click on your domain name in this list. Note which records you would like to be dynamically updated. Only A records are supported by this utility. If you have multiple A records that you want updated to the same IP address, change them to CNAMEs and point them to one A record. This will simply things for you in the long run and is considered the proper way to configure DNS.
  • Install Python 3
  • Clone this repository: git clone https://github.com/andyjsmith/Vultr-Dynamic-DNS.git vultrddns && cd vultrddns
  • Fill out config.json. Read the intructions in config.json.example, you will need to generate an API key in Vultr. It is important to click "Allow All IPv4".
  • Test the script and configuration: python3 ddns.py. If there aren't any errors, the setup is complete.

Automation

After completing the basic setup, it is important to set up a recurring task as the script does not do this by default.

Linux & Mac OSX

  • Find the full path of the ddns.py file using realpath ddns.py
  • Run crontab -e
  • Add the following line to the end of the file, adding in the real path to the ddns.py file: */30 * * * * python3 [full path to ddns.py] > /dev/null 2>&1. This will run the script every 30 minutes and redirect all of its output to /dev/null.
  • Save and quit out of the text editor. The crontab file will automatically be install and your IP will now automatically be updated.

Windows

Create a task in Task Scheduler to run every 30 minutes. Follow the Microsoft guide for basic task creation.

  • Open task scheduler and click "Create Task..."
  • Give it a name and create a new trigger
  • Click "Daily" and under Advanced Settings click to repeat the task every 30 minutes and change "for a duration of" to "Indefinitely"
  • Add a new action to start a program and browse to your python executable. Add the ddns.py script as an argument.

About

Dynamically update IP addresses in Vultr DNS without services like No-IP

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%