我一直在阅读
http://www.centos.org/docs/5/html/Deployment_Guide-en-US/s1-bind-zone.html,但该文件提出了一个问题. IN的含义是什么?它只是一个可选的类,还是意味着更多?
(是的我读到在named.conf IN中是一个类声明,但我不知道是否同样适用于区域文件)
我知道如果我没有在named.conf区域语句中定义类“IN”,那么我不必在区域文件中使用它,例如:
用类声明
named.conf中
zone "example.com" IN { file "example.com.zone"; };
example.com.zone
server1 IN A 10.0.1.5 server2 IN A 10.0.1.6
没有类声明
named.conf中
zone "example.com" { file "example.com.zone"; };
example.com.zone
server1 A 10.0.1.5 server2 A 10.0.1.6