barnumbirr-rinetd

Install and manage rinetd(8) via Puppet


Keywords
networking, tcp, proxy, rinetd, puppet
License
Apache-2.0
Install
puppet module install barnumbirr-rinetd --version 0.2.0

Documentation

puppet-rinetd

Puppet Forge Puppet Forge - downloads

  1. Description
  2. Usage - Configuration options
  3. Limitations - OS compatibility, etc.
  4. License

Description

Install and manage rinetd(8) - internet “redirection server” via Puppet.

Usage

Install rinetd with default config

class { 'rinetd': }

Set allow and deny rules

class { 'rinetd':
    allow => ['192.168.178.1', '10.24.0.1', '10.24.42.1'],
    deny => ['192.168.1.*'],
}
Using hiera
rinetd::allow:
  - '192.168.178.1'
  - '10.24.0.1'
  - '10.24.42.1'

rinetd::deny:
  - '192.168.1.*'

Set forwarding rules

class { 'rinetd':
    rules => [
        '192.168.178.1 8080 10.24.0.1 443',
        '10.24.42.1 5901 192.168.7.49 3456',
    ],
}
Using hiera
rinetd::rules:
  - '192.168.178.1 8080 10.24.0.1 443'
  - '10.24.42.1 5901 192.168.7.49 3456'

Set logfile path

class { 'rinetd':
    logfile => ['/var/log/example.log'],
}
Using hiera
rinetd::logfile: '/var/log/example.log'

Use web-server style logfile format

class { 'rinetd':
    logcommon => true,
}
Using hiera
rinetd::logcommon: true

Class Parameters

Parameter Type Default Description
allow array [] set allow rules
deny array [] set deny rules
rules array [] set forwarding rules
logfile string /var/log/rinetd.log set logfile path
logcommon boolean false use web-server style logfile format
package_ensure string present latest,present or absent
service_manage boolean true manage rinetd service state
service_restart boolean true manage service restart

Limitations

This module is currently only written to work on Debian based operating systems, although it may work on others. The supported Puppet versions are defined in the metadata.json

License:

Copyright 2017-2019 Martin Simon

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.