@cryptotaxi247 / infra-1 / commits / 76ddd17c

* Dhcp server configuration.

svn path=/configurations/trunk/tud/; revision=8310

Eelco Dolstra committed Mar 16, 2007 at 16:30 UTC 76ddd17c33f00b075fc22c0629aa16929ead9a4f
1 file changed +51
dhcpd.conf new
+51
@@ -0,0 +1,51 @@
1 +default-lease-time 600;
2 +max-lease-time 7200;
3 +
4 +authoritative;
5 +
6 +ddns-update-style ad-hoc;
7 +
8 +option subnet-mask 255.255.255.0;
9 +option broadcast-address 192.168.1.255;
10 +option routers 192.168.1.5;
11 +option domain-name-servers 130.161.158.4, 130.161.33.17, 130.161.180.1;
12 +option domain-name "buildfarm-net";
13 +
14 +subnet 192.168.1.0 netmask 255.255.255.0 {
15 + range 192.168.1.100 192.168.1.200;
16 +}
17 +
18 +host bm-linux32-1 {
19 + hardware ethernet 00:16:76:9A:32:1D;
20 + fixed-address 192.168.1.14;
21 +}
22 +
23 +host bm-linux32-2 {
24 + hardware ethernet 00:19:D1:1D:C4:9A;
25 + fixed-address 192.168.1.15;
26 +}
27 +
28 +host bm-linux64-1 {
29 + hardware ethernet 00:19:D1:10:37:49;
30 + fixed-address 192.168.1.12;
31 +}
32 +
33 +host bm-linux64-2 {
34 + hardware ethernet 00:19:D1:19:2A:31;
35 + fixed-address 192.168.1.13;
36 +}
37 +
38 +host bm-mac86-1 {
39 + hardware ethernet 00:16:cb:a6:13:28;
40 + fixed-address 192.168.1.16;
41 +}
42 +
43 +host bm-mac86-2 {
44 + hardware ethernet 00:16:cb:a6:13:d7;
45 + fixed-address 192.168.1.17;
46 +}
47 +
48 +host bm-winxp64-1 {
49 + hardware ethernet 00:19:d1:10:37:54;
50 + fixed-address 192.168.1.11;
51 +}