zoukankan      html  css  js  c++  java
  • Ubuntu14.04 bind9配置

    apt-get install bind9
    
    配置域名: cn.archive.ubuntu.com
    对应IP: 10.60.233.244
    
    vim  /etc/bind/name.conf.default-zones 
    在文件后面添加:
    zone "archive.ubuntu.com" {
            type master;
            file "/etc/bind/db.archive.ubuntu.com";
    };
    
    zone "233.60.10.in-addr.arpa" {
            type master;
            file "/etc/bind/db.10";
    };
    
    1、添加正向解析:
    vim /etc/bind/db.archive.ubuntu.com
    创建文件并添加:
    ;
    ; BIND data file for local loopback interface
    ;
    $TTL    604800
    @       IN      SOA     ns.archive.ubuntu.com. root.archive.ubuntu.com. (
                                  2         ; Serial
                             604800         ; Refresh
                              86400         ; Retry
                            2419200         ; Expire
                             604800 )       ; Negative Cache TTL
    ;
    @       IN      NS      ns.archive.ubuntu.com.
    @       IN      A       10.60.233.244
    ns      IN      A       10.60.233.244
    cn      IN      A       10.60.233.244
    
    2、添加反向解析:
    vim /etc/bind/db.10
    创建文件并添加:
    ;
    ; BIND reverse data file for local loopback interface
    ;
    $TTL    604800
    @       IN      SOA     ns.archive.ubuntu.com. root.archive.ubuntu.com. (
                                  1         ; Serial
                             604800         ; Refresh
                              86400         ; Retry
                            2419200         ; Expire
                             604800 )       ; Negative Cache TTL
    ;
    @       IN      NS      archive.ubuntu.com.
    1.0.0   IN      PTR     cn.archive.ubuntu.com.
    244     IN      PTR     archive.ubuntu.com.
    244     IN      PTR     www.archive.ubuntu.com.
    244     IN      PTR     dns.archive.ubuntu.com.
    244     IN      PTR     cn.archive.ubuntu.com.
    
    修改 /etc/bind/named.conf.options :
    如下设置:
            forwarders {
                    8.8.8.8;
                    8.8.4.4;
            };
    
            allow-query { any; };
    
    OK, 重启服务 service bind9 restart  
    
    测试:
    root@trait:/etc/bind# nslookup cn.archive.ubuntu.com
    Server:         127.0.0.1
    Address:        127.0.0.1#53
    
    Name:   cn.archive.ubuntu.com
    Address: 10.60.233.244
    
    或者:
    
    root@trait:/etc/bind# host cn.archive.ubuntu.com 10.60.235.100
    Using domain server:
    Name: 10.60.235.100
    Address: 10.60.235.100#53
    Aliases: 
    
    cn.archive.ubuntu.com has address 10.60.233.244
  • 相关阅读:
    jQueryfocus,title,振动
    使用jQuery自动缩图片 (转载)
    jQuery10个小例子(jquery之旅).
    jQuery动态增加删除Tabs
    jQuery图片播放轮换
    jQuery插件上传控件美化
    Ajax简单
    jQuery仿QQ改版后的样式切换
    jQuery插件tooltip(超链接提示,图片提示).
    css分页样式
  • 原文地址:https://www.cnblogs.com/danxi/p/6181855.html
Copyright © 2011-2022 走看看