What is Connection-specific DNS Suffix
Solution 1:
In Windows, this suffix is used to:
be automatically added to any DNS queries that do not specify a domain name. Ex: when you try to access a website by only specifying its hostname, such as
www
. It will automatically add the suffix domain specified by the DHCP (or GPO) administrator of your network to this query, turning it into the FQDNwww.domainsuffixspecified.com
.dynamically register the hostname of your workstation within the local network's DNS servers, turning your device into a 'member' of this network. Example: your computer is named
mypc-01
, but when it receives a DNS suffix from the DHCP (or, again, via GPO), it will be internally recognized asmypc-01.thedomainsuffixspecified.com
.
Hope this helps.