Package: proftpd
Version: 1.3.0-19
Severity: normal
I'm using latest proftpd in Etch, with TLS. Files > ca. 1 Gb can't be
transfered due to losing connection. Same problem with uploading many
little files.
aborting transfer: Link to file server lost.
same problem described here:
http://forums.proftpd.org/smf/index.php?topic=1661.0
-- System Information:
Debian Release: 4.0
APT prefers testing
APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.40
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Versions of packages proftpd depends on:
ii adduser 3.102 Add and remove users and groups
ii debconf 1.5.11 Debian configuration
management sy
ii debianutils 2.17 Miscellaneous utilities
specific t
ii libacl1 2.2.41-1 Access control list shared
library
ii libattr1 2.4.32-1 Extended attribute shared
library
ii libc6 2.3.6.ds1-10 GNU C Library: Shared libraries
ii libldap2 2.1.30-13.2 OpenLDAP libraries
ii libmysqlclient15off 5.0.32-3 mysql database client library
ii libncurses5 5.5-5 Shared libraries for
terminal hand
ii libpam-runtime 0.79-4 Runtime support for the PAM
librar
ii libpam0g 0.79-4 Pluggable Authentication
Modules l
ii libpq4 8.1.7-1 PostgreSQL C client library
ii libssl0.9.8 0.9.8c-4 SSL shared libraries
ii libwrap0 7.6.dbs-12 Wietse Venema's TCP
wrappers libra
ii netbase 4.29 Basic TCP/IP networking system
ii perl 5.8.8-7 Larry Wall's Practical
Extraction
ii ucf 2.0018.1 Update Configuration File:
preserv
ii zlib1g 1:1.2.3-13 compression library - runtime
proftpd recommends no packages.
-- debconf information:
* shared/proftpd/warning:
* shared/proftpd/inetd_or_standalone: standalone
proftpd.conf
#
# /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/modules.conf
ServerName "Auf der Union FTP-Server"
ServerType standalone
DeferWelcome off
UseReverseDNS off
IdentLookups off
MultilineRFC2228 on
DefaultServer on
ShowSymlinks on
WtmpLog off
TimeoutNoTransfer 1000
TimeoutStalled 1000
TimeoutIdle 12000
PassivePorts 50000 52000
DisplayLogin /home/server/welcome.msg
DisplayFirstChdir .message
ListOptions "-l"
DenyFilter \*.*/
UseIPv6 off
# Port 21 is the standard FTP port.
Port 2121
DefaultAddress changed
# 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 that the server normally runs at.
User proftpd
Group nogroup
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
#Umask 006 007
# 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 /dev/null NONE
SystemLog /dev/null none
WtmpLog none
QuotaLog none
DebugLevel 0
ExtendedLog /dev/null none
<IfModule mod_tls.c>
TLSEngine on
TLSLog /var/log/tls.log
TLSProtocol SSLv23
TLSOptions NoCertRequest
TLSRSACertificateFile
/etc/ssl/certs/proftpd.cert.pem
TLSRSACertificateKeyFile
/etc/ssl/certs/proftpd.key.pem
TLSVerifyClient off
TLSRequired on
</IfModule>
<IfModule mod_quota.c>
QuotaEngine on
</IfModule>
<IfModule mod_ratio.c>
Ratios on
</IfModule>
<IfModule mod_delay.c>
DelayEngine off
</IfModule>
<IfModule mod_ctrls.c>
ControlsEngine off
# 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>
<IfModule mod_cap.c>
CapabilitiesEngine on
CapabilitiesSet +CAP_CHOWN
</IfModule>
<Limit Login>
DenyGroup !ftpuser
</Limit Login>
Defaultroot /home/server/
MaxClients 10
RequireValidShell on
#DirFakeGroup on ftpuser
#DirFakeUser on nobody
#DirFakeMode 550 570
#UserOwner nobody
#GroupOwner ftpuser
# 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 3
#
# # 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 /home/server/*>
AllowOverwrite on
UserOwner nobody
GroupOwner ftpuser
Umask 606 707
# TransferLog none
# SystemLog none
# WtmpLog none
# QuotaLog none
# DebugLevel 0
# ExtendedLog /dev/null none
</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
# # # (second parm) from being group and world writable.
# # Umask 022 022
# # <Limit READ WRITE>
# # DenyAll
# # </Limit>
# # <Limit STOR>
# # AllowAll
# # </Limit>
# # </Directory>
#
# </Anonymous>
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]