moin,
ich haben meinen router gestern von FLI4L auf debian woody umgestellt.
abend hatte ich etwas mit webmin rumgespielt, neue version update dann ging https nicht mehr.
also mit apt-get remove webmin deinstalliert und die alte version wieder installiert
leider geht etzt der proftpd nicht mehr.
erst bekamm ich die meldung :
---
/etc/init.d/proftpd start
Starting professional ftp daemon: - No certificate files found!
---
dann habe ich mit
---
cd /etc/ssl/certs
openssl req -new -x509 -days 365 -nodes -out ftpd-rsa.pem -keyout ftpd-rsa-key.pem
---
neue erstellt.
jetzt kommt folgene meldung:
---
/etc/init.d/proftpd force-start
Starting professional ftp daemon: proftpd.
---
nur wird der proftpd jetzt wohl nicht gestartet.
---
ftp 127.0.0.1
Connected to 127.0.0.1.
421 Service not available, remote server has closed connection
---
hier mal meine proftpd.conf
---
ServerName "Debian"
ServerType standalone
DeferWelcome off
DeferWelcome off
ShowSymlinks on
MultilineRFC2228 on
DefaultServer on
ShowSymlinks on
AllowOverwrite on
TimeoutNoTransfer 600
TimeoutStalled 600
TimeoutIdle 1200
DisplayLogin welcome.msg
DisplayFirstChdir .message
LsDefaultOptions "-l"
DenyFilter \*.*/
Port 21
MaxInstances 30
User nobody
Group nogroup
<Directory /*>
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask 022 022
AllowOverwrite on
</Directory>
---