1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| acl mylans {
xxx.xxx.xxx;
};
options {
directory "/var/cache/bind";
auth-nxdomain no;
allow-transfer { 192.168.1.2;192.168.1.3; };
allow-query { mylans; };
allow-recursion { mylans; };
tcp-clients 32;
version "Linux Is Not UniX";
};
sur les secondaires :
acl mylans {
xxx.xxx.xxx;
};
options {
directory "/var/cache/bind";
auth-nxdomain no;
allow-transfer { none};
allow-query { mylans; };
allow-recursion { mylans; };
tcp-clients 32;
version "Linux Is Not UniX";
}; |