Update DNS A/AAAA records with your current external IP address using the netcup DNS API.
Go to file
2023-06-28 19:51:09 +02:00
cfg feat: AAAA records and json configuration 2023-03-29 10:51:05 +02:00
cron.d chore: renamed dependency exec-notify 2023-06-16 13:50:55 +02:00
packaging docs: add TODO 2023-06-28 12:05:51 +02:00
src/netcup_dns docs: add usage 2023-06-28 19:51:09 +02:00
.gitignore feat: update makefile (Arch Linux installation) 2023-06-16 14:07:53 +02:00
LICENSE feat: license, cronjob, requirements and packaging 2023-03-28 16:37:55 +02:00
Makefile feat: update makefile (Arch Linux installation) 2023-06-16 14:07:53 +02:00
pyproject.toml feat: license, cronjob, requirements and packaging 2023-03-28 16:37:55 +02:00
README.md docs: add usage 2023-06-28 19:51:09 +02:00
requirements.txt feat: license, cronjob, requirements and packaging 2023-03-28 16:37:55 +02:00
setup.cfg feat: AAAA records and json configuration 2023-03-29 10:51:05 +02:00

netcup DNS

Update DNS A/AAAA records with your current external IP address using the netcup DNS API.

Installation

On Arch Linux:

make

With pip:

make install-pip

Configuration

For each netcup customer, create a .json configuration file inside /etc/netcup-dpns.

There is an example configuration.

Usage

usage: netcup-dns [-h] [--config-directory CFG_DIR]
                  [--cache-directory CACHE_DIR]
                  [--cache-validity-seconds CACHE_VALIDITY_SECONDS]

Update DNS A/AAAA records with your current external IP address using the
netcup DNS API.

options:
  -h, --help            show this help message and exit
  --config-directory CFG_DIR
                        Path to directory where `.json` config files reside.
  --cache-directory CACHE_DIR
                        Path to cache directory. Retrieved and updated DNS
                        records are cached there.
  --cache-validity-seconds CACHE_VALIDITY_SECONDS
                        Value in seconds for how long cached DNS records are
                        valid. Set to `0` to disable caching.

TODOs

Alternative external IP detection:

def external_ip_upnp():
    """
    https://stackoverflow.com/a/41385033

    Didn't work for me. Even after double checking fritz.box settings:

    fritz.box > Heimnetz > Netzwerk > Statusinformationen über UPnP übertragen
    """
    import miniupnpc
    u = miniupnpc.UPnP()
    u.discoverdelay = 1000
    u.discover()
    u.selectigd()
    print('external ip address: {}'.format(u.externalipaddress()))