Ik heb dus op mijn linuxbakje een webserver, ssh server en ook een ftp server staan!
maar mijn ftp werkt alleen intern!
nu is de normale reactie *Port Forwarden* maar ik heb een range van 1-65535 openstaan dus daaraan kan het niet liggen denk ik!
ik zal even de error geven
maar mijn ftp werkt alleen intern!
nu is de normale reactie *Port Forwarden* maar ik heb een range van 1-65535 openstaan dus daaraan kan het niet liggen denk ik!
ik zal even de error geven
dit zou het moeten zijn! maar dan wel met de ip's verwisseld!SmartFTP v1.5.990.26
Resolving host name "84.***.**.50"
Connecting to 84.1***.**.50 Port: 25001
Connected to 84.***.**.50.
220 you got in
USER gurumadmat
331 Password required for gurumadmat.
PASS (hidden)
230 User gurumadmat logged in.
SYST
215 UNIX Type: L8
FEAT
211-Features:
211-MDTM
211-REST STREAM
211-SIZE
211 End
TYPE I
200 Type set to I
REST 0
350 Restarting at 0. Send STORE or RETRIEVE to initiate transfer
PWD
257 "/" is current directory.
PASV
227 Entering Passive Mode (192,168,2,100,4,2).
Opening data connection to 192.168.2.100 Port: 1026
LIST -aL
0 bytes transferred. (N/A/s) (0 ms)
Timeout (40s).
Active Help: http://www.smartftp.com/support/kb/index.php/74
Client closed the connection.
Automatic failover of data connection mode from "Passive Mode (PASV)" to "Active Mode (PORT)".
dit is mijn config fileSmartFTP v1.5.990.26
Resolving host name "192.168.2.100"
Connecting to 192.168.2.100 Port: 25001
Connected to 192.168.2.100.
220 you got in
USER gurumadmat
331 Password required for gurumadmat.
PASS (hidden)
230 User gurumadmat logged in.
SYST
215 UNIX Type: L8
FEAT
211-Features:
211-MDTM
211-REST STREAM
211-SIZE
211 End
TYPE I
200 Type set to I
REST 0
350 Restarting at 0. Send STORE or RETRIEVE to initiate transfer
PWD
257 "/" is current directory.
CWD /
250 CWD command successful
PWD
257 "/" is current directory.
PASV
227 Entering Passive Mode (192,168,2,100,4,4).
Opening data connection to 192.168.2.100 Port: 1028
LIST -aL
150 Opening ASCII mode data connection for file list
804 bytes transferred. (2,18 KB/s) (360 ms)
226 Transfer complete.
#
# /etc/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#
ServerName"test server"
ServerTypestandalone
DeferWelcomeon
MultilineRFC2228on
DefaultServeron
ShowSymlinksoff
TimeoutNoTransfer600
TimeoutStalled600
TimeoutIdle1200
DisplayLogin welcome.msg
DisplayFirstChdir .message
ListOptions "-l"
#DenyFilter\*.*/
# Uncomment this if you are using NIS or LDAP to retrieve passwords:
PersistentPasswdoff
# Uncomment this if you would use TLS module:
#TLSEngine on
# Uncomment this if you would use quota module:
#Quotason
# Uncomment this if you would use ratio module:
#Ratioson
ServerIdent on "you got in"
DefaultRoot /var/www/
# Port 21 is the standard FTP port.
Port25001
# 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)
MaxInstances30
# Set the user and group that the server normally runs at.
Usernobody
Groupnogroup
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask022 022
# Normally, we want files to be overwriteable.
AllowOverwriteon
# Delay engine reduces impact of the so-called Timing Attack described in
# http://security.lss.hr/in...details&ID=LSS-2004-10-02
# It is on by default.
#DelayEngine off
RootLogin off
# It's better for debug to create log files ;-)