Update DNS A/AAAA records with your current external IP address using the netcup DNS API.
Go to file
2023-03-28 16:46:13 +02:00
cron.d feat: license, cronjob, requirements and packaging 2023-03-28 16:37:55 +02:00
src/netcup_dns feat: only update if destination changed 2023-03-28 16:46:13 +02:00
.gitignore feat: license, cronjob, requirements and packaging 2023-03-28 16:37:55 +02:00
LICENSE feat: license, cronjob, requirements and packaging 2023-03-28 16:37:55 +02:00
pyproject.toml feat: license, cronjob, requirements and packaging 2023-03-28 16:37:55 +02:00
README.md init 2023-03-28 15:36:36 +02:00
requirements.txt feat: license, cronjob, requirements and packaging 2023-03-28 16:37:55 +02:00
setup.cfg feat: license, cronjob, requirements and packaging 2023-03-28 16:37:55 +02:00

netcup DNS

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

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()))