Event ID: 4004

J

Jake

I cannot find a resolution on Support.microsoft.com, does
anyone know how to correct this? Also, what method would
be most advisable to check on the proper funtioning of AD?

*********************************************************
The DNS server was unable to complete directory service
enumeration of zone bl2000.com. This DNS server is
configured to use information obtained from Active
Directory for this zone and is unable to load the zone
without it. Check that the Active Directory is
functioning properly and repeat enumeration of the zone.
The event data contains the error.
*********************************************************
 
J

J.C. Hornbeck [MSFT]

Hi Jake, do you get this error on bootup only or does one also get logged
any time the DNS Server service is restarted? A great tool to check AD
health is DCDIAG which gets installed as part of the Support Tools from the
installation CD under \Support\Tools. Run DCDIAG with the /v switch and
pipe the output to a text file. Then you can go back through the file and
see if there are any failures and if so where they are.

--
J.C. Hornbeck, MCSE
Microsoft Product Support

NOTE: Please reply to the newsgroup and not directly to me. This allows
others to add to and benefit from these threads and also helps to ensure a
more timely response. Thank you!

This posting is provided "AS IS" without warranty either expressed or
implied, including, but not limited to, the implied warranties of
merchantability or fitness for a particular purpose.
 
G

Guest

-----Original Message-----
Hi Jake, do you get this error on bootup only or does one also get logged
any time the DNS Server service is restarted?


Anytime the service restarts.



A great tool to check AD
 
A

Ace Fekay [MVP]

In
Anytime the service restarts.

HI Jake,

Were you able to run that dcdiag command as JC suggested?

Can you also post an ipconfig /all from this machine please? That will
greatly help in diagnosis as well.

Thanks



--
Regards,
Ace

Please direct all replies to the newsgroup so all can benefit.
This posting is provided "AS-IS" with no warranties and confers no
rights.

Ace Fekay, MCSE 2000, MCSE+I, MCSA, MCT, MVP
Microsoft Windows MVP - Active Directory
 
R

Rémi Després

My comments and answers point by point:

1- TXT records, being "not efficient" are not a basis for a practical
solution.

2- With SRV records, load balancing and backup configuration can be static
(no need for an update protocol). This is simple and sufficient for many
small configurations. The point is important in my view: Yahoo, Google etc.
have so many users that the law of large numbers applies to them; they can
use crude and slowly varying parameters to balance traffic on the basis of
what they measure. But more ordinary servers cannot.

3- Even when dynamic load balancing configuration is desired, solutions that
don't depend on frequent DNS queries are preferable because more scalable
than those that do.

4- Yes IP addresses are needed with SRV records, as always. As indicated in
point 1 of the proposed spec, they can be provided to DNS clients in A RRs
contained in the same response as the SRV records.

5- In my understanding, the proposal is not a "big change" to wellknown
services. It is only a "upward compatible extension" to them (and a fairly
simple one): no DNS client is obliged to look at SRV records; no group of
servers offering a common service is obliged to have SRV records in the DNS;
but if a service server group has SRV records in the DNS (and the
corresponing name to IP address A records), then all DNS clients that are
upgraded perform weighted load balancing and/or backup without needing a
high frequency of DNS updates.

6- What is the added value? Efficient load balancing offered to small server
groups, even if they have relatively limited traffic, and no need for DNS
clients
that make frequent service accesses to also make frequent DNS queries.
Besides, the new feature is based on existing record types, the scope of
which
is only extended in a natural way.
This fits with the need for simplicity of concepts and orthogonality of
functions.

7- Exemple of application.
- A web service is offered by two servers s1 and s2, with s1 twice as
powerful as s2.
- A third server s3 is to be used only if s1 and s2 are down (backup).
- The server name used to call the service is xxx (an FQDN).
- IP addresses of servers are a1, a2 and a3 respectively.
- The DNS server for xxx is supposed to be upgraded (i.e. sends SRV records
that match the same queried name a A records, and also the A records that
match the SRV provided targets).

DNS RRs to be set are set as follows:
xxx A IN a1
xxx A IN a2
xxx A IN a3
xxx SRV IN 0 2 80 xxx1 (priority 0, weight 2)
xxx SRV IN 0 1 80 xxx2 (priority 0, weight 1)
xxx SRV IN 1 1 80 xxx3 (priority 1, weight not
significant)
xxx1 A IN a1
xxx2 A IN a2
xxx3 A IN a3

(1) A non upgraded DNS client queries for xxx (it has a web request to serve
and it has in its cache no information about xxx with an unexpired TTL).
(2) It receives all the above RRs.
(3) It interprets only the first ones, the only ones it recognizes, and acts
as
though there would be no SRV records. Note that the three xxx A records
can be ordered according to whatever feature applies to them (the
new feature doesn't conflict with existing such a features. They continue to
apply for DNS clients that don't interpret SRV records in responses to their
A queries.

(4) An upgraded DNS client queries for xxx .
(5) It receives all the above RRs.
(6) It sees that there ares SRV records in the response.
It also sees that no additional DNS query is necessary for getting the IP
addresses of targets xxx1, xxx2 and xxx3 (their IP adresses are provided).
(7) Its successive accesses to the xx service are then preformed such that
a1 is used twice as frequently as a2, the first one being chosen randomly.
If for one access neither a1 nor a2 answers, an access to a3is attempted.
All accesses are performed on the indicated port 80 (the usual one).

Clearer?

Rémi Després


----- Original Message -----
From: "Rémi Després" <[email protected]>
Newsgroups: microsoft.public.win2000.dns
Sent: Saturday, March 06, 2004 3:10 PM
Subject: Re: SRV RRs support in Internet Explorer?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

event 4004, 4015 1
event 4004 1
Event ID: 4000, 4004 & 4015 1
4004 1
Event ID: 4016 and 4004 3
4004 7
Event ID: 4004 1
DNS failed at Win2k DC 3

Top