Puppet module to manage conntrackd.
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.
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.
This module has the following dependencies:
For a full (and up-to-date) list of dependencies, please see metadata.json.
include 'conntrackd'
class { 'conntrackd':
protocol => 'Multicast',
interface => 'eth1',
ipv4_address => $multicast_address,
ipv4_interface => $facts['networking']['interfaces']['eth1']['ip'],
}
class { 'conntrackd':
sync_mode => 'ALARM',
protocol => 'UDP',
interface => 'eth2',
ipv4_address => $facts['networking']['interfaces']['eth2']['ip'],
udp_ipv4_dest => $other_remote_host,
}
class { 'conntrackd':
ensure => 'absent',
}
You can find more examples in the examples dir.
- Official conntrackd website http://conntrack-tools.netfilter.org/conntrackd.html
- Official project page https://github.com/voxpupuli/puppet-conntrackd
See COPYING and NOTICE file in the root directory of this module.
- Written initially by Ian Bissett [email protected] @bisscuitt
- This module is now maintained by VoxPupuli