Skip to content
https://technet.com

Infrastructure

· 9 checks — DNS, redirects, IPv6, crawlability, URL variants, and domain intelligence rolled into one auditable list.
SCORE
71
GRADE
C
FIX
1
REVIEW
4
PASS
4
INFO
0
Probed from Santa Clara, United States
301 Moved Permanently
Checks
9
4 PASS 4 REVIEW 1 FIX
F
IPv6 Readiness
Action
IPv6 records exist but unreachable
FIX
IPv6 records exist but unreachable
Warning::
IPv6 DNS records exist but server is not reachable
Having AAAA records but an unreachable server is worse than no AAAA — clients may experience delays before falling back to IPv4.
Got: 2603:1061:14:91::1
Info::
IPv6 connection error
Got: dial tcp6 [2603:1061:14:91::1]:443: connect: network is unreachable
IPv6 Misconfigured
AAAA Records 2603:1061:14:91::1 Connection UNREACHABLE

Having AAAA records but an unreachable server is worse than no AAAA — clients may experience delays before falling back to IPv4.

Why this matters

Advertising IPv6 (AAAA records) without a reachable server means IPv6-preferring clients silently fail every connection.

Learn more

Modern browsers prefer IPv6 if AAAA exists (Happy Eyeballs algorithm). If the IPv6 server isn't reachable, browsers fall back to IPv4 — but with seconds of added latency per request. Either fix IPv6 reachability or remove the AAAA records.

Source: RFC 8305 (Happy Eyeballs)

B
DNS Records
1 A records, 18 ms lookup
REVIEW
1 A records, 18 ms lookup
Info::
Resolves to 1 IPv4 address(es)
Got: 150.171.109.146
Info::
Single A record — no DNS redundancy
Multiple A records provide failover if one server goes down.
Info::
Has 1 IPv6 (AAAA) record(s)
Got: 2603:1061:14:91::1
Warning::
CNAME record at zone apex
A CNAME at the zone apex can break MX and NS records. Use ALIAS/ANAME or A records instead.
Got: mr-z01.tm-azurefd.net
Info::
No NS records found
Info::
No MX records — email not configured via DNS
Info::
CAA records not checked
CAA record lookup requires a specialized DNS resolver. This check will be available in a future update.
Info::
No SPF record found in TXT records
SPF helps prevent email spoofing. Add a TXT record starting with 'v=spf1'.
Info::
DNS resolution time: 18 ms
Got: 18 ms
A150.171.109.146
AAAA2603:1061:14:91::1
CNAMEmr-z01.tm-azurefd.net
NS
MX
TXT
CAALookup not available with standard resolver
Resolved in 18 ms

Multiple A records provide failover if one server goes down.

Why this matters

Single A record means a single point of failure — if that IP goes down, your site is unreachable until DNS TTL expires.

Learn more

Add multiple A records for round-robin failover, or use a managed DNS provider with health-checked failover (Route 53, Cloudflare, NS1). Short TTL (60-300s) lets clients recover faster on outages.

Source: SRE practice / DNS architecture

A CNAME at the zone apex can break MX and NS records. Use ALIAS/ANAME or A records instead.

Why this matters

CNAME at the apex (example.com) breaks every other apex record (MX, TXT, NS) — DNS-protocol violation per RFC 1034.

Learn more

RFC 1034 forbids CNAME alongside other records at the same name. Some DNS providers offer ALIAS / ANAME / flattened-CNAME records that work around this — use those instead. Otherwise apex-level CNAME breaks email (no MX), domain ownership verification (no TXT), and more.

Source: RFC 1034

CAA record lookup requires a specialized DNS resolver. This check will be available in a future update.

Why this matters

Informational: CAA (Certification Authority Authorization) records weren't checked in this scan.

SPF helps prevent email spoofing. Add a TXT record starting with 'v=spf1'.

Why this matters

Without SPF, receiving servers can't validate sending IPs — your domain is easier to spoof in phishing.

Learn more

SPF complements DMARC. Both should be published. SPF records list authorized sending IPs (e.g., `v=spf1 include:_spf.google.com ~all` for Google Workspace). After publishing, verify in Google Postmaster Tools or mxtoolbox.

Source: RFC 7208 (SPF)

B
Redirect Chain
2 redirect(s), 110 ms total
REVIEW
2 redirect(s), 110 ms total
Warning::
2 redirects before reaching final URL
Each redirect adds latency. Try to minimize the chain to 1 hop.
Info::
WWW normalization redirect
Info::
Uses 302 (temporary) redirect
If permanent, use 301 instead.
Got: https://learn.microsoft.com
Info::
Cross-domain redirect detected

https://www.technet.com

50 ms · HTTP/1.1

301

https://learn.microsoft.com

48 ms · HTTP/1.1

302

https://learn.microsoft.com/en-us/

13 ms · HTTP/1.1 FINAL

#URLStatusTimeProtocolServer
1https://www.technet.com30150 msHTTP/1.1
2https://learn.microsoft.com30248 msHTTP/1.1
3https://learn.microsoft.com/en-us/20013 msHTTP/1.1

See the visual redirect chain in the HTTP Probe tab →

Each redirect adds latency. Try to minimize the chain to 1 hop.

Why this matters

Redirect chain — each hop adds latency; combine into one redirect where possible.

Source: Google Search Central / web.dev

If permanent, use 301 instead.

Why this matters

302 (Found) is for genuinely temporary redirects — if this redirect is permanent, switch to 301 to preserve SEO equity.

Learn more

Search engines treat 302 as temporary, keeping the original URL indexed and not transferring full link equity to the destination. Use 301 (Moved Permanently) for permanent redirects (HTTP→HTTPS, www-vs-non-www, URL restructures).

Source: Google Search Central

C
Crawlability
Action
robots.txt present, sitemap with 0 URLs
REVIEW
robots.txt present, sitemap with 0 URLs
Info::
robots.txt is present
Got: 10240 bytes
Info::
sitemap.xml is present
Warning::
sitemap.xml contains invalid XML
Search engines may not be able to parse the sitemap. Fix XML validation errors.
Warning::
sitemap.xml is empty — no URLs found
An empty sitemap provides no value. Add <url> entries for your pages.
Info::
robots.txt does not reference a sitemap
Add a 'Sitemap:' directive to robots.txt so search engines can discover your sitemap.

Search engines may not be able to parse the sitemap. Fix XML validation errors.

Why this matters

An unparseable sitemap is silently ignored by Google — the URLs it advertises are never queued for crawl.

Learn more

Google's sitemap parser is strict about XML validity. A single unescaped `&` or unclosed tag invalidates the whole file. Run your sitemap through a validator (Search Console's Sitemaps report flags it) and fix the offending entry. Most generators escape correctly; mistakes usually come from manually-written entries.

Source: sitemaps.org / Google Search Central

An empty sitemap provides no value. Add <url> entries for your pages.

Why this matters

An empty sitemap signals 'no content to index' to Google — actively harmful versus having no sitemap at all.

Learn more

Google compares URLs in the sitemap against URLs it has crawled. An empty sitemap on a site with thousands of pages signals abandonment. Either populate it correctly (most CMSes auto-generate) or delete the file and let Google crawl normally.

Source: Google Search Central / sitemaps.org

Add a 'Sitemap:' directive to robots.txt so search engines can discover your sitemap.

Why this matters

robots.txt omits Sitemap: directive — crawlers must fetch /sitemap.xml by convention; reliable but missing the explicit hint.

Source: sitemaps.org

robots.txt 200 OK
Size 10240 B Sitemaps referenced 0 User-agents Blocking No — crawling allowed
 <!DOCTYPE html>
		<html
			class="layout layout-single    welcome  default-focus"
			lang="en-us"
			dir="ltr"
			data-authenticated="false"
			data-auth-status-determined="false"
			data-target="docs"
			x-ms-format-detection="none"
		>
			
		<head>
			<title>Microsoft Learn: Build with answers in reach</title>
			<meta charset="utf-8" />
			<meta name="viewport" content="width=device-width, initial-scale=1.0" />
			<meta name="color-scheme" content="light dark" />

			<meta name="description" content="Find official documentation, practical know-how, and expert guidance for builders working and troubleshooting in Microsoft products." />
			 

			<!-- Non-customizable open graph and sharing-related metadata -->
			<meta name="twitter:card" content="summary_large_image" />
			<meta name="twitter:site" content="@MicrosoftLearn" />
			<meta property="og:type" content="website" />
			<meta property="og:image:alt" content="Microsoft Learn" />
			<meta property="og:image" content="https://learn.microsoft.com/en-us/media/open-graph-image.png" />
			<!-- Page specific open graph and sharing-related metadata -->
			<meta property="og:title" content="Microsoft Learn: Build with answers in reach" />
			
			<meta property="og:description" content="Find official documentation, practical know-how, and expert guidance for builders working and troubleshooting in Microsoft products." />
			<meta name="platform_id" content="921fc462-a2ae-c9d6-f17d-ebcb806eacac" /> 
			<meta name="locale" content="en-us" />
			 
			

			<meta name="page_type" content="Docs" />

			<!--page specific meta tags-->
			

			<!-- custom meta tags -->
			 

			<!-- assets and js globals -->
			
			<link rel="stylesheet" href="/static/assets/0.4.03396.7743-19995e1d/styles/site.css" />
			
			<script src="https://wcpstatic.microsoft.com/mscc/lib/v2/wcp-consent.js"></script>
			<script src="https://js.monitor.azure.com/scripts/c/ms.jsll-4.min.js"></script>
			<script src="/_themes/docs.theme/master/en-us/_themes/global/deprecation.js"></script>

			<!-- msdocs global object -->
			<script id="msdocs-script">
		var msDocs = {
  "environment": {
    "accessLevel": "online",
    "azurePortalHostname": "portal.azure.com",
    "reviewFeatures": false,
    "supportLevel": "production",
    "systemContent": true,
    "siteName": "learn",
    "legacyHosting": false
  },
  "data": {
    "contentLocale": "en-us",
    "contentDir": "ltr",
    "userLocale": "en-us",
    "userDir": "ltr",
    "pageTemplate": "Welcome",
    "brand": "",
    "context": {},
    "standardFeedback": false,
    "showFeedbackReport": false,
    "feedbackHelpLinkType": "",
    "feedbackHelpLinkUrl": "",
    "feedbackSystem": "",
    "feedbackGitHubRepo": "",
    "feedbackProductUrl": "",
    "extendBreadcrumb": false,
    "isEditDisplayable": false,
    "isPrivateUnauthorized": false,
    "hideViewSource": false,
    "isPermissioned": false,
    "hasRecommendations": false,
    "contributors": []
  },
  "functions": {}
};;
	</script>

			<!-- base scripts, msdocs global should be before this -->
			<script src="/static/assets/0.4.03396.7743-19995e1d/scripts/en-us/index-docs.js"></script>
			

			<!-- json-ld -->
			
		</head>
	
			<body
				id="body"
				data-bi-name="body"
				class="layout-body "
				lang="en-us"
				dir="ltr"
			>
				<header class="layout-body-header">
		<div class="header-holder has-default-focus">
			
		<a
			href="#main"
			
			style="z-index: 1070"
			class="outline-color-text visually-hidden-until-focused position-fixed inner-focus focus-visible top-0 left-0 right-0 padding-xs text-align-center background-color-body"
			
		>
			Skip to main content
		</a>
	

			<div hidden id="cookie-consent-holder" data-test-id="cookie-consent-container"></div>
			<!-- Unsupported browser warning -->
			<div
				id="unsupported-browser"
				style="background-color: white; color: black; padding: 16px; border-bottom: 1px solid grey;"
				hidden
			>
				<div style="max-width: 800px; margin: 0 auto;">
					<p style="font-size: 24px">This browser is no longer supported.</p>
					<p style="font-size: 16px; margin-top: 16px;">
						Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
					</p>
					<div style="margin-top: 12px;">
						<a
							href="https://go.microsoft.com/fwlink/p/?LinkID=2092881 "
							style="background-color: #0078d4; border: 1px solid #0078d4; color: white; padding: 6px 12px; border-radius: 2px; display: inline-block;"
						>
							Download Microsoft Edge
						</a>
						<a
							href="https://learn.microsoft.com/en-us/lifecycle/faq/internet-explorer-microsoft-edge"
							style="background-color: white; padding: 6px 12px; border: 1px solid #505050; color: #171717; border-radius: 2px; display: inline-block;"
						>
							More info about Internet Explorer and Microsoft Edge
						</a>
					</div>
				</div>
			</div>
			<!-- site header -->
			<div
				id="ms--site-header"
				data-test-id="site-header-wrapper"
				itemscope="itemscope"
				itemtype="http://schema.org/Organization"
			>
				<div
					id="ms--mobile-nav"
					class="site-header display-none-tablet padding-inline-none gap-none"
					data-bi-name="mobile-header"
					data-test-id="mobile-header"
				></div>
				<div
					id="ms--primary-nav"
					class="site-header display-none display-flex-tablet"
					data-bi-name="L1-header"
					data-test-id="primary-header"
				></div>
				<div
					id="ms--secondary-nav"
					class="display-none"
					data-bi-name="L2-header"
					data-test-id="secondary-header"
					hidden
				></div>
			</div>
			
		<!-- banner -->
		<div data-banner>
			<div id="disclaimer-holder"></div>
			
		</div>
		<!-- banner end -->
	
		</div>
	</header>
				 

				<main
					id="main"
					role="main"
					class="layout-body-main "
					data-bi-name="content"
					lang="en-us"
					dir="ltr"
				>
					
		<div id="ms--homepage-container">
			
		<section
			id="ms--welcome-hero"
			data-bi-name="hero"
			class="hero hero-image gradient-border-right gradient-border-body-accent background-color-body-accent"
			style="--hero-background-image-light: url(&quot;/media/home-and-directory/home-hero_light.png&quot;); --hero-background-image-dark: url(&quot;/media/home-and-directory/home-hero_dark.png&quot;);"
		>
			<div class="hero-content">
				
				<h1 class="title is-1 gradient-text-vivid padding-bottom-sm margin-bottom-none">
					Learning for everyone, everywhere
				</h1>
				<p>Explore Microsoft product documentation, training, credentials, Q&amp;A, code references, and shows.</p>

				<div id="form-wrapper" class="margin-top-sm">
					<form
						method="GET"
						id="welcome-search-form-replacement"
						name="welcome-search-form"
						role="search"
						action="/search"
					>
						<div class="columns is-mobile is-gapless">
							<div class="column">
								<div id="autocomplete-replacement" class="autocomplete display-block">
									<div class="control">
										<input
											role="combobox"
											id="facet-search-input"
											class="autocomplete-input input control input-lg"
											type="search"
											aria-label="Search"
											aria-controls="autocomplete-list"
											aria-expanded="false"
											placeholder="Search Microsoft Learn"
											data-bi-name="home-search"
										/>
									</div>
								</div>
							</div>
							<div class="column is-narrow">
								<button
									class="button button-primary button-filled button-lg margin-left-xxs"
									type="submit"
									data-bi-name="hero-search-button"
								>
									<span class="icon" aria-hidden="true">
										<span class="docon docon-search"></span>
									</span>
									<span>Search</span>
								</button>
							</div>
						</div>
					</form>
				</div>
			</div>
		</section>
	 
		<section id="popular-section" class="uhf-container" data-bi-name="popular-section">
			<div class="padding-block-lg">
				<h2 class="title is-2 text-align-center-tablet">Popular technical resources and training</h2>
				<ul class=" grid is-3 gap-md gap-lg-desktop margin-top-lg">
					
							<li class="grid-item">
								<article data-bi-name="popular-card" class="card position-relative">
									<div class="card-content">
										<h3 class="card-title color-text font-size-xl margin-bottom-sm">
											Discover AI, Azure, and Copilot essentials
										</h3>
										
													<p class="card-content-description color-text-subtle margin-bottom-sm">
														Develop knowledge and skills faster with the latest resources and expert insights.
													</p>
											  
										
		<div class="margin-top-sm">
			<div class="media align-items-center">
				
							<div class="media-left">
								<img
									aria-hidden="true"
									class="card-template-icon"
									src="/media/common/ai-microchip.svg"
									loading="lazy"
								/>
							</div>
					  
				<div class="media-content">
					<a href="/ai" class="has-external-link-indicator card-title">Artificial Intelligence</a>
					
				</div>
			</div>
		</div>
	
		<div class="margin-top-sm">
			<div class="media align-items-center">
				
							<div class="media-left">
								<img
									aria-hidden="true"
									class="card-template-icon"
									src="/media/logos/logo_azure.svg"
									loading="lazy"
								/>
							</div>
					  
				<div class="media-content">
					<a href="/azure" class="has-external-link-indicator card-title">Azure</a>
					
				</div>
			</div>
		</div>
	
		<div class="margin-top-sm">
			<div class="media align-items-center">
				
							<div class="media-left">
								<img
									aria-hidden="true"
									class="card-template-icon"
									src="/media/logos/logo_copilot.svg"
									loading="lazy"
								/>
							</div>
					  
				<div class="media-content">
					<a href="/copilot" class="has-external-link-indicator card-title">Microsoft Copilot</a>
					
				</div>
			</div>
		</div>
	
									</div>
									
												<div class="card-footer card-footer-left border-top-none">
													<div class="card-footer-item padding-block-xs">
														<a
															href="/docs"
															class="font-size-s
sitemap.xml 200 OK
Type URL Set URLs 0 entries Valid XML No
B
TLS Certificate Expiry & Recommendations
169 days until leaf cert expires — 5 issues to address
REVIEW

Certificate validity

169
days left
0d 30d 60d 90d+

Recommended actions

  • Extend HSTS max-age to at least 31536000 (1 year) to meet the preload list criteria
  • Add includeSubDomains to the HSTS directive
  • Add the preload directive and submit to hstspreload.org once max-age + includeSubDomains are in place
  • Enable DNSSEC on your domain for DNS spoofing protection
  • Enable OCSP stapling on your TLS server to remove a CA roundtrip and protect user privacy
A
URL Variants
www/non-www, trailing slash, HTTP→HTTPS
PASS
www/non-www, trailing slash, HTTP→HTTPS
Warning::
HTTP→HTTPS redirect uses 302 instead of 301
Got: 302 temporary redirect Expected: 301 permanent redirect

www / non-www

200https://www.technet.com/
https://technet.com/

HTTP → HTTPS

307http://www.technet.com/ https://www.technet.com/

Use 301 (permanent) instead of 302 (temporary)

A+
Domain Intelligence
technet.com — via Nom-iq Ltd. dba COM LAUDE, 27 years, 6 months old, hosted on Microsoft Azure
PASS
technet.com — via Nom-iq Ltd. dba COM LAUDE, 27 years, 6 months old, hosted on Microsoft Azure
Info::
Domain registered until Mar 3, 2027 (10 months remaining)
Info::
DNSSEC is not enabled
DNSSEC protects against DNS spoofing attacks. While not required, enabling DNSSEC adds an additional layer of security. Contact your DNS provider to enable it.
Info::
Registrar: Nom-iq Ltd. dba COM LAUDE
Warning::
Registrar lock is NOT enabled
The domain can be transferred without an unlock step. Enable registrar lock (clientTransferProhibited) in your registrar's control panel to protect against unauthorized or accidental transfers.
Info::
Hosting: Microsoft Azure
Got: AS8075
Domain expiry

260 days

March 3, 2027

SSL certificate

169 days

Issued by Microsoft Corporation

Domain age

27 years, 6 months

Registered March 3, 1999

DNSSEC

Not enabled

Protects against DNS spoofing

Hosting

Microsoft Azure

ASN AS8075

20.76.201.171

Registrar

Nom-iq Ltd. dba COM LAUDE

Unlocked 4 NS records
Expiry timeline
Today
+1 year
Domain expiry SSL expiry Danger zone (≤30 days)
Recommended actions
  • Enable DNSSEC to protect visitors from DNS spoofing
  • Enable registrar lock (clientTransferProhibited) to block unauthorized domain transfers
Registrar Nom-iq Ltd. dba COM LAUDE
Created March 3, 1999 (27 years, 6 months ago)
Expires March 3, 2027 (10 months)
Last Updated February 1, 2026
Name Servers ns1-02.azure-dns.com, ns2-02.azure-dns.net, ns3-02.azure-dns.org, ns4-02.azure-dns.info
DNSSEC Not enabled
Hosting
IP Address 20.76.201.171
ASN AS8075 (MICROSOFT-CORP-MSN-AS-BLOCK - Microsoft Corporation, US)
Provider Microsoft Azure
Data source: rdap (0.2s)

DNSSEC protects against DNS spoofing attacks. While not required, enabling DNSSEC adds an additional layer of security. Contact your DNS provider to enable it.

Why this matters

Without DNSSEC, an attacker who can poison your DNS can hijack your domain — and SSL certs alone don't stop them.

Learn more

DNSSEC adds cryptographic signatures to DNS records, preventing forged responses from poisoning resolver caches. Without it, an attacker who controls the network path can redirect your domain to a malicious server before any HTTPS handshake happens. Most modern registrars (Cloudflare, Google Domains, Route 53) enable it with one toggle.

Source: ICANN / RFC 4033

The domain can be transferred without an unlock step. Enable registrar lock (clientTransferProhibited) in your registrar's control panel to protect against unauthorized or accidental transfers.

Why this matters

Without registrar lock, an attacker who phishes your registrar credentials can transfer the domain in minutes — total brand hijack.

Learn more

Registrar lock (clientTransferProhibited, clientUpdateProhibited, clientDeleteProhibited) requires extra verification before any transfer/update/delete. Every major registrar offers it free. Combined with 2FA on your registrar account, it's the strongest defense against domain hijacking.

Source: ICANN / domain-security best practice

A+
HTTP Probe Timing
Total 240 ms — DNS, TCP, TLS, TTFB, content transfer breakdown
PASS
DNS Lookup DNS Lookup — time to resolve the domain name to an IP address.
14 ms
TCP Connect TCP Connect — time to establish a TCP connection to the server.
2 ms
TLS Handshake TLS Handshake — time to complete the HTTPS encryption handshake.
43 ms
Time to First Byte Time to First Byte — how long the server takes to respond with the first byte of data.
241 ms
Total Time Total request time from DNS lookup through full response.
241 ms

Connection waterfall

DNS Lookup 14 ms TCP Connect 2 ms TLS Handshake 43 ms Server Processing 182 ms Content Transfer 0 ms
A
CDN & Delivery
Azure CDN (TCP_MISS)
PASS
Azure CDN (TCP_MISS)
Info::
Site is served via Azure CDN CDN
Got: x-azure-ref: 20260422T223320Z-1749fb74d86gmxmkhC1SJCkk380000000kv0000000000squ
Info::
CDN cache status: TCP_MISS
CDN Detected: Azure CDN
Provider Azure CDN Cache Status TCP_MISS Evidence x-azure-ref: 20260422T223320Z-1749fb74d86gmxmkhC1SJCkk380000000kv0000000000squ
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback