nouveau fichier : dhcp/dhcpd.conf nouveau fichier : dhcp/dnsmasq.conf nouveau fichier : dhcp/hosts nouveau fichier : dhcp/isc-dhcp-server nouveau fichier : dhcp/playbook.yml nouveau fichier : dns/bind/bind.keys nouveau fichier : dns/bind/db.0 nouveau fichier : dns/bind/db.127 nouveau fichier : dns/bind/db.255 nouveau fichier : dns/bind/db.domaine.lan nouveau fichier : dns/bind/db.domaine.lan.rev nouveau fichier : dns/bind/db.empty nouveau fichier : dns/bind/db.local nouveau fichier : dns/bind/named.conf nouveau fichier : dns/bind/named.conf.default-zones nouveau fichier : dns/bind/named.conf.local nouveau fichier : dns/bind/named.conf.options nouveau fichier : dns/bind/rndc.key nouveau fichier : dns/bind/zones.rfc1918 nouveau fichier : dns/playbook.yml
31 lines
498 B
Plaintext
31 lines
498 B
Plaintext
// prime the server with knowledge of the root servers
|
|
zone "." {
|
|
type hint;
|
|
file "/usr/share/dns/root.hints";
|
|
};
|
|
|
|
// be authoritative for the localhost forward and reverse zones, and for
|
|
// broadcast zones as per RFC 1912
|
|
|
|
zone "localhost" {
|
|
type master;
|
|
file "/etc/bind/db.local";
|
|
};
|
|
|
|
zone "127.in-addr.arpa" {
|
|
type master;
|
|
file "/etc/bind/db.127";
|
|
};
|
|
|
|
zone "0.in-addr.arpa" {
|
|
type master;
|
|
file "/etc/bind/db.0";
|
|
};
|
|
|
|
zone "255.in-addr.arpa" {
|
|
type master;
|
|
file "/etc/bind/db.255";
|
|
};
|
|
|
|
|