# /etc/dhcp3/dhcpd.conf # Fichier de configuration du serveur DHCP de l'ISC (package 'dhcp3-server') # Formation Debian GNU/Linux par Alexis de Lattre # http://formation-debian.via.ecp.fr/ # Consultez "man dhcpd.conf" pour avoir toutes les informations sur les options # ============================================================================ # V1.5 # Copyright (C) THALES. All rights reserved # Author: Jean-Noel Raguenes # Date : 07/12/2009 # Modification: # - V1.1: Herve Petit 10/03/2010 # Reprise avec ajouts des sub net eth1 # - V1.2: Herve Petit 24/06/2010 # Ajout option routers sur sub net eth1 # - V1.3: Herve Petit 25/08/2010 # Remplacement lame trc13 par lame trc27 a cause pb d'init_statique # qui prennait 2 mn sur cette lame # - V1.4: Herve Petit 18/04/2011 # Suppression definition de la route par defaut a partir du fichier dhcp # - V1.5: Laurent Mazet 09/05/2014 # Netoyage # ============================================================================ # DEBUT des options GLOBALES # Les options globales s'appliqueront par defaut a tous les sous-reseaux # Nom de domaine ddns-domainname "trc6500.thalesgroup.com"; option domain-name "trc6500.thalesgroup.com"; # Duree du bail en secondes default-lease-time 6000; max-lease-time 6000; server-name "maitre"; # FIN des options GLOBALES # DEBUT de la declaration des sous-reseaux et des machines subnet 10.133.26.0 netmask 255.255.255.0 { next-server 10.133.26.160; filename "pxelinux.0"; option domain-name-servers 10.133.26.160; #option routers 10.133.26.231; use-host-decl-names on; authoritative; } # liste des lames a completer dans l'ordre de la baie host trc01-rf { hardware ethernet 00:25:90:30:b1:c6; fixed-address 10.133.26.161;} host trc02-rf { hardware ethernet 00:25:90:e9:02:d4; fixed-address 10.133.26.162;} host trc03-rf { hardware ethernet 00:25:90:e9:02:d6; fixed-address 10.133.26.163;} host trc04-rf { hardware ethernet 00:25:90:ec:41:fc; fixed-address 10.133.26.164;} host trc05-rf { hardware ethernet 0c:c4:7a:15:07:cc; fixed-address 10.133.26.165;} host trc06-rf { hardware ethernet 0c:c4:7a:15:07:ce; fixed-address 10.133.26.166;} host trc07-rf { hardware ethernet 00:21:5e:98:98:c0; fixed-address 10.133.26.167;} host trc08-rf { hardware ethernet 00:21:5e:98:cd:08; fixed-address 10.133.26.168;} host trc09-rf { hardware ethernet 00:21:5e:98:94:30; fixed-address 10.133.26.169;} host trc10-rf { hardware ethernet 00:21:5E:98:97:10; fixed-address 10.133.26.170;} host trc11-rf { hardware ethernet 00:21:5E:98:93:24; fixed-address 10.133.26.171;} subnet 10.133.28.0 netmask 255.255.255.0 { next-server 10.133.28.160; filename "pxelinux.0"; option routers 10.133.28.231; option domain-name-servers 10.133.28.160; use-host-decl-names on; authoritative; } host trc01 { hardware ethernet 00:25:90:30:b1:c7; fixed-address 10.133.28.161;} host trc02 { hardware ethernet 00:25:90:e9:02:d5; fixed-address 10.133.28.162;} host trc03 { hardware ethernet 00:25:90:e9:02:d7; fixed-address 10.133.28.163;} host trc04 { hardware ethernet 00:25:90:ec:41:fd; fixed-address 10.133.28.164;} host trc05 { hardware ethernet 0c:c4:7a:15:07:cd; fixed-address 10.133.28.165;} host trc06 { hardware ethernet 0c:c4:7a:15:07:cf; fixed-address 10.133.28.166;} host trc07 { hardware ethernet 00:21:5e:98:98:c2; fixed-address 10.133.28.167;} host trc08 { hardware ethernet 00:21:5e:98:cd:0a; fixed-address 10.133.28.168;} host trc09 { hardware ethernet 00:21:5e:98:94:32; fixed-address 10.133.28.169;} host trc10 { hardware ethernet 00:21:5e:98:97:12; fixed-address 10.133.28.170;} host trc11 { hardware ethernet 00:21:5e:98:93:26; fixed-address 10.133.28.171;}