view "电信-view"{ match-clients { 服务器ip1 };#匹配这个ip/列表,符合则使用下面的服务器进行解析,否则跳出 zone "abc.com" { type master; file "dx.abc.com.zone";该zone内服务器ipadd要与match-clients所属isp对应 }; include "/etc/named.rfc1912.zones";#需要包含该行。 }
view "网通-view"{ match-clients { 服务器ip2 };#匹配这个ip/列表,符合则使用下面的服务器进行解析,否则跳出 zone "abc.com" { type master; file "wt.abc.com.zone";该zone内服务器ipadd要与match-clients所属isp对应 }; include "/etc/named.rfc1912.zones";#需要包含该行。 }
view "other-view"{ match-clients { any };#匹配这个ip,符合则使用下面的服务器进行解析,否则跳出 zone "abc.com" { type master; file "other.abc.com.zone"; }; include "/etc/named.rfc1912.zones";#需要包含该行。 }