From 0275a30e95ad2564dfb9db797a66864aceb5bf8f Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sat, 7 Feb 2015 17:37:26 +0100 Subject: [PATCH] Created FTP server (markdown) --- FTP-server.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 FTP-server.md diff --git a/FTP-server.md b/FTP-server.md new file mode 100644 index 0000000..5806f36 --- /dev/null +++ b/FTP-server.md @@ -0,0 +1,29 @@ +# FTP server for uploading sample files + +Whenever I ask someone to upload a sample file I prefer the upload is done to my own server. It is reachable both via SFTP ([SSH file transfer protocol](http://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol), preferred as it is encrypted but may be slower) and the old and unencrypted FTP ([File Transfer Protocol](http://en.wikipedia.org/wiki/File_transfer_protocol), unencrypted only but might result in faster transfers). + +An OpenSource, cross-platform client that can handle both protocols is the excellent [FileZilla](http://filezilla-project.org/). + +**Note: You can only upload to this server, not download from it. Stop trying!** + +## Login via SFTP + +The login data is as follows (verbiage according to FileZilla): + +* Host: `ftp.bunkus.org` +* Port: 2222 +* Protocol: "SFTP - SSH File Transfer Protocol" +* Logon type: normal +* User: `upload` +* Password: `only` + +## Login via FTP + +The login data is as follows (verbiage according to FileZilla): + +* Host: `ftp.bunkus.org` +* Port: 21 +* Protocol: "FTP - File Transfer Protocol" +* Logon type: normal +* User: `upload` +* Password: `only` \ No newline at end of file