From 8edb4e49ae4ab41d31d9ce186538e60559fe518d Mon Sep 17 00:00:00 2001 From: gijsio <67470426+gijsio@users.noreply.github.com> Date: Fri, 2 Oct 2020 13:57:17 +0200 Subject: [PATCH] Update ftp.md re orderd information --- content/gettingstarted/programming/ftp.md | 25 +++++++++++++++-------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/content/gettingstarted/programming/ftp.md b/content/gettingstarted/programming/ftp.md index 9bdb69d..8d38ecd 100644 --- a/content/gettingstarted/programming/ftp.md +++ b/content/gettingstarted/programming/ftp.md @@ -49,14 +49,24 @@ The file system is accessible via the native FTP server running on each Pycom de > See [network.server](/firmwareapi/pycom/network/server/) for information on how to change the default credentials. + +## Telnet server +You can use the same credentials to connect to the telnet server to bring up the REPL: +```bash +telnet 192.168.4.1 +``` +Note that the REPL works exactly the same over Telnet as it does through Pymakr. + +## Clients The recommended clients are: -* macOS/Linux: default FTP client +* macOS/Linux: default FTP / Telnet client * Windows: Filezilla and FireFTP For example, from a macOS/Linux terminal: ```bash ftp 192.168.4.1 +telnet 192.168.4.1 ``` The FTP server doesn't support active mode, only passive mode. Therefore, if you are using the native unix FTP client, run the following command after logging in: @@ -67,14 +77,7 @@ ftp> passive The FTP server only supports one connection at a time. If using other FTP clients, please check their documentation for how to limit the maximum allowed connections to one at a time. -## Telnet server -You can use the same credentials to connect to the telnet server to bring up the REPL: -```bash -telnet 192.168.4.1 -``` -Note that the REPL works exactly the same over Telnet as it does through Pymakr. - -## FileZilla +### FileZilla If using FileZilla, it's important to configure the settings correctly. @@ -86,3 +89,7 @@ In the `Transfer Settings` tab, limit the max number of connections to one. Othe ![](/gitbook/assets/filezilla-settings-2.png) + + + +