How to FTP a file to the Kerio FTP server
From a terminal session
First, become "root" so you can access the files you wish you upload. In the following example, the commands you enter are in red.You must first compress the file you wish to upload. Use the "gzip" command.
root# gzip /cores/core.1234
Next, transfer the file via FTP as follows:
root# ftp ftp.kerio.cz
Connected to ftp.kerio.cz (195.39.35.48).
220 FTP Server ready.
Name (ftp.kerio.cz:root): john
331 Password required for john.
Password: enter your password... it will not print anything
230 User john logged in.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> put /cores/core.1234.gz
local: /cores/core.1234.gz remote: core.1234.gz
227 Entering Passive Mode (195,39,35,48,128,177).
150 Opening BINARY mode data connection for core.1234.gz
226 Transfer complete.
218 bytes sent in 0.000144 secs (1.5e+03 Kbytes/sec)
ftp> bye
221 Goodbye.
root#
From Windows Explorer
You can click "Start" then type "run" then type a URL using your FTP username and password as follows:
ftp://username:password@ftp.kerio.cz
Next, simply drag and drop the file you wish to upload into the white empty page of the browser. It will begin uploading.