Personal tools

Difference between revisions of "Vsftpd"

From MohidWiki

Jump to: navigation, search
(New page: vsftpd is the very secure ftp daemon, a secure ftp server. ==Configuring== ===General=== > vim /etc/vsftpd/vsftpd.conf vsftpd.conf> anonymous_enable=NO write_enable=NO ===Ma...)
 
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
  
 
==Configuring==
 
==Configuring==
 +
> su
 +
 +
===Installing===
 +
> yum install vsftpd
 +
> /sbin/chkconfig --levels 345 vsftpd on
 +
> /sbin/chkconfig --list | grep ftp
  
 
===General===
 
===General===
Line 12: Line 18:
 
Simply add local users to the following file:
 
Simply add local users to the following file:
 
  > vim /etc/vsftpd/ftpusers
 
  > vim /etc/vsftpd/ftpusers
 +
 +
==External references==
 +
*[http://vsftpd.beasts.org/vsftpd_conf.html manpage of vsftpd.conf]
 +
 +
[[Category:Linux]]
 +
[[Category:Tools]]
 +
[[Category:Internet]]

Latest revision as of 20:15, 5 February 2009

vsftpd is the very secure ftp daemon, a secure ftp server.

Configuring

> su

Installing

> yum install vsftpd
> /sbin/chkconfig --levels 345 vsftpd on
> /sbin/chkconfig --list | grep ftp

General

> vim /etc/vsftpd/vsftpd.conf
vsftpd.conf>
anonymous_enable=NO
write_enable=NO

Managing users

Simply add local users to the following file:

> vim /etc/vsftpd/ftpusers

External references