项目作者: mark-wagner

项目描述 :
CloudFlare Dynamic DNS client
高级语言: Python
项目地址: git://github.com/mark-wagner/cfdc.git
创建时间: 2016-07-26T00:08:38Z
项目社区:https://github.com/mark-wagner/cfdc

开源协议:GNU General Public License v2.0

下载


Synopsis

CloudFlare Dynamic DNS client

Motivation

All the other CloudFlare DDNS clients I examined use the deprecated API v1. This script uses API v4.

Rather than using DNS to resolve the host, the CloudFlare API is queried for the IP. This allows the script to function with split-horizon DNS where the host resolves to an internal IP.

Installation

Gentoo

https://github.com/mark-wagner/portage/tree/master/net-dns/cfdc/cfdc-9999.ebuild

Add =net-dns/cfdc-9999 ** to /etc/portage/package.keywords.

Create a configuration file (default is /etc/cfdc.conf). The format is JSON and these are the required keys:

  • api_token - cloudflare api token with Zone.Zone, Zone.DNS permissions
  • name - host name you want to update
  • zone - zone (domain) you want to update

Optional keys:

  • sleep - interval in seconds to sleep between checks
  • ip_urls - list of URLs that return the IP and only the IP in plain text
  • endpoint - CloudFlare API endpoint
  • ttl - time to live of entry

Update /etc/conf.d/cfdc as needed.

To have the script start at boot run rc-update add cfdc default. The provided init script is for OpenRC. Adapt for your favorite init system. :)

If you changed the location of the log file update /etc/logrotate.d/cfdc.

Kubernetes

Create a json file cfdc.conf with keys desribed as above.

  1. kubectl create secret generic cfdc --from-file cfdc.conf

Sample manifest:

  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. name: cfdc
  5. labels:
  6. app: cfdc
  7. spec:
  8. selector:
  9. matchLabels:
  10. app: cfdc
  11. template:
  12. metadata:
  13. labels:
  14. app: cfdc
  15. spec:
  16. containers:
  17. - name: cfdc
  18. image: marklanfearnet/cfdc:latest
  19. volumeMounts:
  20. - name: cfdc
  21. mountPath: /etc/cfdc
  22. readOnly: true
  23. volumes:
  24. - name: cfdc
  25. secret:
  26. secretName: cfdc

License

Distributed under the terms of the GNU General Public License v2