1. DNS/1/zone_files

BIND設定ファイルで使われる。

ゾーン毎にfileを作るような印象があるのだが、それであっているだろうか。-- ToshinoriMaeno 2016-11-10 02:41:10

/records named-zonecheckではひとつのファイルにふたつ以上のSOAがあると、警告がでる。

https://www.centos.org/docs/5/html/Deployment_Guide-en-US/s1-bind-zone.html

zone "example.com" IN {
        type master;
        file "example.com.zone";
        allow-update { none; };
};

2. RFC

rfc1912, rfc2181 で'zone files' という表現が使われている。(master filesはでてこない)

-- ToshinoriMaeno 2016-11-10 02:01:41

%grep -c 'master files' rfc*.txt ~/dnsdoc/RFC

rfc1034.txt:9
rfc1035.txt:9
rfc1123.txt:0
rfc1535.txt:0
rfc1912.txt:0
rfc2181.txt:0
rfc2308.txt:1
rfc3833.txt:0
rfc5358.txt:0
rfc974.txt:0

11:02f%grep -c 'zone files' rfc*.txt ~/dnsdoc/RFC

rfc1034.txt:0
rfc1035.txt:0
rfc1123.txt:0
rfc1535.txt:0
rfc1912.txt:6
rfc2181.txt:2
rfc2308.txt:1
rfc3833.txt:0
rfc5358.txt:0
rfc974.txt:0

3. wikipedia

https://en.wikipedia.org/wiki/Zone_file

The format of a zone file is defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1).

とあるが、これらのRFCではmaster filesしか現れないので、ここのzone fileはmaster fileを指すようだ。

/wikipedia

4. sourceforge

http://posadis.sourceforge.net/dns/master_files