M
M
Mikhail Zhirov2020-04-20 00:48:03
Active Directory
Mikhail Zhirov, 2020-04-20 00:48:03

How to connect to an Active Directory domain controller Windows server 2019?

Help me please. I decided to learn Windows Server 2019. And I got into setting up Active Directory. There are 4 servers 1 domain controller server.
Router TP-LINK Archer C7. it has a DHCP server enabled.
Default gateway - 10.0.0.1
DNS 1 - 8.8.8.8
DNS 2 - 8.8.4.4
Domain controller 10.0.0.5 (statically installed on the router)
Other servers 10.0.0.6 - 10.0.0.8
I bought a 2nd level domain name. Forwarded ports in the router settings. On RDP I go I enter the site address.
But I can't connect to the domain controller.
Mistake

Note: This information is for the network administrator. Please provide this information to your network administrator. For convenience, it is already saved in the file "C:\Windows\debug\dcdiag.txt".

An error occurred while querying the DNS service hosting resource record (SRV) used to locate the Active Directory domain controller for the 'vrsgroup.org' domain:

An error occurred: "DNS name does not exist."
(error code: 0x0000232B RCODE_NAME_ERROR)

Polling was done for the SRV record for _ldap._tcp.dc._msdcs.vrsgroup.org

Possible causes of the error are:

- The DNS SRV records required to locate an Active Directory domain controller in this domain are not registered with DNS. These records are registered on the DNS server automatically when an Active Directory domain controller is added to the domain. They are updated by the Active Directory domain controller at specified intervals. This computer is configured to use DNS servers with the following IP addresses:

8.8.8.8

- One or more of the following zones does not contain delegation to its child zone:

vrsgroup.org
org
. (root zone)

Answer the question

In order to leave comments, you need to log in

7 answer(s)
C
CityCat4, 2020-04-20
@CityCat4

Mixed in a bunch of horses, people ...
"Domain" from the point of view of AD and a domain such as zhopa.ru - these are two cardinal differences. The internal infrastructure of the network is always closed from the external one (and MS even has a special service for forwarding it outside - ADFS)
Therefore : tyrneta) - from the inside you cling either by IP or by name

Y
y2k, 2020-04-20
@y2k

You cannot use external DNS servers. Set up yours on a domain controller.

A
Anatoly, 2012-01-17
@taliban

I can see how the question grows every second =)

N
Nikolai Vasilchuk, 2012-01-18
@Anonym

Here's the script for you:

(function($) {
  $.fn.includeVirtual = function(path) {
    $.holdReady(true);
    var $element = this;
    $.get(path, function(data) {
      $element.replaceWith(data);
      $.holdReady(false);
    });
    $element.ajaxError(function() {
      $.holdReady(false);
    });
  };
})(jQuery);

Here's holdReady in case you're using an old version of jQuery like mine:
(function($) {
  $.extend({
    // Is the DOM ready to be used? Set to true once it occurs.
    isReady: false,

    // A counter to track how many items to wait for before
    // the ready event fires. See #6781
    readyWait: 1,

        // Hold (or release) the ready event
        holdReady: function( hold ) {
                if ( hold ) {
                        jQuery.readyWait++;
                } else {
                        jQuery.ready( true );
                }
        },

    // Handle when the DOM is ready
    ready: function( wait ) {
      // A third-party is pushing the ready event forwards
      if ( wait === true ) {
        jQuery.readyWait--;
      }

      // Make sure that the DOM is not already loaded
      if ( !jQuery.readyWait || (wait !== true && !jQuery.isReady) ) {
        // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).
        if ( !document.body ) {
          return setTimeout( jQuery.ready, 1 );
        }

        // Remember that the DOM is ready
        jQuery.isReady = true;

        // If a normal DOM Ready event fired, decrement, and wait if need be
        if ( wait !== true && --jQuery.readyWait > 0 ) {
          return;
        }

        // If there are functions bound, to execute
        if ( this.readyList ) {
          // Execute all of them
          var fn,
          i = 0,
          ready = this.readyList;

          // Reset the list of functions
          this.readyList = null;

          while ( (fn = ready[ i++ ]) ) {
            fn.call( document, jQuery );
          }

          // Trigger any bound ready events
          if ( jQuery.fn.trigger ) {
            jQuery( document ).trigger( "ready" ).unbind( "ready" );
          }
        }
      }
    }
  });

And here is the usage:
<script id="selector">$('#selector').includeVirtual('/your/path/to/content');</script>

S
Sergey, 2012-01-17
Protko @Fesor

iframe is, the alternative is unnecessary. Use AJAX if needed. and lightboxes generate their own HTML on the fly. Nobody wants to rewrite standards for your needs.

E
Eddy_Em, 2012-01-18
@Eddy_Em

Bike builder, there's SSI!

S
Silver_Clash, 2012-01-17
@Silver_Clash

how is the construction better with the subsequent extraction of the link to the document from the descendant, and the replacement of the contents of the DIV? In this case, the second option is completely valid.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question