Difference between revisions of "Cluster der kan alt/DNS Server"
From Teknologisk videncenter
(→Installation af DNS) |
m |
||
Line 3: | Line 3: | ||
Instructions | Instructions | ||
− | + | ==Install DNS sserver software== | |
+ | sudo apt-get install bind9 | ||
− | + | ==configure DNS (Bind)== | |
− | + | We need to touch 5 files. | |
We will edit 3 files. | We will edit 3 files. | ||
− | /etc/bind/named.conf.local | + | #/etc/bind/named.conf.local |
− | /etc/bind/named.conf.options | + | #/etc/bind/named.conf.options |
− | /etc/resolv.conf | + | #/etc/resolv.conf |
We will create 2 files. | We will create 2 files. | ||
− | /etc/bind/zones/mydomain.com.db | + | #/etc/bind/zones/mydomain.com.db |
− | /etc/bind/zones/rev.0.168.192.in-addr.arpa | + | #/etc/bind/zones/rev.0.168.192.in-addr.arpa |
− | + | ===First step: add domain zone – mydomain.com=== | |
− | |||
− | |||
+ | *sudo vi /etc/bind/named.conf.local | ||
+ | <source lang=cli> | ||
# Our domain zone | # Our domain zone | ||
zone "mydomain.com" { | zone "mydomain.com" { | ||
Line 33: | Line 34: | ||
type master; | type master; | ||
file "/etc/bind/zones/rev.0.168.192.in-addr.arpa"; | file "/etc/bind/zones/rev.0.168.192.in-addr.arpa"; | ||
+ | </source> | ||
− | + | {{Source cli}} | |
+ | [[Category:Cliuster]][[Category:Ubuntu]] |
Revision as of 10:25, 18 April 2012
Contents
Installation af DNS
Instructions
Install DNS sserver software
sudo apt-get install bind9
configure DNS (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
First step: add domain zone – mydomain.com
- sudo vi /etc/bind/named.conf.local
# Our domain zone
zone "mydomain.com" {
type master;
file "/etc/bind/zones/mydomain.com.db";
# For reverse DNS
zone "0.168.192.in-addr.arpa" {
type master;
file "/etc/bind/zones/rev.0.168.192.in-addr.arpa";