[Home] [Credit Search] [Category Browser] [Staff Roll Call] | The LINUX.COM Article Archive |
Originally Published: Monday, 3 April 2000 | Author: Chen Chang and Sylvester Smith, Linuxcare |
Published to: learn_articles_support/Articles | Page: 1/1 - [Std View] |
Linuxcare: How To Set Up DNS Services: 3 Part Series
Linuxcare's Chen Chang and Sylvester Smith, have taken the time to write a 3 part Series on DNS Services. Part 1: This essentially sets the stage for how one sets up a DNS server for your LAN.
|
Fortunately, an alternative exists. A much better solution is to setup a DNS server for your network. Once a DNS server is in place, the machines on the network would not have to perform name resolution themselves. Instead, they send a name resolution query to the DNS server. The DNS server will perform the name resolution and respond with the IP address for the hostname queried.
Sounds great, but how difficult is it? It is not hard at all to setup a simple DNS server for your LAN. For demonstration purposes, I will be referring to the imaginary 192.168.1.0 network below, using the domain name, gracie.edu.
We are going to set up helio as the DNS server for my domain
Come back next week when we will discuss the server
configuration portion. We will configure named, create a zone file,
set up a zone statement, and a reverse zone statement.
Chen Chang is a
Linuxcare
University Courseware Writer. His areas of interest include TCP/IP
networking, Samba, open source advocacy, and system administration. His
"Power Tips" column appears every Monday at linux.com. Send your questions
and comments to cchang@linuxcare.com.
<# rpm -ivh bind-8.2.1-7.i386.rpm>
<# rpm -ivh bind-devel-8.2.1-7.i386.rpm>
<# rpm -ivh bind-utils-8.2.1-7.i386.rpm>
<# rpm -ivh caching-nameserver-6.0-2.noarch.rpm>
Once the BIND rpm packages are installed, we can begin our configuration. BIND
is a client/server program.