我已经绑定到Windows 2003上了。我想将我的查询转发到另一台服务器。递归正在工作,但转发不起作用。你能引导我把它设置好吗?我在方案中提出了以下几点:
options {
directory "c:\named\zones";
allow-transfer { none; };
forward only;
forwarders { 8.8.8.8 ; };
recursion no;
};是上述中正确转发的格式。
如果不是,格式是什么。我要给货代线路上的任何港口号吗?转发是否有特定的端口号?
谢谢你提前..。
发布于 2010-03-22 03:51:41
递归不应该工作,因为您有“递归不;”。
options {
recursion yes;
allow-recursion { localhost; };
forward only;
forwarders { 8.8.8.8; 8.8.4.4; };
};https://serverfault.com/questions/106315
复制相似问题