2017-08-14 21:18:04 +00:00
|
|
|
'''
|
|
|
|
Created on 13 Aug 2017
|
|
|
|
@author: cave
|
|
|
|
Copy this file to config.py and update the settings
|
|
|
|
'''
|
|
|
|
#!/usr/bin/env python
|
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
'''
|
|
|
|
Get your API key
|
|
|
|
Start by retrieving your API Key from the "Security" section in new Account admin panel to be able to make authenticated requests to the API.
|
|
|
|
https://account.gandi.net/
|
|
|
|
'''
|
|
|
|
api_secret = '---my_secret_API_KEY----'
|
|
|
|
|
|
|
|
'''
|
|
|
|
Gandiv5 LiveDNS API Location
|
|
|
|
http://doc.livedns.gandi.net/#api-endpoint
|
2017-09-06 17:07:36 +00:00
|
|
|
https://dns.api.gandi.net/api/v5/
|
2017-08-14 21:18:04 +00:00
|
|
|
'''
|
2017-09-06 17:07:36 +00:00
|
|
|
api_endpoint = 'https://dns.api.gandi.net/api/v5'
|
2017-08-14 21:18:04 +00:00
|
|
|
|
|
|
|
#your domain with the subdomains in the zone file/UUID
|
|
|
|
domain = 'mydomain.tld'
|
|
|
|
|
|
|
|
#enter all subdomains to be updated, subdomains must already exist to be updated
|
|
|
|
subdomains = ["subdomain1", "subdomain2", "subdomain3"]
|
|
|
|
|
|
|
|
#300 seconds = 5 minutes
|
|
|
|
ttl = '300'
|
|
|
|
|
2017-08-15 16:25:55 +00:00
|
|
|
'''
|
|
|
|
IP address lookup service
|
2017-08-14 21:18:04 +00:00
|
|
|
run your own external IP provider:
|
|
|
|
+ https://github.com/mpolden/ipd
|
|
|
|
+ <?php $ip = $_SERVER['REMOTE_ADDR']; ?>
|
|
|
|
<?php print $ip; ?>
|
|
|
|
e.g.
|
2018-01-25 10:15:59 +00:00
|
|
|
+ https://ifconfig.co/ip
|
2017-08-15 16:25:55 +00:00
|
|
|
+ http://ifconfig.me/ip
|
2017-08-14 21:18:04 +00:00
|
|
|
+ http://whatismyip.akamai.com/
|
|
|
|
+ http://ipinfo.io/ip
|
2017-08-15 16:25:55 +00:00
|
|
|
+ many more ...
|
2017-08-14 21:18:04 +00:00
|
|
|
'''
|
2017-09-06 17:07:36 +00:00
|
|
|
ifconfig = 'choose_from_above_or_run_your_own'
|