Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #####################################
- #
- # Conf DHCP LAB.CORP
- #
- #####################################
- #### - Options Dynamique DNS initiales - ####
- ddns-domainname "lab.corp";
- ddns-rev-domainname "2.30.10.in-addr.arpa";
- ddns-update-style interim;
- ddns-updates on;
- ignore client-updates;
- update-static-leases on;
- #### - Options DHCPD initiales - ####
- server-name "PRDDHCP01.lab.corp";
- option domain-name "lab.corp";
- option domain-name-servers 10.30.2.21;
- option routers 10.30.2.1;
- default-lease-time 60480;
- authoritative;
- #### - Clé d'échange avec DNS - ####
- include "/etc/dhcp3/MNGT_KEY.key";
- #### - Réservations pour la PROD du réseau lab.corp - ####
- host PRDLDAP01 {
- hardware ethernet 00:0c:29:97:54:59;
- fixed-address 10.30.2.10;
- }
- host PRDDNS01 {
- hardware ethernet 00:0c:29:c0:c0:8b;
- fixed-address 10.30.2.21;
- option domain-name-servers 89.2.0.1,89.2.0.2;
- }
- host PRDDHCP01 {
- hardware ethernet 00:0c:29:25:0a:53;
- fixed-address 10.30.2.31;
- }
- host PRDSQL01 {
- hardware ethernet 00:0c:29:c1:af:45;
- fixed-address 10.30.2.41;
- }
- host PRDVPN01 {
- hardware ethernet 00:0c:29:81:83:bf;
- fixed-address 10.30.2.51;
- }
- host PRDMAIL01 {
- hardware ethernet 00:0c:29:ff:b5:ad;
- fixed-address 10.30.2.61;
- }
- host PRDCONVERT01 {
- hardware ethernet 00:0c:29:f8:39:ee;
- fixed-address 10.30.2.71;
- }
- #### - Parametres pour le reseau lab.corp - ####
- subnet 10.30.2.0 netmask 255.255.255.0 {
- range 10.30.2.80 10.30.2.200;
- }
- zone 2.30.10.in-addr.arpa. {
- key MNGT_KEY.key;
- }
- zone lab.corp. {
- key MNGT_KEY.key;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement