I'm running proftpd on Ubuntu 6.06, and when I ftp into the machine with either
or in the case of my mac
the connection goes through and works (if slowly on the mac).
I'm not sure how familiar you guys are with mac, but with Go->Connect
to Server->
ftp://192.168.1.118, finder tries to connect but eventually gives and error message and hangs. I don't know if it is the way finder handles the connections, or some setting that isn't optimum for GUI tools. (I've noticed that even windows/linux/mac machines on the local network take quite some time to connect even at 100 mps)
this is my config in proftpd.conf
#
# Includes required DSO modules. This is mandatory in proftpd 1.3
#
Include /etc/proftpd/modules.conf
#
# /etc/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#
ServerName "Armons FTP Server"
ServerType standalone
DeferWelcome on
MultilineRFC2228 on
DefaultServer on
ShowSymlinks on
TimeoutNoTransfer 300
TimeoutStalled 300
TimeoutIdle 120
DisplayLogin Welcome to Armons FTP Server
DisplayFirstChdir .message
ListOptions "-l"
DenyFilter \*.*/
# Uncomment this if you would use TLS module:
TLSEngine on
# Port 21 is the standard FTP port.
Port 21
MaxInstances 10
# Set the user and group that the server normally runs at.
User ftp
Group nogroup
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask 022 022
# Normally, we want files to be overwriteable.
AllowOverwrite on
AllowRetrieveRestart on
<Anonymous /home/ftp>
User ftp
Group nogroup
UserAlias anonymous ftp
LoginPasswordPrompt off
</Anonymous>
DefaultRoot ~ !admin,users
Thanks for any help! (Even if you don't know how to fix it for my mac, any "better" configs would be appreciated!)