source: postlfs/security/stunnel.xml@ 0290a023

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 0290a023 was 8d9eb0f, checked in by Randy McMurchy <randy@…>, 19 years ago

Shortened line lengths in various package instructions so that the instructions fit into the PDF viewable area (through page 250)

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@3274 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 8.8 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY stunnel-download-http "http://www.stunnel.org/download/stunnel/src/stunnel-&stunnel-version;.tar.gz">
8 <!ENTITY stunnel-download-ftp "ftp://ftp.fu-berlin.de/unix/linux/mirrors/gentoo/distfiles/stunnel-&stunnel-version;.tar.gz">
9 <!ENTITY stunnel-size "486 KB">
10 <!ENTITY stunnel-buildsize "3.9 MB">
11 <!ENTITY stunnel-time "0.11 SBU">
12]>
13
14<sect1 id="stunnel-package" xreflabel="Stunnel-&stunnel-version;">
15<sect1info>
16<othername>$LastChangedBy$</othername>
17<date>$Date$</date>
18</sect1info>
19<?dbhtml filename="stunnel.html"?>
20<title>Stunnel-&stunnel-version;</title>
21<indexterm zone="stunnel-package">
22<primary sortas="a-Stunnel-package">Stunnel</primary></indexterm>
23
24<sect2>
25<title>Introduction to <application>Stunnel</application></title>
26
27<para>The <application>Stunnel</application> package contains a program that
28allows you to encrypt arbitrary <acronym>TCP</acronym> connections inside
29<acronym>SSL</acronym> (Secure Sockets Layer) so you can easily communicate
30with clients over secure channels. <application>Stunnel</application> can be
31used to add <acronym>SSL</acronym> functionality to commonly used Inetd
32daemons like <acronym>POP</acronym>-2, <acronym>POP</acronym>-3, and
33<acronym>IMAP</acronym> servers, to standalone daemons like
34<acronym>NNTP</acronym>, <acronym>SMTP</acronym> and <acronym>HTTP</acronym>,
35and in tunneling <acronym>PPP</acronym> over network sockets without changes
36to the server package source code.</para>
37
38<sect3><title>Package information</title>
39<itemizedlist spacing="compact">
40<listitem><para>Download (HTTP):
41<ulink url="&stunnel-download-http;"/></para></listitem>
42<listitem><para>Download (FTP):
43<ulink url="&stunnel-download-ftp;"/></para></listitem>
44<listitem><para>Download size:
45&stunnel-size;</para></listitem>
46<listitem><para>Estimated disk space required:
47&stunnel-buildsize;</para></listitem>
48<listitem><para>Estimated build time:
49&stunnel-time;</para></listitem></itemizedlist>
50</sect3>
51
52<sect3><title><application>Stunnel</application> dependencies</title>
53<sect4><title>Required</title>
54<para><xref linkend="openssl-package"/></para>
55</sect4>
56
57<sect4><title>Optional</title>
58<para><xref linkend="tcpwrappers"/></para>
59</sect4>
60</sect3>
61
62</sect2>
63
64<sect2>
65<title>Installation of <application>Stunnel</application></title>
66
67<para>The <command>stunnel</command> daemon will be run in a
68<command>chroot</command> jail by an unprivileged user. Create the new user,
69group and <command>chroot</command> home directory structure using the
70following commands:</para>
71
72<screen><userinput><command>groupadd stunnel &amp;&amp;
73useradd -c "Stunnel Daemon" -d /var/lib/stunnel \
74 -g stunnel -s /bin/false stunnel &amp;&amp;
75install -d -m 700 -o stunnel -g stunnel /var/lib/stunnel/run</command></userinput></screen>
76
77<note><para>A signed <acronym>SSL</acronym> Certificate and a Private Key is
78necessary to run the <command>stunnel</command> daemon. If you own, or have
79already created a signed <acronym>SSL</acronym> Certificate you wish to use,
80copy it to <filename>tools/stunnel.pem</filename> in the source directory
81before starting the build, otherwise you will be prompted to create one. The
82<filename>.pem</filename> file must be formatted as shown below:</para>
83
84<screen>-----BEGIN RSA PRIVATE KEY-----
85<replaceable>[many encrypted lines of unencrypted key]</replaceable>
86-----END RSA PRIVATE KEY-----
87-----BEGIN CERTIFICATE-----
88<replaceable>[many encrypted lines of certificate]</replaceable>
89-----END CERTIFICATE-----</screen></note>
90
91<para>Install <application>Stunnel</application> by running the following
92commands:</para>
93
94<screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc \
95 --localstatedir=/var/lib/stunnel &amp;&amp;
96make &amp;&amp;
97make install</command></userinput></screen>
98
99</sect2>
100
101<sect2>
102<title>Command explanations</title>
103
104<para><parameter>--sysconfdir=/etc</parameter>: This parameter forces the
105configuration directory to <filename class='directory'>/etc</filename> instead
106of <filename class='directory'>/usr/etc</filename>.</para>
107
108<para><parameter>--localstatedir=/var/lib/stunnel</parameter>: This parameter
109causes the installation process to create
110<filename class='directory'>/var/lib/stunnel/stunnel</filename> instead of
111<filename class='directory'>/usr/var/stunnel</filename>.</para>
112
113<para><command>make</command>: This command builds the package and, if you
114did not copy an <filename>stunnel.pem</filename> file to the source
115<filename class='directory'>tools/</filename> directory, prompts you for the
116necessary information to create one. Ensure you reply to the</para>
117
118<screen><computeroutput>Common Name (FQDN of your server) [localhost]:</computeroutput></screen>
119
120<para>prompt with the name or <acronym>IP</acronym> address you will be using
121to access the service.</para>
122
123</sect2>
124
125<sect2>
126<title>Configuring <application>Stunnel</application></title>
127
128<sect3 id="stunnel-config"><title>Config files</title>
129<para><filename>/etc/stunnel/stunnel.conf</filename></para>
130<indexterm zone="stunnel-package stunnel-config">
131<primary sortas="e-etc-stunnel-stunnel.conf">/etc/stunnel/stunnel.conf</primary>
132</indexterm>
133</sect3>
134
135<sect3><title>Configuration Information</title>
136
137<para>Create a basic <filename>/etc/stunnel/stunnel.conf</filename>
138configuration file using the following commands:</para>
139
140<screen><userinput><command>cat &gt;/etc/stunnel/stunnel.conf &lt;&lt; "EOF"</command>
141# File: /etc/stunnel/stunnel.conf
142
143pid = /run/stunnel.pid
144chroot = /var/lib/stunnel
145client = no
146setuid = stunnel
147setgid = stunnel
148
149<command>EOF</command></userinput></screen>
150
151<para>Next, you need to add the service you wish to encrypt to the
152configuration file. The format is as follows:</para>
153
154<screen><userinput>[<replaceable>[service]</replaceable>]
155accept = <replaceable>[hostname:portnumber]</replaceable>
156connect = <replaceable>[hostname:portnumber]</replaceable></userinput></screen>
157
158<para>If you use <application>Stunnel</application> to encrypt a daemon
159started from <command>[x]inetd</command>, you may need to disable that daemon
160in the <filename>/etc/[x]inetd.conf</filename> file and enable a corresponding
161<replaceable>[service]</replaceable>_stunnel service. You may have to add an
162appropriate entry in <filename>/etc/services</filename> as well.</para>
163
164<para>For a full explanation of the commands and syntax used in the
165configuration file, run <command>man stunnel</command>. To see a
166<acronym>BLFS</acronym> example of an actual setup of an
167<command>stunnel</command> encrypted service, read the
168<acronym>SWAT</acronym> configuration section in the <xref linkend="samba3"/>
169instructions.</para>
170
171<para id="stunnel.init">To automatically start the <command>stunnel</command>
172daemon when the system is rebooted, install the
173<filename>/etc/rc.d/init.d/stunnel</filename> bootscript from the
174<xref linkend="intro-important-bootscripts"/> package.</para>
175<indexterm zone="stunnel-package stunnel.init">
176<primary sortas="f-stunnel.init">stunnel</primary></indexterm>
177
178<screen><userinput><command>make install-stunnel</command></userinput></screen>
179</sect3>
180
181</sect2>
182
183<sect2>
184<title>Contents</title>
185<segmentedlist>
186<segtitle>Installed Programs</segtitle>
187<segtitle>Installed Library</segtitle>
188<segtitle>Installed Directories</segtitle>
189<seglistitem>
190<seg>stunnel and stunnel3</seg>
191<seg>libstunnel.so</seg>
192<seg>/etc/stunnel, /var/lib/stunnel and
193/usr/share/doc/stunnel</seg></seglistitem>
194</segmentedlist>
195
196<variablelist>
197<bridgehead renderas="sect3">Short Descriptions</bridgehead>
198<?dbfo list-presentation="list"?>
199
200<varlistentry id="stunnel">
201<term><command>stunnel</command></term>
202<listitem><para> is a program designed to work as an <acronym>SSL</acronym>
203encryption wrapper between remote clients and local
204(<command>[x]inetd</command>-startable) or remote servers.</para>
205<indexterm zone="stunnel-package stunnel">
206<primary sortas="b-stunnel">stunnel</primary></indexterm>
207</listitem>
208</varlistentry>
209
210<varlistentry id="stunnel3">
211<term><command>stunnel3</command></term>
212<listitem><para>is a <application>Perl</application> wrapper script to use
213<command>stunnel</command> 3.x syntax with <command>stunnel</command>
214>=4.05.</para>
215<indexterm zone="stunnel-package stunnel3">
216<primary sortas="b-stunnel3">stunnel3</primary></indexterm>
217</listitem>
218</varlistentry>
219
220<varlistentry id="libstunnel">
221<term><filename class='libraryfile'>libstunnel.so</filename></term>
222<listitem><para> contains the <acronym>API</acronym> functions required by
223<application>Stunnel</application>.</para>
224<indexterm zone="stunnel-package libstunnel">
225<primary sortas="c-libstunnel">libstunnel.so</primary></indexterm>
226</listitem>
227</varlistentry>
228</variablelist>
229
230</sect2>
231
232</sect1>
233
Note: See TracBrowser for help on using the repository browser.