je suis con

This commit is contained in:
johan largy 2022-03-03 11:43:40 +01:00
parent 7948cf6fd6
commit 56dbac9601
5 changed files with 72 additions and 0 deletions

View File

@ -0,0 +1,19 @@
;
; BIND data file for local loopback interface
;
$TTL 604800
domaine.lan. IN SOA srv1.domaine.lan. root.srv1.domaine.lan. (
2022020100 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS srv1.domaine.lan.
@ IN NS srv2.domaine.lan.
srv1 IN A 192.168.0.121
srv2 IN A 192.168.0.124
;@ IN AAAA ::1
poste1 IN A 192.168.0.122
poste2 IN A 192.168.0.123

View File

@ -0,0 +1,19 @@
; BIND data file for local loopback interface
;
$TTL 604800
@ IN SOA srv1.domaine.lan. root.srv1.domaine.lan. (
2022020100 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
IN NS srv1.domaine.lan.
IN NS srv2.domaine.lan.
121 IN PTR srv1.domaine.lan.
124 IN PTR srv2.domaine.lan.
122 IN PTR poste1.domaine.lan.
123 IN PTR poste2.domaine.lan.

View File

@ -0,0 +1,11 @@
// This is the primary configuration file for the BIND DNS server named.
//
// Please read /usr/share/doc/bind9/README.Debian.gz for information on the
// structure of BIND configuration files in Debian, *BEFORE* you customize
// this configuration file.
//
// If you are just adding zones, please do that in /etc/bind/named.conf.local
include "/etc/bind/named.conf.options";
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones";

View File

@ -0,0 +1,20 @@
//
// Do any local configuration here
//
// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";
// zone directe
zone "domaine.lan" {
type master;
file "/etc/bind/db.domaine.lan";
masterfile-format text;
};
// zone inverse
zone "0.168.192.in-addr.arpa" {
type master;
notify no;
file "/etc/bind/db.domaine.lan.rev";
};

View File

@ -0,0 +1,3 @@
domain domaine.lan
search domaine.lan
nameserver 127.0.0.1