Apr 2011
Debian squeeze
設定するファイルは
/etc/bind/named.conf.options 上位DNSを記述する
/etc/bind/named.conf.local ローカルな定義ファイルを示す
/etc/bind/karappi.jp
ローカル(karappi.jpの)な名前解決ファイル
名前をIPアドレスに変換する。
/etc/bind/karappi.jp.rev
ローカル(karappi.jpの)な逆引きファイル
IPアドレスを名前に変換する。
options { directory "/var/cache/bind"; // If there is a firewall between you and nameservers you want // to talk to, you may need to fix the firewall to allow multiple // ports to talk. See http://www.kb.cert.org/vuls/id/800113 // If your ISP provided one or more IP addresses for stable // nameservers, you probably want to use them as forwarders. // Uncomment the following block, and insert the addresses replacing // the all-0's placeholder. // forwarders { // 0.0.0.0; // }; forwarders { 192.168.1.1; <ーーーーーー 上位DNSのアドレス }; auth-nxdomain no; # conform to RFC1035 listen-on-v6 { any; }; }; |
// // Do any local configuration here // // Consider adding the 1918 zones here, if they are not used in your // organization //include "/etc/bind/zones.rfc1918"; zone "karappi.jp" { type master; file "/etc/bind/karappi.jp"; <ーーーー名前解決(正引き)ファイル }; zone "1.168.192.in-addr.arpa" { type master; file "/etc/bind/karappi.jp.rev"; <ーーーー逆引きファイル }; |
$TTL 86400 karappi.jp. IN SOA kogera.karappi.jp. root.kogera.karappi.jp. ( 1 ; Serial 3600 ; Refresh 1 hour 3600 ; Retray 1 hour 360000 ; Expire 100 hours 86400 ) ; Minimum 24 hours ; IN NS kogera.karappi.jp. ; ;hosts ; kogera IN A 192.168.1.206 koro IN A 192.168.1.10 ; ;alias ; ;dns IN CNAME kogera ;www IN CNAME kogera ;ftp IN CNAME kogera |
$TTL 86400 @ IN SOA kogera.karappi.jp. root.kogera.karappi.jp. ( 1 ; Serial 3600 ; Refresh hour 3600 ; Retray 1 hour 360000 ; Expire 100 hours 86400 ) ; Minimum 24 hours IN NS kogera.karappi.jp. ; ;pointer to hosts ; 10 IN PTR koro.karappi.jp. 206 IN PTR kogera.karappi.jp. |