Nouveau fichier : sisr1/tp03/srv-admin-ge/hostname

Nouveau fichier : sisr1/tp03/srv-admin-ge/hosts
	Nouveau fichier : sisr1/tp03/srv-admin-ge/interfaces
	Nouveau fichier : sisr1/tp03/srv-admin-ge/nat.sh
	Nouveau fichier : sisr1/tp03/srv-dns2-ge/db.monlabo.lan
	Nouveau fichier : sisr1/tp03/srv-dns2-ge/db.monlabo.lan.rev
	Nouveau fichier : sisr1/tp03/srv-dns2-ge/hostname
	Nouveau fichier : sisr1/tp03/srv-dns2-ge/hosts
	Nouveau fichier : sisr1/tp03/srv-dns2-ge/named.conf
	Nouveau fichier : sisr1/tp03/srv-dns2-ge/named.conf.local
	Nouveau fichier : sisr1/tp03/srv-dns2-ge/named.conf.options
	Nouveau fichier : sisr1/tp03/srv-service-ge/db.monlabo.lan
	Nouveau fichier : sisr1/tp03/srv-service-ge/db.monlabo.lan.rev
	Nouveau fichier : sisr1/tp03/srv-service-ge/dhclient.conf
	Nouveau fichier : sisr1/tp03/srv-service-ge/dhcpd.conf
	Nouveau fichier : sisr1/tp03/srv-service-ge/hostname
	Nouveau fichier : sisr1/tp03/srv-service-ge/hosts
	Nouveau fichier : sisr1/tp03/srv-service-ge/interfaces
	Nouveau fichier : sisr1/tp03/srv-service-ge/named.conf
	Nouveau fichier : sisr1/tp03/srv-service-ge/named.conf.local
	Nouveau fichier : sisr1/tp03/srv-service-ge/named.conf.options
This commit is contained in:
root
2024-02-05 09:30:23 +01:00
parent b065d10583
commit 61f7073e07
21 changed files with 471 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
;
; BIND data file for local loopback interface
;
$TTL 604800
@ IN SOA srv-service-ge.monlabo.lan. root.monlabo.lan. (
2635478965 ; Serial
216 ; Refresh
3600 ; Retry
2419200 ; Expire
86400 ) ; Negative Cache TTL
IN NS srv-service-ge.monlabo.lan.
IN NS srv-dns2-ge.monlabo.lan.
IN A 172.16.0.1
IN A 172.16.0.2
IN A 172.16.0.254
IN A 172.16.0.100
srv-service-ge IN A 172.16.0.1
srv-dns2-ge IN A 172.16.0.2
srv-admin-ge IN A 172.16.0.254
pc-cli-ge IN A 172.16.0.100
srvdns IN CNAME srv-service-ge
dns IN CNAME srv-service-ge
dns1 IN CNAME srv-service-ge
srvdhcp IN CNAME srv-service-ge
dhcp IN CNAME srv-service-ge
srvadmin IN CNAME srv-admin-ge
router IN CNAME srv-admin-ge
pc IN CNAME pc-cli-ge
client IN CNAME pc-cli-ge
pccli IN CNAME pc-cli-ge
srvdns2 IN CNAME srv-dns2-ge
dns2 IN CNAME srv-dns2-ge

View File

@@ -0,0 +1,29 @@
;
; BIND data file for local loopback interface
;
$TTL 604800
@ IN SOA srv-service-ge.monlabo.lan. root.monlabo.lan. (
2635478965 ; Serial
216 ; Refresh
3600 ; Retry
2419200 ; Expire
86400 ) ; Negative Cache TTL
IN NS srv-service-ge.monlabo.lan.
IN NS srv-dns2-ge.monlabo.lan.
IN A 172.16.0.1
IN A 172.16.0.2
IN A 172.16.0.254
IN A 172.16.0.100
srv-service-ge IN A 172.16.0.1
srv-dns2-ge IN A 172.16.0.2
srv-admin-ge IN A 172.16.0.254
pc-cli-ge IN A 172.16.0.100
1 IN PTR srv-service-ge.monlabo.lan.
2 IN PTR srv-dns2-ge.monlabo.lan.
100 IN PTR pc-cli-ge.monlabo.lan.
254 IN PTR srv-admin-ge.monlabo.lan.

View File

@@ -0,0 +1 @@
srv-dns2-ge

View File

@@ -0,0 +1,7 @@
127.0.0.1 localhost
127.0.1.1 srv-dns2-ge.sio.lan srv-dns2-ge
# The following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

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,21 @@
//
// Do any local configuration here
//
// zone directe
zone "monlabo.lan" {
type master;
file "/etc/bind/db.monlabo.lan";
};
// zone inverse
zone "0.16.172.in-addr.arpa" {
type master;
notify no;
file "/etc/bind/db.monlabo.lan.rev";
};
// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";

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 no;
listen-on-v6 { any; };
};