source: server/major/vsftpd.xml@ 5254d12

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.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 5254d12 was 5254d12, checked in by Randy McMurchy <randy@…>, 18 years ago

Standardized the id tag name of the Bootscripts package

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

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