puppet-module-conntrackd

Puppet module to manage conntrackd.

Build Status Release Puppet Forge Puppet Forge - downloads Puppet Forge - endorsement Puppet Forge - scores puppetmodule.info docs Apache-2 License

Have a look at REFERENCE.md or the main module class (init.pp) to see what this module does on a node plus usage examples.

Compatibility

Supports both ipv4 and ipv6, all conntrackd options and all sync modes.

Tested with Debian, Ubuntu and RedHat-compatible distros.

See metadata.json for the full list of tested operating systems and Puppet versions.

Requirements

This module has the following dependencies:

For a full (and up-to-date) list of dependencies, please see metadata.json.

Usage examples

Install and manage the conntrackd service

  include 'conntrackd'

Multicast Sync over eth1 using the default FTFW sync mode:

  class { 'conntrackd':
    protocol       => 'Multicast',
    interface      => 'eth1',
    ipv4_address   => $multicast_address,
    ipv4_interface => $facts['networking']['interfaces']['eth1']['ip'],
  }

UDP Sync over eth2 using the ALARM sync mode:

  class  { 'conntrackd':
    sync_mode     => 'ALARM',
    protocol      => 'UDP',
    interface     => 'eth2',
    ipv4_address  => $facts['networking']['interfaces']['eth2']['ip'],
    udp_ipv4_dest => $other_remote_host,
  }

Remove service, package and configuration of conntrackd:

  class  { 'conntrackd':
    ensure => 'absent',
  }

You can find more examples in the examples dir.

See COPYING and NOTICE file in the root directory of this module.

Author