头歌 Linux网络实战(一)- DNS配置 答案

第一关 Linux 本机DNS配置

(1)输入:


    vim /etc/hosts


(2)按a输入内容:


    127.0.1.1  newLocalhost
    127.1.1.1  www.baidu.com


(3)(:wq)保存退出,测评。

第二关 安装DNS服务软件


(1)输入:


    apt-get update
    apt-get install bind9


(2)按Y,测评。


第三关 第3关:DNS服务器启动/关闭


(1)输入:


    service bind9 start


(2)测评


第四关  DNS服务器配置

    注意:本关先按要求初始化环境    输入 apt-get update 然后输入 apt-get install host 然后在开始以下操作。
(1)输入:


    vim  /etc/bind/named.conf.default-zones


(2)按A输入内容:

zone "test.com"{
    type master;
    file "/etc/bind/db.test.com";
};

zone "211.40.10.in-addr.arpa"{
    type master;
    file "/etc/bind/db.10";
};

(3)(:wq)保存退出

(4)输入:


    vim  /etc/bind/db.test.com


(5)按A输入内容:

;
; BIND data file for local loopback interface
;
$TTL    604800
@       IN      SOA     test.com. root.test.com. (
                                     2         ; Serial
                         604800         ; Refresh
                            86400         ; Retry
                        2419200         ; Expire
                         604800 )       ; Negative Cache TTL
;
@       IN      NS      test.com.
@       IN      A       10.40.211.244

(6)(:wq)保存退出

(7)输入:


    vim  /etc/bind/db.10


(8)按A输入内容:

;
; BIND reverse data file for local loopback interface
;
$TTL    604800
@       IN      SOA     test.com. root.tes.com. (
                                    1         ; Serial
                          604800         ; Refresh
                           86400         ; Retry
                        2419200         ; Expire
                         604800 )       ; Negative Cache TTL
;
@       IN      NS      test.com.
244      IN      PTR     test.com.

(9)(:wq)保存退出


(10)输入:


    vim  /etc/resolv.conf


(11)按A,把第一行的IP地址修改为127.0.0.1


(12)(:wq)保存退出


(13) 输入:


    service bind9 restart


(14)测评。
 

你可能感兴趣的:(linux,linux,网络,服务器)