linux 系列,我用的ubuntu,一般线上服务器用的是centos,不过不影响,只是下载dns server的方式不同。
安装配置
1.下载dns server 软件 bind
1
sudo apt-get install bind9
2.修改dns server 的配置 (其中 /etc/bind/zones/ 和 yxl.com 是自己选的)
/etc/bind/named.conf.local
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
hadoop@hadoop4:/etc/bind$ cat named.conf.local
// // Do any local configuration here //
// Consider adding the 1918 zones here, if they are not used in your // organization //include "/etc/bind/zones.rfc1918"; zone "yxl.com"{ type master; file "/etc/bind/zones/yxl.com.db"; }; zone "1.168.192.in-addr.arpa" { type master; file "/etc/bind/zones/1.168.192.db"; };