通过shell获取最新的网通、电信、铁通......最新IP段分部文件。
shell参考:http://www.chinaunix.net/jh/4/577601.html
修改/etc/named.conf
添加:include "/var/named/CNCGROUP";//网通IP段
vi /var/named/CNCGROUP
acl CNCGROUP {
58.16.0.0/16;
58.17.0.0/17;
58.17.128.0/17;
58.18.0.0/16;
58.19.0.0/16;
............................
58.20.0.0/16;
58.21.0.0/16;
58.22.0.0/15;
58.144.0.0/16;
222.163.64.0/18;
222.163.128.0/17;
};
view "CNCGROUP" {//定义网通域文件
match-clients{CNCGROUP;};
recursion yes;
zone "sian.com.cn"{
type master;
file "CNC_sian.com.cn";
};
};
view "external" {//定义非网通域文件
match-clients { any; };
recursion no;
zone "sian.com.cn"{
type master;
file "sian.com.cn";
};
};
注:在Centos4.4自带的BIND版本中有一个要求,所有的zone都得放到view中。
shell参考:http://www.chinaunix.net/jh/4/577601.html
修改/etc/named.conf
添加:include "/var/named/CNCGROUP";//网通IP段
vi /var/named/CNCGROUP
引用
acl CNCGROUP {
58.16.0.0/16;
58.17.0.0/17;
58.17.128.0/17;
58.18.0.0/16;
58.19.0.0/16;
............................
58.20.0.0/16;
58.21.0.0/16;
58.22.0.0/15;
58.144.0.0/16;
222.163.64.0/18;
222.163.128.0/17;
};
view "CNCGROUP" {//定义网通域文件
match-clients{CNCGROUP;};
recursion yes;
zone "sian.com.cn"{
type master;
file "CNC_sian.com.cn";
};
};
view "external" {//定义非网通域文件
match-clients { any; };
recursion no;
zone "sian.com.cn"{
type master;
file "sian.com.cn";
};
};
注:在Centos4.4自带的BIND版本中有一个要求,所有的zone都得放到view中。