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
- This zone file would be called into service with a zone statement in the named.conf similar to the following:
zone "example.com" IN { type master; file "example.com.zone"; allow-update { none; }; };
2. RFC
rfc1912, rfc2181 で'zone files' という表現が使われている。(master filesはでてこない)
- rfc1034, 1035では現れない。(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を指すようだ。