ProFTPd 14.04 - ошибка 503

Файл конфигурации хорош и прост, я не спрашиваю слишком много о ProFTPd, и я установил необходимые параметры.

    ServerName          “uk.domain.com"
ServerType          standalone
DefaultServer           on

# Port 21 is the standard FTP port.
Port                21

# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask               022

# To prevent DoS attacks, set the maximum number of child processes
# to 30.  If you need to allow more than 30 concurrent connections
# at once, simply increase this value.  Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd).
MaxInstances            30

# Set the user and group under which the server will run.
User                nobody
Group               nogroup

# To cause every FTP user to be "jailed" (chrooted) into their home
# directory, uncomment this line.
DefaultRoot ~

# Normally, we want files to be overwriteable.
<Directory />
  AllowOverwrite        on
</Directory>

У пользователя установлен / bin / bash shell. По умолчанию ProFTPd - nobody, nogroup и т. Д. Порт TDP и UDP открыт 21, входящий и исходящий. Любая помощь будет принята с благодарностью!

1
задан 13 September 2015 в 21:37

1 ответ

Нет никаких директив, определенных в Вашей конфигурации. Необходимо создать некоторые директивы для Проftp для использования. Страница справочника поможет с этим.

Вот конфигурация, которую Вы ищете:

## Includes required DSO modules. This is mandatory in proftpd 1.3
# Include /etc/proftpd/modules.conf

# To really apply changes reload proftpd after modifications.
AllowOverwrite on
AuthAliasOnly on
AuthPam on    # Uses unix authentication.

UserAlias userftp connor     # UserAlias *loginuser* *real user*
ServerName                      "uk.domain.com"
ServerType                      standalone
DeferWelcome                    on

MultilineRFC2228 on
DefaultServer                   on
ShowSymlinks                    off

TimeoutNoTransfer 600
TimeoutStalled 100
TimeoutIdle 2200

DisplayChdir                    .message
ListOptions                     "-l"

RequireValidShell               off

TimeoutLogin 20

RootLogin                       off

# It's better for debug to create log files ;-)
ExtendedLog                     /var/log/ftp.log
TransferLog                     /var/log/xferlog
SystemLog                       /var/log/syslog.log

#DenyFilter                     \*.*/

# I don't choose to use /etc/ftpusers file (set inside the users you want to ban, not useful for me)
UseFtpUsers off

# Allow to restart a download
AllowStoreRestart               on

# Port 21 is the standard FTP port, so you may prefer to use another port for security reasons (choose here the port you want)
Port                            21

# To prevent DoS attacks, set the maximum number of child processes
# to 30.  If you need to allow more than 30 concurrent connections
# at once, simply increase this value.  Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
MaxInstances 8

# Set the user and group that the server normally runs at.
User                  nobody
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

PersistentPasswd                off

MaxClients 8
MaxClientsPerHost 8
MaxClientsPerUser 8
MaxHostsPerUser 8

# Display a message after a successful login
AccessGrantMsg "welcome !!!"
# This message is displayed for each access good or not
ServerIdent                  on       "Already home"

# Lock all the users in home directory
DefaultRoot ~

MaxLoginAttempts    5

#VALID LOGINS
<Limit LOGIN>
AllowUser connor    # Must be *real* user
DenyALL
</Limit>

<Directory /home/>
Umask 022 022
AllowOverwrite on
        <Limit MKD STOR DELE XMKD RNEF RNTO RMD XRMD READ RMD>
          DenyAll
        </Limit>
        <Limit STOR CWD MKD>
          AllowAll
        </Limit>
</Directory>
0
ответ дан 14 September 2015 в 07:37
  • 1
    Спасибо the_dude. Il изучают makeing те изменения скоро и отправляют назад здесь когда его успешное. Еще раз спасибо.. – Hawk007 13 December 2016 в 00:38

Другие вопросы по тегам:

Похожие вопросы: