File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 115
115
// can be overridden on a subnet level.
116
116
"match-client-id" : true ,
117
117
118
+ // By default, Kea ignores requests by clients for unknown IP addresses,
119
+ // because other non-cooperating DHCP servers could reside on the same
120
+ // network (RFC 2131). This parameter is defined globally, but can be
121
+ // overriden on a subnet level
122
+ "authoritative" : false ,
123
+
118
124
// The following list defines subnets. Each subnet consists of at
119
125
// least subnet and pool entries. One extra feature that requires
120
126
// some explanation is user-context. This is a structure that you can
157
163
"relay" : {
158
164
"ip-address" : " 192.168.1.1"
159
165
}
166
+ },
167
+ {
168
+ // This particular subnet has the authoritative value changed.
169
+ // This casuses Kea to reply to requests with unknown IP addresses
170
+ // with a DHCPNAK message.
171
+ "pools" : [ { "pool" : " 192.0.5.100 - 192.0.5.200" } ],
172
+ "subnet" : " 192.0.5.0/24" ,
173
+ "authoritative" : true
160
174
}
161
175
]
162
176
},
Original file line number Diff line number Diff line change 40
40
// globally, but can be overridden on a subnet level.
41
41
"match-client-id" : true ,
42
42
43
+ // By default, Kea ignores requests by clients for unknown IP addresses,
44
+ // because other non-cooperating DHCP servers could reside on the same
45
+ // network (RFC 2131). This parameter is defined globally, but can be
46
+ // overriden on a subnet level
47
+ "authoritative" : false ,
48
+
43
49
// The following list defines subnets. Each subnet consists of at
44
50
// least subnet and pool entries.
45
51
"subnet4" : [
Original file line number Diff line number Diff line change 50
50
"match-client-id" : false ,
51
51
"option-data" : [ ],
52
52
"rebind-timer" : 150 ,
53
+ "authoritative" : true ,
53
54
54
55
// If all the traffic coming from that shared network is reachable
55
56
// via relay and that relay always use the same IP address, you
You can’t perform that action at this time.
0 commit comments