Code: Select all
[02:38:20] WinSock 2.0 -- OpenSSL 0.9.7g 11 Apr 2005
[02:38:44] [L] Connecting to 62.75.242.252 -> IP=62.75.242.252 PORT=21
[02:38:44] [L] Connected to 62.75.242.252
[02:38:55] [L] 220 FTP Server ready.
[02:38:55] [L] USER web2
[02:38:55] [L] 331 Password required for web2.
[02:38:55] [L] PASS (hidden)
[02:38:55] [L] 230 User web2 logged in.
[02:38:55] [L] SYST
[02:38:55] [L] 215 UNIX Type: L8
[02:38:55] [L] FEAT
[02:38:55] [L] 211-Features:
[02:38:55] [L] MDTM
[02:38:55] [L] REST STREAM
[02:38:55] [L] SIZE
[02:38:55] [L] 211 End
[02:38:55] [L] PWD
[02:38:56] [L] 257 "/" is current directory.
[02:38:56] [L] TYPE A
[02:38:56] [L] 200 Type set to A
[02:38:56] [L] PASV
[02:38:56] [L] 227 Entering Passive Mode (62,75,242,252,198,85).
[02:38:56] [L] Opening data connection IP: 62.75.242.252 PORT: 50773
[02:39:17] [L] Data Socket Error: Connection timed out
[02:39:17] [L] List ErrorCode: Select all
Status: Verbinden mit 62.75.242.252...
Status: Verbunden mit 62.75.242.252. Warten auf Willkommens-Meldung...
Antwort: 220 FTP Server ready.
Befehl: USER web2
Antwort: 331 Password required for web2.
Befehl: PASS ******
Antwort: 230 User web2 logged in.
Befehl: FEAT
Antwort: 211-Features:
Antwort: MDTM
Antwort: REST STREAM
Antwort: SIZE
Antwort: 211 End
Befehl: SYST
Antwort: 215 UNIX Type: L8
Status: Verbindung hergestellt
Status: Verzeichnisinhalt wird abgeholt...
Befehl: PWD
Antwort: 257 "/" is current directory.
Befehl: TYPE A
Antwort: 200 Type set to A
Befehl: PASV
Antwort: 227 Entering Passive Mode (62,75,242,252,199,55).
Befehl: LIST
Fehler: Transferkanal konnte nicht geöffnet werden. Grund: Ein Verbindungsversuch ist fehlgeschlagen, da die Gegenstelle nach einer bestimmten Zeitspanne nicht ordnungsgemäß reagiert hat, oder die hergestellte Verbindung war fehlerhaft, da der verbundene Host nicht reagiert hat.
Fehler: Dateiliste konnte nicht empfangen werdenCode: Select all
ftp> open 62.75.242.252
Connected to 62.75.242.252.
220 FTP Server ready.
Name (62.75.242.252:root): web2
331 Password required for web2.
Password:
230 User web2 logged in.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls
200 PORT command successfulWenn ich über localhost statt IP verbinde funktioniert alles:
Code: Select all
ftp> open localhost
Connected to localhost.localdomain.
220 FTP Server ready.
Name (localhost:root): web2
331 Password required for web2.
Password:
230 User web2 logged in.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls
200 PORT command successful
150 Opening ASCII mode data connection for file list
drwxr-xr-x 2 web2 ftponly 2048 Jan 21 23:47 files
drwxr-xr-x 9 web2 ftponly 2048 Jan 22 01:27 html
drwxr-xr-x 2 root root 2048 Jan 21 23:47 log
drwxrwxrwx 2 web2 ftponly 2048 Jan 21 23:47 phptmp
226 Transfer complete.
Hier noch meine proftpd.conf:
Code: Select all
#### CONFIXX PRO-FTPD CONFIG FILE ####
#### created at Sun Jan 22 00:25:58 2006 ###
# 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 vs242252.vserver.de
ServerType standalone
DefaultServer on
ServerAdmin technik@vs242252.vserver.de
ServerIdent on "FTP Server ready."
# 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 that the server normally runs at.
User nobody
Group nogroup
TransferLog /var/log/xferlog
# Normally, we want files to be overwriteable.
AllowOverwrite on
#
# Do a chroot for web-users (i.e. public or www group), but
# do not change root if the user is also in the users group...
#
#DefaultRoot ~/public_html public,!users
#
DefaultRoot ~
# Groups that are not allowed to login
<Limit LOGIN>
DenyGroup poponly
</Limit>
### ENDE ####
Bin dankbar für jeden Tipp oder Link
Gruß Jan
PS: Ich hoffe dies ist der richtige Bereich :)
EDIT:
Ich hab grad mal die Probeversion des WS_FTP Professional heruntergeladen. Damit funktioniert alles einwandfrei. Nun verstehe ich garnix mehr... :oops: :?: