Setting up Internet Connection

craigg

New Member
We just had DSL set up on our network at work. We have a server, about 14 client computers, a hub, and the DSL Router.
For setting up the server, what do I put in for the DNS information? Do I use information from the DSL provider?

Also, for the IP Addresses, what should the Server Local IP address be, and the DSL Router Local IP address? I know how to put an IP range for the server to assign to clients, but not exactly sure if it matters what the Server and the DSL IP address are.
 
Depending on what OS the server is running, it is recommended that you use your ISPs DNS servers. However, if you have say a W2K3 machine with the DNS service installed or even *nix with BIND for that matter, you can set up the DNS server so that it will forward requests to your ISPs DNS servers or you can not use forwarding and make the server resort to root hints. This simply means that the server should be pointed to itself and clients pointed to the server for DNS queries, that is if the service is installed and configured. Usually the router is setup to be a DHCP server, so it will hand out IP, DNS, and gateway information to your client machines.

Here is a list of the IP ranges you can use for your LAN.

10.0.0.0 - 10.255.255.255
172.16.0.0 - 172.31.255.255
192.168.0.0 - 192.168.255.255

Each range consists of non-routable IP addresses. I use the 10.1.1.0 – 10.1.1.255 range for my network simply because I can remember all the IPs for my servers.

It’s best to assign the router with the first valid IP address within what range you choose, say an IP of 192.168.1.1 (most common), IPs 192.168.1.0 and 192.168.1.255 are invalid for use. This in turn leaves you with IPs 192.168.1.1 through 192.168.1.254 for use. For the server, I would recommend choosing the next IP address within that range to be 192.168.1.2. Remember, the subnet determines the network ID and host ID of the IP address. So if you had an IP of 192.168.1.1 w/ a subnet of 255.255.255.0 and another IP of 192.168.1.2 w/ a subnet of 255.255.255.0, these two IPs would have no problem communicating with each other since the network ID is the same (192.168.1). Each IP on a LAN must have the same network ID and unique host IDs, having the same network ID avoids the use of a router between 2 different subnets. We will not go into a complete understanding of network IDs, host IDs, and subnets but it’s good to know.

An example of improperly configured LAN IP address would be 192.168.1.1 w/ a subnet of 255.255.255.0 and an IP of 192.168.1.2 w/ a subnet of 255.255.0.0. These two IP addresses are not local to each other since they are on a different subnet and cannot communicate with each other. The network ID of the first IP address would be 192.168.1 with the last octet being the host ID and the second IP would have the network ID of 192.168 and the last two octets would be the host IDs. You really don’t have to worry about this since DHCP will be handing out IPs for the client machines but again, it’s good to know. I recommend you assign a static IP for the server or make DHCP reserve an IP for the server. This ensures that your client machines will not have any problems when going out to find the server since the IP is always the same.

I also recommend that you get rid of that hub and buy a switch. Hubs share bandwidth and traffic with each connected computer where as a switch dedicates bandwidth to each port and "switches" the packets to the correct receiving machine. Hubs can be essentially called “dumb” switches since they relay every packet on each port that could sometimes cause packet collision.
 
Markware17,

Our server is running windows 2000 server. 95% of our client computers are running Windows XP Pro. So, based on your reply, are you saying that the DSL Router could hand out IP, DNS, and gateway information to the client machines? If that is the case, could I remove the DHCP/DNS/IP assigning settings from the server, and just let the router do that? Thanks.
 
craigg said:
Markware17,

Our server is running windows 2000 server. 95% of our client computers are running Windows XP Pro. So, based on your reply, are you saying that the DSL Router could hand out IP, DNS, and gateway information to the client machines? If that is the case, could I remove the DHCP/DNS/IP assigning settings from the server, and just let the router do that? Thanks.

Yes, the router can hand out DNS server IPs and a gateway IP once the client boots up and asks for an IP from the router or when it renews the IP, as long as the router is acting as the DHCP server. If you happen to have the model information for the router I would like to take a look into what the exact specs are for the router. Is your server running as the DHCP server currently?
 
always make sure that the servers and routers alwys have fixed ip addresses. you will not be able to set Active Directory if your server does not have a static ip address. also, your dns and dhcp will encounter probles.
 
Yes, that could explain why you are having connectivity problems. For the router to handout DNS IPs would mean that it also is enabled as a DHCP server. You can either cut out the DHCP server role on your W2K server and make the router act as the DHCP server or vise versa. I will take a look at the router specs once I get home tonight.
 
I plan on letting the DSL Router assign all of the IP addresses to the client machines. The server currently also does this using DHCP. How can I disable DHCP on the Server? Thanks.
 
You can disable the DHCP service on W2K server by going to the DHCP MMC snap-in. The snap-in is located in your administrative tools in the start menu and is named DHCP :rolleyes:. Once opened, you can delete the server by right clicking it and selecting delete. You can also do this by going to the services snap-in and disabling the DHCP server service.
 
Back
Top