I am running Proftpd 1.3.28 on FreeBSD 4.7 and have Anonymous FTP enabled in WHM under Tweak FTP and I also have it enabled on the account in cPanel. Each account has a dedicated IP address and it keeps coming up with a 530 Login Incorrect error whenever I try to connect using anonymous or [email protected] as the username.
I have also removed the comments from the anonymous ftp section in the proftpd.conf file. Does anybody have any idea why it's not allowing me to connect? Here are my settings for anonymous in the config file:
I have also removed the comments from the anonymous ftp section in the proftpd.conf file. Does anybody have any idea why it's not allowing me to connect? Here are my settings for anonymous in the config file:
cPanel.net Support Ticket Number:# A basic anonymous configuration, no upload directories. If you do not
# want anonymous users, simply delete this entire <Anonymous> section.
#########################################################################
# #
# Uncomment lines with only one # to allow basic anonymous access #
# #
#########################################################################
<Anonymous ~ftp>
User ftp
Group ftp
### We want clients to be able to login with "anonymous" as well as "ftp"
UserAlias anonymous ftp
### Limit the maximum number of anonymous logins
MaxClients 10
### We want 'welcome.msg' displayed at login, and '.message' displayed
### in each newly chdired directory.
DisplayLogin welcome.msg
DisplayFirstChdir .message
### Limit WRITE everywhere in the anonymous chroot
<Limit WRITE>
DenyAll
</Limit>
</Anonymous>