-
Notifications
You must be signed in to change notification settings - Fork 426
/
dhcpd.conf
46 lines (39 loc) · 971 Bytes
/
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
authoritative;
ddns-update-style interim;
allow booting;
allow bootp;
allow unknown-clients;
ignore client-updates;
default-lease-time 14400;
max-lease-time 14400;
subnet 192.168.22.0 netmask 255.255.255.0 {
option routers 192.168.22.1; # lan
option subnet-mask 255.255.255.0;
option domain-name "ocp.lan";
option domain-name-servers 192.168.22.1;
range 192.168.22.80 192.168.22.99;
}
host ocp-bootstrap {
hardware ethernet 00:0c:29:83:df:be;
fixed-address 192.168.22.200;
}
host ocp-cp-1 {
hardware ethernet 00:0c:29:65:d5:0f;
fixed-address 192.168.22.201;
}
host ocp-cp-2 {
hardware ethernet 00:0c:29:8e:91:c2;
fixed-address 192.168.22.202;
}
host ocp-cp-3 {
hardware ethernet 00:0c:29:4e:e6:77;
fixed-address 192.168.22.203;
}
host ocp-w-1 {
hardware ethernet 00:0c:29:da:35:11;
fixed-address 192.168.22.211;
}
host ocp-w-2 {
hardware ethernet 00:0c:29:3d:ea:c4;
fixed-address 192.168.22.212;
}