what are the necessary changes in vsftpd.conf file?
Main Topics
Browse All TopicsHow to configure FTP SERVER on RHEL 5?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
have you installed vsftpd ??
its not too hard to configure..
what your purpose ?
do you want to chroot users home directory ?? then do this
In vsftpd.conf
Enable these 2 lines
chroot_list_enable=YES
# (default follows)
chroot_list_file=/etc/vsft
then Create a file touch /etc/vsftpd/chroot_list
cd /etc/vsftpd/
Then Edit this file by : vi chroot_list
Insert local user name you want to chroot
then restart the vsftpd service.
not sure if you can restrict by user session but
you can do per ip
http://www.cyberciti.biz/f
ok got it, if you are trying to access ftp server via ftp client such as filezilla which use passive mode. then
you need to do this
in vsftpd.conf
pasv_min_port=x
example : [ pasv_min_port=1023]
pasv_max_port=x
example : [pasv_max_port=1050]
Now add port 1023-1050 in iptables
iptables -A INPUT --source xx.xx.xx.xx -p tcp --dport 1023:1050 -j ACCEPT
This looks like a permissions problem:
< LISTERROR: d-w--w--w- 2 JetDirect public 512 Dec 2 2003 PORT
d-w--w--w-
(d=directory)
the first W mean write permissions for the owner (no read or execute permissions)
the second W means the same for the group
the third W means the same thing for everyone else
try opening a terminal and using the chmod command to change the permissions
something like this:
chmod 755 JetDirect
Business Accounts
Answer for Membership
by: colinvannPosted on 2009-06-16 at 23:59:26ID: 24645527
:)
/manuals/e nterprise/ RHEL-5-man ual/ Deploy ment_Guide -en-US/ch- ftp.html
http://www.redhat.com/docs
hope that helps.
Colin