1.更新环境
apt-get update
2.安装bind9
apt install bind9
3.配置/etc/bind/named.conf 文件(服务器域解析文件),其中Router.com、TestIpsec.com是需要解析的域名
zone "Router.com"{
type master;
file "db.Router.com";
};
zone "TestIpsec.com"{
type master;
file "db.TestIpsec.com";
};
4.步骤3中的db.Router.com和db.TestIpsec.com是域解析文件,默认在/etc/var/cache/bind,它们的格式与bind9自带的模板db.local格式一致,我们把/etc/bind/db.local文件copy到/etc/var/cache/bind下,并命名为db.Router.com 和 db.TestIpsec.com
cp /etc/bind/db.local /var/cache/bind/db.Router.com
cp /etc/bind/db.local /var/cache/bind/db.TestIpsec.com
5.编辑域名解析文件
vi /var/cache/bind/db.Router.com
最后一行添加
@ IN A 192.168.22.214
vi /var/cache/bind/db.TestIpsec.com
最后一行添加
@ IN A 192.168.22.213
6.配置可访问外网
vi /etc/bind/named.conf.options
添加如下代码
forwarders {
8.8.8.8;
};
重启服务器
/etc/init.d/bind9 restart