内容简介
本文将介绍如何使用BIND配置DNS转发服务。
服务配置
使用BIND配置转发倒是很容易。只需要如下定义named.conf配置文件:
options {
directory "/var/named";
/*
* Using the DNS Server of the Network Provider as a forwarder
* can make responses to queries faster and less of load on your
* local network
*/
forward first;
forwarders {
193.247.122.26;
};
};
参考文献
How to setup DNS Forwarding ?
DNS之BIND使用小结(Forward转发)
DNS BIND之forwarder转发
What is DNS Forwarding