32 lines
534 B
Plaintext
32 lines
534 B
Plaintext
include "/etc/bind/ddns.key";
|
|
|
|
//SANS CLE
|
|
|
|
zone "tp.scr"
|
|
{
|
|
type master;
|
|
file "/etc/bind/db.tp.scr";
|
|
allow-update { 192.168.1.10; };
|
|
};
|
|
zone "1.168.192.in-addr.arpa"
|
|
{
|
|
type master;
|
|
file "/etc/bind/db.tp.scr.inv";
|
|
allow-update { 192.168.1.10; };
|
|
};
|
|
|
|
//Avec CLE
|
|
zone "tp.scr"
|
|
{
|
|
type master;
|
|
file "/var/cache/bind/db.tp.scr";
|
|
allow-update { key "tp.scr-key"; };
|
|
};
|
|
|
|
zone "1.168.192.in-addr.arpa"
|
|
{
|
|
type master;
|
|
file "/var/cache/bind/db.tp.scr.inv";
|
|
allow-update { key "tp.scr-key"; };
|
|
};
|