Quick setup of local FTP server (windows)

1. Configure the IIS Web server

  1. Find "Program" in the control panel ([Win + R], search for control to call it out) and open it;
  2. Find and open "Enable or disable Windows features" in the program interface;
    tip: The above two steps can also be simplified into one step: press [Win + R] shortcut key to open the run dialog box, enter "optionalfeatures", and press the Enter key
  3. Find Internet Information Services (or the Chinese version of Internet Information Services) from the "Enable or close Windows features" pop-up window and open
  4. Configure IIS and click OK (check all FTP related)

Second, configure the IIS Web site

Search for "IIS" in the [Start] menu and click to enter the IIS Manager. Create a new FTP site.

  1. [IIS Website Manager Interface] Find "Website" in the left navigation bar, right-click to pop up the menu, and click "Add FTP Site".
  2. Start configuring the website.
    FTP site name: FtpSite (configured independently)
    Physical path: F:\ftpserver (created arbitrarily on a non-system disk)
    Local IP address (select from the drop-down menu): 192.168.0.103
  3. The default IP port number is 21 (the default sftp port number is 22). SSL Settings No SSL
  4. Authentication: Configure to enable anonymous, local identity. (Self-configured, and you can log in without user name and password)
    tip: configure to disable anonymous authentication and enable basic authentication (you can use your own user name and password to log in to the computer to log in to the FTP site)
  5. Authorization: All users (autonomous configuration)
  6. Permissions: read, write (autonomous configuration)

3. How to access? How to do file transfer?

同一个局域网内其他人可以访问到你的电脑,相互传输文件了。

  1. 【Win + R】Enter the DOS console;
  2. Input: ftp 192.168.0.103, press Enter.
    tip: Or enter ftp and press Enter, open 192.168.0.103 and press Enter.
  3. Enter the user name and password as prompted.
  4. put to upload files, get to download files, and help to help.
  5. The browser can also directly access "ftp://192.168.0.103"

Upload and download of FTP files
Upload and download of FTP folders

Guess you like

Origin blog.csdn.net/ChineseSoftware/article/details/126674923