리눅스/기타

named.caching-nameserver.conf 설정

Rohin 2014. 11. 23. 11:08
반응형
//
// named.caching-nameserver.conf
//
// Provided by Red Hat caching-nameserver 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.
//
// DO NOT EDIT THIS FILE - use system-config-bind or an editor
// to create named.conf - edits to this file will be lost on
// caching-nameserver package upgrade.
//

acl trust {
    any;
};

options {
    listen-on port 53 { 127.0.0.1; };  <-----127.0.0.1 부분을 any로 바꿔준다.
    //listen-on-v6 port 53 { ::1; };
    directory   "/var/named";
    version "Go Away!!";
    dump-file   "/var/named/data/cache_dump.db";
        statistics-file "/var/named/data/named_stats.txt";
        memstatistics-file "/var/named/data/named_mem_stats.txt";

    // Those options should be used carefully because they disable port
    // randomization
    // query-source    port 53;  <------앞 부분의 // 을 제거해준다
    // query-source-v6 port 53;

    // allow-query     { localhost; };  <------앞 부분의 //을 제거해준다. localhost 부분을 any로 바꿔준다
    // allow-query-cache { localhost; };
};
logging {
        channel default_debug {
                file "data/named.run";
                severity dynamic;
        };
        category lame-servers { null;
        };
};
view localhost_resolver {
    match-clients      { localhost; };       <--------  앞부분의 // 을 제거한후 localhost 부분을 any로 바꿔준다.
    match-destinations { localhost; };    <--------  앞부분의 // 을 제거한후 localhost 부분을 any로 바꿔준다.
    recursion yes;
    include "/etc/named.rfc1912.zones";


'리눅스 > 기타' 카테고리의 다른 글

리눅스 디렉토리 용량 확인  (0) 2014.11.23
사이트 이전  (0) 2014.11.23
git 설치  (0) 2014.11.23
ffmpeg 설치  (0) 2014.11.23
apm제거  (0) 2014.11.23