GitXplorerGitXplorer
m

gandyndns

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
2def87ab63bd96a8faf24e461fe2e2764c695ecf

fix license in setup.py

mmarmeladema committed 7 years ago
Unverified
5ec9fb54864b280267a5571fedebdea7b4f3c7a7

if no config file is given, try to look for config standard places with appdirs module

mmarmeladema committed 7 years ago
Unverified
2b5b744538720cf0fc2f7df3daf95c4cf58fc685

provide config sample json file

mmarmeladema committed 7 years ago
Unverified
2254e45bef79a7986cc6697f3b7115dd4ec83acc

prepare for release version 0.2

mmarmeladema committed 7 years ago
Unverified
9d030bad6385f474550afffd19de3b18bfde1619

upgrade for new LiveDNS API

mmarmeladema committed 7 years ago
Unverified
1c4badba3916f8c2dda99a4d6d5f21c6354142a4

Update README.md

mmarmeladema committed 8 years ago

README

The README file for this repository.

Gandyndns

What is Gandyndns?

Gandidyndns is a dynamic IP updater based on Gandi LiveAPI. It can handle IPv4 and IPv6 although care should taken for IPv6 if you use dynamic/temporary addresses.

How does it work?

Well, read the code, it's pretty simple :] In short, it does the following for each domain that has to be updated:

  1. Retrieve current address(es) from http://whatip.me For each type of each record of each domain from the configuration:
  2. Retrieve current record from gandi
  3. If both records match, current record is up to date!
  4. If not, we upgrade gandi with current record informations Done.

How to install it?

python3 setup.py install

If you do not plan to share it among different users, you can (and maybe should) install it in your own user site-package directory with:

python3 setup.py install --user

You can also install it in a virtualenv.

How to use it?

Configuration file is written in json format.

Basic configuration

{
    "domains": {
        "example.com": {
            "apikey": "d41d8cd98f00b204e9800998ecf8427e",
            "records" : {
                "test": {
                    "A": {
                        "rrset_values":["{remote_addr}"]
                    }
                }
            }
        }
    }
}

You can either have different config files or have multiple domains in the same config file, as you wish.

Basic usage

$ gandyndns /path/to/gandyndns.conf

Gandyndns does not need any priviledge besides internet access to run, so avoid running it as root.

Cheers