• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/58

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

58 Cards in this Set

  • Front
  • Back
What 2 tools can be used to migrate an IIS6 installation to IIS7?
Microsoft Web Deployment Tool and MSDeploy
What is the command-line version of the Microsoft Web Deployment Tool?
MSDeploy
What 3 tasks can be performed with MSDeploy?
migrate an IIS6 site or server to IIS7, synchronize an IIS7 site or server to another IIS7 server, or synchronize an IIS6 site or server to another IIS6 server
What command is used to create a web site backup with AppCmd?
appcmd add backup "backup name"
What command-line command is used to configure and administer IIS?
AppCmd
What is the IIS configuration store?
The web server configuration info, stored in XML files
what file is used to store IIS configuration?
ApplicationHost.config
What are the 4 methods of configuring IIS?
AppCmd, IIS Manager, by configuring IIS Configuration Store files, and through a WMI provider
What are the 2 methods of configuring multiple websites with the same IP address?
Use multiple ports or use host headers
What is the benefit of application pools?
Apps in an app pool can't affect things outside their app pool
What are the 4 types of SSL certificates?
Standard, server gated, extended validation, and wildcard
What does a standard SSL certificate provide?
40-to-128-bit encryption
What is the default encryption level for IIS?
40-bit
What does a server gated SSL certificate do?
provides stricter encryption for older browsers
What is an extended validation SSL certificate?
a combination of a standard and server gated SSL certificates
What is a wildcard SSL certificate?
the most secure SSL certificate
What drawback do wildcard SSL certificates have?
they don't work with older browsers
What library provides encoding and decoding for IIS?
the Cryptographic Service Provider (CSP)
What is the Cryptographic Service Provider (CSP)?
an IIS library for encoding and decoding
What type of IIS certificate ensures site authenticity, ownership, and content?
an extended validation certificate
What type of IIS certificate verifies identify and domain name, secures the main site and subdomains?
a wildcard certificate
What are the 2 types of directories web sites use?
physical and virtual
What is a virtual directory?
a part of a URL that relates to a physical directory
Are virtual directories required for IIS?
yes, each site needs at least one (the root virtual directory)
What is pass-through authentication?
using credentials from the logged-on user
What are the 5 IIS configuration files at the server level?
machine.config, web.config, redirection.config, administration.config, and applicationHost.config
What does the machine.config file control?
.NET Framework settings for CLR
What does the web.config file control?
.NET Framework settings using ASP.NET
What does the redirection.config file do?
helps locate other sites
What does the administration.config file do?
maintains modules
What does the applicationHost.config file do?
defines server's site, virtual directory, and application pool settings
Where are the machine.config and web.config files located?
in the .NET Framework folder
What 2 configuration files are located in the .NET Framework folder?
machine.config and web.config
Where are redirection.config, administration.config, and applicationHost.config located?
in the inetsrv \ config folder
What 3 configuration files are located in the inetsrv \ config folder?
redirection.config, administration.config, and applicationHost.config
What two software components are necessary for IIS logging?
HTTP handlers and HTTP modules
What sort of site design tasks does ASP.NET cover?
access to databases, security and authorization, reliability and scalability, etc.
What does CGI do?
allows webpages to pass information to programmatic scripts
Where is CGI commonly used?
in components meant for use in multiple web server platforms
What does ISAPI do?
provides scalability for supporting multiple simultaneous requests
What is an ISAPI filter?
a filter to handle a specific web request
Where is the default http log?
%system% \ Inetpub \ Logs \ Logfiles
What 5 IIS role services are not available on Core?
IIS Management Service, IIS Management Console, IIS 6 Management Console, ASP.NET, and .NET Extensibility
How do you install IIS on Core?
start /w pkgmgr /iu:IIS-WebServerRole
What command will show IIS dependencies on Core?
oclist
What does the IIS application pool mode do?
determines how a webserver processes requests for managed content
What are the 2 modes for application pool mode?
integrated mode and classic mode
What is the IIS application pool integrated mode?
IIS and ASP.NET processing together
What is the IIS application pool classic mode?
IIS pipeline is processed, then ASP.NET
What is IIS application pool classic mode used for?
backward compatibility
What are the 3 class libraries for .NET Framework?
common language runtime (CLR), Base Class Library (BCL), and ASP.NET
What are the 4 stages of an IIS pipeline?
Begin Request, Authenticate Request, Authorize Request, and Resolve Request Cache
What is a site binding?
a collection of website settings used to connect
In a site binding, what is type?
the protocol (HTTP, HTTPS, etc.) used to connect
In a site binding, what is the host name?
information in an HTTP host header request used to allow multiple domain names to point to the same IP address
What two pieces of software are required for IIS logging?
HTTP handlers and HTTP modules
When are HTTP handlers used?
when requests are made to related resources such as ASP.NET
What module needs to be installed for IIS logging?
HttpLogging Module