搭建DNS服务器
Linux下DNS服务器常规操作 软件包安装 Red Hat Linux的各个版本已经包含DNS服务器的软件--Bind,一般不需要用户另行安装,如果用户需要安装最新版本,可以到Bind官网 http://www.bind.com/ 浏览最新消息。也可以到其它网站下载。 源码软件包: https://www.isc.org/downloads/ 例如,在其它网站中下载源码包软件包bind-9.10.4-P1.tar.gz 以下是安装过程中的一些指令: [root@localhost root]# tar xzvf bind-9.10.4-P1.tar.gz [root@localhost root]# cd bind-9.10.4-P1 [root@localhost bind-9.10.4-P1]# ./configure [root@localhost bind-9.10.4-P1]# make [root@localhost bind-9.10.4-P1]# make install 其中各参数含义如下: tar xzvf bind-9.10.4-P1.tar.gz //解压缩软件包 ./configure //针对机器做安装的检查和设置,大部分工作由机器自动完成 make //编译 make install //安装 软件包的功能 Bind