Hi Ifincham,
I'm still having trouble loging in. For example, when I try loging with NCFTP, I get an error message:
Connecting to 192.168.1.50...
ProFTPD 1.2.5rc1 Server (Server) [system]
Login incorrect.
dialing (try 1)...
Interrupted
I don't even have a chance to enter a login name. But when I loging using FTP, it prompts for a username and password. If I try anonymous, it prompts for a password and I have no idea what the password is for user ftp (the default, set as "no login allowed" if I use webmin, should I change?). Loging in as a normal user works fine.
So my question is, how do fix it so that ncftp will log in. Here is my config file (I'm running redhat 7.1 if it makes a difference)
ServerName "Server"
ServerType standalone
DefaultServer on
Port 21
Umask 022
MaxInstances 30
User tom
Group users
<Directory /*>
AllowOverwrite on
</Directory>
<Anonymous ~ftp>
User ftp
Group ftp
# Login with "anonymous" as well as "ftp"
UserAlias anonymous ftp
# Maximum number of anonymous logins
MaxClients 10
DisplayLogin welcome.msg
DisplayFirstChdir .message
# Limit WRITE everywhere in the anonymous chroot
<Limit WRITE>
DenyAll
</Limit>
</Anonymous>
<Global>
DefaultTransferMode binary
</Global>
Thanks for the help,