## page was renamed from ubuntu/named == ubuntu/named == <> [[Ubuntu/bind-9.12]] を見てください。-- ToshinoriMaeno <> ---- ubuntuにnamedを入れてみた。  apt-get named だったか。 ---- 設定ファイルがどこにあるのか。  /etc/named.conf などがない。 -- ToshinoriMaeno <> /etc/bindの下にいくつかみつけた。 {{{ bind.keys db.empty named.conf.default-zones zones.rfc1918 db.0 db.local named.conf.local db.127 db.root named.conf.options db.255 named.conf rndc.key }}} {{{ include "/etc/bind/named.conf.options"; include "/etc/bind/named.conf.local"; include "/etc/bind/named.conf.default-zones"; }}} {{{ // prime the server with knowledge of the root servers zone "." { type hint; file "/etc/bind/db.root"; }; // be authoritative for the localhost forward and reverse zones, and for // broadcast zones as per RFC 1912 zone "localhost" { type master; file "/etc/bind/db.local"; }; zone "127.in-addr.arpa" { type master; file "/etc/bind/db.127"; }; zone "0.in-addr.arpa" { type master; file "/etc/bind/db.0"; }; zone "255.in-addr.arpa" { type master; file "/etc/bind/db.255"; }; }}}