FTP Service study notes 10

FTP server
ftp server
ftp: an application layer protocol (port 21)
using C / S (client / server) design
provides users upload and download services
set up ftp server (integrated web service which iis)

Create a new ftp site

Access failure: prompt windows can not access, you can not establish a connection to the domain server
Solution: 1 Firewall inbound rule, the new port tcp protocol and allow all ports.
2.FTP SSL Settings To start the
user name set to FTP, can not be accessed prompted to specify users can not access
Cmd visit: d: you can change the drive letter
ftp IP address
Get + file name, download
Mgert download multiple
Dir view the file directory folder

Anonymous User: anonymous
deleted FTP passwords stored
first in the Start - Run, type regedit, Registry Editor displays a
local Secondly, find FTP passwords stored in the HKEY_CURRENT_USER \ Software \ Microsoft \ FTP \ Accounts \ Then you can see your domain
Finally, do not want to log information can be content in their respective directories can be deleted

Web services (port 80)
the WWW service that is the World Wide Web service
configuration web sites
create html file

Save as: index.html
default document: Add the name of the home page

Add the application, in the root directory ship new folder

Creating multiple sites on a single server: the use of virtual hosts
with different IP port number
different ip with port
added DNS domain can correspond to a different domain host, to achieve the same IP with the port number

Homework:
After the FTP completed structures, how to view the listening port
to run the command netstat -na findstr "TCP" findstr " 21"
What is a virtual directory, what are the advantages of
a virtual directory is an alias by way of hanging on to the other directory under the root of the site
to facilitate respectively develop and maintain
mobile station location does not affect the logical structure of the
virtual hosts ways in which
to use a different IP address
using the same IP address, different port number,
the same IP address and port number, a different host name

Guess you like

Origin blog.51cto.com/14518688/2440210