Home > Articles

This chapter is from the book

Introduction to Internet Information Services

Although most people are aware that Internet Information Services (IIS) enables you to service Web pages from a Windows 2000 server, they don't realize that IIS can be used to serve files and folders via the Web. With the ability to create virtual FTP servers and Web servers with directory browsing, you can extend the reach of your server by providing file support to a broader audience—larger than machines capable of Windows file and printer sharing.

Web Services

Windows 2000 introduced a simple way of sharing folders via the Web in addition to the traditional Microsoft networking that had been available in previous revisions of the operating system. The process of setting up and configuring is not difficult at all.

Setting Up IIS for Web Sharing

Web sharing requires two things. First, you must be running IIS. Second, you must have Administrator or Power User access to your server. The default installation of Windows 2000 Server includes IIS, so it probably is installed on your server. If it is not, you must install it. Step By Step 3.1 outlines the installation process for IIS.

STEP BY STEP 3.1: Installing IIS on a Windows 2000 Server
  1. From the Start menu, select Settings, Control Panel. Double-click the Add/Remove Programs icon.

  2. In the Add/Remove Programs dialog box, click Add/Remove Windows Components.

  3. In the Windows Components Wizard dialog box, select Internet Information Services (IIS) and then click the Details button (see Figure 3.1).

    Figure 3.1Figure 3.1 IIS is installed through the Windows Components Wizard.


  4. From the Internet Information Services (IIS) dialog box, select the following components: Common Files, File Transfer Protocol (FTP) Server, Internet Information Services Snap-In, and World Wide Web Server (see Figure 3.2). Optionally, you also can select Documentation and Internet Services Manager (HTML). The Internet Services Manager (HTML) allows you to administrate most aspects of your IIS server from a browser. When you finish, click OK. Then, click Next in the Windows Components dialog box.

    Figure 3.2Figure 3.2 The IIS components are small; you might want to install them all. Note the options you can choose.


  5. At this point, configuration begins. When you're asked for the CD-ROM, insert it into the drive to complete the installation. When installation is complete, exit the components wizard and the Add/Remove Programs dialog box.

This installation process modifies your server in two ways. First, it creates a folder called Inetpub on your hard drive (on the Boot partition). Second, it creates two local user accounts, one called IUSR_servername (for granting anonymous access to browser clients) and another called IWAM_servername (the account IIS uses internally to start out-of-process applications). The anonymous user account (IUSR_servername) is especially useful because, when you need to control anonymous access to published resources, you will need to refer to this account. Any user who connects to your Web server who is not authenticated will use the user account IUSR_servername and will have whatever access has been given to that account. This account is a member of the local group Guests.

After IIS has been installed, an additional tab appears in the Properties dialog box for your folders; it's called Web Sharing.

Setting Up and Maintaining Web Sharing

Web folders can be made accessible to any or all of the Web sites you have configured on your server; you are not restricted to only the default site. These folders appear as virtual folders on your Web site and are accessible when a user types in addresses similar in format to the following:

http://servername/webfolderalias

Of course, you (or your Web developers) will be able to create HTML links to the folders as well.

Step By Step 3.2 describes the mechanics of sharing a folder via IIS. You must be a member of the Power Users or Administrators group to be able to complete Step By Step 3.2.

STEP BY STEP 3.2: Sharing a Folder via Web Services (IIS)
  1. Right-click the folder you want to share and select Sharing from the menu that appears.

  2. In the Folder Properties dialog box, select the Web Sharing tab (see Figure 3.3).

    Figure 3.3Figure 3.3 Web Sharing is separated from other types of network folder sharing.


  3. In the Share On field, select the site on which you want to share this folder. All the virtual sites you have configured on your Web server will appear in the pull-down list. (You'll learn about virtual servers later in the chapter.)

  4. Select the radio button labeled Share This Folder.

  5. When the Edit Alias dialog box appears, fill in an alias name—the name by which a Web user will be able to reference this Web share (see Figure 3.4). It does not have to be the same as the folder's real name. Then, select one or more access permissions from the four security levels. Read means users will be able to look at content, whereas Write means users will be able to upload into the folder. Script Source Access means users will be able to view the source of script files in the folder, and Directory Browsing means users will be able to browse the folder's contents and its subfolders. Generally, only Read access is given to publicly accessed folders.

    Figure 3.4Figure 3.4 The alias is the name a Web user will use to access the data.


  6. Select an application permission. None means no scripts or applications present in the folder can be run by a browser client; Scripts means script files can be executed. Execute means all programs in the folder can be run by browser clients. If you select the Write Access and Scripts application permissions, a dialog box appears, indicating that you are allowing users to upload scripts they can then run (a potentially dangerous situation). You will be asked to confirm that you really intended to allow that. When you finish configuring these settings, click OK.

  7. If the folder you are sharing resides on a FAT partition, you are done; you can click OK to complete Web sharing. If the folder is on an NTFS partition, however, you need to set NTFS permissions. Click the Security tab at the top of the Properties dialog box.

  8. From the Security tab, add local permissions for all the users you want to allow to access this folder over the Web by clicking the Add button and adding them from the directory of your choice (see Figure 3.5). You can add users and groups as you normally would. However, to allow anonymous users to access the data, you must either explicitly add the IIS anonymous users or implicitly add these users by adding the local group Guests. You must set as much NTFS permissions for any user as you have given out access in step 4. If you gave out Read and Write access, you must also give out Read and Write NTFS permission; otherwise, the lesser of the access levels will prevail for your Web users. Click OK when you are done.

    Figure 3.5Figure 3.5 NTFS permissions are typically used to restrict access to a Web-shared folder.


To modify Web sharing or to stop Web sharing, you can return to the properties for the folder and add a new alias, remove an existing alias, or stop sharing altogether. If you stop sharing, all the aliases for the folder will be removed, and you will have to re-create them if you change your mind.

Web Sharing and Security

Web sharing does not happen in a vacuum. You have to realize that the shared permissions you assign are going to interact with both the local NTFS security you have applied to the shared data as well as the security you have set up for the Web site the folder is shared under.

Similar to shared folder permissions, Web sharing interacts with local security. If Web sharing is configured for a folder on an NTFS partition, the more restrictive of the two permissions will be effective for a Web browser client connecting to the folder. For example, if the anonymous Web user account (IUSR_servername) hasbeen given Read access through NTFS permissions and the folder has been given Web Sharing permissions of Read and Write, a Web browser client connecting to the share will get only Read access (the logical and of the two permissions). If the Guests group is given Full Control through NTFS permissions (thus giving the anonymous Web account Full Control) but you have established only Read access to the Web share, all clients will get only Read access to the data.

In addition to NTFS security, you also need to know what the security is on the whole Web site under which you are sharing. Any browser client trying to get to a Web share must pass through the Web site security before it gets to that share. If the site is secured so that only Read access is allowed—even if Write access is given to the Web share—that access will not be effective for the browser client trying to access the data.

Troubleshooting Web Sharing

A number of things can go wrong with Web sharing. The first major problem is a lack of an IIS server. Without a local IIS server, you will not be able to find the Web Sharing tab on the Properties dialog box for your folder. To solve this, install IIS on your Windows 2000 Server.

After an IIS server has been configured, the next problem might be your permissions to share a folder. You must have Power User or Administrator access to be able to Web share a folder. If your user account is not a member of one of those two groups, you need to gain membership or have someone with the proper rights create the Web shares for you. This shouldn't be a problem because you won't generally be able to log on to the server locally without this level of permissions.

If the folders have been shared, the next problems might be those of access. The major problems are going to be with server access (is the server up, and is the Web service running?) and permissions.

Lack of server access can result from several things. The server itself might not be running. If it is, the Web service might not be running, the Web site in which the folder is being shared might not be enabled, or the TCP port it is running on might not be the default (port 80). Any or all of these things can prevent users from accessing the Web folder you have configured.

Problems related to the server being down (that is, the operating system is not running) are beyond the scope of this particular discussion. The bottom line is that the server must be running to provide access to your Web folders.

If the Web service itself is not running, you can start it by following Step By Step 3.3.

STEP BY STEP 3.3: Starting the World Wide Web Publishing Service
  1. From the Start menu, select Programs, Administrative Tools, Services.

  2. Scroll down the Services list until you find World Wide Web Publishing Services. Right-click it and select Start from the menu that appears.

  3. Close the Services console.

If the Web service is running, the problem might be that the Web site is not running. To start it, you need to open the IIS Services Manager Console. Step By Step 3.4 leads you through the process of starting a Web site.

STEP BY STEP 3.4: Starting a Web Site
  1. From the Start menu, select Programs, Administrative Tools, Internet Services Manager.

  2. In the IIS Console window, you can locate your Web sites by expanding the Console Root, Internet Information Services, and your server. When you see your Web site in the tree under the name of your server, right-click it and select Start from the menu presented.

  3. Close the IIS Console.

Finally, even if the Web site is up, if the administrator of the site has configured access on a TCP port other than the default (80), Web users will not be able to get to the Web site without specifying the new port in the URL. For the purposes of this discussion, a TCP port can be thought of like a TV channel. You might have your TV on, but if it is not tuned to the right station, you will not be able to get to the program you want. All browsers are configured to access Web sites on port 80. If the Web server is not "listening" on port 80, either the server needs to be changed or the browser has to be told which port to connect on. If the port is not 80 and you want Web users to connect, you can give them the port number. Then, they will be able to connect using the following syntax:

http://servername:portnumber/foldername

For example, to connect to the folder Accounting on a server called Win2000S using the port 8080, you would use the following syntax:

http://Win2000S:8080/Accounting

To find out what the port is or to change it, follow Step By Step 3.5.

STEP BY STEP 3.5: Discovering and Changing a Web Server's TCP Port
  1. From the Start menu, select Programs, Administrative Tools, Internet Services Manager.

  2. In the IIS Console window, you can locate your Web site by expanding the Console Root, Internet Information Services, and your server. When you see your Web site in the tree under the name of your server, right-click it and select Properties.

  3. In the Web Site Properties dialog box, the Web Site tab contains a field called TCP Port (see Figure 3.6). That number is your TCP port number. If you change that, all browsers (and HTML links coded into pages) will have to explicitly use that TCP port number. Therefore, it is not a good idea to change it without first consulting your Webmaster to discuss the implications.

    Figure 3.6Figure 3.6 The TCP port number can be used to effectively hide a Web site from those who do not know the number.


  4. Click OK to update the Web site's properties.

When a user is able to connect to your Web site, the issue of permissions might still come up. Remember from the discussion in the last section that all the levels of permissions interact to form an effective permission. As a result, you must check permission levels at the NTFS level, the Web folder level, and the Web site level. Thus far, the only one of these three that has not been discussed is the Web site level.

File Transfer Protocol Services

In addition to Web services, IIS also enables you to serve files via the File Transfer Protocol (FTP). FTP predates the HTTP protocol the Web uses and is an efficient way to send files between two systems. In fact, FTP was designed specifically for file transfer. It's still frequently used to distribute software and updates. Although the HTTP (Web) protocol is now being used more than FTP, FTP is still the real workhorse for transferring files.

From a practical perspective, there are only a few things you need to know about FTP servers in comparison to Web servers:

  • FTP servers originally were accessed via command-line utilities, like the FTP utility included in Windows NT/2000. Although all modern Web browsers support FTP, you can continue to use dedicated FTP utilities.

  • FTP has far fewer configuration options than a Web server because the server provides a much simpler, more focused utility.

  • FTP servers can't use any encryption. Because of this, they are sometimes configured for anonymous access only.

  • FTP servers generally use TCP port 21—not TCP port 80 like Web servers do. This means a different set of rules on the firewall to allow FTP traffic.

FTP servers are definitely not as glamorous as Web servers, but they get the job done.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020