VSFTPD stands for "Very Secure FTP Daemon" is a GPL licensed FTP server, Despite being small for purposes of speed and security, vsftpd can handle Virtual IP configurations, Virtual users, Powerful per-user reconfigurability, Bandwidth throttling, Per-source-IP reconfigurability, Per-source-IP limits, IPv6, Encryption support through SSL integration.
To install vsftpd in CentOS / Red Hat Linux follow the steps below.
==========
anonymous_enable=NO
ascii_upload_enable=YES
ascii_download_enable=YES
chroot_list_enable=YES
chroot_local_user=YES
chroot_list_file=/etc/vsftpd/chroot_list
ls_recurse_enable=YES
local_root=public_html
use_localtime=YES
==========
cent
*Note cent is the user name to be added.
To install vsftpd in CentOS / Red Hat Linux follow the steps below.
- yum install vsftpd
- chkconfig vsftpd on
- service vsftpd start
- Now Stop VSFTPD to make few configuration changes.
- Make the following configurations in the vsftpd.conf File.
==========
anonymous_enable=NO
ascii_upload_enable=YES
ascii_download_enable=YES
chroot_list_enable=YES
chroot_local_user=YES
chroot_list_file=/etc/vsftpd/chroot_list
ls_recurse_enable=YES
local_root=public_html
use_localtime=YES
==========
- Add users you allow to move over their home directory
cent
*Note cent is the user name to be added.
- Restart vsftpd
service vsftpd start
No comments:
Post a Comment
Do Write about the Blog and Welcome to the world where open source is every thing :-)