Ignore:
Timestamp:
07/20/2005 06:28:37 PM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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
Children:
3b6a18a
Parents:
033c86d
Message:

Updated to Stunnel-4.11

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • postlfs/security/stunnel.xml

    r033c86d r50d61ed  
    88  <!ENTITY stunnel-download-http "http://www.stunnel.org/download/stunnel/src/stunnel-&stunnel-version;.tar.gz">
    99  <!ENTITY stunnel-download-ftp  "ftp://stunnel.mirt.net/stunnel/stunnel-&stunnel-version;.tar.gz">
    10   <!ENTITY stunnel-md5sum        "2077669b04c36e4c0baa68348e8860a7">
     10  <!ENTITY stunnel-md5sum        "253c50435d4d81cba6f19ca34266e6dc">
    1111  <!ENTITY stunnel-size          "484 KB">
    12   <!ENTITY stunnel-buildsize     "3.9 MB">
    13   <!ENTITY stunnel-time          "0.10 SBU">
     12  <!ENTITY stunnel-buildsize     "4.0 MB">
     13  <!ENTITY stunnel-time          "0.1 SBU">
    1414]>
    1515
     
    6262    </itemizedlist>
    6363
    64     <bridgehead renderas="sect3">Additional Downloads</bridgehead>
     64    <!-- <bridgehead renderas="sect3">Additional Downloads</bridgehead>
    6565    <itemizedlist spacing="compact">
    6666      <listitem>
     
    6868        url="ftp://stunnel.mirt.net/stunnel/stunnel-&stunnel-version;-1_minute_sleep_fix.patch"/></para>
    6969      </listitem>
    70     </itemizedlist>
     70    </itemizedlist> -->
    7171
    7272    <bridgehead renderas="sect3">Stunnel Dependencies</bridgehead>
     
    8686    <command>chroot</command> jail by an unprivileged user. Create the
    8787    new user, group and <command>chroot</command> home directory structure
    88     using the following commands as the <systemitem
    89     class="username">root</systemitem> user:</para>
     88    using the following commands as the
     89    <systemitem class="username">root</systemitem> user:</para>
    9090
    9191<screen role="root"><userinput>groupadd -g 51 stunnel &amp;&amp;
    9292useradd -c "Stunnel Daemon" -d /var/lib/stunnel \
    9393        -g stunnel -s /bin/false -u 51 stunnel &amp;&amp;
    94 install -d -m 700 -o stunnel -g stunnel /var/lib/stunnel/run</userinput></screen>
     94install -v -m700 -o stunnel -g stunnel -d /var/lib/stunnel/run</userinput></screen>
    9595
    9696    <note>
     
    9898      the <command>stunnel</command> daemon. If you own, or have already
    9999      created a signed SSL Certificate you wish to use, copy it to
    100       <filename>/etc/stunnel/stunnel.pem</filename> before starting the build,
    101       otherwise you will be prompted to create one during the installation
    102       process. The <filename>.pem</filename> file must be formatted as shown
    103       below:</para>
     100      <filename>/etc/stunnel/stunnel.pem</filename> before starting the build
     101      (ensure only root has read and write access), otherwise you will be
     102      prompted to create one during the installation process. The
     103      <filename>.pem</filename> file must be formatted as shown below:</para>
    104104
    105105<screen><literal>-----BEGIN RSA PRIVATE KEY-----
     
    108108-----BEGIN CERTIFICATE-----
    109109<replaceable>[many encrypted lines of certificate]</replaceable>
    110 -----END CERTIFICATE-----</literal></screen>
    111 
     110-----END CERTIFICATE-----
     111-----BEGIN DH PARAMETERS-----
     112<replaceable>[multiple encrypted lines of DH parameters]</replaceable>
     113-----END DH PARAMETERS-----</literal></screen>
    112114    </note>
    113115
     
    115117    commands:</para>
    116118
    117 <screen><userinput>patch -Np1 -i ../stunnel-&stunnel-version;-1_minute_sleep_fix.patch &amp;&amp;
    118 ./configure --prefix=/usr --sysconfdir=/etc \
     119<screen><userinput>./configure --prefix=/usr --sysconfdir=/etc \
    119120    --localstatedir=/var/lib &amp;&amp;
    120121make</userinput></screen>
     122
     123    <para>This package does not come with a test suite.</para>
    121124
    122125    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     
    146149
    147150    <para>prompt with the name or IP address you will be using
    148     to access the service.</para>
     151    to access the service(s).</para>
    149152
    150153  </sect2>
     
    181184EOF</userinput></screen>
    182185
    183     <para>Next, you need to add the service you wish to encrypt to the
     186    <para>Next, you need to add the service(s) you wish to encrypt to the
    184187    configuration file. The format is as follows:</para>
    185188
Note: See TracChangeset for help on using the changeset viewer.