Project

General

Profile

Bug #16304 » dhcpd.conf

Sayed Mohammad Badiezadegan, 07/29/2025 11:33 PM

 
1

    
2
option domain-name "home.arpa";
3
option ldap-server code 95 = text;
4
option domain-search-list code 119 = text;
5
option arch code 93 = unsigned integer 16; # RFC4578
6

    
7
default-lease-time 7200;
8
max-lease-time 86400;
9
log-facility local7;
10
one-lease-per-client true;
11
deny duplicates;
12
update-conflict-detection false;
13
authoritative;
14
class "s_lan" {
15
	match pick-first-value (option dhcp-client-identifier, hardware);
16
}
17
subnet 192.168.1.0 netmask 255.255.255.0 {
18
	pool {
19

    
20
		range 192.168.1.100 192.168.1.199;
21
	}
22

    
23
	option routers 192.168.1.1;
24
	option domain-name-servers 192.168.1.1;
25
	ping-check true;
26

    
27
}
(2-2/2)