Does each LAN need to have its own separate DNS server?

1

Does each LAN need to have its own separate DNS server?

I am just trying to work this out to answer a practice exam, but I can't find the answer or a solution to it anywhere. Yes I may not have exhausted all my possible avenues, but I can't find the answer I'm looking for.

kiwifob

Posted 2013-10-02T02:13:39.780

Reputation: 11

Answers

7

A DNS server is accessed using IP and so can be placed anywhere in the world, and be accessed from anywhere else in the world (provided such access is permitted).

Within a corporate environement, you would traditionally have a number of internal DNS servers to respond to internal queries, but it would be unusual to have one per subnet. You may have different DNS servers in different parts of the network if there were business units that operated independently from one another. You would generally have more than one for both performance and redundancy reasons. A single DNS server would be a point of failure.

It is common for domestic lans to have no DNS servers at all - they would use their ISP DNS servers (either directly or relayed via a router).

So the answer is "no", each LAN does not need its own DNS server.

Paul

Posted 2013-10-02T02:13:39.780

Reputation: 52 173

0

Short answer: no, but you need to make sure you don't overwhelm the poor server, and you need to consider and performance issues.


Long answer: Depends what you mean by LAN. If you mean a network of computers where you might have multiple smaller networks inside (subnets, vlans, etc...) then, no. You would need to have default gateways for each division so that It could find it's way to the DNS server, but you don't need one in each piece. The caveat to that is that if you have too many devices trying to reach one main server, or you have a DNS server very far away from some clients, you will have bad performance on those clients.

The point of being far away from clients brings up another point: Though it is possible to run one DNS server and something like a VPN or a frame relay connection to join a satellite network, you will see a significant performance drop for those accessing it over the WAN connection. Therefore, though it is possible, it is not recommended. Suggested to have at least one DNS server per physical location, sometimes more depending on how many lookups you need to do/ how many machines you have.

If you have DNS servers connecting over WAN connections or leased connections (anything you dont own/ pay for bandwidth on) you also want to consider how often you replicate your servers and when. replicating in the early morning time you often get much better speeds (sometimes even bursting above your named speed) and the bandwidth averages out better (less of a peak from early morning traffic + replication than regular traffic + replication) You also want to consider that you should consider security between the servers for the replication. Frame relay, VPN, just plain authentication for the DNS replication, something. Otherwise anyone could tap your lines and find out lots of lovely internal IPs.

PsychoData

Posted 2013-10-02T02:13:39.780

Reputation: 1 331

-1

answer is no, if you more than on vlans or subnets and all are LANS then you can place that one DNS some how(like server VLAN) that all subnets or Lans reaches the DNS server (means DNS server IP should be ping from all Lan IP in different Subnets, you can configure reverse Zone for each Lan or subnet and add host ip in forward zone inside one DNS server.

DNS server for WAN and for LAN is different, which resolves public url over internet and internal host URL over LAN respectively.

user1024691

Posted 2013-10-02T02:13:39.780

Reputation: 1