Forge Home

ipset

Linux ipsets management.

26,026 downloads

8,129 latest version

4.9 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.7.0 (latest)
  • 0.5.2
  • 0.5.1
  • 0.5.0
  • 0.4.1
  • 0.4.0
  • 0.3.3
  • 0.3.2
  • 0.3.1
  • 0.3.0
  • 0.2.1
  • 0.2.0
  • 0.1.0
released Aug 11th 2020
This version is compatible with:

Start using this module

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

Add this module to your Puppetfile:

mod 'mighq-ipset', '0.7.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add mighq-ipset
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install mighq-ipset --version 0.7.0

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

mighq/ipset — version 0.7.0 Aug 11th 2020

ipset

Overview

Linux ipset management by puppet.

Roughly based on thias/ipset module.

  • checks for current ipset state, before doing any changes to it
  • applies ipset every time it drifts from target state, not only on config file change
  • handles type changes
  • autostart support for rhel-6 and rhel-7 family (upstart, systemd)

Usage

direct content

Resource accepts ipset content as list of entries, one entry per line ("\n" separated). Can be generated by ERB template, or filled in directly from the manifest.

ipset { 'foo':
  ensure => present,
  set    => "1.2.3.4\n5.6.7.8",
  type   => 'hash:ip',
}

content as array

Set can be filled from array data structure. Typically passed from Hiera.

ipset { 'foo':
  ensure => present,
  set    => ['1.2.3.4', '5.6.7.8'],
  type   => 'hash:ip',
}

local file

Set will be filled in from the file present on the target computer's filesystem.

file { '/tmp/bar_set_content':
  ensure  => present,
  content => "1.2.3.0/24\n5.6.7.8/32"
}
->
ipset { 'bar':
  ensure => present,
  set    => 'file:///tmp/bar_set_content',
  type   => 'hash:net',
}

puppet master file

Content is passed from the file available in puppet master's definitions.

ipset { 'baz':
  ensure => present,
  set    => 'puppet:///modules/foo/bar.ipset',
}