Hallo
Ich plane auf unserem FTP Server neben dem normalen verschlüsselten Zugriff(mit Passwort), einen anonymen Zugang (für normales Downloadangebot) einzurichten.
Die config habe ich auch schon dementsprechend konfiguriert.
Nur leider habe ich das Problem, dass der Server dann auch für den anonymen Zugang TLS vorraussetzt.
Wie kann man das ändern?
Hier meine Anonymous config:
<Anonymous /home/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>
</Anonymous>
und die TLS Verschlüsselung:
#TLS Verschlüsselung
TLSLog /var/log/tls.log
TLSProtocol SSLv23
TLSOptions NoCertRequest
TLSRSACertificateFile /etc/ssl/certs/sfn-proftpd.cert.pem
TLSRSACertificateKeyFile /etc/ssl/certs/sfn-proftpd.key.pem
TLSVerifyClient off
TLSRequired on