source: server/major/proftpd.xml@ de65afe

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 de65afe was de65afe, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Update to proftpd-1.3.4b

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

  • Property mode set to 100644
File size: 12.4 KB
RevLine 
[08254fc]1<?xml version="1.0" encoding="ISO-8859-1"?>
[6732c094]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[08254fc]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
[0aeb696]6
[edeebe2]7 <!ENTITY proftpd-download-http " ">
[de65afe]8 <!ENTITY proftpd-download-ftp "ftp://ftp.proftpd.org/distrib/source/proftpd-&proftpd-version;.tar.gz">
9 <!ENTITY proftpd-md5sum "0871e0b93c9c3c88ca950b6d9a04aed2">
10 <!ENTITY proftpd-size "7.3 MB">
11 <!ENTITY proftpd-buildsize "29 MB">
[0af9bb66]12 <!ENTITY proftpd-time "0.3 SBU">
[08254fc]13]>
14
[1598426]15<sect1 id="proftpd" xreflabel="ProFTPD-&proftpd-version;">
[ce49e897]16 <?dbhtml filename="proftpd.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>ProFTPD-&proftpd-version;</title>
24
25 <indexterm zone="proftpd">
26 <primary sortas="a-proftpd">Proftpd</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to ProFTPD</title>
31
32 <para>The <application>ProFTPD</application> package contains a secure
33 and highly configurable FTP daemon. This is useful for serving large
34 file archives over a network.</para>
35
[de65afe]36 &lfs72_checked;
[e5bc4ed]37
[ce49e897]38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>Download (HTTP): <ulink url="&proftpd-download-http;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download (FTP): <ulink url="&proftpd-download-ftp;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download MD5 sum: &proftpd-md5sum;</para>
48 </listitem>
49 <listitem>
50 <para>Download size: &proftpd-size;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated disk space required: &proftpd-buildsize;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated build time: &proftpd-time;</para>
57 </listitem>
58 </itemizedlist>
59
60 <bridgehead renderas="sect3">ProFTPD Dependencies</bridgehead>
61
62 <bridgehead renderas="sect4">Optional</bridgehead>
[e5bc4ed]63 <para role="optional">
64 <xref linkend="linux-pam"/> and to run tests
65 <xref linkend="check"/> and
66 <ulink url='http://search.cpan.org/~clemburg/Test-Unit-0.14/'>Test::Unit-0.14</ulink>
67 </para>
[ce49e897]68
[3cb0c57]69 <para condition="html" role="usernotes">User Notes:
70 <ulink url="&blfs-wiki;/proftpd"/></para>
71
[ce49e897]72 </sect2>
73
74 <sect2 role="installation">
75 <title>Installation of ProFTPD</title>
76
77 <para>For security reasons, you should install
78 <application>ProFTPD</application> using an unprivileged user and group.
79 As the <systemitem class="username">root</systemitem> user:</para>
80
[b785ab29]81<screen role="root"><userinput>groupadd -g 46 proftpd &amp;&amp;
[13be1e2]82useradd -c proftpd -d /srv/ftp -g proftpd \
83 -s /usr/bin/proftpdshell -u 46 proftpd &amp;&amp;
84install -v -d -m775 -o proftpd -g proftpd /srv/ftp &amp;&amp;
85ln -v -s /bin/false /usr/bin/proftpdshell &amp;&amp;
86echo /usr/bin/proftpdshell &gt;&gt; /etc/shells</userinput></screen>
[08254fc]87
[4c288b0]88 <para>Install <application>ProFTPD</application> as an unprivileged user by
[ce49e897]89 running the following commands:</para>
[08254fc]90
[e5bc4ed]91<screen><userinput>./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/run &amp;&amp;
[ce49e897]92make</userinput></screen>
[1728f4e]93
[e5bc4ed]94 <para>The tests for this package require a very old (2001) version of the
[601a838]95 Perl Module Test::Unit. Using the lastest version of this Test::Unit
[e5bc4ed]96 results in many failures (34/1089) although the program appears to run
97 well. The tests take a long time (38 minutes, not CPU dependent) and are
98 not recommended. To test the results anyway, issue: <command>make
99 check</command>.</para>
100
[ce49e897]101 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
[08254fc]102
[ce49e897]103<screen role="root"><userinput>make install</userinput></screen>
[08254fc]104
[ce49e897]105 </sect2>
[08254fc]106
[ce49e897]107 <sect2 role="commands">
108 <title>Command Explanations</title>
[1728f4e]109
[ce49e897]110 <para><command>install -v -d -m775 -o proftpd -g proftpd
[13be1e2]111 /srv/ftp</command>: Create the home directory for
[ce49e897]112 <application>ProFTPD</application>.</para>
[1728f4e]113
[13be1e2]114 <para><command>ln -v -s /bin/false /usr/bin/proftpdshell</command>:
[4c288b0]115 Set the default shell as a link to an invalid shell.</para>
[1728f4e]116
[13be1e2]117 <para><command>echo /usr/bin/proftpdshell &gt;&gt;
[bfb7882]118 /etc/shells</command>: Fake a valid shell for compatibility purposes.</para>
[1728f4e]119
[ce49e897]120 <note>
[13be1e2]121 <para>The above two commands can be omitted if the following directive is
[ce49e897]122 placed in the configuration file:</para>
[1728f4e]123
[ce49e897]124<screen><literal>RequireValidShell off</literal></screen>
[1728f4e]125
[ce49e897]126 <para>By default, proftpd will require that users logging in have valid
127 shells. The RequireValidShell directive turns off this requirement. This
128 is only recommended if you are setting up your FTP server exclusively
129 for anonymous downloads.</para>
130 </note>
[08254fc]131
[ce49e897]132 <para><parameter>--sysconfdir=/etc</parameter>: This prevents the
133 configuration files from going to
134 <filename class="directory">/usr/etc</filename>.</para>
[08254fc]135
[ce49e897]136 <para><parameter>--localstatedir=/var/run</parameter>:
137 This uses <filename class="directory">/var/run</filename> instead of
138 <filename class="directory">/usr/var</filename> for lock files.</para>
[08254fc]139
[ce49e897]140 </sect2>
[08254fc]141
[ce49e897]142 <sect2 role="configuration">
143 <title>Configuring ProFTPD</title>
[1728f4e]144
[ce49e897]145 <sect3 id='proftpd-config'>
146 <title>Config Files</title>
[1728f4e]147
[ce49e897]148 <para><filename>/etc/proftpd.conf</filename></para>
[1728f4e]149
[ce49e897]150 <indexterm zone="proftpd proftpd-config">
151 <primary sortas="e-etc-proftpd">/etc/proftpd.conf</primary>
152 </indexterm>
[1586494]153
[ce49e897]154 </sect3>
[08254fc]155
[ce49e897]156 <sect3>
157 <title>Configuration Information</title>
[08254fc]158
[ce49e897]159 <para>This is a simple, download-only sample configuration. See the
160 <application>ProFTPD</application> documentation in
161 <filename class="directory">/usr/share/doc/proftpd</filename> and
162 consult the website at <ulink url="http://www.proftpd.org/"/> for
163 example configurations.</para>
[1728f4e]164
[8e37798]165<screen role="root"><?dbfo keep-together="auto"?><userinput>cat &gt; /etc/proftpd.conf &lt;&lt; "EOF"
[ce49e897]166<literal># This is a basic ProFTPD configuration file
[08254fc]167# It establishes a single server and a single anonymous login.
168
169ServerName "ProFTPD Default Installation"
170ServerType standalone
171DefaultServer on
172
173# Port 21 is the standard FTP port.
174Port 21
175# Umask 022 is a good standard umask to prevent new dirs and files
176# from being group and world writable.
177Umask 022
178
179# To prevent DoS attacks, set the maximum number of child processes
180# to 30. If you need to allow more than 30 concurrent connections
181# at once, simply increase this value. Note that this ONLY works
182# in standalone mode, in inetd mode you should use an inetd server
183# that allows you to limit maximum number of processes per service
[59048cd9]184<!--# (such as xinetd)-->
[08254fc]185MaxInstances 30
186
187# Set the user and group that the server normally runs at.
188User proftpd
189Group proftpd
190
[1586494]191# Normally, files should be overwritable.
[08254fc]192&lt;Directory /*&gt;
193 AllowOverwrite on
194&lt;/Directory&gt;
195
196# A basic anonymous configuration, no upload directories.
197&lt;Anonymous ~proftpd&gt;
198 User proftpd
199 Group proftpd
[1586494]200 # Clients should be able to login with "anonymous" as well as "proftpd"
[08254fc]201 UserAlias anonymous proftpd
202
203 # Limit the maximum number of anonymous logins
204 MaxClients 10
205
[1586494]206 # 'welcome.msg' should be displayed at login, and '.message' displayed
[08254fc]207 # in each newly chdired directory.
208 DisplayLogin welcome.msg
[e5bc4ed]209 DisplayChdir .message
[08254fc]210
211 # Limit WRITE everywhere in the anonymous chroot
212 &lt;Limit WRITE&gt;
213 DenyAll
214 &lt;/Limit&gt;
[ce49e897]215&lt;/Anonymous&gt;</literal>
216EOF</userinput></screen>
217
218 </sect3>
219
220 <sect3 id="proftpd-init">
221 <title>Boot Script</title>
222
223 <para>Install the <filename>/etc/rc.d/init.d/proftpd</filename> init
[5254d12]224 script included in the <xref linkend="bootscripts"/>
[ce49e897]225 package.</para>
226
227 <indexterm zone="proftpd proftpd-init">
228 <primary sortas="f-proftpd">proftpd</primary>
229 </indexterm>
230
231<screen role="root"><userinput>make install-proftpd</userinput></screen>
232
233 </sect3>
234
235 </sect2>
236
237 <sect2 role="content">
238 <title>Contents</title>
239
240 <segmentedlist>
241 <segtitle>Installed Programs</segtitle>
242 <segtitle>Installed Libraries</segtitle>
243 <segtitle>Installed Directory</segtitle>
244
245 <seglistitem>
[e5bc4ed]246 <seg>ftpcount, ftpdctl, ftpasswd, ftpmail, ftpquota, ftpscrub,
247 ftptop, ftpshut, ftpcount, ftpwho, proftpd</seg>
[ce49e897]248 <seg>None</seg>
249 <seg>/var/run/proftpd</seg>
250 </seglistitem>
251 </segmentedlist>
252
253 <variablelist>
254 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
255 <?dbfo list-presentation="list"?>
256 <?dbhtml list-presentation="table"?>
257
258 <varlistentry id="proftpd-prog">
259 <term><command>proftpd</command></term>
260 <listitem>
261 <para>is the FTP daemon.</para>
262 <indexterm zone="proftpd proftpd-prog">
263 <primary sortas="b-proftpd">proftpd</primary>
264 </indexterm>
265 </listitem>
266 </varlistentry>
267
268 <varlistentry id="ftpcount">
269 <term><command>ftpcount</command></term>
270 <listitem>
271 <para>shows the current number of connections.</para>
272 <indexterm zone="proftpd ftpcount">
273 <primary sortas="b-ftpcount">ftpcount</primary>
274 </indexterm>
275 </listitem>
276 </varlistentry>
277
[e5bc4ed]278 <varlistentry id="ftpdctl">
279 <term><command>ftpdctl</command></term>
280 <listitem>
281 <para>is used to control the proftpd daemon while it is running.</para>
282 <indexterm zone="proftpd ftpdctl">
283 <primary sortas="b-ftpdctl">ftpdctl</primary>
284 </indexterm>
285 </listitem>
286 </varlistentry>
287
288 <varlistentry id="ftpasswd">
289 <term><command>ftpasswd</command></term>
290 <listitem>
[601a838]291 <para>is a Perl script designed to create and manage
[e5bc4ed]292 AuthUserFiles and AuthGroupFiles of the correct format for proftpd.</para>
293 <indexterm zone="proftpd ftpasswd">
294 <primary sortas="b-ftpasswd">ftpasswd</primary>
295 </indexterm>
296 </listitem>
297 </varlistentry>
298
299 <varlistentry id="ftpmail">
300 <term><command>ftpmail</command></term>
301 <listitem>
[601a838]302 <para>is a Perl script for sending email based on the proftpd TransferLog.
[e5bc4ed]303 </para>
304 <indexterm zone="proftpd ftpmail">
305 <primary sortas="b-ftpmail">ftpmail</primary>
306 </indexterm>
307 </listitem>
308 </varlistentry>
309
310 <varlistentry id="ftpquota">
311 <term><command>ftpquota</command></term>
312 <listitem>
313 <para>is a Perl script designed to create and manage limits and tally
314 files for the mod_quotatab + mod_quotatab_file module combination
315 for proftpd.</para>
316 <indexterm zone="proftpd ftpquota">
317 <primary sortas="b-ftpquota">ftpquota</primary>
318 </indexterm>
319 </listitem>
320 </varlistentry>
321
322 <varlistentry id="ftpscrub">
323 <term><command>ftpscrub</command></term>
324 <listitem>
325 <para>provides a way to scrub the scoreboard file on demand.</para>
326 <indexterm zone="proftpd ftpscrub">
327 <primary sortas="b-ftpscrub">ftpscrub</primary>
328 </indexterm>
329 </listitem>
330 </varlistentry>
331
[ce49e897]332 <varlistentry id="ftpshut">
333 <term><command>ftpshut</command></term>
334 <listitem>
335 <para>shuts down all <application>proftpd</application> servers
336 at a given time.</para>
337 <indexterm zone="proftpd ftpshut">
338 <primary sortas="b-ftpshut">ftpshut</primary>
339 </indexterm>
340 </listitem>
341 </varlistentry>
342
343 <varlistentry id="ftptop">
344 <term><command>ftptop</command></term>
345 <listitem>
346 <para>displays running status on connections.</para>
347 <indexterm zone="proftpd ftptop">
348 <primary sortas="b-ftptop">ftptop</primary>
349 </indexterm>
350 </listitem>
351 </varlistentry>
352
353 <varlistentry id="ftpwho">
354 <term><command>ftpwho</command></term>
355 <listitem>
356 <para>shows current process information for each session.</para>
357 <indexterm zone="proftpd ftpwho">
358 <primary sortas="b-ftpwho">ftpwho</primary>
359 </indexterm>
360 </listitem>
361 </varlistentry>
362
363 </variablelist>
364
365 </sect2>
[1598426]366
367</sect1>
Note: See TracBrowser for help on using the repository browser.