My Account Subscribe Help About
Sign In | Register FREE
Friday, April 10, 2026
Ceasefire or no ceasefire, the Middle East's reshuffling is not yet doneMan arrested after baby girl dies from dog biteMan jailed for killing abused wife who jumped from bridgeMelania Trump denies ties to Jeffrey Epstein and urges hearing for survivorsSimple guide: How the Iran war is affecting the cost of holidays, food and clothesMen behind 'Tripadvisor for people smugglers' jailed for 19 yearsIreland protesters willing to 'close the country' over fuel costsEU fingerprint and photo travel rules come into forceIran conflict will define us for a generation, says PMBafta fell short in duty of care when racial slur was shouted, review findsExtra £5m pledged for patrolling places of worship in London and ManchesterLebanon says ceasefire must be in place before Israel talks'Endless fears': Even if fighting stops, the damage to Iran's children will endureHow many ships are crossing the Strait of Hormuz?Want to help garden birds? Don't feed them in warmer months, says RSPBCan stats help you find the Grand National winner?Ten cases a day - 'blitz courts' could tackle the Crown Court backlogThis coat cost $248 in illegal tariffs. Will he ever get the money back?From a smuggled harmonica to Artemis' playlist - the history of music in spaceLava soars into air as Hawaii's Kilauea volcano erupts againWeekly quiz: What might have made Paddington panic about his marmalade?LeBron and Bronny James record first son-to-father assist in NBA history'I was in a slump - now my art is in Billie Eilish's house'Labrinth not involved in Euphoria's third seasonWhite House staff told not to place bets on prediction marketsRussia and Ukraine agree to Orthodox Easter truceBBC News appIs Defence Secretary Pete Hegseth waging a holy war against Iran?Defence secretary interview on Russian submarine operationWhat version of Tyson Fury will turn up this weekend?
FDN » IIS » IIS Authentication and SSL

IIS Authentication and SSL

IIS Authentication and SSL

IIS 5.0 supports several authentication methods to control access to web content and applications.

Authentication Methods

MethodDescriptionSecurity
AnonymousUses the IUSR_computername account. No credentials required.None — content is public
BasicUsername/password sent as Base64. Works with all browsers.Low — use only with SSL
DigestPassword sent as MD5 hash. Requires AD accounts.Medium
Integrated WindowsNTLM or Kerberos. Browser negotiates automatically.High — no password on wire
Client CertificatesX.509 certificate presented by the browser.Very High

Configuring Authentication

  1. Right-click the site or directory → PropertiesDirectory Security tab.
  2. Click Edit under "Anonymous access and authentication control".
  3. Uncheck Anonymous access to require authentication.
  4. Check the desired authentication method(s).

Setting Up SSL

  1. Generate a certificate request: Directory Security tab → Server Certificate → Create a new certificate.
  2. Submit the request to a Certificate Authority (Windows 2000 Certificate Services or a public CA like VeriSign).
  3. Install the issued certificate: Server Certificate wizard → Process the pending request.
  4. Enable SSL: Directory Security → Edit under Secure Communications → check Require secure channel (SSL).

Forcing HTTPS Redirect in ASP

<%
If Request.ServerVariables("HTTPS") = "off" Then
    Dim strSecureURL
    strSecureURL = "https://" & Request.ServerVariables("SERVER_NAME") & _
                   Request.ServerVariables("URL")
    If Request.QueryString <> "" Then
        strSecureURL = strSecureURL & "?" & Request.QueryString
    End If
    Response.Redirect strSecureURL
End If
%>
« Back to IIS « Back to FDN