diff --git a/TSG/Identity/LocalIdentity-NoExternalDNS.md b/TSG/Identity/LocalIdentity-NoExternalDNS.md
new file mode 100644
index 0000000..7f8240c
--- /dev/null
+++ b/TSG/Identity/LocalIdentity-NoExternalDNS.md
@@ -0,0 +1,75 @@
+# Azure Local Deployment using Local Identity (with No External DNS)
+
+
+
+
+ | Component |
+ Azure Local |
+
+
+ | Topic |
+ Azure Local Deployment using Local Identity: with No External DNS |
+
+
+ | Applicable Scenarios |
+ Azure Local Deployment using Local Identity: with No External DNS, with DNS Forwarder, with Internal DNS |
+
+
+
+## Overview
+Azure Local Deployment with Local Identity Supports deployment without Active Directory and No External DNS within the local network.
+
+In the DNS Service configuration during Azure Local deployment, there are two options:
+- Yes - there is an existing DNS
+- No - there is no existing DNS
+
+
+
+## What and Why
+When there is **NO** existing DNS, the initial network validation will depends on mDNS service to resolve the hostname to IP address for the selected server nodes. The Zone Name intended for the Azure Local Deployment may be different from the existing DNS Suffix defaulted on the network interface. The DNS Suffix can be:
+
+1) Empty - mDNS service will append ".LOCAL" to the hostname as the FQDN
+2) Gateway/Router provided DNS Suffix - the local network will pick up the DNS Suffix from the internet facing gateway default. This DNS Suffix can be internet service provider specific and different from the intended Zone Name.
+3) User Specific DNS Suffix - User can specify a DNS Suffix on the network interface, or if they can update the gateway/router default to the Zone name specified in the DNS Service configuration during Azure Local Deployment.
+
+With (1) and (2), the Azure local deployment will fail on the deployment validation since the network DNS Suffix is different from the one entered in the DNS Service configuration.
+
+User should prepare as in (3), setting up the local network gateway or the server node network interface with the intended DNS Suffix before proceeding with deployment.
+
+## When to use this Guide
+With Azure Local deployment using Local Identity with No External DNS, the server hosts need an to be able to have a valid DNS Suffix that match the Zone Name in the deployment configuration in the Azure Portal.
+
+## DNS Suffix setup before deployment
+The following setup should be done after the OS is setup and network is configured on each node.
+
+For Gateway setting, refer to your gateway provider manual. Setting DNS Suffix or
+For Network interface setting (for **EACH** server host):
+
+```
+# Powershell
+Get-DnsClient
+
+# Set the network interface that will be used in deployment
+Set-DnsClient -InterfaceIndex -ConnectionSpecificSuffix ""
+```
+Note: the DNS Suffix should be set up on the network adapter select for the primary intent.
+
+
+## Verification
+Check the DNS Client and the DNS Suffix should be listed in the "Connection Specific Suffix" parameter for the specific network interface alias.
+```
+# Powershell
+Get-DnsClient
+```
+
+## Deployment Failure Symptom - if DNS Suffix is not setup on the server hosts
+During Deployment, there will be an validation Error on Azure Local Cluster Validation:
+
+
+When opening the details, there will be error with error code and the error detail will have info about "WinRM client cannot process the request"
+
+## Root Cause
+The error is cause by not having the correct DNS Suffix on the server hosts.
+
+## Resolution
+See section "DNS Suffix setup before deployment" in this document.
\ No newline at end of file
diff --git a/TSG/Identity/README.md b/TSG/Identity/README.md
index 43dc0e4..185b1d2 100644
--- a/TSG/Identity/README.md
+++ b/TSG/Identity/README.md
@@ -1 +1,3 @@
# Identity
+
+- [Azure Local Deployment using Local Identity (with No External DNS)](LocalIdentity-NoExternalDNS.md)
diff --git a/TSG/Identity/dnsService.png b/TSG/Identity/dnsService.png
new file mode 100644
index 0000000..ef5b70a
Binary files /dev/null and b/TSG/Identity/dnsService.png differ
diff --git a/TSG/Identity/network.png b/TSG/Identity/network.png
new file mode 100644
index 0000000..28b5e05
Binary files /dev/null and b/TSG/Identity/network.png differ
diff --git a/TSG/Identity/validation.png b/TSG/Identity/validation.png
new file mode 100644
index 0000000..de0f117
Binary files /dev/null and b/TSG/Identity/validation.png differ