-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdhcpd.conf
58 lines (49 loc) · 1.4 KB
/
dhcpd.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#
# DHCP Server Configuration file.
# see /usr/share/doc/dhcp-server/dhcpd.conf.example
# see dhcpd.conf(5) man page
#
default-lease-time 900;
max-lease-time 7200;
subnet 192.168.67.0 netmask 255.255.255.0 {
option routers 192.168.67.1;
option subnet-mask 255.255.255.0;
option domain-search "ocp67.i8c-lab-02.iconos.be";
option domain-name-servers 192.168.67.1;
next-server 192.168.67.1;
if exists user-class and option user-class = "iPXE" {
filename "http://bastion.ocp67.i8c-lab-02.iconos.be:8080/boot.ipxe";
} else {
filename "undionly.kpxe";
}
}
host bootstrap {
hardware ethernet 00:1a:4a:16:01:20;
fixed-address 192.168.67.253;
option host-name "bootstrap.ocp67.i8c-lab-02.iconos.be";
}
host master-0 {
hardware ethernet 00:1a:4a:16:01:29;
fixed-address 192.168.67.10;
option host-name "master-0.ocp67.i8c-lab-02.iconos.be";
}
host master-1 {
hardware ethernet 00:1a:4a:16:01:2a;
fixed-address 192.168.67.11;
option host-name "master-1.ocp67.i8c-lab-02.iconos.be";
}
host master-2 {
hardware ethernet 00:1a:4a:16:01:2b;
fixed-address 192.168.67.12;
option host-name "master-2.ocp67.i8c-lab-02.iconos.be";
}
host cptnod-0 {
hardware ethernet d0:67:e5:a1:34:3e;
fixed-address 192.168.67.30;
option host-name "cptnod-0.ocp67.i8c-lab-02.iconos.be";
}
host cptnod-1 {
hardware ethernet d0:67:e5:e4:87:1e;
fixed-address 192.168.67.31;
option host-name "cptnod-1.ocp67.i8c-lab-02.iconos.be";
}