-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdhcpd.conf
More file actions
33 lines (27 loc) · 1.04 KB
/
dhcpd.conf
File metadata and controls
33 lines (27 loc) · 1.04 KB
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
# the ddns-updates-style parameter controls
ddns-update-style none;
# if this dhcp server is the official dhcp server for the local
# network, the authoritative directive should be uncommented.
authoritative;
# use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;
# junos ztp options
option space ezjunosztp;
option ezjunosztp.image-file-name code 0 = text;
option ezjunosztp.config-file-name code 1 = text;
option ezjunosztp.image-file-type code 2 = text;
option ezjunosztp.transfer-mode code 3 = text;
option ezjunosztp-encap code 43 = encapsulate ezjunosztp;
option ezjunosztp-file-server code 150 = ip-address;
option domain-name "consentfactory.com";
option domain-name-servers 172.16.1.10;
default-lease-time 600;
max-lease-time 7200;
# subnet definition
subnet 172.16.1.0 netmask 255.255.255.0 {
range dynamic-bootp 172.16.1.20 172.16.1.25;
option routers 172.16.1.1;
}
# Host file containing the DHCP reservations
include "/etc/dhcp/hosts.conf";