From: Andreas Gustafsson Date: Tue, 30 Jan 2001 21:39:44 +0000 (+0000) Subject: added note about new reserved words in named.conf [RT #753, #731] X-Git-Tag: v9.1.1rc1~28 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=299f44d3b22fe973d2639df01164afbe610439bb;p=thirdparty%2Fbind9.git added note about new reserved words in named.conf [RT #753, #731] --- diff --git a/doc/misc/migration b/doc/misc/migration index 3f1ce96d46d..84525b70193 100644 --- a/doc/misc/migration +++ b/doc/misc/migration @@ -66,6 +66,24 @@ query-source as in BIND 8. Multiple classes have to be put into explicit views for each class. +1.7. New Reserved Words + +When specifying the names of entities like ACLs, logging channels, or +views, they can be written with or without surrounding double quotes. +However, the quotes are required if the name is identical to an option +name or other reserved word. Since BIND 9 has a number of new options +and reserves some additional words for anticipated future options, it +is possible that some of these option names conflict with existing +names in named.conf. For example, instead of + + acl internal { 127.0.0.1/32; 10.0.0.0/8; }; + +you need to write + + acl "internal" { 127.0.0.1/32; 10.0.0.0/8; }; + +because "internal" is now a reserved word. + 2. Zone File Compatibility 2.1. Strict RFC1035 Interpretation of TTLs in Zone Files @@ -192,4 +210,4 @@ directing queries for a given domain to a particular set of name servers. -$Id: migration,v 1.17.2.3 2001/01/16 20:36:06 gson Exp $ +$Id: migration,v 1.17.2.4 2001/01/30 21:39:44 gson Exp $