UBUNTU12.04服务器版配置dns服务器步骤

来源:互联网 发布:网络管理工具有哪些 编辑:程序博客网 时间:2024/05/22 05:06

操作系统:ubuntu1204服务器版

DNS软件:bind9

newoa.qyjob.net指向168.168.168.96的IP


运行以下命令安装

sudo apt-get install bind9 dnsutils bind9-doc

在默认情况下。Bind9是被配置为DNS缓存服务器来使用的。因此只要把DNS服务器地址加入转发列表就行了

sudo vim /etc/bind/naemd.conf.options

[plain] view plaincopy
  1. options {  
  2.         directory "/var/cache/bind";  
  3.   
  4.         // If there is a firewall between you and nameservers you want  
  5.         // to talk to, you may need to fix the firewall to allow multiple  
  6.         // ports to talk.  See http://www.kb.cert.org/vuls/id/800113  
  7.   
  8.         // If your ISP provided one or more IP addresses for stable  
  9.         // nameservers, you probably want to use them as forwarders.  
  10.         // Uncomment the following block, and insert the addresses replacing  
  11.         // the all-0's placeholder.  
  12.   
  13.          forwarders {  
  14.                 210.21.4.130;  
  15.          };  
  16.   
  17.         //========================================================================  
  18.         // If BIND logs error messages about the root key being expired,  
  19.         // you will need to update your keys.  See https://www.isc.org/bind-keys  
  20.         //========================================================================  
  21.         dnssec-validation auto;  
  22.   
  23.         auth-nxdomain no;    # conform to RFC1035  
  24.         listen-on-v6 { any; };  
  25. };  

然后配置主DNS服务器

创建正向zone文件

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

添加以下的内容

[plain] view plaincopy
  1. zone "qyjob.net" {  
  2.         type master;  
  3.         file "db.qyjob.net";  
  4. };  

sudo cp /etc/bind/db.local /var/cache/bind/db.qyjob.net
sudo vim /var/cache/bind/db.qyjob.net 

[plain] view plaincopy
  1. $TTL    604800  
  2. @       IN      SOA     qyjob.net. root.qyjob.net. (  
  3.                               2         ; Serial  
  4.                          604800         ; Refresh  
  5.                           86400         ; Retry  
  6.                         2419200         ; Expire  
  7.                          604800 )       ; Negative Cache TTL  
  8. ;  
  9. @       IN      NS      localhost.  
  10. @       IN      A       127.0.0.1  
  11. newoa   IN      A       168.168.168.96  
  12. @       IN      AAAA    ::1  

sudo /etc/init.d/bind9 restart

然后测试就可以发现newoa.qyjob.net已经是做好DNS指向的了。

还有反向DNS没有完成!