/dnspod_inter_ddns

Dnspod International Dynamic DNS written in Python

Primary LanguagePython

Dnspod International DDNS

Dnspod International Dynamic DNS written in Python

How to use

Used in command line

  1. Add your domain A record on Dnspod.com
  2. Download dnspod_inter_ddns.py
  3. Modify (dnspod_username), (dnspod_password) and (dnspod_domains) to yours
    • dnspod_domains support multi-domain
  4. Make the script executable on Unix like system(Linux, Mac OS X, etc.)
    • chmod a+x dnspod_inter_ddns.py
  5. You can run script once
    • ./dnspod_inter_ddns.py
  6. Of course, also can run in daemon mode. In daemon mode will check IP every 5 minutes
    • ./dnspod_inter_ddns.py daemon

Used in your program

  • Copy dnspod_inter_ddns.py to your program directory

      from dnspod_inter_ddns import dnspod_ddns
    
      dnspod_ddns()
    
  • Licensed under the MIT License