Project

General

Profile

Bug #5215 » dhcpd-node2.conf

node2 primary dhcp config - Christopher Harbort, 09/30/2015 07:49 AM

 
1

    
2
option domain-name "tsrv.rst";
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
ping-check true;
13
update-conflict-detection false;
14
authoritative;
15
failover peer "dhcp_opt6" {
16
  secondary;
17
  address 172.23.136.131;
18
  port 520;
19
  peer address 172.23.136.132;
20
  peer port 519;
21
  max-response-delay 10;
22
  max-unacked-updates 10;
23
  
24
  load balance max seconds 3;
25
}
26

    
27
subnet 172.23.136.0 netmask 255.255.255.0 {
28
	pool {
29
		option domain-name-servers 172.23.136.130;
30
		deny dynamic bootp clients;
31
		failover peer "dhcp_opt6";
32
		range 172.23.136.10 172.23.136.50;
33
	}
34

    
35
	option routers 172.23.136.130;
36
	option domain-name "wlanguest.hvr.rst";
37
	option domain-name-servers 172.23.136.130;
38
	option ntp-servers 172.23.136.130;
39

    
40
}
(2-2/2)