remove gateway for eth0 configuration
[debian6500.git] / master / etc / dhcp / dhcpd.conf.gamma
1 # /etc/dhcp3/dhcpd.conf
2 # Fichier de configuration du serveur DHCP de l'ISC (package 'dhcp3-server')
3 # Formation Debian GNU/Linux par Alexis de Lattre
4 # http://formation-debian.via.ecp.fr/
5
6 # Consultez "man dhcpd.conf" pour avoir toutes les informations sur les options
7
8
9 # ============================================================================
10 # V1.5
11 # Copyright (C) THALES. All rights reserved
12 # Author: Jean-Noel Raguenes
13 # Date : 07/12/2009
14 # Modification:
15 # - V1.1: Herve Petit 10/03/2010
16 # Reprise avec ajouts des sub net eth1
17 # - V1.2: Herve Petit 24/06/2010
18 # Ajout option routers sur sub net eth1
19 # - V1.3: Herve Petit 25/08/2010
20 # Remplacement lame trc13 par lame trc27 a cause pb d'init_statique
21 # qui prennait 2 mn sur cette lame
22 # - V1.4: Herve Petit 18/04/2011
23 # Suppression definition de la route par defaut a partir du fichier dhcp
24 # - V1.5: Laurent Mazet 09/05/2014
25 # Netoyage
26 # ============================================================================
27
28 # DEBUT des options GLOBALES
29 # Les options globales s'appliqueront par defaut a tous les sous-reseaux
30
31 # Nom de domaine
32 ddns-domainname "trc6500.thalesgroup.com";
33 option domain-name "trc6500.thalesgroup.com";
34
35 # Duree du bail en secondes
36 default-lease-time 6000;
37 max-lease-time 6000;
38 server-name "maitre";
39
40 # FIN des options GLOBALES
41
42 # DEBUT de la declaration des sous-reseaux et des machines
43
44 subnet 10.133.26.0 netmask 255.255.255.0
45 {
46 next-server 10.133.26.160;
47 filename "pxelinux.0";
48 option domain-name-servers 10.133.26.160;
49 #option routers 10.133.26.231;
50 use-host-decl-names on;
51 authoritative;
52 }
53
54 # liste des lames a completer dans l'ordre de la baie
55
56 host trc01-rf { hardware ethernet 00:25:90:30:b1:c6; fixed-address 10.133.26.161;}
57 host trc02-rf { hardware ethernet 00:25:90:e9:02:d4; fixed-address 10.133.26.162;}
58 host trc03-rf { hardware ethernet 00:25:90:e9:02:d6; fixed-address 10.133.26.163;}
59 host trc04-rf { hardware ethernet 00:25:90:ec:41:fc; fixed-address 10.133.26.164;}
60 host trc05-rf { hardware ethernet 0c:c4:7a:15:07:cc; fixed-address 10.133.26.165;}
61 host trc06-rf { hardware ethernet 0c:c4:7a:15:07:ce; fixed-address 10.133.26.166;}
62 host trc07-rf { hardware ethernet 00:21:5e:98:98:c0; fixed-address 10.133.26.167;}
63 host trc08-rf { hardware ethernet 00:21:5e:98:cd:08; fixed-address 10.133.26.168;}
64 host trc09-rf { hardware ethernet 00:21:5e:98:94:30; fixed-address 10.133.26.169;}
65
66 host trc10-rf { hardware ethernet 00:21:5E:98:97:10; fixed-address 10.133.26.170;}
67 host trc11-rf { hardware ethernet 00:21:5E:98:93:24; fixed-address 10.133.26.171;}
68
69 subnet 10.133.28.0 netmask 255.255.255.0
70 {
71 next-server 10.133.28.160;
72 filename "pxelinux.0";
73 option routers 10.133.28.231;
74 option domain-name-servers 10.133.28.160;
75 use-host-decl-names on;
76 authoritative;
77 }
78
79 host trc01 { hardware ethernet 00:25:90:30:b1:c7; fixed-address 10.133.28.161;}
80 host trc02 { hardware ethernet 00:25:90:e9:02:d5; fixed-address 10.133.28.162;}
81 host trc03 { hardware ethernet 00:25:90:e9:02:d7; fixed-address 10.133.28.163;}
82 host trc04 { hardware ethernet 00:25:90:ec:41:fd; fixed-address 10.133.28.164;}
83 host trc05 { hardware ethernet 0c:c4:7a:15:07:cd; fixed-address 10.133.28.165;}
84 host trc06 { hardware ethernet 0c:c4:7a:15:07:cf; fixed-address 10.133.28.166;}
85 host trc07 { hardware ethernet 00:21:5e:98:98:c2; fixed-address 10.133.28.167;}
86 host trc08 { hardware ethernet 00:21:5e:98:cd:0a; fixed-address 10.133.28.168;}
87 host trc09 { hardware ethernet 00:21:5e:98:94:32; fixed-address 10.133.28.169;}
88
89 host trc10 { hardware ethernet 00:21:5e:98:97:12; fixed-address 10.133.28.170;}
90 host trc11 { hardware ethernet 00:21:5e:98:93:26; fixed-address 10.133.28.171;}
91