diff --git a/docs/Commands.md b/docs/Commands.md
index e94313526d..322155920e 100644
--- a/docs/Commands.md
+++ b/docs/Commands.md
@@ -250,6 +250,24 @@ WiFiScan|`1` = start a network scan. Results w
WiFiTest|Only available in AP mode. Test whether the Wi-Fi SSId and Password are correct and Tasmota can connect to the network. `` = `0..3`
`0` = test credentials, if successful save them in SSID slot 1, restart Tasmota
`1` = test credentials, if successful save them in SSID slot 1 without restart
`2` = test credentials, if successful save them in SSID slot 2 without restart
`3` = test credentials without storing anything persistently and without restart
`ssid+password` = credentials used for testing, `+` symbol is the separator since it is not allowed in an SSId name.* [Read more...](https://github.com/arendst/Tasmota/pull/16141)
See also|[`SetOption55`](#setoption55) - mDNS service control
[`SetOption56`](#setoption56) - Wi-Fi network scan to select strongest signal on restart
[`SetOption57`](#setoption57) - Wi-Fi network re-scan, alternate AP
+
+### FTP Server
+
+Simple FTP Server for ESP8266 and ESP32 with filesystem.
+Define as per below and specify credentials you want:
+```
+#define USE_FTP
+#define USER_FTP "user"
+#define PW_FTP "pass"
+```
+Command|Parameters
+:---|:---
+UFSFTP|`0` = FTP off
`1` = FTP on SD card (when no SD card defaults to FFS)
`2` = FTP on Flash file System
+!!! note
+ It works very stable, but a little slow, about 70 kb per second
+ Enabled by default for the following config (`tasmota_configurations.h`): NOT(ESP8266_1M) AND NOT(FIRMWARE_MINIMAL) AND ESP8266_4M
+
+
### MQTT
Command|Parameters