I've been trying to get vsftpd working but have had no luck so far.  This is my config:<br><br>anonymous_enable=NO<br>local_enable=YES<br>write_enable=YES<br>local_umask=022<br>dirmessage_enable=YES<br>xferlog_enable=YES<br>
connect_from_port_20=YES<br>xferlog_file=/var/log/vsftpd.log<br>xferlog_std_format=YES<br>ascii_upload_enable=YES<br>ascii_download_enable=YES<br>ftpd_banner=Welcome to Darkstar FTP service.<br>listen=YES<br><br>pam_service_name=vsftpd<br>
userlist_enable=YES<br>tcp_wrappers=YES<br>pasv_max_port=1024<br>no_anon_password=YES<br><br>I am able to connect from my client system to the server.  I login as user pgaltieri, am prompted for password, and when I enter it I am logged in.  However, once this happens I can't do anything.  If I try to put a file I get:<br>
<br>ftp> put SPAM<br>local: SPAM remote: SPAM<br>227 Entering Passive Mode (10,0,0,70,31,17).<br>553 Could not create file.<br><br>If I try to list the directory:<br><br>ftp> dir<br>227 Entering Passive Mode (10,0,0,70,211,221).<br>
150 Here comes the directory listing.<br>226 Transfer done (but failed to open directory).<br>ftp> <br><br>The directory ownership on the server is:<br><br>[pgaltieri@darkstar ~]$ /bin/ls -ld /home/pgaltieri<br>drwxr-xr-x. 38 pgaltieri pgaltieri 4096 2009-07-16 10:40 /home/pgaltieri<br>
<br>I changed this from the default 700 wondering if this might be the cause but it made no difference.<br><br>I'm sure I'm doing something stupid, but I don't remember it being this hard to set up. <br><br>I'm also logged in as the same user on the client system.  The directory permissions on the client are 700<br>
<br>[pgaltieri@peglaptop10 ~]$ /bin/ls -ld ~pgaltieri<br>drwx------. 62 pgaltieri pgaltieri 4096 2009-07-16 11:34 /home/pgaltieri<br><br>I tried it with 755 but it still fails.<br><br>I would appreciate any help from someone who can tell me what I'm missing.  It seems to be a permissions issue on the server, but I don't know what it could be.  I'm not getting any selinux alerts.<br>
<br>Thanks<br>Paolo<br><br>