Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Apr 2003 17:59:49 -0400
From:      "Grant Peel" <grant@thenetnow.com>
To:        <freebsd-questions@FreeBSD.ORG>
Subject:   FBSD - ProFTPD
Message-ID:  <007c01c30b75$fe1abc30$6601a8c0@grant>

next in thread | raw e-mail | index | archive | help
Hi all,

I have a question that would normally belong on another list (ProFTP)
however, as far as I can see this issue seems to be with FreeBSD.

ProFTPD is set up and running fine, but I can't seem to get the server to
recognize regular UNIX ftp and Anonymous FTP no matter what I do with the
config file.

When I set up strictly for UNIX loging (real user) server log says:
'USER anonymous not found in ..."

It seems to be ignoreing the <Anonymous> tag altogether.

Has anyone else seen this? If so, how was it resolved?

Copy of config:

<VirtualHost mydomain.ca>
User unixuser
Group unixuser
<Directory /*>
        AllowOverwrite on
</Directory>
ServerName mydomain.ca
        <Anonymous ~/ftp>
                UserAlias anonymous unixuser
                User unixuser
                Group unixuser
                AuthAliasOnly on
                AnonRequirePassword on
                RequireValidShell off
                <Directory *>
                        <Limit WRITE>
                        DenyAll
                        </Limit>
                </Directory>
              <Directory incoming/*>
                        <Limit ALL>
                        DenyAll
                        </Limit>
                        <Limit STOR CWD>
                        AllowAll
                        </Limit>
                </Directory>
        </Anonymous>
</VirtualHost>

-Grant

Grant W. Peel
Server Admin
grant@thenetnow.com
http://thenetnow.com



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?007c01c30b75$fe1abc30$6601a8c0>