source: content/web/vsftpd.xml@ 5cd0959d

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 5cd0959d was 5cd0959d, checked in by Archaic <archaic@…>, 20 years ago

Resetting keywords

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

  • Property mode set to 100644
File size: 4.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 vsftpd-download-http " ">
8 <!ENTITY vsftpd-download-ftp "ftp://vsftpd.beasts.org/users/cevans/vsftpd-&vsftpd-version;.tar.gz">
9 <!ENTITY vsftpd-size "148 KB">
10 <!ENTITY vsftpd-buildsize "492 KB">
11 <!ENTITY vsftpd-time "0.0 SBU">
12]>
13
14<sect1 id="vsftpd" xreflabel="vsFTPD-&vsftpd-version;">
15<sect1info>
16<othername>$LastChangedBy$</othername>
17<date>$Date$</date>
18</sect1info>
19<?dbhtml filename="vsftpd.html"?>
20<title>vsFTPD-&vsftpd-version;</title>
21
22<sect2>
23<title>Introduction to vsFTPD</title>
24
25<para>The <application>vsFTPD</application> package contains a very secure and
26very small FTP daemon. This is useful for serving files over a network.</para>
27
28<sect3><title>Package information</title>
29<itemizedlist spacing='compact'>
30<listitem><para>Download (HTTP):<ulink url="&vsftpd-download-http;"/></para></listitem>
31<listitem><para>Download (FTP): <ulink url="&vsftpd-download-ftp;"/></para></listitem>
32<listitem><para>Download size: &vsftpd-size;</para></listitem>
33<listitem><para>Estimated Disk space required: &vsftpd-buildsize;</para></listitem>
34<listitem><para>Estimated build time: &vsftpd-time;</para></listitem></itemizedlist>
35</sect3>
36
37<sect3><title><application>vsFTPD</application> dependencies</title>
38<sect4><title>Optional</title>
39<para><xref linkend="Linux_PAM"/>,
40<xref linkend="openssl"/>, and
41<xref linkend="tcpwrappers"/></para></sect4>
42</sect3>
43
44</sect2>
45
46<sect2>
47<title>Installation of <application>vsFTPD</application></title>
48
49<para>For security reasons, running <application>vsFTPD</application> as an
50unprivileged user and group is encouraged. Also, we need a user to map
51anonymous users to.</para>
52
53<screen><userinput><command>install -d -m 0755 /var/ftp/empty &amp;&amp;
54install -d -m 0755 /home/ftp &amp;&amp;
55groupadd vsftpd &amp;&amp;
56useradd -d /dev/null -g vsftpd -s /bin/false vsftpd &amp;&amp;
57groupadd ftp &amp;&amp;
58useradd -c anonymous_user -d /home/ftp -g ftp -s /bin/false ftp</command>
59</userinput></screen>
60
61<para>Install <application>vsFTPD</application> by running the following commands:</para>
62
63<screen><userinput><command>make &amp;&amp;
64install -m 755 vsftpd /usr/sbin/vsftpd &amp;&amp;
65install -m 644 vsftpd.8 /usr/share/man/man8 &amp;&amp;
66install -m 644 vsftpd.conf.5 /usr/share/man/man5 &amp;&amp;
67install -m 644 vsftpd.conf /etc
68</command></userinput></screen>
69
70</sect2>
71
72<sect2>
73<title>Command explanations</title>
74
75<para><parameter>install -d [...]</parameter>: This creates the directory that
76anonymous users will use (/home/ftp) and the directory the daemon will chroot
77into (/var/ftp/empty).</para>
78
79<note><para><filename class="directory">/home/ftp</filename> should not be
80owned by the user vsftpd, or the user ftp.</para></note>
81
82<para><parameter>echo "#define VSF_BUILD_TCPWRAPPERS" >>builddefs.h</parameter>:
83Use this prior to make to add support for tcpwrappers.</para>
84
85<para><parameter>echo "#define VSF_BUILD_SSL" >>builddefs.h</parameter>:
86Use this prior to make to add support for SSL.</para>
87
88<para><parameter>install -m [...]</parameter>:
89The Makefile hardwires /usr/local (if it exists). We want the files in /usr.</para>
90
91</sect2>
92
93<sect2>
94<title>Configuring <application>vsFTPD</application></title>
95
96<sect3><title>vsftpd init.d script</title>
97<para>Install the <filename>/etc/rc.d/init.d/vsftpd</filename>
98init script included in the <xref linkend="intro-important-bootscripts"/> package.</para>
99
100<screen><userinput><command>make install-vsftpd</command></userinput></screen>
101
102</sect3>
103
104<sect3><title>Config files</title>
105
106<para><filename>/etc/vsftpd.conf</filename></para> <para>vsFTPD comes with a
107basic anonymous-only configuration file that was copied to /etc above. We will
108modify this file because it is now recommended to run vsFTPD in standalone mode
109as opposed to inetd/xinetd mode. Also, we need to specify the priviledge
110separation user we created above. Finally, we need to specify the chroot
111directory. <command>man vsftpd.conf</command> will give you all the
112details.</para>
113
114<screen><userinput><command>cat &gt;&gt; /etc/vsftpd.conf &lt;&lt; "EOF"</command>
115background=YES
116listen=YES
117nopriv_user=vsftpd
118secure_chroot_dir=/var/ftp/empty
119<command>EOF</command></userinput></screen></sect3>
120
121</sect2>
122
123<sect2>
124<title>Contents</title>
125
126<para>The <application>vsFTPD</application> package contains
127<command>vsftpd</command>.</para>
128
129</sect2>
130
131<sect2><title>Description</title>
132
133<sect3><title>vsftpd</title>
134<para><command>vsftpd</command> is the daemon itself.</para></sect3>
135
136</sect2>
137
138</sect1>
139
Note: See TracBrowser for help on using the repository browser.