meine proftpd.conf
#
# /etc/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#
ServerName ftp-server #1
ServerType standalone
DeferWelcome off
ServerAdmin no1@home
MultilineRFC2228 on
DefaultServer on
ShowSymlinks on
AllowOverwrite on
AllowRetrieveRestart on # resume erlauben
AllowStoreRestart on
DeleteAbortedStores off
TimeoutNoTransfer 600
TimeoutStalled 600
TimeoutIdle 1200
DisplayLogin welcome.msg
DisplayFirstChdir .message
ListOptions "-l"
DenyFilter \*.*/
UseReverseDNS off # beschleunigt das login
IdentLookups off # beschleunigt das login
AllowForeignAddress on # fxp erlauben
#
# Logging options
#
TransferLog /var/log/proftpd.xferlog
# Some logging formats
#
LogFormat default "%h %l %u %t \"%r\" %s %b"
LogFormat auth "%v [%P] %h %t \"%r\" %s"
LogFormat write "%h %l %u %t \"%r\" %s %b"
# Log file/dir access
ExtendedLog /var/log/proftpd.access_log WRITE,READ write
# Record all logins
ExtendedLog /var/log/proftpd.auth_log AUTH auth
# Paranoia logging level....
ExtendedLog /var/log/proftpd.paranoid_log ALL default
# Uncomment this if you are using NIS or LDAP to retrieve passwords:
#PersistentPasswd off
# Uncomment this if you would use TLS module:
#TLSEngine on
# Uncomment this if you would use quota module:
#Quotas on
# Uncomment this if you would use ratio module:
#Ratios on
# Port 21 is the standard FTP port.
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 30
# Set the user and group that the server normally runs at.
User nobody
Group nogroup
defaultroot ~
RequireValidShell off
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
# Umask 022 022
<Directory /*>
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask 007 007
# Normally, we want files to be overwriteable.
AllowOverwrite on
# geschriebene .. hochgeladenen verzeichnisse und dateien gehoehren zu der gruppe ftp-user
GroupOwner ftp-user
# den befehl chmod verweigern
<Limit SITE_CHMOD>
DenyAll
</Limit>
<Limit LOGIN>
DenyGroup !user-ftp
</Limit>
</Directory>
in user-ftp dachte ich alle die user zumachen die sich nur auf dem ftp server einloggen sollen
in ftp-user sind alle die leute die sich auf dem server einloggen koennen sollen und duerfen und user die auch mit den dateien zutun haben die mit dem ftpserver zutun haben
ich habe in die proftpd.conf
<Limit LOGIN>
DenyGroup !user-ftp
</Limit>
eingefuegt und in der gruppe user-ftp noch keinen hinzugefuegt, demach sollte sich also niemand auf dem ftp server einloggen koennen, kann man aber trotzdem
irgendwie muss irgendwo nochwas falsch sein..