Forge Home

radvd

Simple Puppet radvd management module

12,620 downloads

7,932 latest version

3.8 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.3.2 (latest)
  • 0.3.1
  • 0.3.0
  • 0.2.1
released Mar 15th 2016

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'fpletz-radvd', '0.3.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add fpletz-radvd
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install fpletz-radvd --version 0.3.2

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

fpletz/radvd — version 0.3.2 Mar 15th 2016

Simple radvd module for Puppet

This is a simple module for installing and configuring a radvd daemon to announce IPv6 prefixes on an interface. It should work on any Unix-like operating system that is supported by both radvd and puppet.

Current Status

As of now, all definitions and options that are available in radvd's config file should be supported. Please file a bug if you encounter problems.

Simple Example

    class {'radvd':
      interfaces => {
        'eth0' => {
          options  => {
            'AdvSendAdvert' => 'on',
          },
          prefixes => {
            '2001:0DB8:2342:cafe::/64' => {},
          },
        },
      },
    }

Or

    include 'radvd'
    radvd::interface { 'eth0':
      options  => {
        'AdvSendAdvert' => 'on',
      },
      prefixes => {
        '2001:0DB8:2342:cafe::/64' => {},
      },
    }

Advanced Example

    radvd::interface { 'eth1':
      options => {
        'AdvSendAdvert'     => 'on',
        'MinRtrAdvInterval' => 10,
        'MaxRtrAdvInterval' => 30,
      },
      prefixes => {
        '2001:0DB8:2342:cafe::/64' => {
          'AdvOnLink'     => 'on',
          'AdvAutonomous' => 'on',
        },
      },
      rdnss => {
        '2001:0DB8:2342:cafe::1' => {
          'AdvRDNSSLifetime' => 30,
        },
      },
      dnssl => {
        'branch.example.com example.com' => {
          'AdvDNSSLLifetime' => 30,
        },
      },
      routes => {
        '2001:0DB8:2342:ccc::/64' => {},
      },
      clients => [
        'fe80::21f:16ff:fe06:3aab',
        'fe80::21d:72ff:fe96:aaff',
      ],
    }

TODO

  • Code Documentation
  • Spec Tests

Contributions welcome!

Please contribute your code as pull requests if you add or fix code. I will try to merge or comment as soon as possible. Thanks! :)