美文网首页
ubuntu16安装DHCP

ubuntu16安装DHCP

作者: 天草二十六_简村人 | 来源:发表于2019-07-11 11:30 被阅读0次

    一、安装dns server软件包
    $ apt-get install bind9

    二、配置BIND9
    配置文件的目录默认为/etc/bind

    cd /etc/bind 进入该目录。。。

    1、vi /etc/bind/named.conf.local

    zone "xuehai.com" {
            type master;
            file "/etc/bind/db.xuehai.com";
    };
    
    image.png

    2、cp db.local db.xuehai.com
    以db.local为模板,复制一份,命名为 db.xuehai.com

    3、vi /etc/bind/db.xuehai.com
    A 是主机名,NS是主域名。

    xuehai.com IN NS 192.168.10.62
    wiki IN A 192.168.10.62
    sonar IN A 192.168.10.62
    gerrit IN A 192.168.10.62
    gitlab IN A 192.168.10.62
    jenkins IN A 192.168.10.62
    zentao IN A 192.168.10.62
    
    image.png

    4、vi /etc/bind/named.conf.options

    listen-on port 53 {127.0.0.1;192.168.10.62; };
    allow-transfer { none; };
    
    image.png

    5、service bind9 restart

    三、测试验证
    1、配置域名
    vi /etc/resolv.conf

    nameserver 192.168.10.62
    search DHCP HOST
    
    image.png

    2、ping wiki.xuehai.com

    image.png

    相关文章

      网友评论

          本文标题:ubuntu16安装DHCP

          本文链接:https://www.haomeiwen.com/subject/vjerkctx.html