CSIT-755: Presentation and analytics layer
[csit.git] / resources / tools / testbed-setup / dhcpd.conf
1 #
2 # Sample configuration file for ISC dhcpd for Debian
3 #
4 # Attention: If /etc/ltsp/dhcpd.conf exists, that will be used as
5 # configuration file instead of this file.
6 #
7 #
8
9 # The ddns-updates-style parameter controls whether or not the server will
10 # attempt to do a DNS update when a lease is confirmed. We default to the
11 # behavior of the version 2 packages ('none', since DHCP v2 didn't
12 # have support for DDNS.)
13 ddns-update-style none;
14
15 # option definitions common to all supported networks...
16 option domain-name "linuxfoundation.org";
17 option domain-name-servers 199.204.44.24, 199.204.47.54;
18
19 default-lease-time 600;
20 max-lease-time 7200;
21
22 # If this DHCP server is the official DHCP server for the local
23 # network, the authoritative directive should be uncommented.
24 authoritative;
25
26 # Use this to send dhcp log messages to a different log file (you also
27 # have to hack syslog.conf to complete the redirection).
28 log-facility local7;
29
30 # This is content of file (/etc/dhcp/dhcpd.conf) currently located on host
31 # t4-virl1 with address 10.30.51.28. Please reflect any actual changes before
32 # overwriting. This file is used for PXE boot.
33 subnet 10.30.51.0 netmask 255.255.255.0 {
34   option routers 10.30.51.1;
35   host t1-tg1 {
36     hardware ethernet 00:fe:c8:e5:6c:76;
37     fixed-address 10.30.51.16;
38     filename "pxelinux.0";
39   }
40   host t1-sut1 {
41     hardware ethernet 00:fe:c8:e5:68:32;
42     fixed-address 10.30.51.17;
43     filename "pxelinux.0";
44   }
45   host t1-sut2 {
46     hardware ethernet cc:46:d6:17:e0:58;
47     fixed-address 10.30.51.18;
48     filename "pxelinux.0";
49   }
50   host t2-tg1 {
51     hardware ethernet 00:fe:c8:e5:6a:72;
52     fixed-address 10.30.51.20;
53     filename "pxelinux.0";
54   }
55   host t2-sut1 {
56     hardware ethernet 00:fe:c8:e5:68:e0;
57     fixed-address 10.30.51.21;
58     filename "pxelinux.0";
59   }
60   host t2-sut2 {
61     hardware ethernet 00:fe:c8:58:1e:f6;
62     fixed-address 10.30.51.22;
63     filename "pxelinux.0";
64   }
65   host t3-tg1 {
66     hardware ethernet 00:fe:c8:e5:68:c2;
67     fixed-address 10.30.51.24;
68     filename "pxelinux.0";
69   }
70   host t3-sut1 {
71     hardware ethernet 00:f2:8b:7c:fb:4a;
72     fixed-address 10.30.51.25;
73     filename "pxelinux.0";
74   }
75   host t3-sut2 {
76     hardware ethernet 58:ac:78:5c:90:78;
77     fixed-address 10.30.51.26;
78     filename "pxelinux.0";
79   }
80   host t4-virl2 {
81     hardware ethernet 00:42:68:6f:68:ee;
82     fixed-address 10.30.51.29;
83     filename "pxelinux.0";
84   }
85   host t4-virl3 {
86     hardware ethernet 00:42:68:6f:6f:c0;
87     fixed-address 10.30.51.30;
88     filename "pxelinux.0";
89   }
90 }