Hallöchen alle zusammen,
ich habe mir einen PROFTPD-Server aufgesetzt. Soweit hat alles geklappt.
Als ich mich mit dem Client verbinden wollte konnte ich mich nicht einloggen.
Wenn ich den Transfer Mode des Clients auf Active stelle kann ich mich "normal" in den Server einloggen und dort arbeiten.
Wenn ich Transfer Mode auf Passive stelle kann ich mich "scheinbar" einloggen erhalte aber keine Verzeichnis Auflistung.
Ich habe euch jeweils die Logs aus dem Client geschickt.
Normalerweise muss ich für eine Passive Verbindung Ports in der Firewall freigeben, oder? Ich habs mal probiert, zeigte aber leider auch keine Wirkung. (Vll falsche Ports freigegeben?)
Was kann ich tun um den Passiven Modus zu ermöglichen? Würde mich sehr über Lösungsansätze freuen :]
Ich poste mal noch meine conf.
Vielen Dank!
LG OP!
EDIT: Sind die PassivenPorts UDP oder TCP?! :-D
ich habe mir einen PROFTPD-Server aufgesetzt. Soweit hat alles geklappt.
Als ich mich mit dem Client verbinden wollte konnte ich mich nicht einloggen.
Wenn ich den Transfer Mode des Clients auf Active stelle kann ich mich "normal" in den Server einloggen und dort arbeiten.
PHP:
19:06:13 Status: Connecting to 85.25.64.92:21...
19:06:13 Status: Connection established, waiting for welcome message...
19:06:13 Response: 220 FTP Server ready.
19:06:13 Command: USER *USERNAME*
19:06:13 Response: 331 Password required for *USERNAME*.
19:06:13 Command: PASS ************
19:06:13 Response: 230 User *USERNAME* logged in.
19:06:13 Status: Connected
19:06:13 Status: Retrieving directory listing...
19:06:13 Command: PWD
19:06:13 Response: 257 "/" is current directory.
19:06:13 Status: Directory listing successful
19:06:43 Status: Sending keep-alive command
19:06:43 Command: NOOP
19:06:43 Response: 200 NOOP command successful
19:07:13 Status: Sending keep-alive command
19:07:13 Command: TYPE I
19:07:13 Response: 200 Type set to I
19:07:43 Status: Sending keep-alive command
19:07:43 Command: TYPE I
19:07:43 Response: 200 Type set to I
19:08:13 Status: Sending keep-alive command
19:08:13 Command: PWD
19:08:13 Response: 257 "/" is current directory.
19:08:43 Status: Sending keep-alive command
19:08:43 Command: NOOP
19:08:43 Response: 200 NOOP command successful
19:09:13 Status: Sending keep-alive command
19:09:13 Command: NOOP
19:09:13 Response: 200 NOOP command successful
19:09:43 Status: Sending keep-alive command
19:09:44 Command: TYPE I
19:09:44 Response: 200 Type set to I
Wenn ich Transfer Mode auf Passive stelle kann ich mich "scheinbar" einloggen erhalte aber keine Verzeichnis Auflistung.
PHP:
19:11:22 Status: Connecting to 85.25.64.92:21...
19:11:22 Status: Connection established, waiting for welcome message...
19:11:22 Response: 220 FTP Server ready.
19:11:22 Command: USER *USERNAME*
19:11:22 Response: 331 Password required for *USERNAME*.
19:11:22 Command: PASS **********
19:11:23 Response: 230 User *USERNAME* logged in.
19:11:23 Status: Connected
19:11:23 Status: Retrieving directory listing...
19:11:23 Command: PWD
19:11:23 Response: 257 "/" is current directory.
19:11:23 Command: TYPE I
19:11:23 Response: 200 Type set to I
19:11:23 Command: PASV
19:11:23 Response: 227 Entering Passive Mode (85,25,64,92,131,66).
19:11:23 Command: LIST
Ich habe euch jeweils die Logs aus dem Client geschickt.
Normalerweise muss ich für eine Passive Verbindung Ports in der Firewall freigeben, oder? Ich habs mal probiert, zeigte aber leider auch keine Wirkung. (Vll falsche Ports freigegeben?)
Was kann ich tun um den Passiven Modus zu ermöglichen? Würde mich sehr über Lösungsansätze freuen :]
Ich poste mal noch meine conf.
PHP:
#
# /etc/proftpd/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#
# Includes DSO modules
Include /etc/proftpd/modules.conf
# Set off to disable IPv6 support which is annoying on IPv4 only boxes.
UseIPv6 off
ServerName "Songs-Love-Videoclips"
ServerType standalone
DeferWelcome off
MultilineRFC2228 on
DefaultServer on
ShowSymlinks on
TimeoutNoTransfer 1800
TimeoutStalled 1800
TimeoutIdle 1800
DisplayLogin welcome.msg
DisplayFirstChdir .message
ListOptions "-l"
DenyFilter \*.*/
# Port 21 is the standard FTP port.
Port 21
# In some cases you have to specify passive ports range to by-pass
# firewall limitations. Ephemeral ports can be used for that, but
# feel free to use a more narrow range.
PassivePorts 49152 65534
# 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 that the server normally runs at.
User proftpd
Group nogroup
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask 007 077
# Normally, we want files to be overwriteable.
AllowOverwrite on
# Uncomment this if you are using NIS or LDAP to retrieve passwords:
# PersistentPasswd off
# Be warned: use of this directive impacts CPU average load!
#
# Uncomment this if you like to see progress and transfer rate with ftpwho
# in downloads. That is not needed for uploads rates.
# UseSendFile off
TransferLog /var/log/proftpd/xferlog
SystemLog /var/log/proftpd/proftpd.log
<IfModule mod_tls.c>
TLSEngine on
TLSLog /var/log/proftpd/tls.log
TLSProtocol SSLv23
TLSOptions NoCertRequest
TLSRSACertificateFile /etc/proftpd/ssl/proftpd.cert.pem
TLSRSACertificateKeyFile /etc/proftpd/ssl/proftpd.key.pem
TLSVerifyClient off
TLSRequired off
</IfModule>
<IfModule mod_quota.c>
QuotaEngine on
</IfModule>
<IfModule mod_ratio.c>
Ratios on
</IfModule>
# Delay engine reduces impact of the so-called Timing Attack described in
# http://security.lss.hr/index.php?page=details&ID=LSS-2004-10-02
# It is on by default.
<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>
# A basic anonymous configuration, no upload directories.
RequireValidShell off
DefaultRoot ~
IdentLookups off
UseReverseDNS off
ServerIdent on "FTP Server ready."
Vielen Dank!
LG OP!
EDIT: Sind die PassivenPorts UDP oder TCP?! :-D
Last edited by a moderator: