Difference between revisions of "Cluster der kan alt/DNS Server"

From Teknologisk videncenter
Jump to: navigation, search
(Created page with "=Installation af DNS= Instructions #1. To install the DNS server, we need to install Bind 9. sudo apt-get install bind9 #2. Let’s configure Bind. We need to touch 5 files....")
 
(Installation af DNS)
Line 3: Line 3:
 
Instructions
 
Instructions
 
   
 
   
#1. To install the DNS server, we need to install Bind 9.
+
1. To install the DNS server, we need to install Bind 9.
  
  
 
sudo apt-get install bind9
 
sudo apt-get install bind9
#2. Let’s configure Bind. We need to touch 5 files.
+
2. Let’s configure Bind. We need to touch 5 files.
 
   
 
   
 
We will edit 3 files.
 
We will edit 3 files.

Revision as of 11:16, 18 April 2012

Installation af DNS

Instructions

1. To install the DNS server, we need to install Bind 9.


sudo apt-get install bind9 2. Let’s configure Bind. We need to touch 5 files.

We will edit 3 files.

■/etc/bind/named.conf.local
■/etc/bind/named.conf.options
■/etc/resolv.conf

We will create 2 files.

■/etc/bind/zones/mydomain.com.db
■/etc/bind/zones/rev.0.168.192.in-addr.arpa

A. First step. Lets add our domain zone – mydomain.com.


sudo vi /etc/bind/named.conf.local

  1. Our domain zone

zone "mydomain.com" {

  type master;
  file "/etc/bind/zones/mydomain.com.db";

};

  1. For reverse DNS

zone "0.168.192.in-addr.arpa" {

  type master;
  file "/etc/bind/zones/rev.0.168.192.in-addr.arpa";

}; Save file. Exit.