Can someone explain TCT/IP > Properties > Advanced > 'DNS' tab please? I know what DNS, primary DNS suffix and DNS suffix are, but this tab has some confusing properties.
-
2What options/settings are you particularly confused about? – joeqwerty Aug 19 '11 at 14:05
-
Connection specific DNS suffix applies only to the interface right? – Dean Aug 19 '11 at 14:08
-
The DNS suffix part mostly. – Dean Aug 19 '11 at 14:09
-
No need to be mean maliq. Yes I see the question mark, I was hoping someone could point me to an article or explain in general the features. Microsoft explanations are generaly complicated to comprehend. – Dean Aug 19 '11 at 14:12
-
1The "DNS suffix for this connection" sets a DNS suffix for this adapter only (which would be in addition to the primary DNS suffix, if one exists). This is mostly useful for a multihomed computer or for a computer in a workgroup which doesn't have a primary DNS suffix. – joeqwerty Aug 19 '11 at 14:15
-
1@Dean - That would have been good info to have explained in the original question. You were *really* broad with your question so it doesn't sound like you really know what you're asking about. You should check out this KB http://support.microsoft.com/kb/555375 – Nixphoe Aug 19 '11 at 14:17
-
1http://technet.microsoft.com/en-us/library/cc754143.aspx – mailq Aug 19 '11 at 14:18
-
@Nixphoe Best Microsoft KB article ever. This will be my favorite bookmark. – mailq Aug 19 '11 at 14:26
-
@mailq - Exactly where I dug it up from :) – Nixphoe Aug 19 '11 at 14:32
-
@Nixphoe: Ahh by Daniel Petri himself! :) – Dean Aug 19 '11 at 14:43
2 Answers
Here's a shot:
DNS server addresses, in order of use:
This lists the name servers that your machine will contact for DNS resolution, in the order they will be contacted should one higher in the list be unreachable.
Append primary and connection specific DNS suffixes
When performing a name resolution request, this will append the dns suffix of the machine and DNS suffix for this connection (see below) to the host name in a dns query, if the query is not for a fully qualified host name. This helps to speed up queries so that they get sent to the proper authoritative server quicker (or at all).
Append parent suffixes of the primary DNS suffix
This does the same as the above, except it will take parent suffixes instead. For example, if your primary DNS suffix is somesub.mydomain.com then it will append .mydomain.com and .com to queries.
Append these DNS suffixes (in order)
This is a list that you can define of additional suffixes to add to queries.
DNS suffix for this connection
This is the DNS domain that you want that connection to be associated with. This is automatically set when the machine is part of an Active Directory domain.
Register this connection's addresses in DNS
When this is checked your machine will attempt to dynamically create DNS records (ie- register itself) in the zone associated with the connection. This will either be the Active Directory domain your machine is a member of or the DNS suffix listed in the above setting if you have the next setting checked.
Use this connection's DNS suffix in DNS registration
If this is checked then when attempting to dynamically register with DNS (if enabled) it will try to register itself in the zone of the DNS suffix for this connection.
(Note: This is in addition to the regular registration of the "full computer name". Not instead of. (See TechNet))

- 1,842
- 13
- 21

- 37,883
- 12
- 92
- 146
-
@quillman: What about the primary DNS suffix? Domain membership auto-sets the primary DNS suffix AND the connectin specific DNS suffix? – Dean Aug 19 '11 at 14:21
-
Yes, but like joeqwerty said in his answer you can set it on a per-adapter basis in the `DNS suffix for this connection` box. – squillman Aug 19 '11 at 14:38
The "DNS suffix for this connection" sets a DNS suffix for this adapter only (which would be in addition to the primary DNS suffix, if one exists). This is mostly useful for a multihomed computer or for a computer in a workgroup which doesn't have a primary DNS suffix.
I use this setting on my home computers (which aren't joined to a Windows domain) in concert with the "Register this connection's address in DNS" setting so that they all register in my DNS server (in a specific zone) and I have common and consistent name resolution for all of my computers.

- 109,901
- 6
- 81
- 172
-
So if 'Append primary and connection specific DNS suffixes' is set, and AD membership sets both to be the same (as squillman wrote) you could get (for example) queries ending with "mydom.com.mydom.com" ? – Dean Aug 19 '11 at 14:25
-
Sounds like a flaw in the default configuration when the computer becomes AD member. – Dean Aug 19 '11 at 14:32
-
1My bad, that's not correct. It does not append the connection specific DNS suffix TO the primary DNS suffix. It appends the primary and connection specific suffixes to the query independently. – joeqwerty Aug 19 '11 at 14:47