Python DNS Failover Documentation



Similar documents
Diablo 3 API Documentation

Dry Dock Documentation

SagePay payment gateway package for django-oscar Documentation

Authorize Sauce Documentation

Memopol Documentation

Theorist HT Induc0on Course Lesson 1: Se6ng up your new computer (Mac OS X >= 10.6) As of 9/27/2012

Tuskar UI Documentation

Magento OpenERP Integration Documentation

monoseq Documentation

Flask-SSO Documentation

depl Documentation Release depl contributors

Source Code Management for Continuous Integration and Deployment. Version 1.0 DO NOT DISTRIBUTE

DevKey Documentation. Release 0.1. Colm O Connor

AuShadha Documentation

Version control. with git and GitHub. Karl Broman. Biostatistics & Medical Informatics, UW Madison

Saruman Documentation

citools Documentation

Pyak47 - Performance Test Framework. Release 1.2.1

Is This Your Pipe? Hijacking the Build Pipeline

Using GitHub for Rally Apps (Mac Version)

CPSC 491. Today: Source code control. Source Code (Version) Control. Exercise: g., no git, subversion, cvs, etc.)

Introducing Xcode Source Control

MATLAB & Git Versioning: The Very Basics

Version Control using Git and Github. Joseph Rivera

Trytond Magento Documentation

Django Two-Factor Authentication Documentation

StriderCD Book. Release 1.4. Niall O Higgins

Rebuild Perfume With Python and PyPI

Distributed Version Control

MOOSE-Based Application Development on GitLab

Continuous Delivery on AWS. Version 1.0 DO NOT DISTRIBUTE

FEEG Applied Programming 3 - Version Control and Git II

Git, GitHub & Web Hosting Workshop

Hadoop Data Warehouse Manual

DevShop. Drupal Infrastructure in a Box. Jon Pugh CEO, Founder ThinkDrop Consulting Brooklyn NY

Setup Cisco Call Manager on VMware

Introduction to the Git Version Control System

Rapid Website Deployment With Django, Heroku & New Relic

An Introduction to Mercurial Version Control Software

AWS CodePipeline. User Guide API Version

VOC Documentation. Release 0.1. Russell Keith-Magee

IceWarp Server. Log Analyzer. Version 10

A Development Analytics Dashboard For Apache CloudStack

Version Control with. Ben Morgan

skosprovider_rdf Documentation

Platform as a Service and Container Clouds

Developing tests for the KVM autotest framework

How To Manage Change In Jeepers

Version Control with Git. Dylan Nugent

Build Automation for Mobile. or How to Deliver Quality Apps Continuously. Angelo Rüggeberg

MyMoney Documentation

SME- Mail to SMS & MMS Gateway with NowSMS Quick Start Guide

Log Analyzer Reference

PKI, Git and SVN. Adam Young. Presented by. Senior Software Engineer, Red Hat. License Licensed under

Configuring Sponsor Authentication

Sophos Mobile Control Super administrator guide. Product version: 3

McAfee Web Gateway Administration Intel Security Education Services Administration Course Training

Getting Started with Clearlogin A Guide for Administrators V1.01

flask-mail Documentation

Installing GFI MailEssentials

Enabling single sign-on for Cognos 8/10 with Active Directory

Version Control! Scenarios, Working with Git!

OAuthLib Documentation

SSL VPN. Virtual Appliance Installation Guide. Virtual Private Networks

django-cron Documentation

Double Feature Talk. 1) Intro to SSL 2) Git Basics for Devs & Designers

Hosted Connecting Steps Client Installation Instructions

Developer Workshop Marc Dumontier McMaster/OSCAR-EMR

Continuous integration with Jenkins CI

Django FTP server Documentation

django-helpdesk Documentation

Advanced Computing Tools for Applied Research Chapter 4. Version control

Remote Desktop With P2P VNC

Work. MATLAB Source Control Using Git

Lab Exercise Part II: Git: A distributed version control system

Version Control with Git. Linux Users Group UT Arlington. Rohit Rawat

The Social Accelerator Setup Guide

InfoRouter LDAP Authentication Web Service documentation for inforouter Versions 7.5.x & 8.x

What Does Tequila Have to Do with Managing Macs? Using Open Source Tools to Manage Mac OS in the Enterprise!

Git Fusion Guide August 2015 Update

GETTING STARTED WITH FLEXI-CLOUD

Putting It All Together. Vagrant Drush Version Control

The Hitchhiker s Guide to Github: SAS Programming Goes Social Jiangtang Hu d-wise Technologies, Inc., Morrisville, NC

Introduction to Version Control with Git

By the Citrix Publications Department. Citrix Systems, Inc.

A Pythonic Approach to Continuous Delivery

Quick Start Guide for VMware and Windows 7

vrealize Operations Manager Customization and Administration Guide

Yottaa Site Optimizer Guide

KAREL UCAP DNS AND DHCP CONCEPTS MANUAL MADE BY: KAREL ELEKTRONIK SANAYI ve TICARET A.S. Organize Sanayi Gazneliler Caddesi 10

Version Control with Svn, Git and git-svn. Kate Hedstrom ARSC, UAF

Version Control with Git. Kate Hedstrom ARSC, UAF

Connect & License Management Samantha Godfrey Winshuttle

Transcription:

Python DNS Failover Documentation Release 0.1.0 Marc Cerrato April 07, 2016

Contents 1 Python DNS Failover 3 1.1 DNS Backends.............................................. 3 1.2 TODO.................................................. 4 2 Installation 5 3 Usage 7 4 Contributing 9 4.1 Types of Contributions.......................................... 9 4.2 Get Started!................................................ 10 4.3 Pull Request Guidelines......................................... 10 4.4 Tips.................................................... 11 5 Credits 13 5.1 Development Lead............................................ 13 5.2 Contributors............................................... 13 6 History 15 6.1 0.1.0 (2013-12-29)............................................ 15 7 Indices and tables 17 i

ii

Python DNS Failover Documentation, Release 0.1.0 Contents: Contents 1

Python DNS Failover Documentation, Release 0.1.0 2 Contents

CHAPTER 1 Python DNS Failover Python script to automatically update DNS records for a bunch of servers participating in a Round-Robin DNS setup. Free software: BSD license Documentation: http://python-dns-failover.rtfd.org. This project is mainly based on @dotcloud s work on his project autodnsfailover. The main difference is that python-dns-failover script is aimed to run in an external machine while autodnsfailover is to run in the participating servers themselves. 1.1 DNS Backends A DNS backend is responsible for updating the DNS records. It must provide the following methods: get_a_records(fqdn): Returns the list of ip adresses records associated with the given FQDN. add_a_record(fqdn, ip): Adds a resource record of type A to the DNS list. Optionally return the new record created. delete_a_record(fqdn, ip): Deletes all DNS A-type resource records targeting the given ip. Optionally return the number of deleted records. The constructor will typically be implementation-dependent, and allow to set the credentials and/or the zone to act upon. 1.1.1 Available DNS Backends CloudFlareDNS email: E-mail address of your CloudFlare account. key: API key of your CloudFlare account. zone: target DNS full qualified domain name. ttl: TTL of record in seconds. 1 = Automatic, otherwise, value must in between 120 and 4,294,967,295 seconds. Defaults to 1. url: CloudFlare client gateway interface url. Defaults to https://www.cloudflare.com/api_json.html. 3

Python DNS Failover Documentation, Release 0.1.0 1.2 TODO Documentation Testing 4 Chapter 1. Python DNS Failover

CHAPTER 2 Installation At the command line: $ easy_install python-dns-failover Or, if you have virtualenvwrapper installed: $ mkvirtualenv python-dns-failover $ pip install python-dns-failover 5

Python DNS Failover Documentation, Release 0.1.0 6 Chapter 2. Installation

CHAPTER 3 Usage To use Python DNS Failover in a project: import dns_failover 7

Python DNS Failover Documentation, Release 0.1.0 8 Chapter 3. Usage

CHAPTER 4 Contributing Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given. You can contribute in many ways: 4.1 Types of Contributions 4.1.1 Report Bugs Report bugs at https://github.com/marccerrato/python-dns-failover/issues. If you are reporting a bug, please include: Your operating system name and version. Any details about your local setup that might be helpful in troubleshooting. Detailed steps to reproduce the bug. 4.1.2 Fix Bugs Look through the GitHub issues for bugs. Anything tagged with bug is open to whoever wants to implement it. 4.1.3 Implement Features Look through the GitHub issues for features. Anything tagged with feature is open to whoever wants to implement it. 4.1.4 Write Documentation Python DNS Failover could always use more documentation, whether as part of the official Python DNS Failover docs, in docstrings, or even on the web in blog posts, articles, and such. 4.1.5 Submit Feedback The best way to send feedback is to file an issue at https://github.com/marccerrato/python-dns-failover/issues. If you are proposing a feature: 9

Python DNS Failover Documentation, Release 0.1.0 Explain in detail how it would work. Keep the scope as narrow as possible, to make it easier to implement. Remember that this is a volunteer-driven project, and that contributions are welcome :) 4.2 Get Started! Ready to contribute? Here s how to set up python-dns-failover for local development. 1. Fork the python-dns-failover repo on GitHub. 2. Clone your fork locally: $ git clone git@github.com:your_name_here/python-dns-failover.git 3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development: $ mkvirtualenv python-dns-failover $ cd python-dns-failover/ $ python setup.py develop 4. Create a branch for local development: $ git checkout -b name-of-your-bugfix-or-feature Now you can make your changes locally. 5. When you re done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox: $ flake8 dns_failover tests $ python setup.py test $ tox To get flake8 and tox, just pip install them into your virtualenv. 6. Commit your changes and push your branch to GitHub: $ git add. $ git commit -m "Your detailed description of your changes." $ git push origin name-of-your-bugfix-or-feature 7. Submit a pull request through the GitHub website. 4.3 Pull Request Guidelines Before you submit a pull request, check that it meets these guidelines: 1. The pull request should include tests. 2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst. 3. The pull request should work for Python 2.6, 2.7, and 3.3, and for PyPy. Check https://travisci.org/marccerrato/python-dns-failover/pull_requests and make sure that the tests pass for all supported Python versions. 10 Chapter 4. Contributing

Python DNS Failover Documentation, Release 0.1.0 4.4 Tips To run a subset of tests: $ python -m unittest tests.test_dns_failover 4.4. Tips 11

Python DNS Failover Documentation, Release 0.1.0 12 Chapter 4. Contributing

CHAPTER 5 Credits 5.1 Development Lead Marc Cerrato <marccerrato@gmail.com> 5.2 Contributors None yet. Why not be the first? 13

Python DNS Failover Documentation, Release 0.1.0 14 Chapter 5. Credits

CHAPTER 6 History 6.1 0.1.0 (2013-12-29) Core functionality. CloudFlare DNS backend. First release on PyPI. 15

Python DNS Failover Documentation, Release 0.1.0 16 Chapter 6. History

CHAPTER 7 Indices and tables genindex modindex search 17