DNS主区域文件已传输到从属,但我无法读取区域文件:
> less db.example.com "db.example.com "may be a binary file. See it anyway?
这是在我使用此命令后发生的:
cp -r /usr/local/sbin/* /usr/sbin/.
我安装了绑定V.9.9而不是V.9.6.我希望能够以纯文本形式阅读区域文件.
解决方法
Slave zone data files in BIND 9.9 are in “raw” format by default.您可以使用BIND附带的named-compilezone实用程序将“原始”格式区域文件转换为“文本”格式.
原始文本:
# convert raw zone file "example.net.raw",containing data for zone example.net,# to text-format zone file "example.net.text" # # (command) (format options) (output file) (zone origin) (input file) named-compilezone -f raw -F text -o example.net.text example.net example.net.raw
文字到原始:
# convert text format zone file "example.net.text",containing data for zone # example.net,to raw zone file "example.net.raw" # # (command) (format options) (output file) (zone origin) (input file) named-compilezone -f text -F raw -o example.net.raw example.net example.net.text