First of all, I appreciate your desire to learn and wish you all the best. But, you are biting off a big task if you have little experience. You are talking about networking, windows domains, server management, etc.
I'm going to try to describe how to do this the proper way, but this will probably be a little bit like drinking from a fire hose. And truth be known, this type of information is abundantly available on the internet for you to research and learn, which may be more effective than trying to do this with a single post on the internet.
The information you provided doesn't give me a clear picture of what we are working with. So, I have to speak in basic terms. I also am assuming that you have full control of the laptops and the server. You cannot accomplish what you are trying to do, if the laptops are part of your school's domain or remain connected to your schools network. They should be clean Windows systems that are being joined to your new server and Windows domain. I'm also assuming a default configuration on the router and server.
The first thing it sounds like you are doing wrong is that you are trying to use the same networking addresses as your school's network. If you hook things up wrong, as it sounds like you may have, you're not just going to not have a working system, you are going to take down the entire school network. I'm sure your tech team will love that! :)
So, the first thing you HAVE to do is isolate yourself from the school network. You do this using the router you mentioned. The WAN port connects to the school network. EVERYTHING else hooks on the other side of the router to the LAN ports or via wireless. NOTHING else plugs in to the school network. If you need more wired ports you need to add your own network switch that can plug in to a router LAN port and the rest of your devices can plug in to the switch. I cannot stress this enough, you cannot plug your server in to the school's network - you WILL cause significant outages
So, the physical topology looks like this:
[School Network Port]---->[Router WAN Port][Router LAN Ports / Wireless]---->[Server / PCs / Network Switch]
It doesn't matter what the school's network addresses are, you just have to avoid that range entirely for your new private network. Based on your post, the school is using a range in the Class C Private address range 192.168.x.x. So, you'll reduce confusion and conflicts by avoiding that range all together. Use one of the Class A (10.x.x.x) or Class B (172.16-31.x.x) private network ranges. I'm going to utilize, for our example, 10.25.10.x/24 (that is a subnet mask of 255.255.255.0). This means your network address is 10.25.10.0 and all your devices will be in the range 10.25.10.1-254.
You will need to do the following things, and I am not going to go through this step by step and I am not going to explain the whys and hows of this, that is what Google is for:
- Change the router's LAN IP address to 10.25.10.1. The WAN (or internet) port should remain DHCP. It doesn't matter what IP it pulls from your school's network.
- Disable the router's DHCP server.
- Set your server to a static IP of 10.25.10.10, subnet 255.255.255.0, gateway 10.25.10.1, and DNS of 127.0.0.1.
- Install DHCP services on the server. Create a new IPv4 address scope with a range of 10.25.10.100-200 (subnet 255.255.255.0). Configure options: Router = 10.25.10.1, DNS domain = whateveryoulike.local, DNS Server = 10.25.10.10. Make sure the DHCP server is authorized and the service is active. It should have a green mark on it in DHCP management console.
- Install Active Directory domain services which includes DNS. When you promote your domain controller make sure you use whateveryoulike.local just like you did above for DHCP.
- Configure the DNS server properties so that the 'forwarders' are 10.25.10.1.
Now, plug in another computer to your network and it should pull an IP address from your server in the range 10.25.10.100-200. If you do an ipconfig /all
on the system you should see something like this:
IP Address: 10.25.10.100
Subnet Mask: 255.255.255.0
Gateway: 10.25.10.1
DNS Server: 10.25.10.10
DNS Domain: whateveryoulike.local
Congratulations, you did it! The system should have network connectivity and you should be able to tell it join the domain whateveryoulike.local and it will work just fine. You will have created a segregated network from your school, and there will be no chance you interfere or take down their network. You are free to play to your hearts desire.
I would strongly suggest you start over from scratch and follow my steps above. Default the router, and reinstall the server. This will make sure there is nothing left over from previous configurations that might give you a nightmare. It is not an easy task to change IP addresses, domain names, or whatever. Just start over.
If you have any communication issues after this, try to disable the server's firewall. Sometimes Windows forgets to open the ports. :)
This is old, but the concept hasn't ever changed I don't think: http://techgenix.com/Networking-Basics-Part1/