aboutsummaryrefslogtreecommitdiff
path: root/docs/file.README.html
blob: 2392596aa7d9541820297522709e7dddf5c9a409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
  File: README
  
    &mdash; Documentation by YARD 0.9.12
  
</title>

  <link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />

  <link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />

<script type="text/javascript" charset="utf-8">
  pathId = "";
  relpath = '';
</script>


  <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>

  <script type="text/javascript" charset="utf-8" src="js/app.js"></script>


  </head>
  <body>
    <div class="nav_wrap">
      <iframe id="nav" src="file_list.html?1"></iframe>
      <div id="resizer"></div>
    </div>

    <div id="main" tabindex="-1">
      <div id="header">
        <div id="menu">
  
    <a href="_index.html">Index</a> &raquo; 
    <span class="title">File: README</span>
  
</div>

        <div id="search">
  
    <a class="full_list_link" id="puppet_class_list_link"
        href="puppet_class_list.html">

        <svg width="24" height="24">
          <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
          <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
          <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
        </svg>
    </a>
  
</div>
        <div class="clear"></div>
      </div>

      <div id="content"><div id='filecontents'><h1>puppet-ferm</h1>

<p><a href="https://travis-ci.org/voxpupuli/puppet-ferm"><img src="https://travis-ci.org/voxpupuli/puppet-ferm.svg?branch=master" alt="Build Status"></a>
<a href="https://forge.puppetlabs.com/puppet/ferm"><img src="https://img.shields.io/puppetforge/v/puppet/ferm.svg" alt="Puppet Forge"></a>
<a href="https://forge.puppetlabs.com/puppet/ferm"><img src="https://img.shields.io/puppetforge/dt/puppet/ferm.svg" alt="Puppet Forge - downloads"></a>
<a href="https://forge.puppetlabs.com/puppet/ferm"><img src="https://img.shields.io/puppetforge/e/puppet/ferm.svg" alt="Puppet Forge - endorsement"></a>
<a href="https://forge.puppetlabs.com/puppet/ferm"><img src="https://img.shields.io/puppetforge/f/puppet/ferm.svg" alt="Puppet Forge - scores"></a>
<a href="https://voxpupuli.org/puppet-ferm"><img src="https://img.shields.io/badge/yard-docs-blue.svg" alt="Yard Docs"></a>
<a href="LICENSE"><img src="https://img.shields.io/github/license/voxpupuli/puppet-ferm.svg" alt="AGPL v3 License"></a></p>

<h2>Table of Contents</h2>

<ul>
<li><a href="#overview">Overview</a></li>
<li><a href="#setup">Setup</a></li>
<li><a href="#support">Support</a></li>
<li><a href="#reference">Reference</a></li>
<li><a href="#development">Development</a></li>
<li><a href="#authors">Authors</a></li>
</ul>

<hr>

<h2>Overview</h2>

<p>This module manages the <a href="http://ferm.foo-projects.org/">ferm</a> firewalling
software. It allows you to configure the actual software, but also all related
rules.</p>

<h2>Setup</h2>

<p>This is very easy:</p>

<pre class="code puppet"><code class="puppet">include ferm
</code></pre>

<p>This will install the package, but nothing more. It won&#39;t explicitly enable it
or write any rules. Be careful here: The default Debian package enabled
autostart for the service and only allows incoming SSH/IPSec connections.</p>

<p>You can easily define rules in Puppet (they don&#39;t need to be exported resources):</p>

<pre class="code puppet"><code class="puppet">  @@ferm::rule{&quot;allow_kafka_server2server-${trusted[&#39;certname&#39;]}&quot;:
    chain  =&gt; &#39;INPUT&#39;,
    policy =&gt; &#39;ACCEPT&#39;,
    proto  =&gt; &#39;tcp&#39;,
    dport  =&gt; &#39;(9092 9093)&#39;,
    saddr  =&gt; &quot;(${facts[&#39;networking&#39;][&#39;ip6&#39;]}/128 ${facts[&#39;networking&#39;][&#39;ip&#39;]}/32)&quot;,
    tag    =&gt; &#39;allow_kafka_server2server&#39;,
  }
</code></pre>

<p>You can collect them like this:</p>

<pre class="code puppet"><code class="puppet"># collect all exported resources with the tag allow_vault_server2server
Ferm::Rule &lt;&lt;| tag == &#39;allow_kafka_server2server&#39; |&gt;&gt;
</code></pre>

<p>You can also define rules in hiera:</p>

<pre class="code yaml"><code class="yaml">---
ferm::rules:
  &#39;allow_http_https&#39;:
    chain: &#39;INPUT&#39;
    policy: &#39;ACCEPT&#39;
    proto: &#39;tcp&#39;
    dport: &#39;(80 443)&#39;
    saddr: &quot;%{hiera(&#39;some_other_hiera_key&#39;)}&quot;
</code></pre>

<p>ferm::rules is a hash. configured for deep merge. Hiera will collect all
defined hashes and hand them over to the class. The main class will create
rules for all of them. It also collects all exported resources that are tagged
with the FQDN of a box.</p>

<h2>Reference</h2>

<h3>Main class</h3>

<p>The main class has the following parameters:</p>

<h4><code>manage_service</code></h4>

<p>[Boolean] disable/enable the management of the ferm daemon</p>

<h4><code>manage_configfile</code></h4>

<p>[Boolean] disable/enable the management of the ferm default config</p>

<h4><code>configfile</code></h4>

<p>[Stdlib::Absolutepath] path to the config file</p>

<h4><code>forward_policy</code></h4>

<p>[Ferm::Policies] default policy for the FORWARD chain</p>

<h4><code>output_policy</code></h4>

<p>[Ferm::Policies] default policy for the OUTPUT chain</p>

<h4><code>input_policy</code></h4>

<p>[Ferm::Policies] default policy for the INPUT chain</p>

<h4><code>rules</code></h4>

<p>A hash that holds all data for ferm::rule</p>

<h3>rule defined resource</h3>

<p>This creates an entry in the correct chain file for ferm.</p>

<h4><code>chain</code></h4>

<p>The chain where we place this rule</p>

<h4><code>policy</code></h4>

<p>The desired policy. Allowed values are Enum[&#39;ACCEPT&#39;,&#39;DROP&#39;, &#39;REJECT&#39;]</p>

<h4><code>protocol</code></h4>

<p>the protocol we would like to filter. Allowed values are Enum[&#39;icmp&#39;, &#39;tcp&#39;, &#39;udp&#39;]</p>

<h4><code>comment</code></h4>

<p>A comment that will be written into the file and into ip(6)tables</p>

<h4><code>dport</code></h4>

<p>The destination port we want to filter for. Can be any string from /etc/services or an integer</p>

<h4><code>sport</code></h4>

<p>Like the destination port above, just for the source port</p>

<h4><code>saddr</code></h4>

<p>Source IPv4/IPv6 address. Can be one or many of them. Multiple addresses are
always encapsulated in braces:
&#39;(127.0.0.1 2003::)&#39;</p>

<p>IPv4 and IPv6 addresses can be mixed. CIDR notation is possible if you want to
block networks, otherwise /32 or /128 is assumed by ferm/ip(6)tables</p>

<h4><code>daddr</code></h4>

<p>Same as above, just for the destination IP address</p>

<h4><code>ensure</code></h4>

<p>Add or remove it from the ruleset</p>

<h3>chain defined resource</h3>

<p>The module defines the three default chains for you, INPUT, FORWARD and OUTPUT.
You&#39;re able to define own chains if you want to</p>

<h4><code>policy</code></h4>

<p>The desired default policy for the chain</p>

<h4><code>chain</code></h4>

<p>The name of the chain</p>

<h2>Development</h2>

<p>This project contains tests for <a href="http://rspec-puppet.com/">rspec-puppet</a>.</p>

<p>Quickstart to run all linter and unit tests:</p>

<pre class="code bash"><code class="bash">bundle install --path .vendor/ --without system_tests --without development --without release
bundle exec rake test
</code></pre>

<h2>Authors</h2>

<p>puppet-ferm is maintained by <a href="https://voxpupuli.org">Vox Pupuli</a>, it was written by <a href="https://github.com/bastelfreak">Tim &#39;bastelfreak&#39; Meusel</a>.</p>
</div></div>

      <div id="footer">
     Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
</div>

    </div>
  </body>
</html>