1. DNS/1/CNAME/RFC1034
- 3.6.2. 別名と正規名 Aliases and canonical names
2. CNAME とは別名のこと
他のドメイン名を指す資源レコードにおいて、指す先は正規名であること。(RFC 1034)
Domain names in RRs which point at another name should always point at the primary name and not the alias. This avoids extra indirections in accessing information.
ここでshouldが使われているから、禁止ではないというのは、あとからのこじつけだ。
- 基本は余計なDNS検索が起きないようにという配慮である。
3. CNAME RR
If a CNAME RR is present at a node, no other data should be present; this ensures that the data for a canonical name and its aliases cannot be different. This rule also insures that a cached CNAME can be used without checking with an authoritative server for other RR types.
CNAME RR が存在する節点には、他のデータは存在させられない;
これにより、正規名と別名に対するデータに違いがでないことが保証される。 また、この規則により、キャッシュされた CNAMEを 権威あるサーバへ他のRRタイプについて問合わせることなく、 使えることを保証する。
4. CNAME はいつ使われるのか
CNAME RRs cause special action in DNS software. (特別の動作を引き起こす。)
When a name server fails to find a desired RR in the resource set associated with the domain name, it checks to see if the resource set consists of a CNAME record with a matching class. If so, the name server includes the CNAME record in the response and restarts the query at the domain name specified in the data field of the CNAME record. The one exception to this rule is that queries which match the CNAME type are not restarted.
5. 私訳
CNAME RRsは DNSソフトウェアにおいて特別な振舞いをおこさせる。
ドメイン名に付属する RR の中に希望するタイプのRRを見つけられなかった時、
- ネームサーバは同じクラスの CNAME レコードがあるかをチェックする。
もし、CNAME レコードがあった場合には返答にCNAMEレコードを含めるとともに、 CNAMEレコードのデータ欄で指定されたドメイン名を使って、再度問合せを行う。
ただし、このルールにはひとつ例外があって、 CNAME タイプが問合せられたときには問合せは再開されない。
ーーーー ここの記述は曖昧だ。