На главнуюПользователиНовые сообщенияОбратная связь
DGR.Su - Компьютерный форум: Архив IT, мобильная связь, радиотехника Программный форум *nix

Поднятие FTP сервера

|Pro|G 02.07.2009, 12:39
Поставил сервер proftpd. Не могу разрешить доступ анонимам вот файл конфига сервера. Буду признателен за любую помощь.
#
# /etc/proftpd/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#

# Includes DSO modules
Include /etc/proftpd.d/*.conf

# This is the directory where DSO modules resides

ModulePath /usr/lib/proftpd

# Allow only user root to load and unload modules, but allow everyone
# to see which modules have been loaded

ModuleControlsACLs insmod,rmmod allow user root
ModuleControlsACLs lsmod allow user *

ServerName "ProFTPD Default Installation"
ServerType standalone
DeferWelcome off

MultilineRFC2228 on
DefaultServer on
ShowSymlinks on

TimeoutNoTransfer 600
TimeoutStalled 600
TimeoutIdle 600

DisplayLogin welcome.msg
DisplayChdir .message
ListOptions "-l"
DenyFilter \*.*/
UseIPv6 Off

# Allow FTP resuming.
# Remember to set to off if you have an incoming ftp for upload.
AllowStoreRestart on

# Port 21 is the standard FTP port.
Port 21

# In some cases you have to specify passive ports range to by-pass
# firewall limitations. Ephemeral ports can be used for that, but
# feel free to use a more narrow range.
PassivePorts 49152 65534

# 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

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

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

# Normally, we want files to be overwriteable.
AllowOverwrite on

# Uncomment this if you are using NIS or LDAP to retrieve passwords:
PersistentPasswd off

# Be warned: use of this directive impacts CPU average load!
#
# Uncomment this if you like to see progress and transfer rate with ftpwho
# in downloads. That is not needed for uploads rates.
#UseSendFile off

TransferLog /var/log/proftpd/proftpd.log
SystemLog /var/log/proftpd/proftpd.log

<IfModule mod_tls.c>
TLSEngine off
</IfModule>

<IfModule mod_quota.c>
QuotaEngine on
</IfModule>

<IfModule mod_ratio.c>
Ratios on
</IfModule>

# Delay engine reduces impact of the so-called Timing Attack described in
# ....
# It is on by default.
<IfModule mod_delay.c>
DelayEngine on
</IfModule>

<IfModule mod_ctrls.c>
ControlsEngine on
ControlsMaxClients 2
ControlsLog /var/log/proftpd/controls.log
ControlsInterval 5
ControlsSocket /var/run/proftpd/proftpd.sock
</IfModule>

<IfModule mod_ctrls_admin.c>
AdminControlsEngine on
</IfModule>

# Bar use of SITE CHMOD by default
<Limit SITE_CHMOD>
DenyAll
</Limit>В этой теме можно также обсуждать настройку и остальных ftp серверов.

Тему создал по методу "Есть проблема - делай тему" который обсуждался в разделе ЧАВО ....
Oxygn 02.07.2009, 13:23
Поставил сервер proftpd. Не могу разрешить доступ анонимам вот файл конфига сервера. Буду признателен за любую помощь.
#
# /etc/proftpd/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#

# Includes DSO modules
Include /etc/proftpd.d/*.conf

# This is the directory where DSO modules resides

ModulePath /usr/lib/proftpd

# Allow only user root to load and unload modules, but allow everyone
# to see which modules have been loaded

ModuleControlsACLs insmod,rmmod allow user root
ModuleControlsACLs lsmod allow user *

ServerName "ProFTPD Default Installation"
ServerType standalone
DeferWelcome off

MultilineRFC2228 on
DefaultServer on
ShowSymlinks on

TimeoutNoTransfer 600
TimeoutStalled 600
TimeoutIdle 600

DisplayLogin welcome.msg
DisplayChdir .message
ListOptions "-l"
DenyFilter \*.*/
UseIPv6 Off

# Allow FTP resuming.
# Remember to set to off if you have an incoming ftp for upload.
AllowStoreRestart on

# Port 21 is the standard FTP port.
Port 21

# In some cases you have to specify passive ports range to by-pass
# firewall limitations. Ephemeral ports can be used for that, but
# feel free to use a more narrow range.
PassivePorts 49152 65534

# 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

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

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

# Normally, we want files to be overwriteable.
AllowOverwrite on

# Uncomment this if you are using NIS or LDAP to retrieve passwords:
PersistentPasswd off

# Be warned: use of this directive impacts CPU average load!
#
# Uncomment this if you like to see progress and transfer rate with ftpwho
# in downloads. That is not needed for uploads rates.
#UseSendFile off

TransferLog /var/log/proftpd/proftpd.log
SystemLog /var/log/proftpd/proftpd.log

<IfModule mod_tls.c>
TLSEngine off
</IfModule>

<IfModule mod_quota.c>
QuotaEngine on
</IfModule>

<IfModule mod_ratio.c>
Ratios on
</IfModule>

# Delay engine reduces impact of the so-called Timing Attack described in
# ....
# It is on by default.
<IfModule mod_delay.c>
DelayEngine on
</IfModule>

<IfModule mod_ctrls.c>
ControlsEngine on
ControlsMaxClients 2
ControlsLog /var/log/proftpd/controls.log
ControlsInterval 5
ControlsSocket /var/run/proftpd/proftpd.sock
</IfModule>

<IfModule mod_ctrls_admin.c>
AdminControlsEngine on
</IfModule>

# Bar use of SITE CHMOD by default
<Limit SITE_CHMOD>
DenyAll
</Limit>В этой теме можно также обсуждать настройку и остальных ftp серверов.

Тему создал по методу "Есть проблема - делай тему" который обсуждался в разделе ЧАВО ....

На том месте, где у вас заканчивается конфиг, по идее начинается раздел:


# A basic anonymous configuration, no upload directories.

# <Anonymous ~ftp>
# User ftp
# Group nogroup
# # We want clients to be able to login with "anonymous" as well as "ftp"
# UserAlias anonymous ftp
# # Cosmetic changes, all files belongs to ftp user
# DirFakeUser on ftp
# DirFakeGroup on ftp
#
# RequireValidShell off
#
# # 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
# <Directory *>
# <Limit WRITE>
# DenyAll
# </Limit>
# </Directory>
#
# # Uncomment this if you're brave.
# # <Directory incoming>
# # # Umask 022 is a good standard umask to prevent new files and dirs
# # # (second parm) from being group and world writable.
# # Umask 022 022
# # <Limit READ WRITE>
# # DenyAll
# # </Limit>
# # <Limit STOR>
# # AllowAll
# # </Limit>
# # </Directory>
#
# </Anonymous>
Namenloss 02.07.2009, 15:40
Поставил сервер proftpd.
Тему создал по методу "Есть проблема - делай тему" который обсуждался в разделе ЧАВО ....

....

В чем проблема? Я вижу одну проблему и это пользователь, которому не охота разбираться в деталях, что и как работает.
|Pro|G 03.07.2009, 05:34
....

В чем проблема? Я вижу одну проблему и это пользователь, которому не охота разбираться в деталях, что и как работает.

Вот об этом попрошу помолчать, смотрел и много где! Не удалось найти...
Получается просто как обычно, если ты задал вопрос на этом форуме то ответ будет одинаков полюбому вопросу "Ты не читаешь маны, ты глупый юзер"
Namenloss 03.07.2009, 06:20
Вот об этом попрошу помолчать, смотрел и много где! Не удалось найти...
Получается просто как обычно, если ты задал вопрос на этом форуме то ответ будет одинаков полюбому вопросу "Ты не читаешь маны, ты глупый юзер"
1. Вы сами не знаете, какой конфигурационный файл Вам надо, тут телепатов нет. У proftpd возможностей очень много. Вопрос всегда задается конкретный.
2. Найти документацию ну очень сложно. Это тайна, покрытая мраком.
|Pro|G 03.07.2009, 06:48
1. Вы сами не знаете, какой конфигурационный файл Вам надо, тут телепатов нет. У proftpd возможностей очень много. Вопрос всегда задается конкретный.
2. Найти документацию ну очень сложно. Это тайна, покрытая мраком.

Я лучше промолчу......
K.T.k. 03.07.2009, 09:39
и правильно... вообще профтпд достаточно простой в настройке, если вы от него конечно блекджек и т.д. не хотите :)
KsardeX 08.07.2009, 13:21
Почитайте немного документации
....
....
....

анонимный доступ
....
Похожие темы
Поднятие VPN-туннеля поверх существующего.
автоматическое поднятие канала интернет PPTP
ОС для сервера
Возьмемся за сервера!
Игровые сервера