www.ProFTPD.de
13. März 2007, 19:57:43 *
Willkommen Gast. Bitte einloggen oder registrieren.
Haben Sie Ihre Aktivierungs E-Mail übersehen?

Einloggen mit Benutzername, Passwort und Sitzungslänge
News: SMF - Neu installiert!
 
   Übersicht   Hilfe Suche Login Registrieren  
Seiten: [1]   Nach unten
  Drucken  
Autor Thema: DefaultRoot ~ enabled und "ls -l" geht nicht  (Gelesen 202 mal)
0 Mitglieder und 1 Gast betrachten dieses Thema.
airborndragger
ProFTPD
*
Offline Offline

Beiträge: 5


Profil anzeigen
« am: 18. Juli 2006, 15:41:56 »

Moin,

ich hab die suche benutzt und leider nix gefunden. Also versuche ich "mal eben" was zu posten.

Meine konfig ist die basic_config aus dem tar, nur ich hab DefaultRoot~ enabled. Und das ganze soll auf Redhat Enterprise ES laufen.

Hier die config:
# BOF
# This is a basic ProFTPD configuration file (rename it to
# 'proftpd.conf' for actual use.  It establishes a single server
# and a single anonymous login.  It assumes that you have a user/group
# "nobody" and "ftp" for normal operation and anon.

ServerName                      "ProFTPD Default Installation"
ServerType                      standalone
DefaultServer                   on

# Port 21 is the standard FTP port.
Port                            21

# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask                           022

# 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 under which the server will run.
User                            ftp
Group                           ftp

# To cause every FTP user to be "jailed" (chrooted) into their home
# directory, uncomment this line.
DefaultRoot ~

# Normally, we want files to be overwriteable.
AllowOverwrite          on

# Bar use of SITE CHMOD by default
<Limit SITE_CHMOD>
  DenyAll
</Limit>
# A basic anonymous configuration, no upload directories.  If you do not
# want anonymous users, simply delete this entire <Anonymous> section.
<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>

#EOF

Wenn die der DefaultRoot ~ eintrag vorhanden ist, und ich mit einlogge, funzt "ls -l" nicht.

Antwort vom server:

Name (localhost:root): test
331 Password required for test.
Password:
230 User test logged in.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls
227 Entering Passive Mode (127,0,0,1,128,93).
421 Service not available, remote server has closed connection
ftp>


folgender debug -10 war zu sehen:
xx xx xx (localhost.localdomain[127.0.0.1]) - dispatching LOG_CMD command 'PASS (hidden)' to mod_log
xx xx xx (localhost.localdomain[127.0.0.1]) - dispatching PRE_CMD command 'SYST' to mod_core
xx xx xx (localhost.localdomain[127.0.0.1]) - dispatching PRE_CMD command 'SYST' to mod_core
xx xx xx (localhost.localdomain[127.0.0.1]) - dispatching CMD command 'SYST' to mod_core
xx xx xx (localhost.localdomain[127.0.0.1]) - dispatching LOG_CMD command 'SYST' to mod_log
xx xx xx (localhost.localdomain[127.0.0.1]) - dispatching PRE_CMD command 'PASV' to mod_core
xx xx xx (localhost.localdomain[127.0.0.1]) - dispatching PRE_CMD command 'PASV' to mod_core
xx xx xx (localhost.localdomain[127.0.0.1]) - dispatching CMD command 'PASV' to mod_core
xx xx xx (localhost.localdomain[127.0.0.1]) - in dir_check_full(): path = '/', fullpath = '/home/test/'.
xx xx xx (localhost.localdomain[127.0.0.1]) - FS: using system stat()
xx xx xx (localhost.localdomain[127.0.0.1]) - FS: using system stat()
xx xx xx (localhost.localdomain[127.0.0.1]) - Entering Passive Mode (127,0,0,1,128,93).
xx xx xx (localhost.localdomain[127.0.0.1]) - dispatching LOG_CMD command 'PASV' to mod_log
xx xx xx (localhost.localdomain[127.0.0.1]) - dispatching PRE_CMD command 'LIST' to mod_core
xx xx xx (localhost.localdomain[127.0.0.1]) - dispatching PRE_CMD command 'LIST' to mod_core
xx xx xx (localhost.localdomain[127.0.0.1]) - dispatching CMD command 'LIST' to mod_ls
xx xx xx (localhost.localdomain[127.0.0.1]) - ProFTPD terminating (signal 11)
xx xx xx (localhost.localdomain[127.0.0.1]) - FTP session closed.
#EOF

Hab ich vollpfosten etwas in der config vergessen? Mein verständnis war, dass der DefaultRoot eintrag so reichen würde.

Würd mich freuen wir ihr mal drüberschauen könntet.

Schönes heisses wetter noch und danke.

MfG
Airborndragger
Gespeichert
stonki
Administrator
ProFTPD
*****
Offline Offline

Beiträge: 1853


15318939
Profil anzeigen WWW E-Mail
« Antwort #1 am: 18. Juli 2006, 16:08:31 »

SIG 11 = Crash... Selber kompiliert ?
Gespeichert

www.stonki.de:    the more I see, the more I know.......
www.proftpd.de:   Deutsche ProFTPD Dokumentation
www.krename.net:  Der Batch Renamer für KDE
www.kbarcode.net: Die Barcode Solution für KDE
airborndragger
ProFTPD
*
Offline Offline

Beiträge: 5


Profil anzeigen
« Antwort #2 am: 18. Juli 2006, 16:18:12 »

>SIG 11 = Crash... Selber kompiliert ?
Ja sicher.. wie es sich gehört. Smiley

cheers

Air
Gespeichert
airborndragger
ProFTPD
*
Offline Offline

Beiträge: 5


Profil anzeigen
« Antwort #3 am: 19. Juli 2006, 09:36:22 »

Moin,
hab ein RPM installiert, nun geht's. Lass ich erstmal vorläufig.

gruss und danke für den tip .

air
Gespeichert
Seiten: [1]   Nach oben
  Drucken  
 
Gehe zu:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.2 | SMF © 2006-2007, Simple Machines LLC Prüfe XHTML 1.0 Prüfe CSS
Seite erstellt in 0.061 Sekunden mit 19 Zugriffen.