• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

[gelöst] Proftpd Anonymous Problem

sascha_08

Newbie
/edith meint: Man sollte auch schon das dir anlegen :)))

Hallo,

ich habe Proftpd am laufen und wollte nun den Anonymous Zugriff
erlauben.

Code:
<Anonymous ~ftp>
  User                          ftp
  Group                         ftp

  # We want clients to be able to login with "anonymous" as well as "ftp"
  UserAlias                     anonymous ftp

  # 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
  <Limit WRITE>
    DenyAll
  </Limit>
</Anonymous>


In der /etc/passwd hab ich folgendes mit usseradd eingetragen

Code:
ftp:x:1001:100:ftp:/home/ftp:/bin/false

Als dank erhalte ich folgendes :)

Code:
Trying 127.0.0.1...
Connected to localhost.
220 ProFTPD 1.2.10 Server (Simsalabim FTP) [127.0.0.1]
Name (localhost:simsa): ftp
331 Anonymous login ok, send your complete email address as your password.
Password:
530-Unable to set anonymous privileges.
530 Login incorrect.
ftp: Login failed.
ftp>


Was habe ich falsch gemacht, bzw. was muss ich ändern ?
 
Oben