8000 GitHub - jvaubourg/puppet-allknowingdns: Tiny DNS server for IPv6 Reverse DNS
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

jvaubourg/puppet-allknowingdns

 
 

Repository files navigation

Puppet-allknowingdns Build Status

all-knowing-dns - Tiny DNS server for IPv6 Reverse DNS

See this website for more informations.

Table of contents

  1. Overview
  2. Module description
  3. Usage
  4. Limitations
  5. Development

Overview

AllKnowingDNS provides reverse DNS for IPv6 networks which use SLAAC (autoconf), e.g. for a /64 network.

The problem with IPv6 reverse DNS and traditional nameservers is that the nameserver requires you to provide a zone file. Assuming you want to provide RDNS for a /64 network, you have 2**64 = 18446744073709551616 different usable IP addresses (a little less if you are using SLAAC). Providing a zone file for that, even in a very terse notation, would consume a huge amount of disk space and could not possibly be held in the memory of the computers availablenowadays.

AllKnowingDNS instead generates PTR and AAAA records on the fly. You only configure which network you want to serve and what your entries should look like.

A Puppet Module is a collection of related content that can be used to model the configuration of a discrete service.

Module description

Dependencies

Usage

class { 'allknowingdns':
  listen  => ['2001:db8:42::1', '203.0.113.1'],
  network => '2001:db8:1337::/48',
  address => 'example.com',
}
class { 'allknowingdns':
  listen     => ['2001:db8:42::1', '203.0.113.1'],
  network    => '2001:db8:1337::/48',
  address    => 'example.com',
  exceptions => {
    '2001:db8:1337::1' => 'a.example.com',
    '2001:db8:1337::2' => 'b.example.com'
  }
}

Limitations

  • Tested only debian for the moment.

Development

Want to help - send a pull request.

About

Tiny DNS server for IPv6 Reverse DNS

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 67.0%
  • Puppet 33.0%
0