bind 安装 和配置(master/slave)

一,软件安装

#sudo yum -y install bind

 

 

二,配置

# vi /etc/named.conf

 //
// named.conf
//
// Provided by Red Hat bind package to configure the ISC BIND named(8) DNS
// server as a caching only nameserver (as a localhost DNS resolver only).
//
// See /usr/share/doc/bind*/sample/ for example named configuration files.
//
acl "DNS-int" { 10.0.0.0/8; 172.16.0.0/12; 192.168.0.0/16; };
options {
        allow-query { any; };
        allow-recursion { any; };
        allow-transfer { "localhost"; "DNS-int"; };
        also-notify { 10.10.253.1; };
        listen-on { any; };
        directory       "/var/named";
        dump-file       "/var/named/data/cache_dump.db";
        hostname none;
        minimal-responses no;
        notify yes;
        recursion yes;
        version "";
 
#       /* Path to ISC DLV key */
#       bindkeys-file "/etc/named.iscdlv.key";
#       managed-keys-directory "/var/named/dynamic";
};
logging {
        channel simple_debug {
                file "/var/log/named/bind.log" versions 3 size 5m;
                severity warning;
                print-time yes;
                print-severity yes;
                print-category yes;
        };
#       category default{
#               simple_log;
#       };
};
zone "0.0.127.IN-ADDR.ARPA" in { type master; file "data/db.127.0.0"; };
zone "internal.weimob.com" in { type master; file "data/db.weimob"; };
 
zone "." IN {
        type hint;
        file "named.ca";
};

 

#  vi /var/named/data/db.weimob

$ORIGIN .
$TTL 3600       ; 1 hour
internal.weimob.com             IN SOA  ns1.internal.weimob.com. jianzhong.xu.internal.weimob.com. (
                                2016072809  ; serial
                                10800      ; refresh (3 hours)
                                3600       ; retry (1 hour)
                                1209600    ; expire (2 weeks)
                                3600       ; minimum (1 hour)
                                )
$TTL 86400      ; 1 day
                        NS      ns1.internal.weimob.com.
$TTL 3600       ; 1 hour
$ORIGIN internal.weimob.com.
ns1                     A       10.10.252.73

 

# /etc/init.d/named start

 

SLAVE安装和配置

#软件安装

#sudo yum -y install bind

 

#vi /etc/named.conf

//
// named.conf
//
// Provided by Red Hat bind package to configure the ISC BIND named(8) DNS
// server as a caching only nameserver (as a localhost DNS resolver only).
//
// See /usr/share/doc/bind*/sample/ for example named configuration files.
//
acl "DNS-int" { 10.0.0.0/8; 172.16.0.0/12; 192.168.0.0/16; };
options {
        allow-query { any; };
        allow-recursion { any; };
        allow-transfer { "localhost"; "DNS-int"; };
        listen-on { any; };
        directory       "/var/named";
        dump-file       "/var/named/data/cache_dump.db";
        hostname none;
        minimal-responses no;
        notify yes;
        recursion yes;
        version "";
 
#       /* Path to ISC DLV key */
#       bindkeys-file "/etc/named.iscdlv.key";
#       managed-keys-directory "/var/named/dynamic";
};
logging {
        channel simple_debug {
                file "/var/log/named/bind.log" versions 3 size 5m;
                severity warning;
                print-time yes;
                print-severity yes;
                print-category yes;
        };
#       category default{
#               simple_log;
#       };
};
zone "0.0.127.IN-ADDR.ARPA" in { type slave; masters { 10.10.252.73; }; file "data/db.127.0.0"; };
zone "internal.weimob.com" in { type slave; masters { 10.10.252.73; }; file "data/db.weimob"; };
 
zone "." IN {
        type hint;
        file "named.ca";
};
 

 

# vi /var/named/data/db.weimob

$ORIGIN .
$TTL 3600       ; 1 hour
internal.weimob.com     IN SOA  ns1.internal.weimob.com. jianzhong.xu.internal.weimob.com. (
                                2016072809 ; serial
                                10800      ; refresh (3 hours)
                                3600       ; retry (1 hour)
                                1209600    ; expire (2 weeks)
                                3600       ; minimum (1 hour)
                                )
$TTL 86400      ; 1 day
                        NS      ns1.internal.weimob.com.
$ORIGIN internal.weimob.com.
$TTL 3600       ; 1 hour

 

 

#/etc/init.d/named start

转载于:https://www.cnblogs.com/Qing-840/p/9285662.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值