schmidtedv
New Member
Ich bin zur Zeit dabei, einzelne Optionen und besonders die Logfiles von ProFTPd zu ändern. sofern ich hier aber andere angaben mache und ausserdem versuche, angepasste Logs zu erstellen, wird das von proftpd nicht übernommen...muss ich da noch woanders nachschauen ausser in der proftpd.conf?
Das transferlog wird IMMER ans xferlog unter /var/log abgelegt, was ich eigentlich ändern wollte und zudem werden die zusätzlichen Logdateien nicht genutzt...
Hatte auch das Problem mit laaangsamem Login und hierfür UseReverseDNS auf off gesetzt, was witzigerweise anfangs keinen Effekt hatte, es in der proftpd.conf zu ändern. Dann hatte ich es in die proftpd_ispconfig.conf eingetragen und es ging..... Danach, man höre und staune, wieder in die proftpd.conf eingetragen und es geht nun auch so...lol
Code:
ServerType standalone
UseIPv6 off
ServerName "Debian"
ServerIdent on "FTP Server ready."
DefaultServer on
DeferWelcome off
DisplayLogin welcome.msg
DisplayFirstChdir .message
MultilineRFC2228 on
ShowSymlinks on
DefaultRoot ~
ListOptions "-l"
DenyFilter \*.*/
Port 21
Umask 022 022
IdentLookups off
UseReverseDNS off
TimeoutLogin 120
TimeoutIdle 600
TimeoutNoTransfer 900
TimeoutStalled 1200
MaxLoginAttempts 3
MaxClients 10
MaxClientsPerHost 2
MaxInstances 30
User proftpd
Group nogroup
AllowOverwrite on
AllowStoreRestart on
AllowRetrieveRestart on
SystemLog /var/log/proftpd/proftpd.log
TransferLog /var/log/proftpd/transfer.log
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"
ExtendedLog /var/log/proftpd/access.log WRITE,READ write
ExtendedLog /var/log/proftpd/auth.log AUTH auth
<IfModule mod_tls.c>
TLSEngine off
</IfModule>
<IfModule mod_quota.c>
QuotaEngine on
</IfModule>
<IfModule mod_ratio.c>
Ratios on
</IfModule>
<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>
Include /etc/proftpd/modules.conf
Include /etc/proftpd_ispconfig.conf
Das transferlog wird IMMER ans xferlog unter /var/log abgelegt, was ich eigentlich ändern wollte und zudem werden die zusätzlichen Logdateien nicht genutzt...
Hatte auch das Problem mit laaangsamem Login und hierfür UseReverseDNS auf off gesetzt, was witzigerweise anfangs keinen Effekt hatte, es in der proftpd.conf zu ändern. Dann hatte ich es in die proftpd_ispconfig.conf eingetragen und es ging..... Danach, man höre und staune, wieder in die proftpd.conf eingetragen und es geht nun auch so...lol