User Manual DEV 5072
62
Copyright DEV Systemtechnik GmbH 2016-2017
FTP command CWD: to change the directory for uploading.
E.g. (via the MS Windows FTP command line tool):
cd firmware
FTP command STOR: for uploading a file (only to the
firmware
directory!)
E.g. (via the MS Windows FTP command line tool):
put doc_dev5072_91-0123_C
Note:
Active FTP and passive FTP are supported.
The FTP transfer mode is always binary.
FTPS can be enabled and FTP can be disabled via the HTTPS/FTPS entry of the
Web Interface (chapter 5.4.6.2.3).
Explicit FTPS (Port 21 (Control), Port 20 (Data)) and
implicit FTPS (Port 990 (Control), Port 989 (Data)) are supported.
If in the HTTPS/FTPS entry (chapter 5.4.6.2.3)…
-
…"
Enable HTTPS/FTPS
" is unchecked:
The FTP-server listens on Port 21 only. The AUTH TLS command (for explicit
TLS) is not accepted.
-
…"
Enable HTTPS/FTPS
" is checked and "
Disable HTTP/FTP
" is unchecked:
The FTP/FTPS-server listens on Port 21 (unencrypted and via explicit TLS)
and on Port 990 (implicit TLS, with PROT C and PROT P supported).
-
…"
Enable HTTPS/FTPS
" is checked and "
Disable HTTP/FTP
" is checked:
The FTPS-server listens on Port 990 (implicit TLS) only. Additionally, the
data channel (Port 989) has to be encrypted; PROT C is not accepted, i.e.
the FTPS-client has to send a PROT P to the FTPS-server.
The following lines illustrate a short FTP session using the MS Windows FTP
command line tool:
C:\>
ftp 192.168.0.11
Connected to 192.168.0.11.
220 DEV Systemtechnik FTP Ready.
Name (192.168.0.11:(none)):
ADMIN
331 Please enter your password.
Password:
<ADMIN password>
230 Login successful.
Using binary mode to transfer files.
ftp>
dir
200 PORT command successful.
150 Sending directory listing.
-rwxrwxrwx 1 dev dev 247 Jan 1 1970 error.log
drwxrwxrwx 1 dev dev 0 Jan 1 1970 firmware
-rwxrwxrwx 1 dev dev 192 Jan 1 1970 user.log
226 Done.
ftp>
lcd data
Local directory is C:\data
ftp>
get error.log
200 PORT command successful.
150 Sending file contents.
226 Done.
ftp>
bye
221 Goodbye
C:\>