[Proftpd-user] Incorrect password
Manuel Almayate <[email protected]>
| Newsgroups | gmane.network.proftpd.user |
|---|---|
| Message-ID | <[email protected]> |
Hi. I keep trying to make proftpd work for me, it doesn't give me any program error anymore. Only the users cannot connect. Always measure that the password is wrong. I have tried what many websites say but I always get the same result. Wrong password. The proftpd log gives the following message 2019-08-24 18: 59: 27,988 Almayate proftpd [18551] 192.168.1.100: ProFTPD 1.3.6 (stable) (built Thu Aug 8 2019 17:09:41 UTC) standalone mode STARTUP 2019-08-24 19: 00: 42,151 Almayate proftpd [25215] 192.168.1.100 (192.168.1.10 [192.168.1.10]): USER video (Login failed): Incorrect password 2019-08-24 19: 00: 42,151 Almayate proftpd [25215] 192.168.1.100 (192.168.1.10 [192.168.1.10]): Maximum login attempts (1) exceeded, connection refused How should I generate the users password to accept it? Greetings and thanks. Manuel --- El software de antivirus Avast ha analizado este correo electrónico en busca de virus. https://www.avast.com/antivirus _______________________________________________ ProFTPD Users List <[email protected]> Unsubscribe problems? http://www.proftpd.org/list-unsub.html
proftpd.conf.txt
(text/plain, 2.7 KB)
ServerName "Almayate"
ServerType standalone
AllowOverride off
DefaultServer on
ServerIdent off
UseReverseDNS off
IdentLookups off
DisplayConnect /usr/local/etc/issue.ftp
DisplayLogin /usr/local/etc/welcome.msg
DisplayChdir /usr/local/etc/.message
ScoreboardFile /var/run/proftpd.score
ListOptions +R strict
TimesGMT off
AllowRetrieveRestart on
ShowSymlinks off
DenyFilter [^*/A-Za-z0-9_.-]
# Lockdown connections and connection attemps.
MaxClients 80 "Maximum of %m users are already connected."
MaxInstances 80
MaxClientsPerUser 80
MaxHostsPerUser 80
MaxClientsPerHost 80 "Maximum of 80 clients per host allowed."
MaxLoginAttempts 1
RequireValidShell no
# Lockdown command send/recieve sizes and type.
PassivePorts 49152 65534
SocketOptions rcvbuf 8192
SocketOptions sndbuf 8192
CommandBufferSize 512
# Limit login times and timeouts to drop dead clients.
TimeoutLogin 60
TimeoutIdle 150
TimeoutNoTransfer 150
TimeoutStalled 150
# Log format and location
TransferLog none
## Normal Mode
LogFormat awstats "%t %h %u %m %f %s %b"
ExtendedLog /var/log/xferlog read,write awstats
## Debug Mode for testing
# LogFormat debug "%t %a %A %U %r %D %s %F %b %T"
# ExtendedLog /var/log/xferlog all debug
# No ftp user ever needs root
RootLogin off
# Port 21 and umask 022
Port 21
Umask 022
# Set the user and group that the server normally runs at.
User nobody
Group nobody
# Setup fake properties if needed.
DirFakeGroup On
DirFakeUser On
DirFakeMode 0400
# Limit ftp logins to the internal lan.
# <Limit LOGIN>
# Order allow,deny
# Allow from 10.10.
# Deny from all
# </Limit>
<Global>
# Limit CHMOD everywhere in the anonymous chroot
<Limit SITE_CHMOD>
DenyAll
</Limit>
<Limit EPSV EPRT PORT>
DenyAll
</Limit>
</Global>
# Normally, we want files to be over write able.
<Directory /*>
AllowOverwrite on
</Directory>