FTP Server (FreeBSD Ver. 8.0)

Dear, Experts

I have a FreeBSD computer running as a FTP server, and i can login with a command prompt but when i try to login with Internet Explorer or Firefox it says, 530 User anonymous unknown :q









~J~
 
Hello Justjay,

What FTP software are you using?

I use pure-ftp in FreeBSD 7.1 and in pure-ftpd.conf I have the following:

Code:
AnonymousOnly               no #not only anonymous users
NoAnonymous                 no #allow anonymous users

Find your config file and look for similar settings.

Cheers!
 
AFAIK, IE and FF will only perform anonymous FTP, unless you specify username and password as part of the URL. Something like user:password@some.ftp.site, IIRC.
 
If you're using ProFTPd, look for the following lines in /usr/local/etc/openftpd.conf:
Code:
# A basic anonymous configuration, no upload directories.  If you do not
# want anonymous users, simply delete this entire <Anonymous> section.

For options of the stock FreeBSD ftpd, look in ftpd(8).
 
Back
Top