nouveau fichier : siotp/sisr1/tp01-02/srv-dhcp/dhcpd.conf

nouveau fichier : siotp/sisr1/tp01-02/srv-dhcp/hosts
	nouveau fichier : siotp/sisr1/tp01-02/srv-dhcp/interfaces
	nouveau fichier : siotp/sisr1/tp01-02/srv-dhcp/isc-dhcp-server
	nouveau fichier : siotp/sisr1/tp01-02/srv-dhcp/nat.sh
	nouveau fichier : siotp/sisr1/tp01-02/srv-dns1/db.sio1lab.lan
	nouveau fichier : siotp/sisr1/tp01-02/srv-dns1/db.sio1lab.lan.rev
	nouveau fichier : siotp/sisr1/tp01-02/srv-dns1/named.conf
	nouveau fichier : siotp/sisr1/tp01-02/srv-dns1/named.conf.local
	nouveau fichier : siotp/sisr1/tp01-02/srv-dns1/named.conf.options
	nouveau fichier : siotp/sisr1/tp01-02/srv-dns2/db.sio1lab.lan
	nouveau fichier : siotp/sisr1/tp01-02/srv-dns2/db.sio1lab.lan.rev
	nouveau fichier : siotp/sisr1/tp01-02/srv-dns2/named.conf.default-zones
	nouveau fichier : siotp/sisr1/tp01-02/srv-dns2/named.conf.local
	nouveau fichier : siotp/sisr1/tp01-02/srv-dns2/named.conf.options
This commit is contained in:
Jarod Pauchet
2024-01-30 16:09:09 +01:00
commit 2f917039b4
15 changed files with 400 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
;
; BIND data file for local loopback interface
;
$TTL 604800
@ IN SOA dns1.sio1lab.lan. root.sio1lab.lan. (
2 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS deb-dns-jp.sio1lab.lan.
IN NS deb-dns2-jp.sio1lab.lan.
IN A 192.168.0.140
IN A 192.168.0.141
deb-dns-jp IN A 192.168.0.140
deb-dhcp-jp IN A 192.168.0.141
deb-dns2-jp IN A 192.168.0.142
deb-dns1-ge IN A 192.168.0.121
deb-dns2-ge IN A 192.168.0.122
deb-dhcp-ge IN A 192.168.0.120
dhcp IN CNAME deb-dhcp-jp
dns1 IN CNAME deb-dns-jp
dns2 IN CNAME deb-dns2-jp
dhcp2ge IN CNAME deb-dhcp-ge
dns3ge IN CNAME deb-dns1-ge
dns3ge IN CNAME deb-dns2-ge

View File

@@ -0,0 +1,30 @@
;
; BIND data file for local loopback interface
;
$TTL 604800
@ IN SOA dns1.sio1lab.lan. root.sio1lab.lan. (
2 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS deb-dns-jp.sio1lab.lan.
IN NS deb-dns2-jp.sio1lab.lan.
deb-dns-jp IN A 192.168.0.140
deb-dhcp-jp IN A 192.168.0.141
deb-dns2-jp IN A 192.168.0.142
deb-dhcp-ge IN A 192.168.0.120
deb-dns1-ge IN A 192.168.0.121
deb-dns2-ge IN A 192.168.0.122
dhcp IN CNAME deb-dhcp-jp
dns1 IN CNAME deb-dns-jp
dns2 IN CNAME deb-dns2-jp
dhcp2ge IN CNAME deb-dhcp-ge
dns3ge IN CNAME deb-dns1-ge
dns4ge IN CNAME deb-dns2-ge
140 IN PTR deb-dns-jp.sio1lab.lan
141 IN PTR deb-dhcp-jp.sio1lab.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 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 "sio1lab.lan" {
type master;
file "/etc/bind/db.sio1lab.lan";
};
// zone inverse
zone "0.168.192.in-addr.arpa" {
type master;
notify no;
file "/etc/bind/db.sio1lab.lan.rev";
};

View File

@@ -0,0 +1,25 @@
options {
directory "/var/cache/bind";
// If there is a firewall between you and nameservers you want
// to talk to, you may need to fix the firewall to allow multiple
// ports to talk. See http://www.kb.cert.org/vuls/id/800113
// If your ISP provided one or more IP addresses for stable
// nameservers, you probably want to use them as forwarders.
// Uncomment the following block, and insert the addresses replacing
// the all-0's placeholder.
forwarders {
10.121.38.7;
10.121.38.8;
};
//========================================================================
// If BIND logs error messages about the root key being expired,
// you will need to update your keys. See https://www.isc.org/bind-keys
//========================================================================
dnssec-validation auto;
listen-on-v6 { any; };
};