Forge Home

knockd

Knockd Module

10,647 downloads

9,650 latest version

1.5 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.

Support the Puppet Community by contributing to this module

You are welcome to contribute to this module by suggesting new features, currency updates, or fixes. Every contribution is valuable to help ensure that the module remains compatible with the latest Puppet versions and continues to meet community needs. Complete the following steps:

  1. Review the module’s contribution guidelines and any licenses. Ensure that your planned contribution aligns with the author’s standards and any legal requirements.
  2. Fork the repository on GitHub, make changes on a branch of your fork, and submit a pull request. The pull request must clearly document your proposed change.

For questions about updating the module, contact the module’s author.

Version information

  • 0.0.4 (latest)
  • 0.0.3
  • 0.0.2
  • 0.0.1
released Mar 2nd 2015

Start using this module

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

Add this module to your Puppetfile:

mod 'xdrum-knockd', '0.0.4'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add xdrum-knockd
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install xdrum-knockd --version 0.0.4

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

xdrum/knockd — version 0.0.4 Mar 2nd 2015

puppet-knockd

This module manages knockd.

Class: knockd

A class for managing knockd server options

Parameters

[package_name]
package name.

[service_name]
service name (initscript name).

[usesyslog]
log action messages through syslog().

[logfile]
log actions directly to a file, (defaults to: /var/log/knockd.log).

[pidfile]
pidfile to use when in daemon mode, (defaults to: /var/run/knockd.pid).

[interface]: network interface to listen on (mandatory).

Examples

 class { "knockd":
   interface => 'eth0',
 }

Define: knockd::sequence

A defined type for managing knockd sequences

Parameters

[sequence]
port sequence used in single knock mode.

[open_sequence]
port sequence used in the open knock (two knock mode).

[close_sequence]
port sequence used in the close knock (two knock mode).

[one_time_sequences]
file containing the one time sequences to be used. (instead of using a fixed sequence).

[seq_timeout]
port sequence timeout.

[tcpflags]
only pay attention to packets that have this flag set.

[start_command]
command executed when a client makes a correct port knock (both modes).

[stop_command]
command executed when cmd_timeout seconds are passed or when a close sequence was received (both modes).

[cmd_timeout]
time to wait between start and stop command (only required in two knock mode).

Examples

An Open/Close example that uses a single knock to control access to port 22(ssh):

 class { "knockd":
   interface => 'eth3',
 }
 knockd::sequence {
   "SSH":
     sequence      => '2222:udp,3333:tcp,4444:udp',
     seq_timeout   => '15',
     tcpflags      => 'syn,ack',
     start_command => '/usr/sbin/iptables -A INPUT -s %IP% -p tcp --syn --dport 22 -j ACCEPT',
     cmd_timeout   => '10',
     stop_command  => '/usr/sbin/iptables -D INPUT -s %IP% -p tcp --syn --dport 22 -j ACCEPT',
 }

An example using two knocks: the first allow access to port 22(ssh), the second will close the port:

 class { "knockd":
   interface => 'eth0',
 }
 knockd::sequence {
   "SSH":
     open_sequence      => '7000,8000,9000',
     close_sequence     => '9000,8000,7000',
     seq_timeout        => '10',
     tcpflags           => 'syn',
     start_command      => '/usr/sbin/iptables -A INPUT -s %IP% -p tcp --syn --dport 22 -j ACCEPT',
     stop_command       => '/usr/sbin/iptables -D INPUT -s %IP% -p tcp --syn --dport 22 -j ACCEPT',
  }

Copyright:

Copyright 2015 Alessio Cassibba (X-Drum), unless otherwise noted.