ComputerForum.com ComputerForum.com  
TigerDirect
 
Go Back   Computer Forum > Computer Hardware > Computer Networking and Servers

Reply
 
LinkBack Thread Tools Display Modes
Old 05-16-2006, 07:10 PM   #1 (permalink)
New Member
 
Join Date: May 2006
Posts: 7
Default Setting up Internet Connection

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.
craigg is offline   Reply With Quote


Old 05-16-2006, 08:59 PM   #2 (permalink)
Silver Member
 
Markware17's Avatar
 
Join Date: May 2006
Location: I'm not sure exactly, they keep me locked up in some remote data center.
Posts: 136
Default

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 is offline   Reply With Quote
Old 05-17-2006, 01:10 AM   #3 (permalink)
New Member
 
Join Date: May 2006
Posts: 7
Default

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 is offline   Reply With Quote
Old 05-17-2006, 01:56 AM   #4 (permalink)
Silver Member
 
Markware17's Avatar
 
Join Date: May 2006
Location: I'm not sure exactly, they keep me locked up in some remote data center.
Posts: 136
Default

Quote:
Originally Posted by craigg
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?
Markware17 is offline   Reply With Quote
Old 05-17-2006, 10:50 AM   #5 (permalink)
Bronze Member
 
Xwardos's Avatar
 
Join Date: Apr 2006
Posts: 84
Default

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.
__________________
eh-hazard
Xwardos is offline   Reply With Quote


Old 05-17-2006, 02:20 PM   #6 (permalink)
New Member
 
Join Date: May 2006
Posts: 7
Default

The DSL Router is a Netopia 3346N. The link to the Specs for the router is http://www.netopia.com/equipment/pro...es_models.html
Also, the server is currently running as the DCHP server, but I believe the DSL Router is also set up to assign DNS, could be why we have been having internet problems.

Last edited by craigg; 05-17-2006 at 02:54 PM.
craigg is offline   Reply With Quote
Old 05-17-2006, 06:44 PM   #7 (permalink)
Silver Member
 
Markware17's Avatar
 
Join Date: May 2006
Location: I'm not sure exactly, they keep me locked up in some remote data center.
Posts: 136
Default

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.
Markware17 is offline   Reply With Quote
Old 05-17-2006, 08:59 PM   #8 (permalink)
New Member
 
Join Date: May 2006
Posts: 7
Default

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.
craigg is offline   Reply With Quote
Old 05-17-2006, 11:40 PM   #9 (permalink)
Silver Member
 
Markware17's Avatar
 
Join Date: May 2006
Location: I'm not sure exactly, they keep me locked up in some remote data center.
Posts: 136
Default

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 . 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.
Markware17 is offline   Reply With Quote
Old 05-18-2006, 02:18 PM   #10 (permalink)
New Member
 
Join Date: May 2006
Posts: 7
Default Seems to be working

Thanks for your help. Seems to be working correctly without any problems!!
craigg is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 01:43 AM.


Powered by: vBulletin Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 ©2008, Crawlability, Inc.
Copyright © 2002-2008 Computer Forum and Web Design Forum