当前位置:   article > 正文

ubuntu 下bind9安装以及简单配置_ubuntu16下载bind9

ubuntu16下载bind9

1、安装bind9

apt-get bind9

2、bind9简单配置

配置域名 www.test.com 

对应IP 41.85.41.1

/etc/bind/named.conf.default-zones  末尾添加如下内容

  1. zone "test.com" {
  2. type master;
  3. file "/etc/bind/db.test.com";
  4. };
  5. zone "41.85.41.in-addr.arpa" {
  6. type master;
  7. file "/etc/bind/db.41.85.41";
  8. };

cp /etc/bind/db.local db.test.com

vi db.test.com

;
; BIND data file for local loopback interface
;
$TTL    604800
@       IN      SOA     localhost. root.localhost. (
                              2         ; Serial
                         604800         ; Refresh
                          86400         ; Retry
                        2419200         ; Expire
                         604800 )       ; Negative Cache TTL
;
@       IN      NS      localhost.
www     IN      A       1.2.3.4
@       IN      AAAA    ::1

 重启bind9服务

service bind9 restart

调试

root@chenjun-OptiPlex-9020:bind# nslookup www.test.com 127.0.0.1
Server:         127.0.0.1
Address:        127.0.0.1#53


Name:   www.test.com
Address: 1.2.3.4


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/579862
推荐阅读
相关标签
  

闽ICP备14008679号