source: server/major/vsftpd.xml@ 939e5f5

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
Last change on this file since 939e5f5 was 939e5f5, checked in by Archaic <archaic@…>, 19 years ago

Updated to vsftpd-2.0.3

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

  • Property mode set to 100644
File size: 7.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY vsftpd-download-http " ">
8 <!ENTITY vsftpd-download-ftp "ftp://vsftpd.beasts.org/users/cevans/vsftpd-&vsftpd-version;.tar.gz">
9 <!ENTITY vsftpd-md5sum "74936cbd8e8251deb1cd99c5fb18b6f8">
10 <!ENTITY vsftpd-size "150 KB">
11 <!ENTITY vsftpd-buildsize "1.4 MB">
12 <!ENTITY vsftpd-time "less than 0.1 SBU">
13]>
14
15<sect1 id="vsftpd" xreflabel="vsFTPD-&vsftpd-version;">
16 <?dbhtml filename="vsftpd.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>vsFTPD-&vsftpd-version;</title>
24
25 <indexterm zone="vsftpd">
26 <primary sortas="a-vsFTPD">vsFTPD</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to vsFTPD</title>
31
32 <para>The <application>vsFTPD</application> package contains a very
33 secure and very small FTP daemon. This is useful for serving files
34 over a network.</para>
35
36 <bridgehead renderas="sect3">Package Information</bridgehead>
37 <itemizedlist spacing="compact">
38 <listitem>
39 <para>Download (HTTP): <ulink url="&vsftpd-download-http;"/></para>
40 </listitem>
41 <listitem>
42 <para>Download (FTP): <ulink url="&vsftpd-download-ftp;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download MD5 sum: &vsftpd-md5sum;</para>
46 </listitem>
47 <listitem>
48 <para>Download size: &vsftpd-size;</para>
49 </listitem>
50 <listitem>
51 <para>Estimated disk space required: &vsftpd-buildsize;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated build time: &vsftpd-time;</para>
55 </listitem>
56 </itemizedlist>
57
58 <bridgehead renderas="sect3">vsFTPD Dependencies</bridgehead>
59
60 <bridgehead renderas="sect4">Optional</bridgehead>
61 <para><xref linkend="Linux_PAM"/>,
62 <xref linkend="openssl"/>, and
63 <xref linkend="tcpwrappers"/></para>
64
65 </sect2>
66
67 <sect2 role="installation">
68 <title>Installation of vsFTPD</title>
69
70 <para>For security reasons, running <application>vsFTPD</application>
71 as an unprivileged user and group is encouraged. Also, a user should be
72 created to map anonymous users. As the <systemitem
73 class="username">root</systemitem> user, create the needed directories,
74 users, and groups with the following commands:</para>
75
76<screen role="root"><userinput>install -v -d -m 0755 /var/ftp/empty &amp;&amp;
77install -v -d -m 0755 /home/ftp &amp;&amp;
78groupadd -g 47 vsftpd &amp;&amp;
79useradd -d /dev/null -c "vsFTPD User" -g vsftpd -s /bin/false \
80 -u 47 vsftpd &amp;&amp;
81groupadd -g 45 ftp &amp;&amp;
82useradd -c anonymous_user -d /home/ftp -g ftp -s /bin/false -u 45 ftp</userinput></screen>
83
84 <para>Build <application>vsFTPD</application> as an unprivileged user
85 with the following commands:</para>
86
87<screen><userinput>make</userinput></screen>
88
89 <para>Once again, become the <systemitem class="username">root</systemitem>
90 user and install <application>vsFTPD</application> with the following
91 commands:</para>
92
93<screen><userinput>install -v -m 755 vsftpd /usr/sbin/vsftpd &amp;&amp;
94install -v -m 644 vsftpd.8 /usr/share/man/man8 &amp;&amp;
95install -v -m 644 vsftpd.conf.5 /usr/share/man/man5 &amp;&amp;
96install -v -m 644 vsftpd.conf /etc</userinput></screen>
97
98 </sect2>
99
100 <sect2 role="commands">
101 <title>Command Explanations</title>
102
103 <para><parameter>install -v -d [...]</parameter>: This creates the
104 directory that anonymous users will use (<filename
105 class='directory'>/home/ftp</filename>)
106 and the directory the daemon will chroot into
107 (<filename class='directory'>/var/ftp/empty</filename>).</para>
108
109 <note>
110 <para><filename class="directory">/home/ftp</filename> should not be
111 owned by the user <systemitem class="username">vsftpd</systemitem>,
112 or the user <systemitem class="username">ftp</systemitem>.</para>
113 </note>
114
115 <para><option>echo "#define VSF_BUILD_TCPWRAPPERS" >>builddefs.h</option>:
116 Use this prior to <command>make</command> to add support for
117 <application>tcpwrappers</application>.</para>
118
119 <para><option>echo "#define VSF_BUILD_SSL" >>builddefs.h</option>:
120 Use this prior to <command>make</command> to add support for SSL.</para>
121
122 <para><option>install -m [...]</option>:
123 The <filename>Makefile</filename> hardwires
124 <filename class='directory'>/usr/local</filename> (if it exists). These
125 commands install the files in
126 <filename class='directory'>/usr</filename>.</para>
127
128 </sect2>
129
130 <sect2 role="configuration">
131 <title>Configuring vsFTPD</title>
132
133 <sect3 id="vsftpd-config">
134 <title>Config Files</title>
135
136 <para><filename>/etc/vsftpd.conf</filename></para>
137
138 <indexterm zone="vsftpd vsftpd-config">
139 <primary sortas="e-etc-vsftpd.conf">/etc/vsftpd.conf</primary>
140 </indexterm>
141
142 </sect3>
143
144 <sect3>
145 <title>Configuration Information</title>
146
147 <para><application>vsFTPD</application> comes with a basic
148 anonymous-only configuration file that was copied to
149 <filename class='directory'>/etc</filename> above. While still as
150 <systemitem class="username">root</systemitem>, this file should be
151 modified because it is now recommended to run <command>vsftpd</command>
152 in standalone mode as opposed to
153 <command>inetd</command>/<command>xinetd</command> mode. Also, you
154 should specify the privilege separation user created above. Finally,
155 you should specify the <command>chroot</command> directory.
156 <command>man vsftpd.conf</command> will give you all the details.</para>
157
158<screen role="root"><userinput>cat &gt;&gt; /etc/vsftpd.conf &lt;&lt; "EOF"
159<literal>background=YES
160listen=YES
161nopriv_user=vsftpd
162secure_chroot_dir=/var/ftp/empty</literal>
163EOF</userinput></screen>
164
165 </sect3>
166
167 <sect3 id="vsftpd-init">
168 <title>Boot Script</title>
169
170 <para>Install the <filename>/etc/rc.d/init.d/vsftpd</filename>
171 init script included in the
172 <xref linkend="intro-important-bootscripts"/> package.</para>
173
174<screen role="root"><userinput>make install-vsftpd</userinput></screen>
175
176 </sect3>
177
178 </sect2>
179
180 <sect2 role="content">
181 <title>Contents</title>
182
183 <segmentedlist>
184 <segtitle>Installed Program</segtitle>
185 <segtitle>Installed Libraries</segtitle>
186 <segtitle>Installed Directories</segtitle>
187
188 <seglistitem>
189 <seg>vsftpd</seg>
190 <seg>None</seg>
191 <seg>/var/ftp, /var/ftp/empty, /home/ftp</seg>
192 </seglistitem>
193 </segmentedlist>
194
195 <variablelist>
196 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
197 <?dbfo list-presentation="list"?>
198 <?dbhtml list-presentation="table"?>
199
200 <varlistentry id="vsftpd-prog">
201 <term><command>vsftpd</command></term>
202 <listitem>
203 <para>is the FTP daemon.</para>
204 <indexterm zone="vsftpd vsftpd-prog">
205 <primary sortas="b-vsftpd">vsftpd</primary>
206 </indexterm>
207 </listitem>
208 </varlistentry>
209
210 </variablelist>
211
212 </sect2>
213
214</sect1>
Note: See TracBrowser for help on using the repository browser.