I have a computer in my basement with Windows Server 2008 R2. I have set up my DNS name as forlenza.local and installed the Active Directory service on it, but when I try to join any client PC to the domain, it says it can't reach the server or find it with that domain. I do not know if I set it up correctly with the router, it is just connected to an Acitontec Verizon Fios MI424WRN router via an ethernet cable.
|
migrated from serverfault.com Dec 31 '11 at 23:36
|
It sounds like your client PC is unable to resolve the name "forlenza.local" using DNS. You have a few easy options to check this using common commands.
If you get an error like Solution 1: Change DNS settings on the client PC Solution 2: Change the DNS settings on your router Solution 3: Use your server for DHCP instead of your router |
|||
|
|
|
First, you'll need to be sure that the client PCs you're attempting to use and the machine with the Windows Server 2008 install are on the same LAN. (This wasn't clear in the question, but I'm hoping you're not expecting clients on the Internet to be able to communicate with your server using any of the standard Windows server ports, as these ports are blocked by many residential ISPs.) This also isn't clear in your question, but since you installed Active Directory, I assume you are trying to join a client PC to the Windows AD domain when you say "connect any Client PC to it". In order to accomplish this, the client PCs need to have access to DNS to be able to find the service records, etc. in order to join the domain. Assuming you have the DNS server also installed and properly configured on the Windows Server machine, you need to reconfigure the network connections on your client PCs to use the Windows Server's IP address as their DNS server. Alternatively, you need to have a DHCP server somewhere (possibly also on the Windows Server machine) that advertises the Windows Server's IP as the DNS server to the client PCs that you're attempting to join to the domain. |
||||
|
It is likely that your computers get UP and DNS services from your local router, so they wouldn't see the AD. |
||||
|
|
|
To work properly Active Directory needs proper DNS service – the domain must have various SRV records set up and pointing to the domain controller. Just having the controller's name is not enough. Most routers only provide a very basic DNS server for simple host name ↔ IPv4 address mappings, lacking subdomain or SRV record support required for Active Directory. For best results, obtain a publicly accessible DNS domain, and let it be managed by the domain controller (directly or indirectly). Alternatively, configure the clients (probably via DHCP) to use your DC as the DNS server for everything. Further reading
|
||||
|
|